kuid.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Copyright (c) 2022 Agustina Arzille.
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. *
  17. * Kernel unique-id (KUID) management.
  18. */
  19. #ifndef KERN_KUID_H
  20. #define KERN_KUID_H
  21. #include <stdint.h>
  22. #include <kern/init.h>
  23. struct kuid_head
  24. {
  25. uint32_t id;
  26. size_t nr_refs;
  27. };
  28. static inline void
  29. kuid_head_init (struct kuid_head *head)
  30. {
  31. head->id = 0;
  32. head->nr_refs = 1;
  33. }
  34. // Allocate a KUID, making sure the value doesn't surpass MAX_ID.
  35. int kuid_alloc (struct kuid_head *head, uint32_t max_id);
  36. // Find the kuid structure that matches a numeric ID.
  37. struct kuid_head* kuid_find (uint32_t id);
  38. // Remove a previously allocated KUID.
  39. int kuid_remove (struct kuid_head *kuid);
  40. // Helper for types that embed a kuid structure.
  41. #define kuid_find_type(id, type, member) \
  42. ({ \
  43. _Auto head_ = kuid_find (id); \
  44. head_ ? structof (head_, type, member) : 0; \
  45. })
  46. /*
  47. * This init operation provides :
  48. * - KUID management operational.
  49. *
  50. * Contended locking may only occur after starting APs.
  51. */
  52. INIT_OP_DECLARE (kuid_setup);
  53. #endif