2 * Implementation of the access vector table type.
4 * Author : Stephen Smalley, <sds@epoch.ncsc.mil>
7 /* Updated: Frank Mayer <mayerf@tresys.com> and Karl MacMillan <kmacmillan@tresys.com>
9 * Added conditional policy language extensions
11 * Copyright (C) 2003 Tresys Technology, LLC
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation, version 2.
17 #include <linux/kernel.h>
18 #include <linux/slab.h>
19 #include <linux/vmalloc.h>
20 #include <linux/errno.h>
25 #define AVTAB_HASH(keyp) \
26 ((keyp->target_class + \
27 (keyp->target_type << 2) + \
28 (keyp->source_type << 9)) & \
31 static kmem_cache_t *avtab_node_cachep;
33 static struct avtab_node*
34 avtab_insert_node(struct avtab *h, int hvalue,
35 struct avtab_node * prev, struct avtab_node * cur,
36 struct avtab_key *key, struct avtab_datum *datum)
38 struct avtab_node * newnode;
39 newnode = kmem_cache_alloc(avtab_node_cachep, SLAB_KERNEL);
42 memset(newnode, 0, sizeof(struct avtab_node));
44 newnode->datum = *datum;
46 newnode->next = prev->next;
49 newnode->next = h->htable[hvalue];
50 h->htable[hvalue] = newnode;
57 static int avtab_insert(struct avtab *h, struct avtab_key *key, struct avtab_datum *datum)
60 struct avtab_node *prev, *cur, *newnode;
61 u16 specified = key->specified & ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD);
66 hvalue = AVTAB_HASH(key);
67 for (prev = NULL, cur = h->htable[hvalue];
69 prev = cur, cur = cur->next) {
70 if (key->source_type == cur->key.source_type &&
71 key->target_type == cur->key.target_type &&
72 key->target_class == cur->key.target_class &&
73 (specified & cur->key.specified))
75 if (key->source_type < cur->key.source_type)
77 if (key->source_type == cur->key.source_type &&
78 key->target_type < cur->key.target_type)
80 if (key->source_type == cur->key.source_type &&
81 key->target_type == cur->key.target_type &&
82 key->target_class < cur->key.target_class)
86 newnode = avtab_insert_node(h, hvalue, prev, cur, key, datum);
93 /* Unlike avtab_insert(), this function allow multiple insertions of the same
94 * key/specified mask into the table, as needed by the conditional avtab.
95 * It also returns a pointer to the node inserted.
98 avtab_insert_nonunique(struct avtab * h, struct avtab_key * key, struct avtab_datum * datum)
101 struct avtab_node *prev, *cur, *newnode;
102 u16 specified = key->specified & ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD);
106 hvalue = AVTAB_HASH(key);
107 for (prev = NULL, cur = h->htable[hvalue];
109 prev = cur, cur = cur->next) {
110 if (key->source_type == cur->key.source_type &&
111 key->target_type == cur->key.target_type &&
112 key->target_class == cur->key.target_class &&
113 (specified & cur->key.specified))
115 if (key->source_type < cur->key.source_type)
117 if (key->source_type == cur->key.source_type &&
118 key->target_type < cur->key.target_type)
120 if (key->source_type == cur->key.source_type &&
121 key->target_type == cur->key.target_type &&
122 key->target_class < cur->key.target_class)
125 newnode = avtab_insert_node(h, hvalue, prev, cur, key, datum);
130 struct avtab_datum *avtab_search(struct avtab *h, struct avtab_key *key)
133 struct avtab_node *cur;
134 u16 specified = key->specified & ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD);
139 hvalue = AVTAB_HASH(key);
140 for (cur = h->htable[hvalue]; cur; cur = cur->next) {
141 if (key->source_type == cur->key.source_type &&
142 key->target_type == cur->key.target_type &&
143 key->target_class == cur->key.target_class &&
144 (specified & cur->key.specified))
147 if (key->source_type < cur->key.source_type)
149 if (key->source_type == cur->key.source_type &&
150 key->target_type < cur->key.target_type)
152 if (key->source_type == cur->key.source_type &&
153 key->target_type == cur->key.target_type &&
154 key->target_class < cur->key.target_class)
161 /* This search function returns a node pointer, and can be used in
162 * conjunction with avtab_search_next_node()
165 avtab_search_node(struct avtab *h, struct avtab_key *key)
168 struct avtab_node *cur;
169 u16 specified = key->specified & ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD);
174 hvalue = AVTAB_HASH(key);
175 for (cur = h->htable[hvalue]; cur; cur = cur->next) {
176 if (key->source_type == cur->key.source_type &&
177 key->target_type == cur->key.target_type &&
178 key->target_class == cur->key.target_class &&
179 (specified & cur->key.specified))
182 if (key->source_type < cur->key.source_type)
184 if (key->source_type == cur->key.source_type &&
185 key->target_type < cur->key.target_type)
187 if (key->source_type == cur->key.source_type &&
188 key->target_type == cur->key.target_type &&
189 key->target_class < cur->key.target_class)
196 avtab_search_node_next(struct avtab_node *node, int specified)
198 struct avtab_node *cur;
203 specified &= ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD);
204 for (cur = node->next; cur; cur = cur->next) {
205 if (node->key.source_type == cur->key.source_type &&
206 node->key.target_type == cur->key.target_type &&
207 node->key.target_class == cur->key.target_class &&
208 (specified & cur->key.specified))
211 if (node->key.source_type < cur->key.source_type)
213 if (node->key.source_type == cur->key.source_type &&
214 node->key.target_type < cur->key.target_type)
216 if (node->key.source_type == cur->key.source_type &&
217 node->key.target_type == cur->key.target_type &&
218 node->key.target_class < cur->key.target_class)
224 void avtab_destroy(struct avtab *h)
227 struct avtab_node *cur, *temp;
229 if (!h || !h->htable)
232 for (i = 0; i < AVTAB_SIZE; i++) {
234 while (cur != NULL) {
237 kmem_cache_free(avtab_node_cachep, temp);
246 int avtab_init(struct avtab *h)
250 h->htable = vmalloc(sizeof(*(h->htable)) * AVTAB_SIZE);
253 for (i = 0; i < AVTAB_SIZE; i++)
259 void avtab_hash_eval(struct avtab *h, char *tag)
261 int i, chain_len, slots_used, max_chain_len;
262 struct avtab_node *cur;
266 for (i = 0; i < AVTAB_SIZE; i++) {
276 if (chain_len > max_chain_len)
277 max_chain_len = chain_len;
281 printk(KERN_INFO "%s: %d entries and %d/%d buckets used, longest "
282 "chain length %d\n", tag, h->nel, slots_used, AVTAB_SIZE,
286 static uint16_t spec_order[] = {
295 int avtab_read_item(void *fp, u32 vers, struct avtab *a,
296 int (*insertf)(struct avtab *a, struct avtab_key *k,
297 struct avtab_datum *d, void *p),
303 u32 items, items2, val;
304 struct avtab_key key;
305 struct avtab_datum datum;
308 memset(&key, 0, sizeof(struct avtab_key));
309 memset(&datum, 0, sizeof(struct avtab_datum));
311 if (vers < POLICYDB_VERSION_AVTAB) {
312 rc = next_entry(buf32, fp, sizeof(u32));
314 printk(KERN_ERR "security: avtab: truncated entry\n");
317 items2 = le32_to_cpu(buf32[0]);
318 if (items2 > ARRAY_SIZE(buf32)) {
319 printk(KERN_ERR "security: avtab: entry overflow\n");
323 rc = next_entry(buf32, fp, sizeof(u32)*items2);
325 printk(KERN_ERR "security: avtab: truncated entry\n");
330 val = le32_to_cpu(buf32[items++]);
331 key.source_type = (u16)val;
332 if (key.source_type != val) {
333 printk("security: avtab: truncated source type\n");
336 val = le32_to_cpu(buf32[items++]);
337 key.target_type = (u16)val;
338 if (key.target_type != val) {
339 printk("security: avtab: truncated target type\n");
342 val = le32_to_cpu(buf32[items++]);
343 key.target_class = (u16)val;
344 if (key.target_class != val) {
345 printk("security: avtab: truncated target class\n");
349 val = le32_to_cpu(buf32[items++]);
350 enabled = (val & AVTAB_ENABLED_OLD) ? AVTAB_ENABLED : 0;
352 if (!(val & (AVTAB_AV | AVTAB_TYPE))) {
353 printk("security: avtab: null entry\n");
356 if ((val & AVTAB_AV) &&
357 (val & AVTAB_TYPE)) {
358 printk("security: avtab: entry has both access vectors and types\n");
362 for (i = 0; i < ARRAY_SIZE(spec_order); i++) {
363 if (val & spec_order[i]) {
364 key.specified = spec_order[i] | enabled;
365 datum.data = le32_to_cpu(buf32[items++]);
366 rc = insertf(a, &key, &datum, p);
371 if (items != items2) {
372 printk("security: avtab: entry only had %d items, expected %d\n", items2, items);
378 rc = next_entry(buf16, fp, sizeof(u16)*4);
380 printk("security: avtab: truncated entry\n");
385 key.source_type = le16_to_cpu(buf16[items++]);
386 key.target_type = le16_to_cpu(buf16[items++]);
387 key.target_class = le16_to_cpu(buf16[items++]);
388 key.specified = le16_to_cpu(buf16[items++]);
390 rc = next_entry(buf32, fp, sizeof(u32));
392 printk("security: avtab: truncated entry\n");
395 datum.data = le32_to_cpu(*buf32);
396 return insertf(a, &key, &datum, p);
399 static int avtab_insertf(struct avtab *a, struct avtab_key *k,
400 struct avtab_datum *d, void *p)
402 return avtab_insert(a, k, d);
405 int avtab_read(struct avtab *a, void *fp, u32 vers)
412 rc = next_entry(buf, fp, sizeof(u32));
414 printk(KERN_ERR "security: avtab: truncated table\n");
417 nel = le32_to_cpu(buf[0]);
419 printk(KERN_ERR "security: avtab: table is empty\n");
423 for (i = 0; i < nel; i++) {
424 rc = avtab_read_item(fp,vers, a, avtab_insertf, NULL);
427 printk(KERN_ERR "security: avtab: out of memory\n");
428 else if (rc == -EEXIST)
429 printk(KERN_ERR "security: avtab: duplicate entry\n");
445 void avtab_cache_init(void)
447 avtab_node_cachep = kmem_cache_create("avtab_node",
448 sizeof(struct avtab_node),
449 0, SLAB_PANIC, NULL, NULL);
452 void avtab_cache_destroy(void)
454 kmem_cache_destroy (avtab_node_cachep);