Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Implementation of the access vector table type. |
| 3 | * |
| 4 | * Author : Stephen Smalley, <sds@epoch.ncsc.mil> |
| 5 | */ |
| 6 | |
| 7 | /* Updated: Frank Mayer <mayerf@tresys.com> and Karl MacMillan <kmacmillan@tresys.com> |
| 8 | * |
Eric Paris | eb5df9a | 2008-04-18 17:38:28 -0400 | [diff] [blame] | 9 | * Added conditional policy language extensions |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * |
| 11 | * Copyright (C) 2003 Tresys Technology, LLC |
| 12 | * This program is free software; you can redistribute it and/or modify |
Eric Paris | eb5df9a | 2008-04-18 17:38:28 -0400 | [diff] [blame] | 13 | * it under the terms of the GNU General Public License as published by |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | * the Free Software Foundation, version 2. |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 15 | * |
| 16 | * Updated: Yuichi Nakamura <ynakam@hitachisoft.jp> |
Eric Paris | eb5df9a | 2008-04-18 17:38:28 -0400 | [diff] [blame] | 17 | * Tuned number of hash slots for avtab to reduce memory usage |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | */ |
| 19 | |
| 20 | #include <linux/kernel.h> |
| 21 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/errno.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "avtab.h" |
| 24 | #include "policydb.h" |
| 25 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 26 | static struct kmem_cache *avtab_node_cachep; |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 27 | static struct kmem_cache *avtab_xperms_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
John Brooks | 33ebc193 | 2015-03-24 16:54:17 -0400 | [diff] [blame] | 29 | /* Based on MurmurHash3, written by Austin Appleby and placed in the |
| 30 | * public domain. |
| 31 | */ |
| 32 | static inline int avtab_hash(struct avtab_key *keyp, u32 mask) |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 33 | { |
John Brooks | 33ebc193 | 2015-03-24 16:54:17 -0400 | [diff] [blame] | 34 | static const u32 c1 = 0xcc9e2d51; |
| 35 | static const u32 c2 = 0x1b873593; |
| 36 | static const u32 r1 = 15; |
| 37 | static const u32 r2 = 13; |
| 38 | static const u32 m = 5; |
| 39 | static const u32 n = 0xe6546b64; |
| 40 | |
| 41 | u32 hash = 0; |
| 42 | |
| 43 | #define mix(input) { \ |
| 44 | u32 v = input; \ |
| 45 | v *= c1; \ |
| 46 | v = (v << r1) | (v >> (32 - r1)); \ |
| 47 | v *= c2; \ |
| 48 | hash ^= v; \ |
| 49 | hash = (hash << r2) | (hash >> (32 - r2)); \ |
| 50 | hash = hash * m + n; \ |
| 51 | } |
| 52 | |
| 53 | mix(keyp->target_class); |
| 54 | mix(keyp->target_type); |
| 55 | mix(keyp->source_type); |
| 56 | |
| 57 | #undef mix |
| 58 | |
| 59 | hash ^= hash >> 16; |
| 60 | hash *= 0x85ebca6b; |
| 61 | hash ^= hash >> 13; |
| 62 | hash *= 0xc2b2ae35; |
| 63 | hash ^= hash >> 16; |
| 64 | |
| 65 | return hash & mask; |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 66 | } |
| 67 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | static struct avtab_node* |
| 69 | avtab_insert_node(struct avtab *h, int hvalue, |
Eric Paris | eb5df9a | 2008-04-18 17:38:28 -0400 | [diff] [blame] | 70 | struct avtab_node *prev, struct avtab_node *cur, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | struct avtab_key *key, struct avtab_datum *datum) |
| 72 | { |
Eric Paris | eb5df9a | 2008-04-18 17:38:28 -0400 | [diff] [blame] | 73 | struct avtab_node *newnode; |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 74 | struct avtab_extended_perms *xperms; |
Robert P. J. Day | c376222 | 2007-02-10 01:45:03 -0800 | [diff] [blame] | 75 | newnode = kmem_cache_zalloc(avtab_node_cachep, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | if (newnode == NULL) |
| 77 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | newnode->key = *key; |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 79 | |
| 80 | if (key->specified & AVTAB_XPERMS) { |
| 81 | xperms = kmem_cache_zalloc(avtab_xperms_cachep, GFP_KERNEL); |
| 82 | if (xperms == NULL) { |
| 83 | kmem_cache_free(avtab_node_cachep, newnode); |
| 84 | return NULL; |
| 85 | } |
| 86 | *xperms = *(datum->u.xperms); |
| 87 | newnode->datum.u.xperms = xperms; |
| 88 | } else { |
| 89 | newnode->datum.u.data = datum->u.data; |
| 90 | } |
| 91 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | if (prev) { |
| 93 | newnode->next = prev->next; |
| 94 | prev->next = newnode; |
| 95 | } else { |
Stephen Smalley | ba39db6 | 2015-03-24 16:54:16 -0400 | [diff] [blame] | 96 | newnode->next = flex_array_get_ptr(h->htable, hvalue); |
| 97 | if (flex_array_put_ptr(h->htable, hvalue, newnode, |
| 98 | GFP_KERNEL|__GFP_ZERO)) { |
| 99 | kmem_cache_free(avtab_node_cachep, newnode); |
| 100 | return NULL; |
| 101 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | h->nel++; |
| 105 | return newnode; |
| 106 | } |
| 107 | |
| 108 | static int avtab_insert(struct avtab *h, struct avtab_key *key, struct avtab_datum *datum) |
| 109 | { |
| 110 | int hvalue; |
| 111 | struct avtab_node *prev, *cur, *newnode; |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 112 | u16 specified = key->specified & ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 114 | if (!h || !h->htable) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | return -EINVAL; |
| 116 | |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 117 | hvalue = avtab_hash(key, h->mask); |
Stephen Smalley | ba39db6 | 2015-03-24 16:54:16 -0400 | [diff] [blame] | 118 | for (prev = NULL, cur = flex_array_get_ptr(h->htable, hvalue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | cur; |
| 120 | prev = cur, cur = cur->next) { |
| 121 | if (key->source_type == cur->key.source_type && |
| 122 | key->target_type == cur->key.target_type && |
| 123 | key->target_class == cur->key.target_class && |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 124 | (specified & cur->key.specified)) { |
| 125 | /* extended perms may not be unique */ |
| 126 | if (specified & AVTAB_XPERMS) |
| 127 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | return -EEXIST; |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 129 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | if (key->source_type < cur->key.source_type) |
| 131 | break; |
| 132 | if (key->source_type == cur->key.source_type && |
| 133 | key->target_type < cur->key.target_type) |
| 134 | break; |
| 135 | if (key->source_type == cur->key.source_type && |
| 136 | key->target_type == cur->key.target_type && |
| 137 | key->target_class < cur->key.target_class) |
| 138 | break; |
| 139 | } |
| 140 | |
| 141 | newnode = avtab_insert_node(h, hvalue, prev, cur, key, datum); |
Eric Paris | eb5df9a | 2008-04-18 17:38:28 -0400 | [diff] [blame] | 142 | if (!newnode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | return -ENOMEM; |
| 144 | |
| 145 | return 0; |
| 146 | } |
| 147 | |
| 148 | /* Unlike avtab_insert(), this function allow multiple insertions of the same |
| 149 | * key/specified mask into the table, as needed by the conditional avtab. |
| 150 | * It also returns a pointer to the node inserted. |
| 151 | */ |
| 152 | struct avtab_node * |
Eric Paris | eb5df9a | 2008-04-18 17:38:28 -0400 | [diff] [blame] | 153 | avtab_insert_nonunique(struct avtab *h, struct avtab_key *key, struct avtab_datum *datum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | { |
| 155 | int hvalue; |
Vesa-Matti J Kari | 0c0e186 | 2008-07-21 02:50:20 +0300 | [diff] [blame] | 156 | struct avtab_node *prev, *cur; |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 157 | u16 specified = key->specified & ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 159 | if (!h || !h->htable) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | return NULL; |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 161 | hvalue = avtab_hash(key, h->mask); |
Stephen Smalley | ba39db6 | 2015-03-24 16:54:16 -0400 | [diff] [blame] | 162 | for (prev = NULL, cur = flex_array_get_ptr(h->htable, hvalue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | cur; |
| 164 | prev = cur, cur = cur->next) { |
| 165 | if (key->source_type == cur->key.source_type && |
| 166 | key->target_type == cur->key.target_type && |
| 167 | key->target_class == cur->key.target_class && |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 168 | (specified & cur->key.specified)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | break; |
| 170 | if (key->source_type < cur->key.source_type) |
| 171 | break; |
| 172 | if (key->source_type == cur->key.source_type && |
| 173 | key->target_type < cur->key.target_type) |
| 174 | break; |
| 175 | if (key->source_type == cur->key.source_type && |
| 176 | key->target_type == cur->key.target_type && |
| 177 | key->target_class < cur->key.target_class) |
| 178 | break; |
| 179 | } |
Vesa-Matti J Kari | 0c0e186 | 2008-07-21 02:50:20 +0300 | [diff] [blame] | 180 | return avtab_insert_node(h, hvalue, prev, cur, key, datum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | } |
| 182 | |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 183 | struct avtab_datum *avtab_search(struct avtab *h, struct avtab_key *key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | { |
| 185 | int hvalue; |
| 186 | struct avtab_node *cur; |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 187 | u16 specified = key->specified & ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 189 | if (!h || !h->htable) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | return NULL; |
| 191 | |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 192 | hvalue = avtab_hash(key, h->mask); |
Stephen Smalley | ba39db6 | 2015-03-24 16:54:16 -0400 | [diff] [blame] | 193 | for (cur = flex_array_get_ptr(h->htable, hvalue); cur; |
| 194 | cur = cur->next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | if (key->source_type == cur->key.source_type && |
| 196 | key->target_type == cur->key.target_type && |
| 197 | key->target_class == cur->key.target_class && |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 198 | (specified & cur->key.specified)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | return &cur->datum; |
| 200 | |
| 201 | if (key->source_type < cur->key.source_type) |
| 202 | break; |
| 203 | if (key->source_type == cur->key.source_type && |
| 204 | key->target_type < cur->key.target_type) |
| 205 | break; |
| 206 | if (key->source_type == cur->key.source_type && |
| 207 | key->target_type == cur->key.target_type && |
| 208 | key->target_class < cur->key.target_class) |
| 209 | break; |
| 210 | } |
| 211 | |
| 212 | return NULL; |
| 213 | } |
| 214 | |
| 215 | /* This search function returns a node pointer, and can be used in |
| 216 | * conjunction with avtab_search_next_node() |
| 217 | */ |
| 218 | struct avtab_node* |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 219 | avtab_search_node(struct avtab *h, struct avtab_key *key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | { |
| 221 | int hvalue; |
| 222 | struct avtab_node *cur; |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 223 | u16 specified = key->specified & ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 225 | if (!h || !h->htable) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | return NULL; |
| 227 | |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 228 | hvalue = avtab_hash(key, h->mask); |
Stephen Smalley | ba39db6 | 2015-03-24 16:54:16 -0400 | [diff] [blame] | 229 | for (cur = flex_array_get_ptr(h->htable, hvalue); cur; |
| 230 | cur = cur->next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | if (key->source_type == cur->key.source_type && |
| 232 | key->target_type == cur->key.target_type && |
| 233 | key->target_class == cur->key.target_class && |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 234 | (specified & cur->key.specified)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | return cur; |
| 236 | |
| 237 | if (key->source_type < cur->key.source_type) |
| 238 | break; |
| 239 | if (key->source_type == cur->key.source_type && |
| 240 | key->target_type < cur->key.target_type) |
| 241 | break; |
| 242 | if (key->source_type == cur->key.source_type && |
| 243 | key->target_type == cur->key.target_type && |
| 244 | key->target_class < cur->key.target_class) |
| 245 | break; |
| 246 | } |
| 247 | return NULL; |
| 248 | } |
| 249 | |
| 250 | struct avtab_node* |
| 251 | avtab_search_node_next(struct avtab_node *node, int specified) |
| 252 | { |
| 253 | struct avtab_node *cur; |
| 254 | |
| 255 | if (!node) |
| 256 | return NULL; |
| 257 | |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 258 | specified &= ~(AVTAB_ENABLED|AVTAB_ENABLED_OLD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | for (cur = node->next; cur; cur = cur->next) { |
| 260 | if (node->key.source_type == cur->key.source_type && |
| 261 | node->key.target_type == cur->key.target_type && |
| 262 | node->key.target_class == cur->key.target_class && |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 263 | (specified & cur->key.specified)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | return cur; |
| 265 | |
| 266 | if (node->key.source_type < cur->key.source_type) |
| 267 | break; |
| 268 | if (node->key.source_type == cur->key.source_type && |
| 269 | node->key.target_type < cur->key.target_type) |
| 270 | break; |
| 271 | if (node->key.source_type == cur->key.source_type && |
| 272 | node->key.target_type == cur->key.target_type && |
| 273 | node->key.target_class < cur->key.target_class) |
| 274 | break; |
| 275 | } |
| 276 | return NULL; |
| 277 | } |
| 278 | |
| 279 | void avtab_destroy(struct avtab *h) |
| 280 | { |
| 281 | int i; |
| 282 | struct avtab_node *cur, *temp; |
| 283 | |
| 284 | if (!h || !h->htable) |
| 285 | return; |
| 286 | |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 287 | for (i = 0; i < h->nslot; i++) { |
Stephen Smalley | ba39db6 | 2015-03-24 16:54:16 -0400 | [diff] [blame] | 288 | cur = flex_array_get_ptr(h->htable, i); |
Vesa-Matti Kari | dbc74c6 | 2008-08-07 03:18:20 +0300 | [diff] [blame] | 289 | while (cur) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | temp = cur; |
| 291 | cur = cur->next; |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 292 | if (temp->key.specified & AVTAB_XPERMS) |
| 293 | kmem_cache_free(avtab_xperms_cachep, |
| 294 | temp->datum.u.xperms); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | kmem_cache_free(avtab_node_cachep, temp); |
| 296 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | } |
Stephen Smalley | ba39db6 | 2015-03-24 16:54:16 -0400 | [diff] [blame] | 298 | flex_array_free(h->htable); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | h->htable = NULL; |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 300 | h->nslot = 0; |
| 301 | h->mask = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | } |
| 303 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | int avtab_init(struct avtab *h) |
| 305 | { |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 306 | h->htable = NULL; |
| 307 | h->nel = 0; |
| 308 | return 0; |
| 309 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 311 | int avtab_alloc(struct avtab *h, u32 nrules) |
| 312 | { |
John Brooks | 33ebc193 | 2015-03-24 16:54:17 -0400 | [diff] [blame] | 313 | u32 mask = 0; |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 314 | u32 shift = 0; |
| 315 | u32 work = nrules; |
| 316 | u32 nslot = 0; |
| 317 | |
| 318 | if (nrules == 0) |
| 319 | goto avtab_alloc_out; |
| 320 | |
| 321 | while (work) { |
| 322 | work = work >> 1; |
| 323 | shift++; |
| 324 | } |
| 325 | if (shift > 2) |
| 326 | shift = shift - 2; |
| 327 | nslot = 1 << shift; |
Eric Paris | 00d85c8 | 2010-10-13 17:50:19 -0400 | [diff] [blame] | 328 | if (nslot > MAX_AVTAB_HASH_BUCKETS) |
| 329 | nslot = MAX_AVTAB_HASH_BUCKETS; |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 330 | mask = nslot - 1; |
| 331 | |
Stephen Smalley | ba39db6 | 2015-03-24 16:54:16 -0400 | [diff] [blame] | 332 | h->htable = flex_array_alloc(sizeof(struct avtab_node *), nslot, |
| 333 | GFP_KERNEL | __GFP_ZERO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | if (!h->htable) |
| 335 | return -ENOMEM; |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 336 | |
| 337 | avtab_alloc_out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | h->nel = 0; |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 339 | h->nslot = nslot; |
| 340 | h->mask = mask; |
James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 341 | printk(KERN_DEBUG "SELinux: %d avtab hash slots, %d rules.\n", |
| 342 | h->nslot, nrules); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | return 0; |
| 344 | } |
| 345 | |
| 346 | void avtab_hash_eval(struct avtab *h, char *tag) |
| 347 | { |
| 348 | int i, chain_len, slots_used, max_chain_len; |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 349 | unsigned long long chain2_len_sum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | struct avtab_node *cur; |
| 351 | |
| 352 | slots_used = 0; |
| 353 | max_chain_len = 0; |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 354 | chain2_len_sum = 0; |
| 355 | for (i = 0; i < h->nslot; i++) { |
Stephen Smalley | ba39db6 | 2015-03-24 16:54:16 -0400 | [diff] [blame] | 356 | cur = flex_array_get_ptr(h->htable, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | if (cur) { |
| 358 | slots_used++; |
| 359 | chain_len = 0; |
| 360 | while (cur) { |
| 361 | chain_len++; |
| 362 | cur = cur->next; |
| 363 | } |
| 364 | |
| 365 | if (chain_len > max_chain_len) |
| 366 | max_chain_len = chain_len; |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 367 | chain2_len_sum += chain_len * chain_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | } |
| 369 | } |
| 370 | |
Eric Paris | 744ba35 | 2008-04-17 11:52:44 -0400 | [diff] [blame] | 371 | printk(KERN_DEBUG "SELinux: %s: %d entries and %d/%d buckets used, " |
Eric Paris | f526971 | 2008-05-14 11:27:45 -0400 | [diff] [blame] | 372 | "longest chain length %d sum of chain length^2 %llu\n", |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 373 | tag, h->nel, slots_used, h->nslot, max_chain_len, |
| 374 | chain2_len_sum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | } |
| 376 | |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 377 | static uint16_t spec_order[] = { |
| 378 | AVTAB_ALLOWED, |
| 379 | AVTAB_AUDITDENY, |
| 380 | AVTAB_AUDITALLOW, |
| 381 | AVTAB_TRANSITION, |
| 382 | AVTAB_CHANGE, |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 383 | AVTAB_MEMBER, |
| 384 | AVTAB_XPERMS_ALLOWED, |
| 385 | AVTAB_XPERMS_AUDITALLOW, |
| 386 | AVTAB_XPERMS_DONTAUDIT |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 387 | }; |
| 388 | |
Stephen Smalley | 45e5421 | 2007-11-07 10:08:00 -0500 | [diff] [blame] | 389 | int avtab_read_item(struct avtab *a, void *fp, struct policydb *pol, |
Eric Paris | eb5df9a | 2008-04-18 17:38:28 -0400 | [diff] [blame] | 390 | int (*insertf)(struct avtab *a, struct avtab_key *k, |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 391 | struct avtab_datum *d, void *p), |
| 392 | void *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | { |
Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 394 | __le16 buf16[4]; |
| 395 | u16 enabled; |
Stephen Smalley | 45e5421 | 2007-11-07 10:08:00 -0500 | [diff] [blame] | 396 | u32 items, items2, val, vers = pol->policyvers; |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 397 | struct avtab_key key; |
| 398 | struct avtab_datum datum; |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 399 | struct avtab_extended_perms xperms; |
| 400 | __le32 buf32[ARRAY_SIZE(xperms.perms.p)]; |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 401 | int i, rc; |
Stephen Smalley | 45e5421 | 2007-11-07 10:08:00 -0500 | [diff] [blame] | 402 | unsigned set; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 404 | memset(&key, 0, sizeof(struct avtab_key)); |
| 405 | memset(&datum, 0, sizeof(struct avtab_datum)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 407 | if (vers < POLICYDB_VERSION_AVTAB) { |
| 408 | rc = next_entry(buf32, fp, sizeof(u32)); |
Dan Carpenter | 9e0bd4c | 2010-06-12 20:50:35 +0200 | [diff] [blame] | 409 | if (rc) { |
James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 410 | printk(KERN_ERR "SELinux: avtab: truncated entry\n"); |
Dan Carpenter | 9e0bd4c | 2010-06-12 20:50:35 +0200 | [diff] [blame] | 411 | return rc; |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 412 | } |
| 413 | items2 = le32_to_cpu(buf32[0]); |
| 414 | if (items2 > ARRAY_SIZE(buf32)) { |
James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 415 | printk(KERN_ERR "SELinux: avtab: entry overflow\n"); |
Dan Carpenter | 9e0bd4c | 2010-06-12 20:50:35 +0200 | [diff] [blame] | 416 | return -EINVAL; |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 417 | |
| 418 | } |
| 419 | rc = next_entry(buf32, fp, sizeof(u32)*items2); |
Dan Carpenter | 9e0bd4c | 2010-06-12 20:50:35 +0200 | [diff] [blame] | 420 | if (rc) { |
James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 421 | printk(KERN_ERR "SELinux: avtab: truncated entry\n"); |
Dan Carpenter | 9e0bd4c | 2010-06-12 20:50:35 +0200 | [diff] [blame] | 422 | return rc; |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 423 | } |
| 424 | items = 0; |
| 425 | |
| 426 | val = le32_to_cpu(buf32[items++]); |
| 427 | key.source_type = (u16)val; |
| 428 | if (key.source_type != val) { |
Eric Paris | 744ba35 | 2008-04-17 11:52:44 -0400 | [diff] [blame] | 429 | printk(KERN_ERR "SELinux: avtab: truncated source type\n"); |
Dan Carpenter | 9e0bd4c | 2010-06-12 20:50:35 +0200 | [diff] [blame] | 430 | return -EINVAL; |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 431 | } |
| 432 | val = le32_to_cpu(buf32[items++]); |
| 433 | key.target_type = (u16)val; |
| 434 | if (key.target_type != val) { |
Eric Paris | 744ba35 | 2008-04-17 11:52:44 -0400 | [diff] [blame] | 435 | printk(KERN_ERR "SELinux: avtab: truncated target type\n"); |
Dan Carpenter | 9e0bd4c | 2010-06-12 20:50:35 +0200 | [diff] [blame] | 436 | return -EINVAL; |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 437 | } |
| 438 | val = le32_to_cpu(buf32[items++]); |
| 439 | key.target_class = (u16)val; |
| 440 | if (key.target_class != val) { |
Eric Paris | 744ba35 | 2008-04-17 11:52:44 -0400 | [diff] [blame] | 441 | printk(KERN_ERR "SELinux: avtab: truncated target class\n"); |
Dan Carpenter | 9e0bd4c | 2010-06-12 20:50:35 +0200 | [diff] [blame] | 442 | return -EINVAL; |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 443 | } |
| 444 | |
| 445 | val = le32_to_cpu(buf32[items++]); |
| 446 | enabled = (val & AVTAB_ENABLED_OLD) ? AVTAB_ENABLED : 0; |
| 447 | |
| 448 | if (!(val & (AVTAB_AV | AVTAB_TYPE))) { |
Eric Paris | 744ba35 | 2008-04-17 11:52:44 -0400 | [diff] [blame] | 449 | printk(KERN_ERR "SELinux: avtab: null entry\n"); |
Dan Carpenter | 9e0bd4c | 2010-06-12 20:50:35 +0200 | [diff] [blame] | 450 | return -EINVAL; |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 451 | } |
| 452 | if ((val & AVTAB_AV) && |
| 453 | (val & AVTAB_TYPE)) { |
Eric Paris | 744ba35 | 2008-04-17 11:52:44 -0400 | [diff] [blame] | 454 | printk(KERN_ERR "SELinux: avtab: entry has both access vectors and types\n"); |
Dan Carpenter | 9e0bd4c | 2010-06-12 20:50:35 +0200 | [diff] [blame] | 455 | return -EINVAL; |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 456 | } |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 457 | if (val & AVTAB_XPERMS) { |
| 458 | printk(KERN_ERR "SELinux: avtab: entry has extended permissions\n"); |
| 459 | return -EINVAL; |
| 460 | } |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 461 | |
Tobias Klauser | 32725ad | 2006-01-06 00:11:23 -0800 | [diff] [blame] | 462 | for (i = 0; i < ARRAY_SIZE(spec_order); i++) { |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 463 | if (val & spec_order[i]) { |
| 464 | key.specified = spec_order[i] | enabled; |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 465 | datum.u.data = le32_to_cpu(buf32[items++]); |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 466 | rc = insertf(a, &key, &datum, p); |
Eric Paris | eb5df9a | 2008-04-18 17:38:28 -0400 | [diff] [blame] | 467 | if (rc) |
| 468 | return rc; |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 469 | } |
| 470 | } |
| 471 | |
| 472 | if (items != items2) { |
Eric Paris | 744ba35 | 2008-04-17 11:52:44 -0400 | [diff] [blame] | 473 | printk(KERN_ERR "SELinux: avtab: entry only had %d items, expected %d\n", items2, items); |
Dan Carpenter | 9e0bd4c | 2010-06-12 20:50:35 +0200 | [diff] [blame] | 474 | return -EINVAL; |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 475 | } |
| 476 | return 0; |
| 477 | } |
| 478 | |
| 479 | rc = next_entry(buf16, fp, sizeof(u16)*4); |
Dan Carpenter | 9e0bd4c | 2010-06-12 20:50:35 +0200 | [diff] [blame] | 480 | if (rc) { |
Eric Paris | 744ba35 | 2008-04-17 11:52:44 -0400 | [diff] [blame] | 481 | printk(KERN_ERR "SELinux: avtab: truncated entry\n"); |
Dan Carpenter | 9e0bd4c | 2010-06-12 20:50:35 +0200 | [diff] [blame] | 482 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | } |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 484 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | items = 0; |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 486 | key.source_type = le16_to_cpu(buf16[items++]); |
| 487 | key.target_type = le16_to_cpu(buf16[items++]); |
| 488 | key.target_class = le16_to_cpu(buf16[items++]); |
| 489 | key.specified = le16_to_cpu(buf16[items++]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | |
Stephen Smalley | 45e5421 | 2007-11-07 10:08:00 -0500 | [diff] [blame] | 491 | if (!policydb_type_isvalid(pol, key.source_type) || |
| 492 | !policydb_type_isvalid(pol, key.target_type) || |
| 493 | !policydb_class_isvalid(pol, key.target_class)) { |
Eric Paris | 744ba35 | 2008-04-17 11:52:44 -0400 | [diff] [blame] | 494 | printk(KERN_ERR "SELinux: avtab: invalid type or class\n"); |
Dan Carpenter | 9e0bd4c | 2010-06-12 20:50:35 +0200 | [diff] [blame] | 495 | return -EINVAL; |
Stephen Smalley | 45e5421 | 2007-11-07 10:08:00 -0500 | [diff] [blame] | 496 | } |
| 497 | |
| 498 | set = 0; |
| 499 | for (i = 0; i < ARRAY_SIZE(spec_order); i++) { |
| 500 | if (key.specified & spec_order[i]) |
| 501 | set++; |
| 502 | } |
| 503 | if (!set || set > 1) { |
Eric Paris | 744ba35 | 2008-04-17 11:52:44 -0400 | [diff] [blame] | 504 | printk(KERN_ERR "SELinux: avtab: more than one specifier\n"); |
Dan Carpenter | 9e0bd4c | 2010-06-12 20:50:35 +0200 | [diff] [blame] | 505 | return -EINVAL; |
Stephen Smalley | 45e5421 | 2007-11-07 10:08:00 -0500 | [diff] [blame] | 506 | } |
| 507 | |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 508 | if ((vers < POLICYDB_VERSION_XPERMS_IOCTL) && |
| 509 | (key.specified & AVTAB_XPERMS)) { |
| 510 | printk(KERN_ERR "SELinux: avtab: policy version %u does not " |
| 511 | "support extended permissions rules and one " |
| 512 | "was specified\n", vers); |
| 513 | return -EINVAL; |
| 514 | } else if (key.specified & AVTAB_XPERMS) { |
| 515 | memset(&xperms, 0, sizeof(struct avtab_extended_perms)); |
| 516 | rc = next_entry(&xperms.specified, fp, sizeof(u8)); |
| 517 | if (rc) { |
| 518 | printk(KERN_ERR "SELinux: avtab: truncated entry\n"); |
| 519 | return rc; |
| 520 | } |
| 521 | rc = next_entry(&xperms.driver, fp, sizeof(u8)); |
| 522 | if (rc) { |
| 523 | printk(KERN_ERR "SELinux: avtab: truncated entry\n"); |
| 524 | return rc; |
| 525 | } |
| 526 | rc = next_entry(buf32, fp, sizeof(u32)*ARRAY_SIZE(xperms.perms.p)); |
| 527 | if (rc) { |
| 528 | printk(KERN_ERR "SELinux: avtab: truncated entry\n"); |
| 529 | return rc; |
| 530 | } |
| 531 | for (i = 0; i < ARRAY_SIZE(xperms.perms.p); i++) |
| 532 | xperms.perms.p[i] = le32_to_cpu(buf32[i]); |
| 533 | datum.u.xperms = &xperms; |
| 534 | } else { |
| 535 | rc = next_entry(buf32, fp, sizeof(u32)); |
| 536 | if (rc) { |
| 537 | printk(KERN_ERR "SELinux: avtab: truncated entry\n"); |
| 538 | return rc; |
| 539 | } |
| 540 | datum.u.data = le32_to_cpu(*buf32); |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 541 | } |
Stephen Smalley | 45e5421 | 2007-11-07 10:08:00 -0500 | [diff] [blame] | 542 | if ((key.specified & AVTAB_TYPE) && |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 543 | !policydb_type_isvalid(pol, datum.u.data)) { |
Eric Paris | 744ba35 | 2008-04-17 11:52:44 -0400 | [diff] [blame] | 544 | printk(KERN_ERR "SELinux: avtab: invalid type\n"); |
Dan Carpenter | 9e0bd4c | 2010-06-12 20:50:35 +0200 | [diff] [blame] | 545 | return -EINVAL; |
Stephen Smalley | 45e5421 | 2007-11-07 10:08:00 -0500 | [diff] [blame] | 546 | } |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 547 | return insertf(a, &key, &datum, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | } |
| 549 | |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 550 | static int avtab_insertf(struct avtab *a, struct avtab_key *k, |
| 551 | struct avtab_datum *d, void *p) |
| 552 | { |
| 553 | return avtab_insert(a, k, d); |
| 554 | } |
| 555 | |
Stephen Smalley | 45e5421 | 2007-11-07 10:08:00 -0500 | [diff] [blame] | 556 | int avtab_read(struct avtab *a, void *fp, struct policydb *pol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | { |
| 558 | int rc; |
Alexey Dobriyan | b5bf6c5 | 2005-09-03 15:55:17 -0700 | [diff] [blame] | 559 | __le32 buf[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | u32 nel, i; |
| 561 | |
| 562 | |
| 563 | rc = next_entry(buf, fp, sizeof(u32)); |
| 564 | if (rc < 0) { |
James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 565 | printk(KERN_ERR "SELinux: avtab: truncated table\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | goto bad; |
| 567 | } |
| 568 | nel = le32_to_cpu(buf[0]); |
| 569 | if (!nel) { |
James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 570 | printk(KERN_ERR "SELinux: avtab: table is empty\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | rc = -EINVAL; |
| 572 | goto bad; |
| 573 | } |
Yuichi Nakamura | 3232c11 | 2007-08-24 11:55:11 +0900 | [diff] [blame] | 574 | |
| 575 | rc = avtab_alloc(a, nel); |
| 576 | if (rc) |
| 577 | goto bad; |
| 578 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | for (i = 0; i < nel; i++) { |
Stephen Smalley | 45e5421 | 2007-11-07 10:08:00 -0500 | [diff] [blame] | 580 | rc = avtab_read_item(a, fp, pol, avtab_insertf, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | if (rc) { |
| 582 | if (rc == -ENOMEM) |
James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 583 | printk(KERN_ERR "SELinux: avtab: out of memory\n"); |
Stephen Smalley | 782ebb9 | 2005-09-03 15:55:16 -0700 | [diff] [blame] | 584 | else if (rc == -EEXIST) |
James Morris | 454d972 | 2008-02-26 20:42:02 +1100 | [diff] [blame] | 585 | printk(KERN_ERR "SELinux: avtab: duplicate entry\n"); |
Dan Carpenter | 9e0bd4c | 2010-06-12 20:50:35 +0200 | [diff] [blame] | 586 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | goto bad; |
| 588 | } |
| 589 | } |
| 590 | |
| 591 | rc = 0; |
| 592 | out: |
| 593 | return rc; |
| 594 | |
| 595 | bad: |
| 596 | avtab_destroy(a); |
| 597 | goto out; |
| 598 | } |
| 599 | |
Eric Paris | cee74f4 | 2010-10-13 17:50:25 -0400 | [diff] [blame] | 600 | int avtab_write_item(struct policydb *p, struct avtab_node *cur, void *fp) |
| 601 | { |
| 602 | __le16 buf16[4]; |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 603 | __le32 buf32[ARRAY_SIZE(cur->datum.u.xperms->perms.p)]; |
Eric Paris | cee74f4 | 2010-10-13 17:50:25 -0400 | [diff] [blame] | 604 | int rc; |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 605 | unsigned int i; |
Eric Paris | cee74f4 | 2010-10-13 17:50:25 -0400 | [diff] [blame] | 606 | |
| 607 | buf16[0] = cpu_to_le16(cur->key.source_type); |
| 608 | buf16[1] = cpu_to_le16(cur->key.target_type); |
| 609 | buf16[2] = cpu_to_le16(cur->key.target_class); |
| 610 | buf16[3] = cpu_to_le16(cur->key.specified); |
| 611 | rc = put_entry(buf16, sizeof(u16), 4, fp); |
| 612 | if (rc) |
| 613 | return rc; |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 614 | |
| 615 | if (cur->key.specified & AVTAB_XPERMS) { |
| 616 | rc = put_entry(&cur->datum.u.xperms->specified, sizeof(u8), 1, fp); |
| 617 | if (rc) |
| 618 | return rc; |
| 619 | rc = put_entry(&cur->datum.u.xperms->driver, sizeof(u8), 1, fp); |
| 620 | if (rc) |
| 621 | return rc; |
| 622 | for (i = 0; i < ARRAY_SIZE(cur->datum.u.xperms->perms.p); i++) |
| 623 | buf32[i] = cpu_to_le32(cur->datum.u.xperms->perms.p[i]); |
| 624 | rc = put_entry(buf32, sizeof(u32), |
| 625 | ARRAY_SIZE(cur->datum.u.xperms->perms.p), fp); |
| 626 | } else { |
| 627 | buf32[0] = cpu_to_le32(cur->datum.u.data); |
| 628 | rc = put_entry(buf32, sizeof(u32), 1, fp); |
| 629 | } |
Eric Paris | cee74f4 | 2010-10-13 17:50:25 -0400 | [diff] [blame] | 630 | if (rc) |
| 631 | return rc; |
| 632 | return 0; |
| 633 | } |
| 634 | |
| 635 | int avtab_write(struct policydb *p, struct avtab *a, void *fp) |
| 636 | { |
| 637 | unsigned int i; |
| 638 | int rc = 0; |
| 639 | struct avtab_node *cur; |
| 640 | __le32 buf[1]; |
| 641 | |
| 642 | buf[0] = cpu_to_le32(a->nel); |
| 643 | rc = put_entry(buf, sizeof(u32), 1, fp); |
| 644 | if (rc) |
| 645 | return rc; |
| 646 | |
| 647 | for (i = 0; i < a->nslot; i++) { |
Stephen Smalley | ba39db6 | 2015-03-24 16:54:16 -0400 | [diff] [blame] | 648 | for (cur = flex_array_get_ptr(a->htable, i); cur; |
| 649 | cur = cur->next) { |
Eric Paris | cee74f4 | 2010-10-13 17:50:25 -0400 | [diff] [blame] | 650 | rc = avtab_write_item(p, cur, fp); |
| 651 | if (rc) |
| 652 | return rc; |
| 653 | } |
| 654 | } |
| 655 | |
| 656 | return rc; |
| 657 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | void avtab_cache_init(void) |
| 659 | { |
| 660 | avtab_node_cachep = kmem_cache_create("avtab_node", |
| 661 | sizeof(struct avtab_node), |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 662 | 0, SLAB_PANIC, NULL); |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 663 | avtab_xperms_cachep = kmem_cache_create("avtab_extended_perms", |
| 664 | sizeof(struct avtab_extended_perms), |
| 665 | 0, SLAB_PANIC, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | } |
| 667 | |
| 668 | void avtab_cache_destroy(void) |
| 669 | { |
Eric Paris | eb5df9a | 2008-04-18 17:38:28 -0400 | [diff] [blame] | 670 | kmem_cache_destroy(avtab_node_cachep); |
Jeff Vander Stoep | fa1aa14 | 2015-07-10 17:19:56 -0400 | [diff] [blame] | 671 | kmem_cache_destroy(avtab_xperms_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | } |