diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /security/selinux/ss/sidtab.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'security/selinux/ss/sidtab.h')
-rw-r--r-- | security/selinux/ss/sidtab.h | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/security/selinux/ss/sidtab.h b/security/selinux/ss/sidtab.h new file mode 100644 index 000000000000..2fe9dfa3eb3a --- /dev/null +++ b/security/selinux/ss/sidtab.h | |||
@@ -0,0 +1,59 @@ | |||
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 | |||
10 | #include "context.h" | ||
11 | |||
12 | struct sidtab_node { | ||
13 | u32 sid; /* security identifier */ | ||
14 | struct context context; /* security context structure */ | ||
15 | struct sidtab_node *next; | ||
16 | }; | ||
17 | |||
18 | #define SIDTAB_HASH_BITS 7 | ||
19 | #define SIDTAB_HASH_BUCKETS (1 << SIDTAB_HASH_BITS) | ||
20 | #define SIDTAB_HASH_MASK (SIDTAB_HASH_BUCKETS-1) | ||
21 | |||
22 | #define SIDTAB_SIZE SIDTAB_HASH_BUCKETS | ||
23 | |||
24 | struct sidtab { | ||
25 | struct sidtab_node **htable; | ||
26 | unsigned int nel; /* number of elements */ | ||
27 | unsigned int next_sid; /* next SID to allocate */ | ||
28 | unsigned char shutdown; | ||
29 | spinlock_t lock; | ||
30 | }; | ||
31 | |||
32 | int sidtab_init(struct sidtab *s); | ||
33 | int sidtab_insert(struct sidtab *s, u32 sid, struct context *context); | ||
34 | struct context *sidtab_search(struct sidtab *s, u32 sid); | ||
35 | |||
36 | int sidtab_map(struct sidtab *s, | ||
37 | int (*apply) (u32 sid, | ||
38 | struct context *context, | ||
39 | void *args), | ||
40 | void *args); | ||
41 | |||
42 | void sidtab_map_remove_on_error(struct sidtab *s, | ||
43 | int (*apply) (u32 sid, | ||
44 | struct context *context, | ||
45 | void *args), | ||
46 | void *args); | ||
47 | |||
48 | int sidtab_context_to_sid(struct sidtab *s, | ||
49 | struct context *context, | ||
50 | u32 *sid); | ||
51 | |||
52 | void sidtab_hash_eval(struct sidtab *h, char *tag); | ||
53 | void sidtab_destroy(struct sidtab *s); | ||
54 | void sidtab_set(struct sidtab *dst, struct sidtab *src); | ||
55 | void sidtab_shutdown(struct sidtab *s); | ||
56 | |||
57 | #endif /* _SS_SIDTAB_H_ */ | ||
58 | |||
59 | |||