sidtab.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * A security identifier table (sidtab) is a hash table
  4. * of security context structures indexed by SID value.
  5. *
  6. * Author : Stephen Smalley, <sds@tycho.nsa.gov>
  7. */
  8. #ifndef _SS_SIDTAB_H_
  9. #define _SS_SIDTAB_H_
  10. #include "context.h"
  11. struct sidtab_node {
  12. u32 sid; /* security identifier */
  13. struct context context; /* security context structure */
  14. struct sidtab_node *next;
  15. };
  16. #define SIDTAB_HASH_BITS 7
  17. #define SIDTAB_HASH_BUCKETS (1 << SIDTAB_HASH_BITS)
  18. #define SIDTAB_HASH_MASK (SIDTAB_HASH_BUCKETS-1)
  19. #define SIDTAB_SIZE SIDTAB_HASH_BUCKETS
  20. struct sidtab {
  21. struct sidtab_node **htable;
  22. unsigned int nel; /* number of elements */
  23. unsigned int next_sid; /* next SID to allocate */
  24. unsigned char shutdown;
  25. #define SIDTAB_CACHE_LEN 3
  26. struct sidtab_node *cache[SIDTAB_CACHE_LEN];
  27. spinlock_t lock;
  28. };
  29. int sidtab_init(struct sidtab *s);
  30. int sidtab_insert(struct sidtab *s, u32 sid, struct context *context);
  31. struct context *sidtab_search(struct sidtab *s, u32 sid);
  32. struct context *sidtab_search_force(struct sidtab *s, u32 sid);
  33. int sidtab_map(struct sidtab *s,
  34. int (*apply) (u32 sid,
  35. struct context *context,
  36. void *args),
  37. void *args);
  38. int sidtab_context_to_sid(struct sidtab *s,
  39. struct context *context,
  40. u32 *sid);
  41. void sidtab_hash_eval(struct sidtab *h, char *tag);
  42. void sidtab_destroy(struct sidtab *s);
  43. void sidtab_set(struct sidtab *dst, struct sidtab *src);
  44. void sidtab_shutdown(struct sidtab *s);
  45. #endif /* _SS_SIDTAB_H_ */