sidtab.h 1.5 KB

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