2 * Implementation of the access vector table type.
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 * Tuned number of hash slots for avtab to reduce memory usage
20 #include <linux/bitops.h>
21 #include <linux/kernel.h>
22 #include <linux/slab.h>
23 #include <linux/errno.h>
27 static struct kmem_cache *avtab_node_cachep __ro_after_init;
28 static struct kmem_cache *avtab_xperms_cachep __ro_after_init;
30 /* Based on MurmurHash3, written by Austin Appleby and placed in the
33 static inline u32 avtab_hash(const struct avtab_key *keyp, u32 mask)
35 static const u32 c1 = 0xcc9e2d51;
36 static const u32 c2 = 0x1b873593;
37 static const u32 r1 = 15;
38 static const u32 r2 = 13;
39 static const u32 m = 5;
40 static const u32 n = 0xe6546b64;
44 #define mix(input) do { \
47 v = (v << r1) | (v >> (32 - r1)); \
50 hash = (hash << r2) | (hash >> (32 - r2)); \
51 hash = hash * m + n; \
54 mix(keyp->target_class);
55 mix(keyp->target_type);
56 mix(keyp->source_type);
69 static struct avtab_node*
70 avtab_insert_node(struct avtab *h, struct avtab_node **dst,
71 const struct avtab_key *key, const struct avtab_datum *datum)
73 struct avtab_node *newnode;
74 struct avtab_extended_perms *xperms;
75 newnode = kmem_cache_zalloc(avtab_node_cachep, GFP_KERNEL);
80 if (key->specified & AVTAB_XPERMS) {
81 xperms = kmem_cache_zalloc(avtab_xperms_cachep, GFP_KERNEL);
83 kmem_cache_free(avtab_node_cachep, newnode);
86 *xperms = *(datum->u.xperms);
87 newnode->datum.u.xperms = xperms;
89 newnode->datum.u.data = datum->u.data;
99 static int avtab_insert(struct avtab *h, const struct avtab_key *key,
100 const struct avtab_datum *datum)
103 struct avtab_node *prev, *cur, *newnode;
104 u16 specified = key->specified & ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD);
106 if (!h || !h->nslot || h->nel == U32_MAX)
109 hvalue = avtab_hash(key, h->mask);
110 for (prev = NULL, cur = h->htable[hvalue];
112 prev = cur, cur = cur->next) {
113 if (key->source_type == cur->key.source_type &&
114 key->target_type == cur->key.target_type &&
115 key->target_class == cur->key.target_class &&
116 (specified & cur->key.specified)) {
117 /* extended perms may not be unique */
118 if (specified & AVTAB_XPERMS)
122 if (key->source_type < cur->key.source_type)
124 if (key->source_type == cur->key.source_type &&
125 key->target_type < cur->key.target_type)
127 if (key->source_type == cur->key.source_type &&
128 key->target_type == cur->key.target_type &&
129 key->target_class < cur->key.target_class)
133 newnode = avtab_insert_node(h, prev ? &prev->next : &h->htable[hvalue],
141 /* Unlike avtab_insert(), this function allow multiple insertions of the same
142 * key/specified mask into the table, as needed by the conditional avtab.
143 * It also returns a pointer to the node inserted.
145 struct avtab_node *avtab_insert_nonunique(struct avtab *h,
146 const struct avtab_key *key,
147 const struct avtab_datum *datum)
150 struct avtab_node *prev, *cur;
151 u16 specified = key->specified & ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD);
153 if (!h || !h->nslot || h->nel == U32_MAX)
155 hvalue = avtab_hash(key, h->mask);
156 for (prev = NULL, cur = h->htable[hvalue];
158 prev = cur, cur = cur->next) {
159 if (key->source_type == cur->key.source_type &&
160 key->target_type == cur->key.target_type &&
161 key->target_class == cur->key.target_class &&
162 (specified & cur->key.specified))
164 if (key->source_type < cur->key.source_type)
166 if (key->source_type == cur->key.source_type &&
167 key->target_type < cur->key.target_type)
169 if (key->source_type == cur->key.source_type &&
170 key->target_type == cur->key.target_type &&
171 key->target_class < cur->key.target_class)
174 return avtab_insert_node(h, prev ? &prev->next : &h->htable[hvalue],
178 /* This search function returns a node pointer, and can be used in
179 * conjunction with avtab_search_next_node()
181 struct avtab_node *avtab_search_node(struct avtab *h,
182 const struct avtab_key *key)
185 struct avtab_node *cur;
186 u16 specified = key->specified & ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD);
191 hvalue = avtab_hash(key, h->mask);
192 for (cur = h->htable[hvalue]; cur;
194 if (key->source_type == cur->key.source_type &&
195 key->target_type == cur->key.target_type &&
196 key->target_class == cur->key.target_class &&
197 (specified & cur->key.specified))
200 if (key->source_type < cur->key.source_type)
202 if (key->source_type == cur->key.source_type &&
203 key->target_type < cur->key.target_type)
205 if (key->source_type == cur->key.source_type &&
206 key->target_type == cur->key.target_type &&
207 key->target_class < cur->key.target_class)
214 avtab_search_node_next(struct avtab_node *node, u16 specified)
216 struct avtab_node *cur;
221 specified &= ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD);
222 for (cur = node->next; cur; cur = cur->next) {
223 if (node->key.source_type == cur->key.source_type &&
224 node->key.target_type == cur->key.target_type &&
225 node->key.target_class == cur->key.target_class &&
226 (specified & cur->key.specified))
229 if (node->key.source_type < cur->key.source_type)
231 if (node->key.source_type == cur->key.source_type &&
232 node->key.target_type < cur->key.target_type)
234 if (node->key.source_type == cur->key.source_type &&
235 node->key.target_type == cur->key.target_type &&
236 node->key.target_class < cur->key.target_class)
242 void avtab_destroy(struct avtab *h)
245 struct avtab_node *cur, *temp;
250 for (i = 0; i < h->nslot; i++) {
255 if (temp->key.specified & AVTAB_XPERMS)
256 kmem_cache_free(avtab_xperms_cachep,
257 temp->datum.u.xperms);
258 kmem_cache_free(avtab_node_cachep, temp);
268 void avtab_init(struct avtab *h)
276 static int avtab_alloc_common(struct avtab *h, u32 nslot)
281 h->htable = kvcalloc(nslot, sizeof(void *), GFP_KERNEL);
290 int avtab_alloc(struct avtab *h, u32 nrules)
296 nslot = nrules > 3 ? rounddown_pow_of_two(nrules / 2) : 2;
297 if (nslot > MAX_AVTAB_HASH_BUCKETS)
298 nslot = MAX_AVTAB_HASH_BUCKETS;
300 rc = avtab_alloc_common(h, nslot);
305 pr_debug("SELinux: %d avtab hash slots, %d rules.\n", nslot, nrules);
309 int avtab_alloc_dup(struct avtab *new, const struct avtab *orig)
311 return avtab_alloc_common(new, orig->nslot);
314 #ifdef CONFIG_SECURITY_SELINUX_DEBUG
315 void avtab_hash_eval(struct avtab *h, const char *tag)
317 u32 i, chain_len, slots_used, max_chain_len;
318 unsigned long long chain2_len_sum;
319 struct avtab_node *cur;
324 for (i = 0; i < h->nslot; i++) {
334 if (chain_len > max_chain_len)
335 max_chain_len = chain_len;
336 chain2_len_sum += (unsigned long long)chain_len * chain_len;
340 pr_debug("SELinux: %s: %d entries and %d/%d buckets used, "
341 "longest chain length %d, sum of chain length^2 %llu\n",
342 tag, h->nel, slots_used, h->nslot, max_chain_len,
345 #endif /* CONFIG_SECURITY_SELINUX_DEBUG */
347 static const uint16_t spec_order[] = {
354 AVTAB_XPERMS_ALLOWED,
355 AVTAB_XPERMS_AUDITALLOW,
356 AVTAB_XPERMS_DONTAUDIT
359 int avtab_read_item(struct avtab *a, void *fp, struct policydb *pol,
360 int (*insertf)(struct avtab *a, const struct avtab_key *k,
361 const struct avtab_datum *d, void *p),
366 u32 items, items2, val, i;
367 struct avtab_key key;
368 struct avtab_datum datum;
369 struct avtab_extended_perms xperms;
370 __le32 buf32[ARRAY_SIZE(xperms.perms.p)];
372 unsigned int set, vers = pol->policyvers;
374 memset(&key, 0, sizeof(struct avtab_key));
375 memset(&datum, 0, sizeof(struct avtab_datum));
377 if (vers < POLICYDB_VERSION_AVTAB) {
378 rc = next_entry(buf32, fp, sizeof(u32));
380 pr_err("SELinux: avtab: truncated entry\n");
383 items2 = le32_to_cpu(buf32[0]);
384 if (items2 > ARRAY_SIZE(buf32)) {
385 pr_err("SELinux: avtab: entry overflow\n");
389 rc = next_entry(buf32, fp, sizeof(u32)*items2);
391 pr_err("SELinux: avtab: truncated entry\n");
396 val = le32_to_cpu(buf32[items++]);
397 key.source_type = (u16)val;
398 if (key.source_type != val) {
399 pr_err("SELinux: avtab: truncated source type\n");
402 val = le32_to_cpu(buf32[items++]);
403 key.target_type = (u16)val;
404 if (key.target_type != val) {
405 pr_err("SELinux: avtab: truncated target type\n");
408 val = le32_to_cpu(buf32[items++]);
409 key.target_class = (u16)val;
410 if (key.target_class != val) {
411 pr_err("SELinux: avtab: truncated target class\n");
415 val = le32_to_cpu(buf32[items++]);
416 enabled = (val & AVTAB_ENABLED_OLD) ? AVTAB_ENABLED : 0;
418 if (!(val & (AVTAB_AV | AVTAB_TYPE))) {
419 pr_err("SELinux: avtab: null entry\n");
422 if ((val & AVTAB_AV) &&
423 (val & AVTAB_TYPE)) {
424 pr_err("SELinux: avtab: entry has both access vectors and types\n");
427 if (val & AVTAB_XPERMS) {
428 pr_err("SELinux: avtab: entry has extended permissions\n");
432 for (i = 0; i < ARRAY_SIZE(spec_order); i++) {
433 if (val & spec_order[i]) {
434 key.specified = spec_order[i] | enabled;
435 datum.u.data = le32_to_cpu(buf32[items++]);
436 rc = insertf(a, &key, &datum, p);
442 if (items != items2) {
443 pr_err("SELinux: avtab: entry only had %d items, expected %d\n",
450 rc = next_entry(buf16, fp, sizeof(u16)*4);
452 pr_err("SELinux: avtab: truncated entry\n");
457 key.source_type = le16_to_cpu(buf16[items++]);
458 key.target_type = le16_to_cpu(buf16[items++]);
459 key.target_class = le16_to_cpu(buf16[items++]);
460 key.specified = le16_to_cpu(buf16[items++]);
462 if (!policydb_type_isvalid(pol, key.source_type) ||
463 !policydb_type_isvalid(pol, key.target_type) ||
464 !policydb_class_isvalid(pol, key.target_class)) {
465 pr_err("SELinux: avtab: invalid type or class\n");
469 set = hweight16(key.specified & (AVTAB_XPERMS | AVTAB_TYPE | AVTAB_AV));
470 if (!set || set > 1) {
471 pr_err("SELinux: avtab: more than one specifier\n");
475 if ((vers < POLICYDB_VERSION_XPERMS_IOCTL) &&
476 (key.specified & AVTAB_XPERMS)) {
477 pr_err("SELinux: avtab: policy version %u does not "
478 "support extended permissions rules and one "
479 "was specified\n", vers);
481 } else if (key.specified & AVTAB_XPERMS) {
482 memset(&xperms, 0, sizeof(struct avtab_extended_perms));
483 rc = next_entry(&xperms.specified, fp, sizeof(u8));
485 pr_err("SELinux: avtab: truncated entry\n");
488 rc = next_entry(&xperms.driver, fp, sizeof(u8));
490 pr_err("SELinux: avtab: truncated entry\n");
493 rc = next_entry(buf32, fp, sizeof(u32)*ARRAY_SIZE(xperms.perms.p));
495 pr_err("SELinux: avtab: truncated entry\n");
498 for (i = 0; i < ARRAY_SIZE(xperms.perms.p); i++)
499 xperms.perms.p[i] = le32_to_cpu(buf32[i]);
500 datum.u.xperms = &xperms;
502 rc = next_entry(buf32, fp, sizeof(u32));
504 pr_err("SELinux: avtab: truncated entry\n");
507 datum.u.data = le32_to_cpu(*buf32);
509 if ((key.specified & AVTAB_TYPE) &&
510 !policydb_type_isvalid(pol, datum.u.data)) {
511 pr_err("SELinux: avtab: invalid type\n");
514 return insertf(a, &key, &datum, p);
517 static int avtab_insertf(struct avtab *a, const struct avtab_key *k,
518 const struct avtab_datum *d, void *p)
520 return avtab_insert(a, k, d);
523 int avtab_read(struct avtab *a, void *fp, struct policydb *pol)
530 rc = next_entry(buf, fp, sizeof(u32));
532 pr_err("SELinux: avtab: truncated table\n");
535 nel = le32_to_cpu(buf[0]);
537 pr_err("SELinux: avtab: table is empty\n");
542 rc = avtab_alloc(a, nel);
546 for (i = 0; i < nel; i++) {
547 rc = avtab_read_item(a, fp, pol, avtab_insertf, NULL);
550 pr_err("SELinux: avtab: out of memory\n");
551 else if (rc == -EEXIST)
552 pr_err("SELinux: avtab: duplicate entry\n");
567 int avtab_write_item(struct policydb *p, const struct avtab_node *cur, void *fp)
570 __le32 buf32[ARRAY_SIZE(cur->datum.u.xperms->perms.p)];
574 buf16[0] = cpu_to_le16(cur->key.source_type);
575 buf16[1] = cpu_to_le16(cur->key.target_type);
576 buf16[2] = cpu_to_le16(cur->key.target_class);
577 buf16[3] = cpu_to_le16(cur->key.specified);
578 rc = put_entry(buf16, sizeof(u16), 4, fp);
582 if (cur->key.specified & AVTAB_XPERMS) {
583 rc = put_entry(&cur->datum.u.xperms->specified, sizeof(u8), 1, fp);
586 rc = put_entry(&cur->datum.u.xperms->driver, sizeof(u8), 1, fp);
589 for (i = 0; i < ARRAY_SIZE(cur->datum.u.xperms->perms.p); i++)
590 buf32[i] = cpu_to_le32(cur->datum.u.xperms->perms.p[i]);
591 rc = put_entry(buf32, sizeof(u32),
592 ARRAY_SIZE(cur->datum.u.xperms->perms.p), fp);
594 buf32[0] = cpu_to_le32(cur->datum.u.data);
595 rc = put_entry(buf32, sizeof(u32), 1, fp);
602 int avtab_write(struct policydb *p, struct avtab *a, void *fp)
606 struct avtab_node *cur;
609 buf[0] = cpu_to_le32(a->nel);
610 rc = put_entry(buf, sizeof(u32), 1, fp);
614 for (i = 0; i < a->nslot; i++) {
615 for (cur = a->htable[i]; cur;
617 rc = avtab_write_item(p, cur, fp);
626 void __init avtab_cache_init(void)
628 avtab_node_cachep = kmem_cache_create("avtab_node",
629 sizeof(struct avtab_node),
630 0, SLAB_PANIC, NULL);
631 avtab_xperms_cachep = kmem_cache_create("avtab_extended_perms",
632 sizeof(struct avtab_extended_perms),
633 0, SLAB_PANIC, NULL);