blob: 2bb9c2fd5f1a3c36597d7bef09571c1d481b22ea [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Implementation of the policy database.
3 *
4 * Author : Stephen Smalley, <sds@epoch.ncsc.mil>
5 */
6
7/*
8 * Updated: Trusted Computer Solutions, Inc. <dgoeddel@trustedcs.com>
9 *
10 * Support for enhanced MLS infrastructure.
11 *
12 * Updated: Frank Mayer <mayerf@tresys.com> and Karl MacMillan <kmacmillan@tresys.com>
13 *
Eric Paris2ced3df2008-04-17 13:37:12 -040014 * Added conditional policy language extensions
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
Paul Moore82c21bf2011-08-01 11:10:33 +000016 * Updated: Hewlett-Packard <paul@paul-moore.com>
Paul Moore3bb56b22008-01-29 08:38:19 -050017 *
18 * Added support for the policy capability bitmap
19 *
20 * Copyright (C) 2007 Hewlett-Packard Development Company, L.P.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * Copyright (C) 2004-2005 Trusted Computer Solutions, Inc.
22 * Copyright (C) 2003 - 2004 Tresys Technology, LLC
23 * This program is free software; you can redistribute it and/or modify
Eric Paris2ced3df2008-04-17 13:37:12 -040024 * it under the terms of the GNU General Public License as published by
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * the Free Software Foundation, version 2.
26 */
27
28#include <linux/kernel.h>
Eric Paris9dc99782007-06-04 17:41:22 -040029#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/slab.h>
31#include <linux/string.h>
32#include <linux/errno.h>
KaiGai Koheid9250de2008-08-28 16:35:57 +090033#include <linux/audit.h>
Eric Paris6371dcd2010-07-29 23:02:34 -040034#include <linux/flex_array.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "security.h"
36
37#include "policydb.h"
38#include "conditional.h"
39#include "mls.h"
Eric Pariscee74f42010-10-13 17:50:25 -040040#include "services.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#define _DEBUG_HASHES
43
44#ifdef DEBUG_HASHES
Stephen Hemminger634a5392010-03-04 21:59:03 -080045static const char *symtab_name[SYM_NUM] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 "common prefixes",
47 "classes",
48 "roles",
49 "types",
50 "users",
51 "bools",
52 "levels",
53 "categories",
54};
55#endif
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static unsigned int symtab_sizes[SYM_NUM] = {
58 2,
59 32,
60 16,
61 512,
62 128,
63 16,
64 16,
65 16,
66};
67
68struct policydb_compat_info {
69 int version;
70 int sym_num;
71 int ocon_num;
72};
73
74/* These need to be updated if SYM_NUM or OCON_NUM changes */
75static struct policydb_compat_info policydb_compat[] = {
76 {
Eric Paris2ced3df2008-04-17 13:37:12 -040077 .version = POLICYDB_VERSION_BASE,
78 .sym_num = SYM_NUM - 3,
79 .ocon_num = OCON_NUM - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 },
81 {
Eric Paris2ced3df2008-04-17 13:37:12 -040082 .version = POLICYDB_VERSION_BOOL,
83 .sym_num = SYM_NUM - 2,
84 .ocon_num = OCON_NUM - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 },
86 {
Eric Paris2ced3df2008-04-17 13:37:12 -040087 .version = POLICYDB_VERSION_IPV6,
88 .sym_num = SYM_NUM - 2,
89 .ocon_num = OCON_NUM,
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 },
91 {
Eric Paris2ced3df2008-04-17 13:37:12 -040092 .version = POLICYDB_VERSION_NLCLASS,
93 .sym_num = SYM_NUM - 2,
94 .ocon_num = OCON_NUM,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 },
96 {
Eric Paris2ced3df2008-04-17 13:37:12 -040097 .version = POLICYDB_VERSION_MLS,
98 .sym_num = SYM_NUM,
99 .ocon_num = OCON_NUM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 },
Stephen Smalley782ebb92005-09-03 15:55:16 -0700101 {
Eric Paris2ced3df2008-04-17 13:37:12 -0400102 .version = POLICYDB_VERSION_AVTAB,
103 .sym_num = SYM_NUM,
104 .ocon_num = OCON_NUM,
Stephen Smalley782ebb92005-09-03 15:55:16 -0700105 },
Darrel Goeddelf3f87712006-09-25 23:31:59 -0700106 {
Eric Paris2ced3df2008-04-17 13:37:12 -0400107 .version = POLICYDB_VERSION_RANGETRANS,
108 .sym_num = SYM_NUM,
109 .ocon_num = OCON_NUM,
Darrel Goeddelf3f87712006-09-25 23:31:59 -0700110 },
Paul Moore3bb56b22008-01-29 08:38:19 -0500111 {
112 .version = POLICYDB_VERSION_POLCAP,
113 .sym_num = SYM_NUM,
114 .ocon_num = OCON_NUM,
Eric Paris64dbf072008-03-31 12:17:33 +1100115 },
116 {
117 .version = POLICYDB_VERSION_PERMISSIVE,
118 .sym_num = SYM_NUM,
119 .ocon_num = OCON_NUM,
KaiGai Koheid9250de2008-08-28 16:35:57 +0900120 },
121 {
122 .version = POLICYDB_VERSION_BOUNDARY,
123 .sym_num = SYM_NUM,
124 .ocon_num = OCON_NUM,
125 },
Eric Paris652bb9b2011-02-01 11:05:40 -0500126 {
127 .version = POLICYDB_VERSION_FILENAME_TRANS,
128 .sym_num = SYM_NUM,
129 .ocon_num = OCON_NUM,
130 },
Harry Ciao80239762011-03-25 13:51:56 +0800131 {
132 .version = POLICYDB_VERSION_ROLETRANS,
133 .sym_num = SYM_NUM,
134 .ocon_num = OCON_NUM,
135 },
Eric Parisaa893262012-03-20 14:35:12 -0400136 {
137 .version = POLICYDB_VERSION_NEW_OBJECT_DEFAULTS,
138 .sym_num = SYM_NUM,
139 .ocon_num = OCON_NUM,
140 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141};
142
143static struct policydb_compat_info *policydb_lookup_compat(int version)
144{
145 int i;
146 struct policydb_compat_info *info = NULL;
147
Tobias Klauser32725ad2006-01-06 00:11:23 -0800148 for (i = 0; i < ARRAY_SIZE(policydb_compat); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 if (policydb_compat[i].version == version) {
150 info = &policydb_compat[i];
151 break;
152 }
153 }
154 return info;
155}
156
157/*
158 * Initialize the role table.
159 */
160static int roles_init(struct policydb *p)
161{
162 char *key = NULL;
163 int rc;
164 struct role_datum *role;
165
Eric Paris9398c7f2010-11-23 11:40:08 -0500166 rc = -ENOMEM;
James Morris89d155e2005-10-30 14:59:21 -0800167 role = kzalloc(sizeof(*role), GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -0500168 if (!role)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 goto out;
Eric Paris9398c7f2010-11-23 11:40:08 -0500170
171 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 role->value = ++p->p_roles.nprim;
Eric Paris9398c7f2010-11-23 11:40:08 -0500173 if (role->value != OBJECT_R_VAL)
174 goto out;
175
176 rc = -ENOMEM;
Julia Lawallb3139bb2010-05-14 21:30:30 +0200177 key = kstrdup(OBJECT_R, GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -0500178 if (!key)
179 goto out;
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 rc = hashtab_insert(p->p_roles.table, key, role);
182 if (rc)
Eric Paris9398c7f2010-11-23 11:40:08 -0500183 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Eric Paris9398c7f2010-11-23 11:40:08 -0500185 return 0;
186out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 kfree(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 kfree(role);
Eric Paris9398c7f2010-11-23 11:40:08 -0500189 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
Eric Paris2463c26d2011-04-28 15:11:21 -0400192static u32 filenametr_hash(struct hashtab *h, const void *k)
193{
194 const struct filename_trans *ft = k;
195 unsigned long hash;
196 unsigned int byte_num;
197 unsigned char focus;
198
199 hash = ft->stype ^ ft->ttype ^ ft->tclass;
200
201 byte_num = 0;
202 while ((focus = ft->name[byte_num++]))
203 hash = partial_name_hash(focus, hash);
204 return hash & (h->size - 1);
205}
206
207static int filenametr_cmp(struct hashtab *h, const void *k1, const void *k2)
208{
209 const struct filename_trans *ft1 = k1;
210 const struct filename_trans *ft2 = k2;
211 int v;
212
213 v = ft1->stype - ft2->stype;
214 if (v)
215 return v;
216
217 v = ft1->ttype - ft2->ttype;
218 if (v)
219 return v;
220
221 v = ft1->tclass - ft2->tclass;
222 if (v)
223 return v;
224
225 return strcmp(ft1->name, ft2->name);
226
227}
228
Stephen Smalley2f3e82d2010-01-07 15:55:16 -0500229static u32 rangetr_hash(struct hashtab *h, const void *k)
230{
231 const struct range_trans *key = k;
232 return (key->source_type + (key->target_type << 3) +
233 (key->target_class << 5)) & (h->size - 1);
234}
235
236static int rangetr_cmp(struct hashtab *h, const void *k1, const void *k2)
237{
238 const struct range_trans *key1 = k1, *key2 = k2;
Eric Paris4419aae2010-10-13 17:50:14 -0400239 int v;
240
241 v = key1->source_type - key2->source_type;
242 if (v)
243 return v;
244
245 v = key1->target_type - key2->target_type;
246 if (v)
247 return v;
248
249 v = key1->target_class - key2->target_class;
250
251 return v;
Stephen Smalley2f3e82d2010-01-07 15:55:16 -0500252}
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254/*
255 * Initialize a policy database structure.
256 */
257static int policydb_init(struct policydb *p)
258{
259 int i, rc;
260
261 memset(p, 0, sizeof(*p));
262
263 for (i = 0; i < SYM_NUM; i++) {
264 rc = symtab_init(&p->symtab[i], symtab_sizes[i]);
265 if (rc)
Eric Paris9398c7f2010-11-23 11:40:08 -0500266 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
268
269 rc = avtab_init(&p->te_avtab);
270 if (rc)
Eric Paris9398c7f2010-11-23 11:40:08 -0500271 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 rc = roles_init(p);
274 if (rc)
Eric Paris9398c7f2010-11-23 11:40:08 -0500275 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 rc = cond_policydb_init(p);
278 if (rc)
Eric Paris9398c7f2010-11-23 11:40:08 -0500279 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Eric Paris2463c26d2011-04-28 15:11:21 -0400281 p->filename_trans = hashtab_create(filenametr_hash, filenametr_cmp, (1 << 10));
282 if (!p->filename_trans)
283 goto out;
284
Stephen Smalley2f3e82d2010-01-07 15:55:16 -0500285 p->range_tr = hashtab_create(rangetr_hash, rangetr_cmp, 256);
286 if (!p->range_tr)
Eric Paris9398c7f2010-11-23 11:40:08 -0500287 goto out;
Stephen Smalley2f3e82d2010-01-07 15:55:16 -0500288
Eric Paris03a4c0182011-04-28 15:11:21 -0400289 ebitmap_init(&p->filename_trans_ttypes);
Paul Moore3bb56b22008-01-29 08:38:19 -0500290 ebitmap_init(&p->policycaps);
Eric Paris64dbf072008-03-31 12:17:33 +1100291 ebitmap_init(&p->permissive_map);
Paul Moore3bb56b22008-01-29 08:38:19 -0500292
Eric Paris9398c7f2010-11-23 11:40:08 -0500293 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294out:
Eric Paris2463c26d2011-04-28 15:11:21 -0400295 hashtab_destroy(p->filename_trans);
296 hashtab_destroy(p->range_tr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 for (i = 0; i < SYM_NUM; i++)
298 hashtab_destroy(p->symtab[i].table);
Eric Paris9398c7f2010-11-23 11:40:08 -0500299 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
302/*
303 * The following *_index functions are used to
304 * define the val_to_name and val_to_struct arrays
305 * in a policy database structure. The val_to_name
306 * arrays are used when converting security context
307 * structures into string representations. The
308 * val_to_struct arrays are used when the attributes
309 * of a class, role, or user are needed.
310 */
311
312static int common_index(void *key, void *datum, void *datap)
313{
314 struct policydb *p;
315 struct common_datum *comdatum;
Eric Parisac76c052010-11-29 15:47:09 -0500316 struct flex_array *fa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 comdatum = datum;
319 p = datap;
320 if (!comdatum->value || comdatum->value > p->p_commons.nprim)
321 return -EINVAL;
Eric Parisac76c052010-11-29 15:47:09 -0500322
323 fa = p->sym_val_to_name[SYM_COMMONS];
324 if (flex_array_put_ptr(fa, comdatum->value - 1, key,
325 GFP_KERNEL | __GFP_ZERO))
326 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 return 0;
328}
329
330static int class_index(void *key, void *datum, void *datap)
331{
332 struct policydb *p;
333 struct class_datum *cladatum;
Eric Parisac76c052010-11-29 15:47:09 -0500334 struct flex_array *fa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 cladatum = datum;
337 p = datap;
338 if (!cladatum->value || cladatum->value > p->p_classes.nprim)
339 return -EINVAL;
Eric Parisac76c052010-11-29 15:47:09 -0500340 fa = p->sym_val_to_name[SYM_CLASSES];
341 if (flex_array_put_ptr(fa, cladatum->value - 1, key,
342 GFP_KERNEL | __GFP_ZERO))
343 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 p->class_val_to_struct[cladatum->value - 1] = cladatum;
345 return 0;
346}
347
348static int role_index(void *key, void *datum, void *datap)
349{
350 struct policydb *p;
351 struct role_datum *role;
Eric Parisac76c052010-11-29 15:47:09 -0500352 struct flex_array *fa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 role = datum;
355 p = datap;
KaiGai Koheid9250de2008-08-28 16:35:57 +0900356 if (!role->value
357 || role->value > p->p_roles.nprim
358 || role->bounds > p->p_roles.nprim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return -EINVAL;
Eric Parisac76c052010-11-29 15:47:09 -0500360
361 fa = p->sym_val_to_name[SYM_ROLES];
362 if (flex_array_put_ptr(fa, role->value - 1, key,
363 GFP_KERNEL | __GFP_ZERO))
364 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 p->role_val_to_struct[role->value - 1] = role;
366 return 0;
367}
368
369static int type_index(void *key, void *datum, void *datap)
370{
371 struct policydb *p;
372 struct type_datum *typdatum;
Eric Parisac76c052010-11-29 15:47:09 -0500373 struct flex_array *fa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 typdatum = datum;
376 p = datap;
377
378 if (typdatum->primary) {
KaiGai Koheid9250de2008-08-28 16:35:57 +0900379 if (!typdatum->value
380 || typdatum->value > p->p_types.nprim
381 || typdatum->bounds > p->p_types.nprim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return -EINVAL;
Eric Parisac76c052010-11-29 15:47:09 -0500383 fa = p->sym_val_to_name[SYM_TYPES];
384 if (flex_array_put_ptr(fa, typdatum->value - 1, key,
385 GFP_KERNEL | __GFP_ZERO))
386 BUG();
387
388 fa = p->type_val_to_struct_array;
389 if (flex_array_put_ptr(fa, typdatum->value - 1, typdatum,
Eric Paris23bdecb2010-11-29 15:47:09 -0500390 GFP_KERNEL | __GFP_ZERO))
391 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
393
394 return 0;
395}
396
397static int user_index(void *key, void *datum, void *datap)
398{
399 struct policydb *p;
400 struct user_datum *usrdatum;
Eric Parisac76c052010-11-29 15:47:09 -0500401 struct flex_array *fa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 usrdatum = datum;
404 p = datap;
KaiGai Koheid9250de2008-08-28 16:35:57 +0900405 if (!usrdatum->value
406 || usrdatum->value > p->p_users.nprim
407 || usrdatum->bounds > p->p_users.nprim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return -EINVAL;
Eric Parisac76c052010-11-29 15:47:09 -0500409
410 fa = p->sym_val_to_name[SYM_USERS];
411 if (flex_array_put_ptr(fa, usrdatum->value - 1, key,
412 GFP_KERNEL | __GFP_ZERO))
413 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 p->user_val_to_struct[usrdatum->value - 1] = usrdatum;
415 return 0;
416}
417
418static int sens_index(void *key, void *datum, void *datap)
419{
420 struct policydb *p;
421 struct level_datum *levdatum;
Eric Parisac76c052010-11-29 15:47:09 -0500422 struct flex_array *fa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 levdatum = datum;
425 p = datap;
426
427 if (!levdatum->isalias) {
428 if (!levdatum->level->sens ||
429 levdatum->level->sens > p->p_levels.nprim)
430 return -EINVAL;
Eric Parisac76c052010-11-29 15:47:09 -0500431 fa = p->sym_val_to_name[SYM_LEVELS];
432 if (flex_array_put_ptr(fa, levdatum->level->sens - 1, key,
433 GFP_KERNEL | __GFP_ZERO))
434 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
436
437 return 0;
438}
439
440static int cat_index(void *key, void *datum, void *datap)
441{
442 struct policydb *p;
443 struct cat_datum *catdatum;
Eric Parisac76c052010-11-29 15:47:09 -0500444 struct flex_array *fa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 catdatum = datum;
447 p = datap;
448
449 if (!catdatum->isalias) {
450 if (!catdatum->value || catdatum->value > p->p_cats.nprim)
451 return -EINVAL;
Eric Parisac76c052010-11-29 15:47:09 -0500452 fa = p->sym_val_to_name[SYM_CATS];
453 if (flex_array_put_ptr(fa, catdatum->value - 1, key,
454 GFP_KERNEL | __GFP_ZERO))
455 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
457
458 return 0;
459}
460
461static int (*index_f[SYM_NUM]) (void *key, void *datum, void *datap) =
462{
463 common_index,
464 class_index,
465 role_index,
466 type_index,
467 user_index,
468 cond_index_bool,
469 sens_index,
470 cat_index,
471};
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473#ifdef DEBUG_HASHES
Eric Parisbe30b162011-04-28 15:11:21 -0400474static void hash_eval(struct hashtab *h, const char *hash_name)
Stephen Smalley2f3e82d2010-01-07 15:55:16 -0500475{
476 struct hashtab_info info;
477
478 hashtab_stat(h, &info);
Eric Parisbe30b162011-04-28 15:11:21 -0400479 printk(KERN_DEBUG "SELinux: %s: %d entries and %d/%d buckets used, "
480 "longest chain length %d\n", hash_name, h->nel,
Stephen Smalley2f3e82d2010-01-07 15:55:16 -0500481 info.slots_used, h->size, info.max_chain_len);
482}
Eric Parisbe30b162011-04-28 15:11:21 -0400483
484static void symtab_hash_eval(struct symtab *s)
485{
486 int i;
487
488 for (i = 0; i < SYM_NUM; i++)
489 hash_eval(s[i].table, symtab_name[i]);
490}
491
Stephen Smalley2f3e82d2010-01-07 15:55:16 -0500492#else
Eric Parisbe30b162011-04-28 15:11:21 -0400493static inline void hash_eval(struct hashtab *h, char *hash_name)
Stephen Smalley2f3e82d2010-01-07 15:55:16 -0500494{
495}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496#endif
497
498/*
499 * Define the other val_to_name and val_to_struct arrays
500 * in a policy database structure.
501 *
502 * Caller must clean up on failure.
503 */
Eric Paris1d9bc6dc2010-11-29 15:47:09 -0500504static int policydb_index(struct policydb *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Eric Paris9398c7f2010-11-23 11:40:08 -0500506 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
James Morris454d9722008-02-26 20:42:02 +1100508 printk(KERN_DEBUG "SELinux: %d users, %d roles, %d types, %d bools",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 p->p_users.nprim, p->p_roles.nprim, p->p_types.nprim, p->p_bools.nprim);
Guido Trentalancia0719aaf2010-02-03 16:40:20 +0100510 if (p->mls_enabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 printk(", %d sens, %d cats", p->p_levels.nprim,
512 p->p_cats.nprim);
513 printk("\n");
514
James Morris454d9722008-02-26 20:42:02 +1100515 printk(KERN_DEBUG "SELinux: %d classes, %d rules\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 p->p_classes.nprim, p->te_avtab.nel);
517
518#ifdef DEBUG_HASHES
519 avtab_hash_eval(&p->te_avtab, "rules");
520 symtab_hash_eval(p->symtab);
521#endif
522
Eric Paris9398c7f2010-11-23 11:40:08 -0500523 rc = -ENOMEM;
Eric Paris1d9bc6dc2010-11-29 15:47:09 -0500524 p->class_val_to_struct =
525 kmalloc(p->p_classes.nprim * sizeof(*(p->class_val_to_struct)),
526 GFP_KERNEL);
527 if (!p->class_val_to_struct)
528 goto out;
529
530 rc = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 p->role_val_to_struct =
532 kmalloc(p->p_roles.nprim * sizeof(*(p->role_val_to_struct)),
Eric Paris2ced3df2008-04-17 13:37:12 -0400533 GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -0500534 if (!p->role_val_to_struct)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Eric Paris9398c7f2010-11-23 11:40:08 -0500537 rc = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 p->user_val_to_struct =
539 kmalloc(p->p_users.nprim * sizeof(*(p->user_val_to_struct)),
Eric Paris2ced3df2008-04-17 13:37:12 -0400540 GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -0500541 if (!p->user_val_to_struct)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Eric Paris23bdecb2010-11-29 15:47:09 -0500544 /* Yes, I want the sizeof the pointer, not the structure */
Eric Paris9398c7f2010-11-23 11:40:08 -0500545 rc = -ENOMEM;
Eric Paris23bdecb2010-11-29 15:47:09 -0500546 p->type_val_to_struct_array = flex_array_alloc(sizeof(struct type_datum *),
547 p->p_types.nprim,
548 GFP_KERNEL | __GFP_ZERO);
549 if (!p->type_val_to_struct_array)
550 goto out;
551
552 rc = flex_array_prealloc(p->type_val_to_struct_array, 0,
Eric Paris5a3ea872011-04-28 15:55:52 -0400553 p->p_types.nprim, GFP_KERNEL | __GFP_ZERO);
Eric Paris23bdecb2010-11-29 15:47:09 -0500554 if (rc)
KaiGai Koheid9250de2008-08-28 16:35:57 +0900555 goto out;
KaiGai Koheid9250de2008-08-28 16:35:57 +0900556
Davidlohr Bueso3ac285f2011-01-21 12:28:04 -0300557 rc = cond_init_bool_indexes(p);
558 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Eric Paris1d9bc6dc2010-11-29 15:47:09 -0500561 for (i = 0; i < SYM_NUM; i++) {
Eric Paris9398c7f2010-11-23 11:40:08 -0500562 rc = -ENOMEM;
Eric Parisac76c052010-11-29 15:47:09 -0500563 p->sym_val_to_name[i] = flex_array_alloc(sizeof(char *),
564 p->symtab[i].nprim,
565 GFP_KERNEL | __GFP_ZERO);
Eric Paris9398c7f2010-11-23 11:40:08 -0500566 if (!p->sym_val_to_name[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 goto out;
Eric Parisac76c052010-11-29 15:47:09 -0500568
569 rc = flex_array_prealloc(p->sym_val_to_name[i],
Eric Paris5a3ea872011-04-28 15:55:52 -0400570 0, p->symtab[i].nprim,
Eric Parisac76c052010-11-29 15:47:09 -0500571 GFP_KERNEL | __GFP_ZERO);
572 if (rc)
573 goto out;
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 rc = hashtab_map(p->symtab[i].table, index_f[i], p);
576 if (rc)
577 goto out;
578 }
Eric Paris9398c7f2010-11-23 11:40:08 -0500579 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580out:
581 return rc;
582}
583
584/*
585 * The following *_destroy functions are used to
586 * free any memory allocated for each kind of
587 * symbol data in the policy database.
588 */
589
590static int perm_destroy(void *key, void *datum, void *p)
591{
592 kfree(key);
593 kfree(datum);
594 return 0;
595}
596
597static int common_destroy(void *key, void *datum, void *p)
598{
599 struct common_datum *comdatum;
600
601 kfree(key);
Eric Paris9398c7f2010-11-23 11:40:08 -0500602 if (datum) {
603 comdatum = datum;
604 hashtab_map(comdatum->permissions.table, perm_destroy, NULL);
605 hashtab_destroy(comdatum->permissions.table);
606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 kfree(datum);
608 return 0;
609}
610
James Morris6cbda6b2006-11-29 16:50:27 -0500611static int cls_destroy(void *key, void *datum, void *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
613 struct class_datum *cladatum;
614 struct constraint_node *constraint, *ctemp;
615 struct constraint_expr *e, *etmp;
616
617 kfree(key);
Eric Paris9398c7f2010-11-23 11:40:08 -0500618 if (datum) {
619 cladatum = datum;
620 hashtab_map(cladatum->permissions.table, perm_destroy, NULL);
621 hashtab_destroy(cladatum->permissions.table);
622 constraint = cladatum->constraints;
623 while (constraint) {
624 e = constraint->expr;
625 while (e) {
626 ebitmap_destroy(&e->names);
627 etmp = e;
628 e = e->next;
629 kfree(etmp);
630 }
631 ctemp = constraint;
632 constraint = constraint->next;
633 kfree(ctemp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Eric Paris9398c7f2010-11-23 11:40:08 -0500636 constraint = cladatum->validatetrans;
637 while (constraint) {
638 e = constraint->expr;
639 while (e) {
640 ebitmap_destroy(&e->names);
641 etmp = e;
642 e = e->next;
643 kfree(etmp);
644 }
645 ctemp = constraint;
646 constraint = constraint->next;
647 kfree(ctemp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Eric Paris9398c7f2010-11-23 11:40:08 -0500650 kfree(cladatum->comkey);
651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 kfree(datum);
653 return 0;
654}
655
656static int role_destroy(void *key, void *datum, void *p)
657{
658 struct role_datum *role;
659
660 kfree(key);
Eric Paris9398c7f2010-11-23 11:40:08 -0500661 if (datum) {
662 role = datum;
663 ebitmap_destroy(&role->dominates);
664 ebitmap_destroy(&role->types);
665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 kfree(datum);
667 return 0;
668}
669
670static int type_destroy(void *key, void *datum, void *p)
671{
672 kfree(key);
673 kfree(datum);
674 return 0;
675}
676
677static int user_destroy(void *key, void *datum, void *p)
678{
679 struct user_datum *usrdatum;
680
681 kfree(key);
Eric Paris9398c7f2010-11-23 11:40:08 -0500682 if (datum) {
683 usrdatum = datum;
684 ebitmap_destroy(&usrdatum->roles);
685 ebitmap_destroy(&usrdatum->range.level[0].cat);
686 ebitmap_destroy(&usrdatum->range.level[1].cat);
687 ebitmap_destroy(&usrdatum->dfltlevel.cat);
688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 kfree(datum);
690 return 0;
691}
692
693static int sens_destroy(void *key, void *datum, void *p)
694{
695 struct level_datum *levdatum;
696
697 kfree(key);
Eric Paris9398c7f2010-11-23 11:40:08 -0500698 if (datum) {
699 levdatum = datum;
700 ebitmap_destroy(&levdatum->level->cat);
701 kfree(levdatum->level);
702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 kfree(datum);
704 return 0;
705}
706
707static int cat_destroy(void *key, void *datum, void *p)
708{
709 kfree(key);
710 kfree(datum);
711 return 0;
712}
713
714static int (*destroy_f[SYM_NUM]) (void *key, void *datum, void *datap) =
715{
716 common_destroy,
James Morris6cbda6b2006-11-29 16:50:27 -0500717 cls_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 role_destroy,
719 type_destroy,
720 user_destroy,
721 cond_destroy_bool,
722 sens_destroy,
723 cat_destroy,
724};
725
Eric Paris2463c26d2011-04-28 15:11:21 -0400726static int filenametr_destroy(void *key, void *datum, void *p)
727{
728 struct filename_trans *ft = key;
729 kfree(ft->name);
730 kfree(key);
731 kfree(datum);
732 cond_resched();
733 return 0;
734}
735
Stephen Smalley2f3e82d2010-01-07 15:55:16 -0500736static int range_tr_destroy(void *key, void *datum, void *p)
737{
738 struct mls_range *rt = datum;
739 kfree(key);
740 ebitmap_destroy(&rt->level[0].cat);
741 ebitmap_destroy(&rt->level[1].cat);
742 kfree(datum);
743 cond_resched();
744 return 0;
745}
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747static void ocontext_destroy(struct ocontext *c, int i)
748{
Eric Parisd1b43542010-07-21 12:50:57 -0400749 if (!c)
750 return;
751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 context_destroy(&c->context[0]);
753 context_destroy(&c->context[1]);
754 if (i == OCON_ISID || i == OCON_FS ||
755 i == OCON_NETIF || i == OCON_FSUSE)
756 kfree(c->u.name);
757 kfree(c);
758}
759
760/*
761 * Free any memory allocated by a policy database structure.
762 */
763void policydb_destroy(struct policydb *p)
764{
765 struct ocontext *c, *ctmp;
766 struct genfs *g, *gtmp;
767 int i;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700768 struct role_allow *ra, *lra = NULL;
769 struct role_trans *tr, *ltr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 for (i = 0; i < SYM_NUM; i++) {
Eric Paris9dc99782007-06-04 17:41:22 -0400772 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 hashtab_map(p->symtab[i].table, destroy_f[i], NULL);
774 hashtab_destroy(p->symtab[i].table);
775 }
776
Eric Parisac76c052010-11-29 15:47:09 -0500777 for (i = 0; i < SYM_NUM; i++) {
778 if (p->sym_val_to_name[i])
779 flex_array_free(p->sym_val_to_name[i]);
780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Jesper Juhl9a5f04b2005-06-25 14:58:51 -0700782 kfree(p->class_val_to_struct);
783 kfree(p->role_val_to_struct);
784 kfree(p->user_val_to_struct);
Eric Paris23bdecb2010-11-29 15:47:09 -0500785 if (p->type_val_to_struct_array)
786 flex_array_free(p->type_val_to_struct_array);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 avtab_destroy(&p->te_avtab);
789
790 for (i = 0; i < OCON_NUM; i++) {
Eric Paris9dc99782007-06-04 17:41:22 -0400791 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 c = p->ocontexts[i];
793 while (c) {
794 ctmp = c;
795 c = c->next;
Eric Paris2ced3df2008-04-17 13:37:12 -0400796 ocontext_destroy(ctmp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
Chad Sellers6e8c7512006-10-06 16:09:52 -0400798 p->ocontexts[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
800
801 g = p->genfs;
802 while (g) {
Eric Paris9dc99782007-06-04 17:41:22 -0400803 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 kfree(g->fstype);
805 c = g->head;
806 while (c) {
807 ctmp = c;
808 c = c->next;
Eric Paris2ced3df2008-04-17 13:37:12 -0400809 ocontext_destroy(ctmp, OCON_FSUSE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
811 gtmp = g;
812 g = g->next;
813 kfree(gtmp);
814 }
Chad Sellers6e8c7512006-10-06 16:09:52 -0400815 p->genfs = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 cond_policydb_destroy(p);
818
Stephen Smalley782ebb92005-09-03 15:55:16 -0700819 for (tr = p->role_tr; tr; tr = tr->next) {
Eric Paris9dc99782007-06-04 17:41:22 -0400820 cond_resched();
Jesper Juhla7f988b2005-11-07 01:01:35 -0800821 kfree(ltr);
Stephen Smalley782ebb92005-09-03 15:55:16 -0700822 ltr = tr;
823 }
Jesper Juhla7f988b2005-11-07 01:01:35 -0800824 kfree(ltr);
Stephen Smalley782ebb92005-09-03 15:55:16 -0700825
Eric Paris2ced3df2008-04-17 13:37:12 -0400826 for (ra = p->role_allow; ra; ra = ra->next) {
Eric Paris9dc99782007-06-04 17:41:22 -0400827 cond_resched();
Jesper Juhla7f988b2005-11-07 01:01:35 -0800828 kfree(lra);
Stephen Smalley782ebb92005-09-03 15:55:16 -0700829 lra = ra;
830 }
Jesper Juhla7f988b2005-11-07 01:01:35 -0800831 kfree(lra);
Stephen Smalley782ebb92005-09-03 15:55:16 -0700832
Eric Paris2463c26d2011-04-28 15:11:21 -0400833 hashtab_map(p->filename_trans, filenametr_destroy, NULL);
834 hashtab_destroy(p->filename_trans);
835
Stephen Smalley2f3e82d2010-01-07 15:55:16 -0500836 hashtab_map(p->range_tr, range_tr_destroy, NULL);
837 hashtab_destroy(p->range_tr);
Stephen Smalley782ebb92005-09-03 15:55:16 -0700838
Eric Paris6371dcd2010-07-29 23:02:34 -0400839 if (p->type_attr_map_array) {
840 for (i = 0; i < p->p_types.nprim; i++) {
841 struct ebitmap *e;
842
843 e = flex_array_get(p->type_attr_map_array, i);
844 if (!e)
845 continue;
846 ebitmap_destroy(e);
847 }
848 flex_array_free(p->type_attr_map_array);
Stephen Smalley282c1f52005-10-23 12:57:15 -0700849 }
Eric Paris652bb9b2011-02-01 11:05:40 -0500850
Eric Paris03a4c0182011-04-28 15:11:21 -0400851 ebitmap_destroy(&p->filename_trans_ttypes);
Paul Moore3bb56b22008-01-29 08:38:19 -0500852 ebitmap_destroy(&p->policycaps);
Eric Paris64dbf072008-03-31 12:17:33 +1100853 ebitmap_destroy(&p->permissive_map);
Eric Paris3f120702007-09-21 14:37:10 -0400854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return;
856}
857
858/*
859 * Load the initial SIDs specified in a policy database
860 * structure into a SID table.
861 */
862int policydb_load_isids(struct policydb *p, struct sidtab *s)
863{
864 struct ocontext *head, *c;
865 int rc;
866
867 rc = sidtab_init(s);
868 if (rc) {
James Morris454d9722008-02-26 20:42:02 +1100869 printk(KERN_ERR "SELinux: out of memory on SID table init\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 goto out;
871 }
872
873 head = p->ocontexts[OCON_ISID];
874 for (c = head; c; c = c->next) {
Eric Paris9398c7f2010-11-23 11:40:08 -0500875 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (!c->context[0].user) {
Eric Paris9398c7f2010-11-23 11:40:08 -0500877 printk(KERN_ERR "SELinux: SID %s was never defined.\n",
878 c->u.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 goto out;
880 }
Eric Paris9398c7f2010-11-23 11:40:08 -0500881
882 rc = sidtab_insert(s, c->sid[0], &c->context[0]);
883 if (rc) {
884 printk(KERN_ERR "SELinux: unable to load initial SID %s.\n",
885 c->u.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 goto out;
887 }
888 }
Eric Paris9398c7f2010-11-23 11:40:08 -0500889 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890out:
891 return rc;
892}
893
Stephen Smalley45e54212007-11-07 10:08:00 -0500894int policydb_class_isvalid(struct policydb *p, unsigned int class)
895{
896 if (!class || class > p->p_classes.nprim)
897 return 0;
898 return 1;
899}
900
901int policydb_role_isvalid(struct policydb *p, unsigned int role)
902{
903 if (!role || role > p->p_roles.nprim)
904 return 0;
905 return 1;
906}
907
908int policydb_type_isvalid(struct policydb *p, unsigned int type)
909{
910 if (!type || type > p->p_types.nprim)
911 return 0;
912 return 1;
913}
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915/*
916 * Return 1 if the fields in the security context
917 * structure `c' are valid. Return 0 otherwise.
918 */
919int policydb_context_isvalid(struct policydb *p, struct context *c)
920{
921 struct role_datum *role;
922 struct user_datum *usrdatum;
923
924 if (!c->role || c->role > p->p_roles.nprim)
925 return 0;
926
927 if (!c->user || c->user > p->p_users.nprim)
928 return 0;
929
930 if (!c->type || c->type > p->p_types.nprim)
931 return 0;
932
933 if (c->role != OBJECT_R_VAL) {
934 /*
935 * Role must be authorized for the type.
936 */
937 role = p->role_val_to_struct[c->role - 1];
Eric Paris9398c7f2010-11-23 11:40:08 -0500938 if (!ebitmap_get_bit(&role->types, c->type - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 /* role may not be associated with type */
940 return 0;
941
942 /*
943 * User must be authorized for the role.
944 */
945 usrdatum = p->user_val_to_struct[c->user - 1];
946 if (!usrdatum)
947 return 0;
948
Eric Paris9398c7f2010-11-23 11:40:08 -0500949 if (!ebitmap_get_bit(&usrdatum->roles, c->role - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 /* user may not be associated with role */
951 return 0;
952 }
953
954 if (!mls_context_isvalid(p, c))
955 return 0;
956
957 return 1;
958}
959
960/*
961 * Read a MLS range structure from a policydb binary
962 * representation file.
963 */
964static int mls_read_range_helper(struct mls_range *r, void *fp)
965{
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -0700966 __le32 buf[2];
967 u32 items;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 int rc;
969
970 rc = next_entry(buf, fp, sizeof(u32));
Eric Paris9398c7f2010-11-23 11:40:08 -0500971 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 goto out;
973
Eric Paris9398c7f2010-11-23 11:40:08 -0500974 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 items = le32_to_cpu(buf[0]);
976 if (items > ARRAY_SIZE(buf)) {
James Morris454d9722008-02-26 20:42:02 +1100977 printk(KERN_ERR "SELinux: mls: range overflow\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 goto out;
979 }
Eric Paris9398c7f2010-11-23 11:40:08 -0500980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 rc = next_entry(buf, fp, sizeof(u32) * items);
Eric Paris9398c7f2010-11-23 11:40:08 -0500982 if (rc) {
James Morris454d9722008-02-26 20:42:02 +1100983 printk(KERN_ERR "SELinux: mls: truncated range\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 goto out;
985 }
Eric Paris9398c7f2010-11-23 11:40:08 -0500986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 r->level[0].sens = le32_to_cpu(buf[0]);
988 if (items > 1)
989 r->level[1].sens = le32_to_cpu(buf[1]);
990 else
991 r->level[1].sens = r->level[0].sens;
992
993 rc = ebitmap_read(&r->level[0].cat, fp);
994 if (rc) {
Eric Paris9398c7f2010-11-23 11:40:08 -0500995 printk(KERN_ERR "SELinux: mls: error reading low categories\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 goto out;
997 }
998 if (items > 1) {
999 rc = ebitmap_read(&r->level[1].cat, fp);
1000 if (rc) {
Eric Paris9398c7f2010-11-23 11:40:08 -05001001 printk(KERN_ERR "SELinux: mls: error reading high categories\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 goto bad_high;
1003 }
1004 } else {
1005 rc = ebitmap_cpy(&r->level[1].cat, &r->level[0].cat);
1006 if (rc) {
James Morris454d9722008-02-26 20:42:02 +11001007 printk(KERN_ERR "SELinux: mls: out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 goto bad_high;
1009 }
1010 }
1011
Eric Paris9398c7f2010-11-23 11:40:08 -05001012 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013bad_high:
1014 ebitmap_destroy(&r->level[0].cat);
Eric Paris9398c7f2010-11-23 11:40:08 -05001015out:
1016 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
1019/*
1020 * Read and validate a security context structure
1021 * from a policydb binary representation file.
1022 */
1023static int context_read_and_validate(struct context *c,
1024 struct policydb *p,
1025 void *fp)
1026{
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07001027 __le32 buf[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 int rc;
1029
1030 rc = next_entry(buf, fp, sizeof buf);
Eric Paris9398c7f2010-11-23 11:40:08 -05001031 if (rc) {
James Morris454d9722008-02-26 20:42:02 +11001032 printk(KERN_ERR "SELinux: context truncated\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 goto out;
1034 }
1035 c->user = le32_to_cpu(buf[0]);
1036 c->role = le32_to_cpu(buf[1]);
1037 c->type = le32_to_cpu(buf[2]);
1038 if (p->policyvers >= POLICYDB_VERSION_MLS) {
Eric Paris9398c7f2010-11-23 11:40:08 -05001039 rc = mls_read_range_helper(&c->range, fp);
1040 if (rc) {
1041 printk(KERN_ERR "SELinux: error reading MLS range of context\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 goto out;
1043 }
1044 }
1045
Eric Paris9398c7f2010-11-23 11:40:08 -05001046 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (!policydb_context_isvalid(p, c)) {
James Morris454d9722008-02-26 20:42:02 +11001048 printk(KERN_ERR "SELinux: invalid security context\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 context_destroy(c);
Eric Paris9398c7f2010-11-23 11:40:08 -05001050 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 }
Eric Paris9398c7f2010-11-23 11:40:08 -05001052 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053out:
1054 return rc;
1055}
1056
1057/*
1058 * The following *_read functions are used to
1059 * read the symbol data from a policy database
1060 * binary representation file.
1061 */
1062
1063static int perm_read(struct policydb *p, struct hashtab *h, void *fp)
1064{
1065 char *key = NULL;
1066 struct perm_datum *perdatum;
1067 int rc;
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07001068 __le32 buf[2];
1069 u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Eric Paris9398c7f2010-11-23 11:40:08 -05001071 rc = -ENOMEM;
James Morris89d155e2005-10-30 14:59:21 -08001072 perdatum = kzalloc(sizeof(*perdatum), GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001073 if (!perdatum)
1074 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 rc = next_entry(buf, fp, sizeof buf);
Eric Paris9398c7f2010-11-23 11:40:08 -05001077 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 goto bad;
1079
1080 len = le32_to_cpu(buf[0]);
1081 perdatum->value = le32_to_cpu(buf[1]);
1082
Eric Paris9398c7f2010-11-23 11:40:08 -05001083 rc = -ENOMEM;
Eric Paris2ced3df2008-04-17 13:37:12 -04001084 key = kmalloc(len + 1, GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001085 if (!key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 goto bad;
Eric Paris9398c7f2010-11-23 11:40:08 -05001087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 rc = next_entry(key, fp, len);
Eric Paris9398c7f2010-11-23 11:40:08 -05001089 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 goto bad;
Vesa-Matti J Karidf4ea862008-07-20 23:57:01 +03001091 key[len] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 rc = hashtab_insert(h, key, perdatum);
1094 if (rc)
1095 goto bad;
Eric Paris9398c7f2010-11-23 11:40:08 -05001096
1097 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098bad:
1099 perm_destroy(key, perdatum, NULL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001100 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101}
1102
1103static int common_read(struct policydb *p, struct hashtab *h, void *fp)
1104{
1105 char *key = NULL;
1106 struct common_datum *comdatum;
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07001107 __le32 buf[4];
1108 u32 len, nel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 int i, rc;
1110
Eric Paris9398c7f2010-11-23 11:40:08 -05001111 rc = -ENOMEM;
James Morris89d155e2005-10-30 14:59:21 -08001112 comdatum = kzalloc(sizeof(*comdatum), GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001113 if (!comdatum)
1114 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116 rc = next_entry(buf, fp, sizeof buf);
Eric Paris9398c7f2010-11-23 11:40:08 -05001117 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 goto bad;
1119
1120 len = le32_to_cpu(buf[0]);
1121 comdatum->value = le32_to_cpu(buf[1]);
1122
1123 rc = symtab_init(&comdatum->permissions, PERM_SYMTAB_SIZE);
1124 if (rc)
1125 goto bad;
1126 comdatum->permissions.nprim = le32_to_cpu(buf[2]);
1127 nel = le32_to_cpu(buf[3]);
1128
Eric Paris9398c7f2010-11-23 11:40:08 -05001129 rc = -ENOMEM;
Eric Paris2ced3df2008-04-17 13:37:12 -04001130 key = kmalloc(len + 1, GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001131 if (!key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 goto bad;
Eric Paris9398c7f2010-11-23 11:40:08 -05001133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 rc = next_entry(key, fp, len);
Eric Paris9398c7f2010-11-23 11:40:08 -05001135 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 goto bad;
Vesa-Matti J Karidf4ea862008-07-20 23:57:01 +03001137 key[len] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139 for (i = 0; i < nel; i++) {
1140 rc = perm_read(p, comdatum->permissions.table, fp);
1141 if (rc)
1142 goto bad;
1143 }
1144
1145 rc = hashtab_insert(h, key, comdatum);
1146 if (rc)
1147 goto bad;
Eric Paris9398c7f2010-11-23 11:40:08 -05001148 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149bad:
1150 common_destroy(key, comdatum, NULL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001151 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152}
1153
1154static int read_cons_helper(struct constraint_node **nodep, int ncons,
Eric Paris2ced3df2008-04-17 13:37:12 -04001155 int allowxtarget, void *fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156{
1157 struct constraint_node *c, *lc;
1158 struct constraint_expr *e, *le;
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07001159 __le32 buf[3];
1160 u32 nexpr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 int rc, i, j, depth;
1162
1163 lc = NULL;
1164 for (i = 0; i < ncons; i++) {
James Morris89d155e2005-10-30 14:59:21 -08001165 c = kzalloc(sizeof(*c), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 if (!c)
1167 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Eric Paris2ced3df2008-04-17 13:37:12 -04001169 if (lc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 lc->next = c;
Eric Paris2ced3df2008-04-17 13:37:12 -04001171 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 *nodep = c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 rc = next_entry(buf, fp, (sizeof(u32) * 2));
Eric Paris9398c7f2010-11-23 11:40:08 -05001175 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 return rc;
1177 c->permissions = le32_to_cpu(buf[0]);
1178 nexpr = le32_to_cpu(buf[1]);
1179 le = NULL;
1180 depth = -1;
1181 for (j = 0; j < nexpr; j++) {
James Morris89d155e2005-10-30 14:59:21 -08001182 e = kzalloc(sizeof(*e), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (!e)
1184 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Eric Paris2ced3df2008-04-17 13:37:12 -04001186 if (le)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 le->next = e;
Eric Paris2ced3df2008-04-17 13:37:12 -04001188 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 c->expr = e;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191 rc = next_entry(buf, fp, (sizeof(u32) * 3));
Eric Paris9398c7f2010-11-23 11:40:08 -05001192 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 return rc;
1194 e->expr_type = le32_to_cpu(buf[0]);
1195 e->attr = le32_to_cpu(buf[1]);
1196 e->op = le32_to_cpu(buf[2]);
1197
1198 switch (e->expr_type) {
1199 case CEXPR_NOT:
1200 if (depth < 0)
1201 return -EINVAL;
1202 break;
1203 case CEXPR_AND:
1204 case CEXPR_OR:
1205 if (depth < 1)
1206 return -EINVAL;
1207 depth--;
1208 break;
1209 case CEXPR_ATTR:
1210 if (depth == (CEXPR_MAXDEPTH - 1))
1211 return -EINVAL;
1212 depth++;
1213 break;
1214 case CEXPR_NAMES:
1215 if (!allowxtarget && (e->attr & CEXPR_XTARGET))
1216 return -EINVAL;
1217 if (depth == (CEXPR_MAXDEPTH - 1))
1218 return -EINVAL;
1219 depth++;
Eric Paris9398c7f2010-11-23 11:40:08 -05001220 rc = ebitmap_read(&e->names, fp);
1221 if (rc)
1222 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 break;
1224 default:
1225 return -EINVAL;
1226 }
1227 le = e;
1228 }
1229 if (depth != 0)
1230 return -EINVAL;
1231 lc = c;
1232 }
1233
1234 return 0;
1235}
1236
1237static int class_read(struct policydb *p, struct hashtab *h, void *fp)
1238{
1239 char *key = NULL;
1240 struct class_datum *cladatum;
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07001241 __le32 buf[6];
1242 u32 len, len2, ncons, nel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 int i, rc;
1244
Eric Paris9398c7f2010-11-23 11:40:08 -05001245 rc = -ENOMEM;
James Morris89d155e2005-10-30 14:59:21 -08001246 cladatum = kzalloc(sizeof(*cladatum), GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001247 if (!cladatum)
1248 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 rc = next_entry(buf, fp, sizeof(u32)*6);
Eric Paris9398c7f2010-11-23 11:40:08 -05001251 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 goto bad;
1253
1254 len = le32_to_cpu(buf[0]);
1255 len2 = le32_to_cpu(buf[1]);
1256 cladatum->value = le32_to_cpu(buf[2]);
1257
1258 rc = symtab_init(&cladatum->permissions, PERM_SYMTAB_SIZE);
1259 if (rc)
1260 goto bad;
1261 cladatum->permissions.nprim = le32_to_cpu(buf[3]);
1262 nel = le32_to_cpu(buf[4]);
1263
1264 ncons = le32_to_cpu(buf[5]);
1265
Eric Paris9398c7f2010-11-23 11:40:08 -05001266 rc = -ENOMEM;
Eric Paris2ced3df2008-04-17 13:37:12 -04001267 key = kmalloc(len + 1, GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001268 if (!key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 goto bad;
Eric Paris9398c7f2010-11-23 11:40:08 -05001270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 rc = next_entry(key, fp, len);
Eric Paris9398c7f2010-11-23 11:40:08 -05001272 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 goto bad;
Vesa-Matti J Karidf4ea862008-07-20 23:57:01 +03001274 key[len] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 if (len2) {
Eric Paris9398c7f2010-11-23 11:40:08 -05001277 rc = -ENOMEM;
Eric Paris2ced3df2008-04-17 13:37:12 -04001278 cladatum->comkey = kmalloc(len2 + 1, GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001279 if (!cladatum->comkey)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 rc = next_entry(cladatum->comkey, fp, len2);
Eric Paris9398c7f2010-11-23 11:40:08 -05001282 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 goto bad;
Vesa-Matti J Karidf4ea862008-07-20 23:57:01 +03001284 cladatum->comkey[len2] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Eric Paris9398c7f2010-11-23 11:40:08 -05001286 rc = -EINVAL;
1287 cladatum->comdatum = hashtab_search(p->p_commons.table, cladatum->comkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 if (!cladatum->comdatum) {
Eric Paris9398c7f2010-11-23 11:40:08 -05001289 printk(KERN_ERR "SELinux: unknown common %s\n", cladatum->comkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 goto bad;
1291 }
1292 }
1293 for (i = 0; i < nel; i++) {
1294 rc = perm_read(p, cladatum->permissions.table, fp);
1295 if (rc)
1296 goto bad;
1297 }
1298
1299 rc = read_cons_helper(&cladatum->constraints, ncons, 0, fp);
1300 if (rc)
1301 goto bad;
1302
1303 if (p->policyvers >= POLICYDB_VERSION_VALIDATETRANS) {
1304 /* grab the validatetrans rules */
1305 rc = next_entry(buf, fp, sizeof(u32));
Eric Paris9398c7f2010-11-23 11:40:08 -05001306 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 goto bad;
1308 ncons = le32_to_cpu(buf[0]);
1309 rc = read_cons_helper(&cladatum->validatetrans, ncons, 1, fp);
1310 if (rc)
1311 goto bad;
1312 }
1313
Eric Parisaa893262012-03-20 14:35:12 -04001314 if (p->policyvers >= POLICYDB_VERSION_NEW_OBJECT_DEFAULTS) {
1315 rc = next_entry(buf, fp, sizeof(u32) * 3);
1316 if (rc)
1317 goto bad;
1318
1319 cladatum->default_user = le32_to_cpu(buf[0]);
1320 cladatum->default_role = le32_to_cpu(buf[1]);
1321 cladatum->default_range = le32_to_cpu(buf[2]);
1322 }
1323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 rc = hashtab_insert(h, key, cladatum);
1325 if (rc)
1326 goto bad;
1327
Eric Paris9398c7f2010-11-23 11:40:08 -05001328 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329bad:
James Morris6cbda6b2006-11-29 16:50:27 -05001330 cls_destroy(key, cladatum, NULL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001331 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332}
1333
1334static int role_read(struct policydb *p, struct hashtab *h, void *fp)
1335{
1336 char *key = NULL;
1337 struct role_datum *role;
KaiGai Koheid9250de2008-08-28 16:35:57 +09001338 int rc, to_read = 2;
1339 __le32 buf[3];
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07001340 u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Eric Paris9398c7f2010-11-23 11:40:08 -05001342 rc = -ENOMEM;
James Morris89d155e2005-10-30 14:59:21 -08001343 role = kzalloc(sizeof(*role), GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001344 if (!role)
1345 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
KaiGai Koheid9250de2008-08-28 16:35:57 +09001347 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
1348 to_read = 3;
1349
1350 rc = next_entry(buf, fp, sizeof(buf[0]) * to_read);
Eric Paris9398c7f2010-11-23 11:40:08 -05001351 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 goto bad;
1353
1354 len = le32_to_cpu(buf[0]);
1355 role->value = le32_to_cpu(buf[1]);
KaiGai Koheid9250de2008-08-28 16:35:57 +09001356 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
1357 role->bounds = le32_to_cpu(buf[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Eric Paris9398c7f2010-11-23 11:40:08 -05001359 rc = -ENOMEM;
Eric Paris2ced3df2008-04-17 13:37:12 -04001360 key = kmalloc(len + 1, GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001361 if (!key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 goto bad;
Eric Paris9398c7f2010-11-23 11:40:08 -05001363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 rc = next_entry(key, fp, len);
Eric Paris9398c7f2010-11-23 11:40:08 -05001365 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 goto bad;
Vesa-Matti J Karidf4ea862008-07-20 23:57:01 +03001367 key[len] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
1369 rc = ebitmap_read(&role->dominates, fp);
1370 if (rc)
1371 goto bad;
1372
1373 rc = ebitmap_read(&role->types, fp);
1374 if (rc)
1375 goto bad;
1376
1377 if (strcmp(key, OBJECT_R) == 0) {
Eric Paris9398c7f2010-11-23 11:40:08 -05001378 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 if (role->value != OBJECT_R_VAL) {
Eric Paris744ba352008-04-17 11:52:44 -04001380 printk(KERN_ERR "SELinux: Role %s has wrong value %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 OBJECT_R, role->value);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 goto bad;
1383 }
1384 rc = 0;
1385 goto bad;
1386 }
1387
1388 rc = hashtab_insert(h, key, role);
1389 if (rc)
1390 goto bad;
Eric Paris9398c7f2010-11-23 11:40:08 -05001391 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392bad:
1393 role_destroy(key, role, NULL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001394 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395}
1396
1397static int type_read(struct policydb *p, struct hashtab *h, void *fp)
1398{
1399 char *key = NULL;
1400 struct type_datum *typdatum;
KaiGai Koheid9250de2008-08-28 16:35:57 +09001401 int rc, to_read = 3;
1402 __le32 buf[4];
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07001403 u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
Eric Paris9398c7f2010-11-23 11:40:08 -05001405 rc = -ENOMEM;
Eric Paris2ced3df2008-04-17 13:37:12 -04001406 typdatum = kzalloc(sizeof(*typdatum), GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001407 if (!typdatum)
1408 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
KaiGai Koheid9250de2008-08-28 16:35:57 +09001410 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
1411 to_read = 4;
1412
1413 rc = next_entry(buf, fp, sizeof(buf[0]) * to_read);
Eric Paris9398c7f2010-11-23 11:40:08 -05001414 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 goto bad;
1416
1417 len = le32_to_cpu(buf[0]);
1418 typdatum->value = le32_to_cpu(buf[1]);
KaiGai Koheid9250de2008-08-28 16:35:57 +09001419 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) {
1420 u32 prop = le32_to_cpu(buf[2]);
1421
1422 if (prop & TYPEDATUM_PROPERTY_PRIMARY)
1423 typdatum->primary = 1;
1424 if (prop & TYPEDATUM_PROPERTY_ATTRIBUTE)
1425 typdatum->attribute = 1;
1426
1427 typdatum->bounds = le32_to_cpu(buf[3]);
1428 } else {
1429 typdatum->primary = le32_to_cpu(buf[2]);
1430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Eric Paris9398c7f2010-11-23 11:40:08 -05001432 rc = -ENOMEM;
Eric Paris2ced3df2008-04-17 13:37:12 -04001433 key = kmalloc(len + 1, GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001434 if (!key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 rc = next_entry(key, fp, len);
Eric Paris9398c7f2010-11-23 11:40:08 -05001437 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 goto bad;
Vesa-Matti J Karidf4ea862008-07-20 23:57:01 +03001439 key[len] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
1441 rc = hashtab_insert(h, key, typdatum);
1442 if (rc)
1443 goto bad;
Eric Paris9398c7f2010-11-23 11:40:08 -05001444 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445bad:
1446 type_destroy(key, typdatum, NULL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001447 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448}
1449
1450
1451/*
1452 * Read a MLS level structure from a policydb binary
1453 * representation file.
1454 */
1455static int mls_read_level(struct mls_level *lp, void *fp)
1456{
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07001457 __le32 buf[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 int rc;
1459
1460 memset(lp, 0, sizeof(*lp));
1461
1462 rc = next_entry(buf, fp, sizeof buf);
Eric Paris9398c7f2010-11-23 11:40:08 -05001463 if (rc) {
James Morris454d9722008-02-26 20:42:02 +11001464 printk(KERN_ERR "SELinux: mls: truncated level\n");
Eric Paris9398c7f2010-11-23 11:40:08 -05001465 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 }
1467 lp->sens = le32_to_cpu(buf[0]);
1468
Eric Paris9398c7f2010-11-23 11:40:08 -05001469 rc = ebitmap_read(&lp->cat, fp);
1470 if (rc) {
1471 printk(KERN_ERR "SELinux: mls: error reading level categories\n");
1472 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 }
1474 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475}
1476
1477static int user_read(struct policydb *p, struct hashtab *h, void *fp)
1478{
1479 char *key = NULL;
1480 struct user_datum *usrdatum;
KaiGai Koheid9250de2008-08-28 16:35:57 +09001481 int rc, to_read = 2;
1482 __le32 buf[3];
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07001483 u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Eric Paris9398c7f2010-11-23 11:40:08 -05001485 rc = -ENOMEM;
James Morris89d155e2005-10-30 14:59:21 -08001486 usrdatum = kzalloc(sizeof(*usrdatum), GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001487 if (!usrdatum)
1488 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
KaiGai Koheid9250de2008-08-28 16:35:57 +09001490 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
1491 to_read = 3;
1492
1493 rc = next_entry(buf, fp, sizeof(buf[0]) * to_read);
Eric Paris9398c7f2010-11-23 11:40:08 -05001494 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 goto bad;
1496
1497 len = le32_to_cpu(buf[0]);
1498 usrdatum->value = le32_to_cpu(buf[1]);
KaiGai Koheid9250de2008-08-28 16:35:57 +09001499 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
1500 usrdatum->bounds = le32_to_cpu(buf[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
Eric Paris9398c7f2010-11-23 11:40:08 -05001502 rc = -ENOMEM;
Eric Paris2ced3df2008-04-17 13:37:12 -04001503 key = kmalloc(len + 1, GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001504 if (!key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 rc = next_entry(key, fp, len);
Eric Paris9398c7f2010-11-23 11:40:08 -05001507 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 goto bad;
Vesa-Matti J Karidf4ea862008-07-20 23:57:01 +03001509 key[len] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
1511 rc = ebitmap_read(&usrdatum->roles, fp);
1512 if (rc)
1513 goto bad;
1514
1515 if (p->policyvers >= POLICYDB_VERSION_MLS) {
1516 rc = mls_read_range_helper(&usrdatum->range, fp);
1517 if (rc)
1518 goto bad;
1519 rc = mls_read_level(&usrdatum->dfltlevel, fp);
1520 if (rc)
1521 goto bad;
1522 }
1523
1524 rc = hashtab_insert(h, key, usrdatum);
1525 if (rc)
1526 goto bad;
Eric Paris9398c7f2010-11-23 11:40:08 -05001527 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528bad:
1529 user_destroy(key, usrdatum, NULL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001530 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531}
1532
1533static int sens_read(struct policydb *p, struct hashtab *h, void *fp)
1534{
1535 char *key = NULL;
1536 struct level_datum *levdatum;
1537 int rc;
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07001538 __le32 buf[2];
1539 u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Eric Paris9398c7f2010-11-23 11:40:08 -05001541 rc = -ENOMEM;
James Morris89d155e2005-10-30 14:59:21 -08001542 levdatum = kzalloc(sizeof(*levdatum), GFP_ATOMIC);
Eric Paris9398c7f2010-11-23 11:40:08 -05001543 if (!levdatum)
1544 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 rc = next_entry(buf, fp, sizeof buf);
Eric Paris9398c7f2010-11-23 11:40:08 -05001547 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 goto bad;
1549
1550 len = le32_to_cpu(buf[0]);
1551 levdatum->isalias = le32_to_cpu(buf[1]);
1552
Eric Paris9398c7f2010-11-23 11:40:08 -05001553 rc = -ENOMEM;
Eric Paris2ced3df2008-04-17 13:37:12 -04001554 key = kmalloc(len + 1, GFP_ATOMIC);
Eric Paris9398c7f2010-11-23 11:40:08 -05001555 if (!key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 rc = next_entry(key, fp, len);
Eric Paris9398c7f2010-11-23 11:40:08 -05001558 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 goto bad;
Vesa-Matti J Karidf4ea862008-07-20 23:57:01 +03001560 key[len] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Eric Paris9398c7f2010-11-23 11:40:08 -05001562 rc = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 levdatum->level = kmalloc(sizeof(struct mls_level), GFP_ATOMIC);
Eric Paris9398c7f2010-11-23 11:40:08 -05001564 if (!levdatum->level)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 goto bad;
Eric Paris9398c7f2010-11-23 11:40:08 -05001566
1567 rc = mls_read_level(levdatum->level, fp);
1568 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
1571 rc = hashtab_insert(h, key, levdatum);
1572 if (rc)
1573 goto bad;
Eric Paris9398c7f2010-11-23 11:40:08 -05001574 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575bad:
1576 sens_destroy(key, levdatum, NULL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001577 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578}
1579
1580static int cat_read(struct policydb *p, struct hashtab *h, void *fp)
1581{
1582 char *key = NULL;
1583 struct cat_datum *catdatum;
1584 int rc;
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07001585 __le32 buf[3];
1586 u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Eric Paris9398c7f2010-11-23 11:40:08 -05001588 rc = -ENOMEM;
James Morris89d155e2005-10-30 14:59:21 -08001589 catdatum = kzalloc(sizeof(*catdatum), GFP_ATOMIC);
Eric Paris9398c7f2010-11-23 11:40:08 -05001590 if (!catdatum)
1591 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
1593 rc = next_entry(buf, fp, sizeof buf);
Eric Paris9398c7f2010-11-23 11:40:08 -05001594 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 goto bad;
1596
1597 len = le32_to_cpu(buf[0]);
1598 catdatum->value = le32_to_cpu(buf[1]);
1599 catdatum->isalias = le32_to_cpu(buf[2]);
1600
Eric Paris9398c7f2010-11-23 11:40:08 -05001601 rc = -ENOMEM;
Eric Paris2ced3df2008-04-17 13:37:12 -04001602 key = kmalloc(len + 1, GFP_ATOMIC);
Eric Paris9398c7f2010-11-23 11:40:08 -05001603 if (!key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 rc = next_entry(key, fp, len);
Eric Paris9398c7f2010-11-23 11:40:08 -05001606 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 goto bad;
Vesa-Matti J Karidf4ea862008-07-20 23:57:01 +03001608 key[len] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610 rc = hashtab_insert(h, key, catdatum);
1611 if (rc)
1612 goto bad;
Eric Paris9398c7f2010-11-23 11:40:08 -05001613 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614bad:
1615 cat_destroy(key, catdatum, NULL);
Eric Paris9398c7f2010-11-23 11:40:08 -05001616 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
1618
1619static int (*read_f[SYM_NUM]) (struct policydb *p, struct hashtab *h, void *fp) =
1620{
1621 common_read,
1622 class_read,
1623 role_read,
1624 type_read,
1625 user_read,
1626 cond_read_bool,
1627 sens_read,
1628 cat_read,
1629};
1630
KaiGai Koheid9250de2008-08-28 16:35:57 +09001631static int user_bounds_sanity_check(void *key, void *datum, void *datap)
1632{
1633 struct user_datum *upper, *user;
1634 struct policydb *p = datap;
1635 int depth = 0;
1636
1637 upper = user = datum;
1638 while (upper->bounds) {
1639 struct ebitmap_node *node;
1640 unsigned long bit;
1641
1642 if (++depth == POLICYDB_BOUNDS_MAXDEPTH) {
1643 printk(KERN_ERR "SELinux: user %s: "
1644 "too deep or looped boundary",
1645 (char *) key);
1646 return -EINVAL;
1647 }
1648
1649 upper = p->user_val_to_struct[upper->bounds - 1];
1650 ebitmap_for_each_positive_bit(&user->roles, node, bit) {
1651 if (ebitmap_get_bit(&upper->roles, bit))
1652 continue;
1653
1654 printk(KERN_ERR
1655 "SELinux: boundary violated policy: "
1656 "user=%s role=%s bounds=%s\n",
Eric Parisac76c052010-11-29 15:47:09 -05001657 sym_name(p, SYM_USERS, user->value - 1),
1658 sym_name(p, SYM_ROLES, bit),
1659 sym_name(p, SYM_USERS, upper->value - 1));
KaiGai Koheid9250de2008-08-28 16:35:57 +09001660
1661 return -EINVAL;
1662 }
1663 }
1664
1665 return 0;
1666}
1667
1668static int role_bounds_sanity_check(void *key, void *datum, void *datap)
1669{
1670 struct role_datum *upper, *role;
1671 struct policydb *p = datap;
1672 int depth = 0;
1673
1674 upper = role = datum;
1675 while (upper->bounds) {
1676 struct ebitmap_node *node;
1677 unsigned long bit;
1678
1679 if (++depth == POLICYDB_BOUNDS_MAXDEPTH) {
1680 printk(KERN_ERR "SELinux: role %s: "
1681 "too deep or looped bounds\n",
1682 (char *) key);
1683 return -EINVAL;
1684 }
1685
1686 upper = p->role_val_to_struct[upper->bounds - 1];
1687 ebitmap_for_each_positive_bit(&role->types, node, bit) {
1688 if (ebitmap_get_bit(&upper->types, bit))
1689 continue;
1690
1691 printk(KERN_ERR
1692 "SELinux: boundary violated policy: "
1693 "role=%s type=%s bounds=%s\n",
Eric Parisac76c052010-11-29 15:47:09 -05001694 sym_name(p, SYM_ROLES, role->value - 1),
1695 sym_name(p, SYM_TYPES, bit),
1696 sym_name(p, SYM_ROLES, upper->value - 1));
KaiGai Koheid9250de2008-08-28 16:35:57 +09001697
1698 return -EINVAL;
1699 }
1700 }
1701
1702 return 0;
1703}
1704
1705static int type_bounds_sanity_check(void *key, void *datum, void *datap)
1706{
Eric Parisdaa6d832010-08-03 15:26:05 -04001707 struct type_datum *upper;
KaiGai Koheid9250de2008-08-28 16:35:57 +09001708 struct policydb *p = datap;
1709 int depth = 0;
1710
Eric Parisdaa6d832010-08-03 15:26:05 -04001711 upper = datum;
KaiGai Koheid9250de2008-08-28 16:35:57 +09001712 while (upper->bounds) {
1713 if (++depth == POLICYDB_BOUNDS_MAXDEPTH) {
1714 printk(KERN_ERR "SELinux: type %s: "
1715 "too deep or looped boundary\n",
1716 (char *) key);
1717 return -EINVAL;
1718 }
1719
Eric Paris23bdecb2010-11-29 15:47:09 -05001720 upper = flex_array_get_ptr(p->type_val_to_struct_array,
1721 upper->bounds - 1);
1722 BUG_ON(!upper);
1723
KaiGai Koheid9250de2008-08-28 16:35:57 +09001724 if (upper->attribute) {
1725 printk(KERN_ERR "SELinux: type %s: "
1726 "bounded by attribute %s",
1727 (char *) key,
Eric Parisac76c052010-11-29 15:47:09 -05001728 sym_name(p, SYM_TYPES, upper->value - 1));
KaiGai Koheid9250de2008-08-28 16:35:57 +09001729 return -EINVAL;
1730 }
1731 }
1732
1733 return 0;
1734}
1735
1736static int policydb_bounds_sanity_check(struct policydb *p)
1737{
1738 int rc;
1739
1740 if (p->policyvers < POLICYDB_VERSION_BOUNDARY)
1741 return 0;
1742
1743 rc = hashtab_map(p->p_users.table,
1744 user_bounds_sanity_check, p);
1745 if (rc)
1746 return rc;
1747
1748 rc = hashtab_map(p->p_roles.table,
1749 role_bounds_sanity_check, p);
1750 if (rc)
1751 return rc;
1752
1753 rc = hashtab_map(p->p_types.table,
1754 type_bounds_sanity_check, p);
1755 if (rc)
1756 return rc;
1757
1758 return 0;
1759}
1760
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001761u16 string_to_security_class(struct policydb *p, const char *name)
1762{
1763 struct class_datum *cladatum;
1764
1765 cladatum = hashtab_search(p->p_classes.table, name);
1766 if (!cladatum)
1767 return 0;
1768
1769 return cladatum->value;
1770}
1771
1772u32 string_to_av_perm(struct policydb *p, u16 tclass, const char *name)
1773{
1774 struct class_datum *cladatum;
1775 struct perm_datum *perdatum = NULL;
1776 struct common_datum *comdatum;
1777
1778 if (!tclass || tclass > p->p_classes.nprim)
1779 return 0;
1780
1781 cladatum = p->class_val_to_struct[tclass-1];
1782 comdatum = cladatum->comdatum;
1783 if (comdatum)
1784 perdatum = hashtab_search(comdatum->permissions.table,
1785 name);
1786 if (!perdatum)
1787 perdatum = hashtab_search(cladatum->permissions.table,
1788 name);
1789 if (!perdatum)
1790 return 0;
1791
1792 return 1U << (perdatum->value-1);
1793}
1794
Eric Paris9ee0c822010-06-11 12:37:05 -04001795static int range_read(struct policydb *p, void *fp)
1796{
1797 struct range_trans *rt = NULL;
1798 struct mls_range *r = NULL;
1799 int i, rc;
1800 __le32 buf[2];
1801 u32 nel;
1802
1803 if (p->policyvers < POLICYDB_VERSION_MLS)
1804 return 0;
1805
1806 rc = next_entry(buf, fp, sizeof(u32));
1807 if (rc)
1808 goto out;
1809
1810 nel = le32_to_cpu(buf[0]);
1811 for (i = 0; i < nel; i++) {
1812 rc = -ENOMEM;
1813 rt = kzalloc(sizeof(*rt), GFP_KERNEL);
1814 if (!rt)
1815 goto out;
1816
1817 rc = next_entry(buf, fp, (sizeof(u32) * 2));
1818 if (rc)
1819 goto out;
1820
1821 rt->source_type = le32_to_cpu(buf[0]);
1822 rt->target_type = le32_to_cpu(buf[1]);
1823 if (p->policyvers >= POLICYDB_VERSION_RANGETRANS) {
1824 rc = next_entry(buf, fp, sizeof(u32));
1825 if (rc)
1826 goto out;
1827 rt->target_class = le32_to_cpu(buf[0]);
1828 } else
1829 rt->target_class = p->process_class;
1830
1831 rc = -EINVAL;
1832 if (!policydb_type_isvalid(p, rt->source_type) ||
1833 !policydb_type_isvalid(p, rt->target_type) ||
1834 !policydb_class_isvalid(p, rt->target_class))
1835 goto out;
1836
1837 rc = -ENOMEM;
1838 r = kzalloc(sizeof(*r), GFP_KERNEL);
1839 if (!r)
1840 goto out;
1841
1842 rc = mls_read_range_helper(r, fp);
1843 if (rc)
1844 goto out;
1845
1846 rc = -EINVAL;
1847 if (!mls_range_isvalid(p, r)) {
1848 printk(KERN_WARNING "SELinux: rangetrans: invalid range\n");
1849 goto out;
1850 }
1851
1852 rc = hashtab_insert(p->range_tr, rt, r);
1853 if (rc)
1854 goto out;
1855
1856 rt = NULL;
1857 r = NULL;
1858 }
Eric Parisbe30b162011-04-28 15:11:21 -04001859 hash_eval(p->range_tr, "rangetr");
Eric Paris9ee0c822010-06-11 12:37:05 -04001860 rc = 0;
1861out:
1862 kfree(rt);
1863 kfree(r);
1864 return rc;
1865}
1866
Eric Paris652bb9b2011-02-01 11:05:40 -05001867static int filename_trans_read(struct policydb *p, void *fp)
1868{
Eric Paris2463c26d2011-04-28 15:11:21 -04001869 struct filename_trans *ft;
1870 struct filename_trans_datum *otype;
Eric Paris652bb9b2011-02-01 11:05:40 -05001871 char *name;
Eric Paris2463c26d2011-04-28 15:11:21 -04001872 u32 nel, len;
Eric Paris652bb9b2011-02-01 11:05:40 -05001873 __le32 buf[4];
1874 int rc, i;
1875
1876 if (p->policyvers < POLICYDB_VERSION_FILENAME_TRANS)
1877 return 0;
1878
1879 rc = next_entry(buf, fp, sizeof(u32));
1880 if (rc)
Eric Paris2463c26d2011-04-28 15:11:21 -04001881 return rc;
Eric Paris652bb9b2011-02-01 11:05:40 -05001882 nel = le32_to_cpu(buf[0]);
1883
Eric Paris652bb9b2011-02-01 11:05:40 -05001884 for (i = 0; i < nel; i++) {
Eric Paris2463c26d2011-04-28 15:11:21 -04001885 ft = NULL;
1886 otype = NULL;
1887 name = NULL;
1888
Eric Paris652bb9b2011-02-01 11:05:40 -05001889 rc = -ENOMEM;
1890 ft = kzalloc(sizeof(*ft), GFP_KERNEL);
1891 if (!ft)
1892 goto out;
1893
Eric Paris2463c26d2011-04-28 15:11:21 -04001894 rc = -ENOMEM;
1895 otype = kmalloc(sizeof(*otype), GFP_KERNEL);
1896 if (!otype)
1897 goto out;
Eric Paris652bb9b2011-02-01 11:05:40 -05001898
1899 /* length of the path component string */
1900 rc = next_entry(buf, fp, sizeof(u32));
1901 if (rc)
1902 goto out;
1903 len = le32_to_cpu(buf[0]);
1904
1905 rc = -ENOMEM;
1906 name = kmalloc(len + 1, GFP_KERNEL);
1907 if (!name)
1908 goto out;
1909
1910 ft->name = name;
1911
1912 /* path component string */
1913 rc = next_entry(name, fp, len);
1914 if (rc)
1915 goto out;
1916 name[len] = 0;
1917
Eric Paris652bb9b2011-02-01 11:05:40 -05001918 rc = next_entry(buf, fp, sizeof(u32) * 4);
1919 if (rc)
1920 goto out;
1921
1922 ft->stype = le32_to_cpu(buf[0]);
1923 ft->ttype = le32_to_cpu(buf[1]);
1924 ft->tclass = le32_to_cpu(buf[2]);
Eric Paris2463c26d2011-04-28 15:11:21 -04001925
1926 otype->otype = le32_to_cpu(buf[3]);
Eric Paris03a4c0182011-04-28 15:11:21 -04001927
1928 rc = ebitmap_set_bit(&p->filename_trans_ttypes, ft->ttype, 1);
1929 if (rc)
1930 goto out;
Eric Paris2463c26d2011-04-28 15:11:21 -04001931
1932 hashtab_insert(p->filename_trans, ft, otype);
Eric Paris652bb9b2011-02-01 11:05:40 -05001933 }
Eric Paris2463c26d2011-04-28 15:11:21 -04001934 hash_eval(p->filename_trans, "filenametr");
1935 return 0;
Eric Paris652bb9b2011-02-01 11:05:40 -05001936out:
Eric Paris2463c26d2011-04-28 15:11:21 -04001937 kfree(ft);
1938 kfree(name);
1939 kfree(otype);
1940
Eric Paris652bb9b2011-02-01 11:05:40 -05001941 return rc;
1942}
1943
Eric Parisd1b43542010-07-21 12:50:57 -04001944static int genfs_read(struct policydb *p, void *fp)
1945{
1946 int i, j, rc;
1947 u32 nel, nel2, len, len2;
1948 __le32 buf[1];
1949 struct ocontext *l, *c;
1950 struct ocontext *newc = NULL;
1951 struct genfs *genfs_p, *genfs;
1952 struct genfs *newgenfs = NULL;
1953
1954 rc = next_entry(buf, fp, sizeof(u32));
1955 if (rc)
1956 goto out;
1957 nel = le32_to_cpu(buf[0]);
1958
1959 for (i = 0; i < nel; i++) {
1960 rc = next_entry(buf, fp, sizeof(u32));
1961 if (rc)
1962 goto out;
1963 len = le32_to_cpu(buf[0]);
1964
1965 rc = -ENOMEM;
1966 newgenfs = kzalloc(sizeof(*newgenfs), GFP_KERNEL);
1967 if (!newgenfs)
1968 goto out;
1969
1970 rc = -ENOMEM;
1971 newgenfs->fstype = kmalloc(len + 1, GFP_KERNEL);
1972 if (!newgenfs->fstype)
1973 goto out;
1974
1975 rc = next_entry(newgenfs->fstype, fp, len);
1976 if (rc)
1977 goto out;
1978
1979 newgenfs->fstype[len] = 0;
1980
1981 for (genfs_p = NULL, genfs = p->genfs; genfs;
1982 genfs_p = genfs, genfs = genfs->next) {
1983 rc = -EINVAL;
1984 if (strcmp(newgenfs->fstype, genfs->fstype) == 0) {
1985 printk(KERN_ERR "SELinux: dup genfs fstype %s\n",
1986 newgenfs->fstype);
1987 goto out;
1988 }
1989 if (strcmp(newgenfs->fstype, genfs->fstype) < 0)
1990 break;
1991 }
1992 newgenfs->next = genfs;
1993 if (genfs_p)
1994 genfs_p->next = newgenfs;
1995 else
1996 p->genfs = newgenfs;
1997 genfs = newgenfs;
1998 newgenfs = NULL;
1999
2000 rc = next_entry(buf, fp, sizeof(u32));
2001 if (rc)
2002 goto out;
2003
2004 nel2 = le32_to_cpu(buf[0]);
2005 for (j = 0; j < nel2; j++) {
2006 rc = next_entry(buf, fp, sizeof(u32));
2007 if (rc)
2008 goto out;
2009 len = le32_to_cpu(buf[0]);
2010
2011 rc = -ENOMEM;
2012 newc = kzalloc(sizeof(*newc), GFP_KERNEL);
2013 if (!newc)
2014 goto out;
2015
2016 rc = -ENOMEM;
2017 newc->u.name = kmalloc(len + 1, GFP_KERNEL);
2018 if (!newc->u.name)
2019 goto out;
2020
2021 rc = next_entry(newc->u.name, fp, len);
2022 if (rc)
2023 goto out;
2024 newc->u.name[len] = 0;
2025
2026 rc = next_entry(buf, fp, sizeof(u32));
2027 if (rc)
2028 goto out;
2029
2030 newc->v.sclass = le32_to_cpu(buf[0]);
2031 rc = context_read_and_validate(&newc->context[0], p, fp);
2032 if (rc)
2033 goto out;
2034
2035 for (l = NULL, c = genfs->head; c;
2036 l = c, c = c->next) {
2037 rc = -EINVAL;
2038 if (!strcmp(newc->u.name, c->u.name) &&
2039 (!c->v.sclass || !newc->v.sclass ||
2040 newc->v.sclass == c->v.sclass)) {
2041 printk(KERN_ERR "SELinux: dup genfs entry (%s,%s)\n",
2042 genfs->fstype, c->u.name);
2043 goto out;
2044 }
2045 len = strlen(newc->u.name);
2046 len2 = strlen(c->u.name);
2047 if (len > len2)
2048 break;
2049 }
2050
2051 newc->next = c;
2052 if (l)
2053 l->next = newc;
2054 else
2055 genfs->head = newc;
2056 newc = NULL;
2057 }
2058 }
2059 rc = 0;
2060out:
2061 if (newgenfs)
2062 kfree(newgenfs->fstype);
2063 kfree(newgenfs);
2064 ocontext_destroy(newc, OCON_FSUSE);
2065
2066 return rc;
2067}
2068
Eric Paris692a8a22010-07-21 12:51:03 -04002069static int ocontext_read(struct policydb *p, struct policydb_compat_info *info,
2070 void *fp)
2071{
2072 int i, j, rc;
2073 u32 nel, len;
2074 __le32 buf[3];
2075 struct ocontext *l, *c;
2076 u32 nodebuf[8];
2077
2078 for (i = 0; i < info->ocon_num; i++) {
2079 rc = next_entry(buf, fp, sizeof(u32));
2080 if (rc)
2081 goto out;
2082 nel = le32_to_cpu(buf[0]);
2083
2084 l = NULL;
2085 for (j = 0; j < nel; j++) {
2086 rc = -ENOMEM;
2087 c = kzalloc(sizeof(*c), GFP_KERNEL);
2088 if (!c)
2089 goto out;
2090 if (l)
2091 l->next = c;
2092 else
2093 p->ocontexts[i] = c;
2094 l = c;
2095
2096 switch (i) {
2097 case OCON_ISID:
2098 rc = next_entry(buf, fp, sizeof(u32));
2099 if (rc)
2100 goto out;
2101
2102 c->sid[0] = le32_to_cpu(buf[0]);
2103 rc = context_read_and_validate(&c->context[0], p, fp);
2104 if (rc)
2105 goto out;
2106 break;
2107 case OCON_FS:
2108 case OCON_NETIF:
2109 rc = next_entry(buf, fp, sizeof(u32));
2110 if (rc)
2111 goto out;
2112 len = le32_to_cpu(buf[0]);
2113
2114 rc = -ENOMEM;
2115 c->u.name = kmalloc(len + 1, GFP_KERNEL);
2116 if (!c->u.name)
2117 goto out;
2118
2119 rc = next_entry(c->u.name, fp, len);
2120 if (rc)
2121 goto out;
2122
2123 c->u.name[len] = 0;
2124 rc = context_read_and_validate(&c->context[0], p, fp);
2125 if (rc)
2126 goto out;
2127 rc = context_read_and_validate(&c->context[1], p, fp);
2128 if (rc)
2129 goto out;
2130 break;
2131 case OCON_PORT:
2132 rc = next_entry(buf, fp, sizeof(u32)*3);
2133 if (rc)
2134 goto out;
2135 c->u.port.protocol = le32_to_cpu(buf[0]);
2136 c->u.port.low_port = le32_to_cpu(buf[1]);
2137 c->u.port.high_port = le32_to_cpu(buf[2]);
2138 rc = context_read_and_validate(&c->context[0], p, fp);
2139 if (rc)
2140 goto out;
2141 break;
2142 case OCON_NODE:
2143 rc = next_entry(nodebuf, fp, sizeof(u32) * 2);
2144 if (rc)
2145 goto out;
2146 c->u.node.addr = nodebuf[0]; /* network order */
2147 c->u.node.mask = nodebuf[1]; /* network order */
2148 rc = context_read_and_validate(&c->context[0], p, fp);
2149 if (rc)
2150 goto out;
2151 break;
2152 case OCON_FSUSE:
2153 rc = next_entry(buf, fp, sizeof(u32)*2);
2154 if (rc)
2155 goto out;
2156
2157 rc = -EINVAL;
2158 c->v.behavior = le32_to_cpu(buf[0]);
2159 if (c->v.behavior > SECURITY_FS_USE_NONE)
2160 goto out;
2161
2162 rc = -ENOMEM;
2163 len = le32_to_cpu(buf[1]);
2164 c->u.name = kmalloc(len + 1, GFP_KERNEL);
2165 if (!c->u.name)
2166 goto out;
2167
2168 rc = next_entry(c->u.name, fp, len);
2169 if (rc)
2170 goto out;
2171 c->u.name[len] = 0;
2172 rc = context_read_and_validate(&c->context[0], p, fp);
2173 if (rc)
2174 goto out;
2175 break;
2176 case OCON_NODE6: {
2177 int k;
2178
2179 rc = next_entry(nodebuf, fp, sizeof(u32) * 8);
2180 if (rc)
2181 goto out;
2182 for (k = 0; k < 4; k++)
2183 c->u.node6.addr[k] = nodebuf[k];
2184 for (k = 0; k < 4; k++)
2185 c->u.node6.mask[k] = nodebuf[k+4];
2186 rc = context_read_and_validate(&c->context[0], p, fp);
2187 if (rc)
2188 goto out;
2189 break;
2190 }
2191 }
2192 }
2193 }
2194 rc = 0;
2195out:
2196 return rc;
2197}
2198
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199/*
2200 * Read the configuration data from a policy database binary
2201 * representation file into a policy database structure.
2202 */
2203int policydb_read(struct policydb *p, void *fp)
2204{
2205 struct role_allow *ra, *lra;
2206 struct role_trans *tr, *ltr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 int i, j, rc;
Stephen Smalley59dbd1b2008-06-05 09:48:51 -04002208 __le32 buf[4];
Eric Parisd1b43542010-07-21 12:50:57 -04002209 u32 len, nprim, nel;
2210
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 char *policydb_str;
2212 struct policydb_compat_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 rc = policydb_init(p);
2215 if (rc)
Eric Paris9398c7f2010-11-23 11:40:08 -05002216 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
2218 /* Read the magic number and string length. */
Eric Paris2ced3df2008-04-17 13:37:12 -04002219 rc = next_entry(buf, fp, sizeof(u32) * 2);
Eric Paris9398c7f2010-11-23 11:40:08 -05002220 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 goto bad;
2222
Eric Paris9398c7f2010-11-23 11:40:08 -05002223 rc = -EINVAL;
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07002224 if (le32_to_cpu(buf[0]) != POLICYDB_MAGIC) {
James Morris454d9722008-02-26 20:42:02 +11002225 printk(KERN_ERR "SELinux: policydb magic number 0x%x does "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 "not match expected magic number 0x%x\n",
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07002227 le32_to_cpu(buf[0]), POLICYDB_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 goto bad;
2229 }
2230
Eric Paris9398c7f2010-11-23 11:40:08 -05002231 rc = -EINVAL;
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07002232 len = le32_to_cpu(buf[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 if (len != strlen(POLICYDB_STRING)) {
James Morris454d9722008-02-26 20:42:02 +11002234 printk(KERN_ERR "SELinux: policydb string length %d does not "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 "match expected length %Zu\n",
2236 len, strlen(POLICYDB_STRING));
2237 goto bad;
2238 }
Eric Paris9398c7f2010-11-23 11:40:08 -05002239
2240 rc = -ENOMEM;
Eric Paris2ced3df2008-04-17 13:37:12 -04002241 policydb_str = kmalloc(len + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 if (!policydb_str) {
James Morris454d9722008-02-26 20:42:02 +11002243 printk(KERN_ERR "SELinux: unable to allocate memory for policydb "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 "string of length %d\n", len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 goto bad;
2246 }
Eric Paris9398c7f2010-11-23 11:40:08 -05002247
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 rc = next_entry(policydb_str, fp, len);
Eric Paris9398c7f2010-11-23 11:40:08 -05002249 if (rc) {
James Morris454d9722008-02-26 20:42:02 +11002250 printk(KERN_ERR "SELinux: truncated policydb string identifier\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 kfree(policydb_str);
2252 goto bad;
2253 }
Eric Paris9398c7f2010-11-23 11:40:08 -05002254
2255 rc = -EINVAL;
Vesa-Matti J Karidf4ea862008-07-20 23:57:01 +03002256 policydb_str[len] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 if (strcmp(policydb_str, POLICYDB_STRING)) {
James Morris454d9722008-02-26 20:42:02 +11002258 printk(KERN_ERR "SELinux: policydb string %s does not match "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 "my string %s\n", policydb_str, POLICYDB_STRING);
2260 kfree(policydb_str);
2261 goto bad;
2262 }
2263 /* Done with policydb_str. */
2264 kfree(policydb_str);
2265 policydb_str = NULL;
2266
Guido Trentalancia0719aaf2010-02-03 16:40:20 +01002267 /* Read the version and table sizes. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 rc = next_entry(buf, fp, sizeof(u32)*4);
Eric Paris9398c7f2010-11-23 11:40:08 -05002269 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271
Eric Paris9398c7f2010-11-23 11:40:08 -05002272 rc = -EINVAL;
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07002273 p->policyvers = le32_to_cpu(buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 if (p->policyvers < POLICYDB_VERSION_MIN ||
2275 p->policyvers > POLICYDB_VERSION_MAX) {
James Morris454d9722008-02-26 20:42:02 +11002276 printk(KERN_ERR "SELinux: policydb version %d does not match "
Eric Paris2ced3df2008-04-17 13:37:12 -04002277 "my version range %d-%d\n",
2278 le32_to_cpu(buf[0]), POLICYDB_VERSION_MIN, POLICYDB_VERSION_MAX);
2279 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 }
2281
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07002282 if ((le32_to_cpu(buf[1]) & POLICYDB_CONFIG_MLS)) {
Guido Trentalancia0719aaf2010-02-03 16:40:20 +01002283 p->mls_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
Eric Paris9398c7f2010-11-23 11:40:08 -05002285 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 if (p->policyvers < POLICYDB_VERSION_MLS) {
Eric Paris744ba352008-04-17 11:52:44 -04002287 printk(KERN_ERR "SELinux: security policydb version %d "
2288 "(MLS) not backwards compatible\n",
2289 p->policyvers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 goto bad;
2291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 }
Eric Paris3f120702007-09-21 14:37:10 -04002293 p->reject_unknown = !!(le32_to_cpu(buf[1]) & REJECT_UNKNOWN);
2294 p->allow_unknown = !!(le32_to_cpu(buf[1]) & ALLOW_UNKNOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
Eric Paris9398c7f2010-11-23 11:40:08 -05002296 if (p->policyvers >= POLICYDB_VERSION_POLCAP) {
2297 rc = ebitmap_read(&p->policycaps, fp);
2298 if (rc)
2299 goto bad;
2300 }
Paul Moore3bb56b22008-01-29 08:38:19 -05002301
Eric Paris9398c7f2010-11-23 11:40:08 -05002302 if (p->policyvers >= POLICYDB_VERSION_PERMISSIVE) {
2303 rc = ebitmap_read(&p->permissive_map, fp);
2304 if (rc)
2305 goto bad;
2306 }
Eric Paris64dbf072008-03-31 12:17:33 +11002307
Eric Paris9398c7f2010-11-23 11:40:08 -05002308 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 info = policydb_lookup_compat(p->policyvers);
2310 if (!info) {
James Morris454d9722008-02-26 20:42:02 +11002311 printk(KERN_ERR "SELinux: unable to find policy compat info "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 "for version %d\n", p->policyvers);
2313 goto bad;
2314 }
2315
Eric Paris9398c7f2010-11-23 11:40:08 -05002316 rc = -EINVAL;
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07002317 if (le32_to_cpu(buf[2]) != info->sym_num ||
2318 le32_to_cpu(buf[3]) != info->ocon_num) {
James Morris454d9722008-02-26 20:42:02 +11002319 printk(KERN_ERR "SELinux: policydb table sizes (%d,%d) do "
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07002320 "not match mine (%d,%d)\n", le32_to_cpu(buf[2]),
2321 le32_to_cpu(buf[3]),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 info->sym_num, info->ocon_num);
2323 goto bad;
2324 }
2325
2326 for (i = 0; i < info->sym_num; i++) {
2327 rc = next_entry(buf, fp, sizeof(u32)*2);
Eric Paris9398c7f2010-11-23 11:40:08 -05002328 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 goto bad;
2330 nprim = le32_to_cpu(buf[0]);
2331 nel = le32_to_cpu(buf[1]);
2332 for (j = 0; j < nel; j++) {
2333 rc = read_f[i](p, p->symtab[i].table, fp);
2334 if (rc)
2335 goto bad;
2336 }
2337
2338 p->symtab[i].nprim = nprim;
2339 }
2340
Harry Ciao1214eac2011-04-07 14:12:57 +08002341 rc = -EINVAL;
2342 p->process_class = string_to_security_class(p, "process");
2343 if (!p->process_class)
2344 goto bad;
2345
Stephen Smalley45e54212007-11-07 10:08:00 -05002346 rc = avtab_read(&p->te_avtab, fp, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 if (rc)
2348 goto bad;
2349
2350 if (p->policyvers >= POLICYDB_VERSION_BOOL) {
2351 rc = cond_read_list(p, fp);
2352 if (rc)
2353 goto bad;
2354 }
2355
2356 rc = next_entry(buf, fp, sizeof(u32));
Eric Paris9398c7f2010-11-23 11:40:08 -05002357 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 goto bad;
2359 nel = le32_to_cpu(buf[0]);
2360 ltr = NULL;
2361 for (i = 0; i < nel; i++) {
Eric Paris9398c7f2010-11-23 11:40:08 -05002362 rc = -ENOMEM;
James Morris89d155e2005-10-30 14:59:21 -08002363 tr = kzalloc(sizeof(*tr), GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -05002364 if (!tr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 goto bad;
Eric Paris2ced3df2008-04-17 13:37:12 -04002366 if (ltr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 ltr->next = tr;
Eric Paris2ced3df2008-04-17 13:37:12 -04002368 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 p->role_tr = tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 rc = next_entry(buf, fp, sizeof(u32)*3);
Eric Paris9398c7f2010-11-23 11:40:08 -05002371 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 goto bad;
Eric Paris9398c7f2010-11-23 11:40:08 -05002373
2374 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 tr->role = le32_to_cpu(buf[0]);
2376 tr->type = le32_to_cpu(buf[1]);
2377 tr->new_role = le32_to_cpu(buf[2]);
Harry Ciao80239762011-03-25 13:51:56 +08002378 if (p->policyvers >= POLICYDB_VERSION_ROLETRANS) {
2379 rc = next_entry(buf, fp, sizeof(u32));
2380 if (rc)
2381 goto bad;
2382 tr->tclass = le32_to_cpu(buf[0]);
2383 } else
2384 tr->tclass = p->process_class;
2385
Stephen Smalley45e54212007-11-07 10:08:00 -05002386 if (!policydb_role_isvalid(p, tr->role) ||
2387 !policydb_type_isvalid(p, tr->type) ||
Harry Ciao80239762011-03-25 13:51:56 +08002388 !policydb_class_isvalid(p, tr->tclass) ||
Eric Paris9398c7f2010-11-23 11:40:08 -05002389 !policydb_role_isvalid(p, tr->new_role))
Stephen Smalley45e54212007-11-07 10:08:00 -05002390 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 ltr = tr;
2392 }
2393
2394 rc = next_entry(buf, fp, sizeof(u32));
Eric Paris9398c7f2010-11-23 11:40:08 -05002395 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 goto bad;
2397 nel = le32_to_cpu(buf[0]);
2398 lra = NULL;
2399 for (i = 0; i < nel; i++) {
Eric Paris9398c7f2010-11-23 11:40:08 -05002400 rc = -ENOMEM;
James Morris89d155e2005-10-30 14:59:21 -08002401 ra = kzalloc(sizeof(*ra), GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -05002402 if (!ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 goto bad;
Eric Paris2ced3df2008-04-17 13:37:12 -04002404 if (lra)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 lra->next = ra;
Eric Paris2ced3df2008-04-17 13:37:12 -04002406 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 p->role_allow = ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 rc = next_entry(buf, fp, sizeof(u32)*2);
Eric Paris9398c7f2010-11-23 11:40:08 -05002409 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 goto bad;
Eric Paris9398c7f2010-11-23 11:40:08 -05002411
2412 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 ra->role = le32_to_cpu(buf[0]);
2414 ra->new_role = le32_to_cpu(buf[1]);
Stephen Smalley45e54212007-11-07 10:08:00 -05002415 if (!policydb_role_isvalid(p, ra->role) ||
Eric Paris9398c7f2010-11-23 11:40:08 -05002416 !policydb_role_isvalid(p, ra->new_role))
Stephen Smalley45e54212007-11-07 10:08:00 -05002417 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 lra = ra;
2419 }
2420
Eric Paris652bb9b2011-02-01 11:05:40 -05002421 rc = filename_trans_read(p, fp);
2422 if (rc)
2423 goto bad;
2424
Eric Paris1d9bc6dc2010-11-29 15:47:09 -05002425 rc = policydb_index(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 if (rc)
2427 goto bad;
2428
Eric Paris9398c7f2010-11-23 11:40:08 -05002429 rc = -EINVAL;
Eric Paris9398c7f2010-11-23 11:40:08 -05002430 p->process_trans_perms = string_to_av_perm(p, p->process_class, "transition");
2431 p->process_trans_perms |= string_to_av_perm(p, p->process_class, "dyntransition");
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04002432 if (!p->process_trans_perms)
2433 goto bad;
2434
Eric Paris692a8a22010-07-21 12:51:03 -04002435 rc = ocontext_read(p, info, fp);
2436 if (rc)
2437 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
Eric Parisd1b43542010-07-21 12:50:57 -04002439 rc = genfs_read(p, fp);
2440 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
Eric Paris9ee0c822010-06-11 12:37:05 -04002443 rc = range_read(p, fp);
2444 if (rc)
2445 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
Eric Paris6371dcd2010-07-29 23:02:34 -04002447 rc = -ENOMEM;
2448 p->type_attr_map_array = flex_array_alloc(sizeof(struct ebitmap),
2449 p->p_types.nprim,
2450 GFP_KERNEL | __GFP_ZERO);
2451 if (!p->type_attr_map_array)
2452 goto bad;
2453
2454 /* preallocate so we don't have to worry about the put ever failing */
Eric Paris5a3ea872011-04-28 15:55:52 -04002455 rc = flex_array_prealloc(p->type_attr_map_array, 0, p->p_types.nprim,
Eric Paris6371dcd2010-07-29 23:02:34 -04002456 GFP_KERNEL | __GFP_ZERO);
2457 if (rc)
Stephen Smalley782ebb92005-09-03 15:55:16 -07002458 goto bad;
2459
2460 for (i = 0; i < p->p_types.nprim; i++) {
Eric Paris6371dcd2010-07-29 23:02:34 -04002461 struct ebitmap *e = flex_array_get(p->type_attr_map_array, i);
2462
2463 BUG_ON(!e);
2464 ebitmap_init(e);
Stephen Smalley782ebb92005-09-03 15:55:16 -07002465 if (p->policyvers >= POLICYDB_VERSION_AVTAB) {
Eric Paris6371dcd2010-07-29 23:02:34 -04002466 rc = ebitmap_read(e, fp);
2467 if (rc)
Stephen Smalley782ebb92005-09-03 15:55:16 -07002468 goto bad;
2469 }
2470 /* add the type itself as the degenerate case */
Eric Paris6371dcd2010-07-29 23:02:34 -04002471 rc = ebitmap_set_bit(e, i, 1);
2472 if (rc)
2473 goto bad;
Stephen Smalley782ebb92005-09-03 15:55:16 -07002474 }
2475
KaiGai Koheid9250de2008-08-28 16:35:57 +09002476 rc = policydb_bounds_sanity_check(p);
2477 if (rc)
2478 goto bad;
2479
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 rc = 0;
2481out:
2482 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483bad:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 policydb_destroy(p);
2485 goto out;
2486}
Eric Pariscee74f42010-10-13 17:50:25 -04002487
2488/*
2489 * Write a MLS level structure to a policydb binary
2490 * representation file.
2491 */
2492static int mls_write_level(struct mls_level *l, void *fp)
2493{
2494 __le32 buf[1];
2495 int rc;
2496
2497 buf[0] = cpu_to_le32(l->sens);
2498 rc = put_entry(buf, sizeof(u32), 1, fp);
2499 if (rc)
2500 return rc;
2501
2502 rc = ebitmap_write(&l->cat, fp);
2503 if (rc)
2504 return rc;
2505
2506 return 0;
2507}
2508
2509/*
2510 * Write a MLS range structure to a policydb binary
2511 * representation file.
2512 */
2513static int mls_write_range_helper(struct mls_range *r, void *fp)
2514{
2515 __le32 buf[3];
2516 size_t items;
2517 int rc, eq;
2518
2519 eq = mls_level_eq(&r->level[1], &r->level[0]);
2520
2521 if (eq)
2522 items = 2;
2523 else
2524 items = 3;
2525 buf[0] = cpu_to_le32(items-1);
2526 buf[1] = cpu_to_le32(r->level[0].sens);
2527 if (!eq)
2528 buf[2] = cpu_to_le32(r->level[1].sens);
2529
2530 BUG_ON(items > (sizeof(buf)/sizeof(buf[0])));
2531
2532 rc = put_entry(buf, sizeof(u32), items, fp);
2533 if (rc)
2534 return rc;
2535
2536 rc = ebitmap_write(&r->level[0].cat, fp);
2537 if (rc)
2538 return rc;
2539 if (!eq) {
2540 rc = ebitmap_write(&r->level[1].cat, fp);
2541 if (rc)
2542 return rc;
2543 }
2544
2545 return 0;
2546}
2547
2548static int sens_write(void *vkey, void *datum, void *ptr)
2549{
2550 char *key = vkey;
2551 struct level_datum *levdatum = datum;
2552 struct policy_data *pd = ptr;
2553 void *fp = pd->fp;
2554 __le32 buf[2];
2555 size_t len;
2556 int rc;
2557
2558 len = strlen(key);
2559 buf[0] = cpu_to_le32(len);
2560 buf[1] = cpu_to_le32(levdatum->isalias);
2561 rc = put_entry(buf, sizeof(u32), 2, fp);
2562 if (rc)
2563 return rc;
2564
2565 rc = put_entry(key, 1, len, fp);
2566 if (rc)
2567 return rc;
2568
2569 rc = mls_write_level(levdatum->level, fp);
2570 if (rc)
2571 return rc;
2572
2573 return 0;
2574}
2575
2576static int cat_write(void *vkey, void *datum, void *ptr)
2577{
2578 char *key = vkey;
2579 struct cat_datum *catdatum = datum;
2580 struct policy_data *pd = ptr;
2581 void *fp = pd->fp;
2582 __le32 buf[3];
2583 size_t len;
2584 int rc;
2585
2586 len = strlen(key);
2587 buf[0] = cpu_to_le32(len);
2588 buf[1] = cpu_to_le32(catdatum->value);
2589 buf[2] = cpu_to_le32(catdatum->isalias);
2590 rc = put_entry(buf, sizeof(u32), 3, fp);
2591 if (rc)
2592 return rc;
2593
2594 rc = put_entry(key, 1, len, fp);
2595 if (rc)
2596 return rc;
2597
2598 return 0;
2599}
2600
Harry Ciaoc900ff32011-03-25 13:52:00 +08002601static int role_trans_write(struct policydb *p, void *fp)
Eric Pariscee74f42010-10-13 17:50:25 -04002602{
Harry Ciaoc900ff32011-03-25 13:52:00 +08002603 struct role_trans *r = p->role_tr;
Eric Pariscee74f42010-10-13 17:50:25 -04002604 struct role_trans *tr;
2605 u32 buf[3];
2606 size_t nel;
2607 int rc;
2608
2609 nel = 0;
2610 for (tr = r; tr; tr = tr->next)
2611 nel++;
2612 buf[0] = cpu_to_le32(nel);
2613 rc = put_entry(buf, sizeof(u32), 1, fp);
2614 if (rc)
2615 return rc;
2616 for (tr = r; tr; tr = tr->next) {
2617 buf[0] = cpu_to_le32(tr->role);
2618 buf[1] = cpu_to_le32(tr->type);
2619 buf[2] = cpu_to_le32(tr->new_role);
2620 rc = put_entry(buf, sizeof(u32), 3, fp);
2621 if (rc)
2622 return rc;
Harry Ciaoc900ff32011-03-25 13:52:00 +08002623 if (p->policyvers >= POLICYDB_VERSION_ROLETRANS) {
2624 buf[0] = cpu_to_le32(tr->tclass);
2625 rc = put_entry(buf, sizeof(u32), 1, fp);
2626 if (rc)
2627 return rc;
2628 }
Eric Pariscee74f42010-10-13 17:50:25 -04002629 }
2630
2631 return 0;
2632}
2633
2634static int role_allow_write(struct role_allow *r, void *fp)
2635{
2636 struct role_allow *ra;
2637 u32 buf[2];
2638 size_t nel;
2639 int rc;
2640
2641 nel = 0;
2642 for (ra = r; ra; ra = ra->next)
2643 nel++;
2644 buf[0] = cpu_to_le32(nel);
2645 rc = put_entry(buf, sizeof(u32), 1, fp);
2646 if (rc)
2647 return rc;
2648 for (ra = r; ra; ra = ra->next) {
2649 buf[0] = cpu_to_le32(ra->role);
2650 buf[1] = cpu_to_le32(ra->new_role);
2651 rc = put_entry(buf, sizeof(u32), 2, fp);
2652 if (rc)
2653 return rc;
2654 }
2655 return 0;
2656}
2657
2658/*
2659 * Write a security context structure
2660 * to a policydb binary representation file.
2661 */
2662static int context_write(struct policydb *p, struct context *c,
2663 void *fp)
2664{
2665 int rc;
2666 __le32 buf[3];
2667
2668 buf[0] = cpu_to_le32(c->user);
2669 buf[1] = cpu_to_le32(c->role);
2670 buf[2] = cpu_to_le32(c->type);
2671
2672 rc = put_entry(buf, sizeof(u32), 3, fp);
2673 if (rc)
2674 return rc;
2675
2676 rc = mls_write_range_helper(&c->range, fp);
2677 if (rc)
2678 return rc;
2679
2680 return 0;
2681}
2682
2683/*
2684 * The following *_write functions are used to
2685 * write the symbol data to a policy database
2686 * binary representation file.
2687 */
2688
2689static int perm_write(void *vkey, void *datum, void *fp)
2690{
2691 char *key = vkey;
2692 struct perm_datum *perdatum = datum;
2693 __le32 buf[2];
2694 size_t len;
2695 int rc;
2696
2697 len = strlen(key);
2698 buf[0] = cpu_to_le32(len);
2699 buf[1] = cpu_to_le32(perdatum->value);
2700 rc = put_entry(buf, sizeof(u32), 2, fp);
2701 if (rc)
2702 return rc;
2703
2704 rc = put_entry(key, 1, len, fp);
2705 if (rc)
2706 return rc;
2707
2708 return 0;
2709}
2710
2711static int common_write(void *vkey, void *datum, void *ptr)
2712{
2713 char *key = vkey;
2714 struct common_datum *comdatum = datum;
2715 struct policy_data *pd = ptr;
2716 void *fp = pd->fp;
2717 __le32 buf[4];
2718 size_t len;
2719 int rc;
2720
2721 len = strlen(key);
2722 buf[0] = cpu_to_le32(len);
2723 buf[1] = cpu_to_le32(comdatum->value);
2724 buf[2] = cpu_to_le32(comdatum->permissions.nprim);
2725 buf[3] = cpu_to_le32(comdatum->permissions.table->nel);
2726 rc = put_entry(buf, sizeof(u32), 4, fp);
2727 if (rc)
2728 return rc;
2729
2730 rc = put_entry(key, 1, len, fp);
2731 if (rc)
2732 return rc;
2733
2734 rc = hashtab_map(comdatum->permissions.table, perm_write, fp);
2735 if (rc)
2736 return rc;
2737
2738 return 0;
2739}
2740
2741static int write_cons_helper(struct policydb *p, struct constraint_node *node,
2742 void *fp)
2743{
2744 struct constraint_node *c;
2745 struct constraint_expr *e;
2746 __le32 buf[3];
2747 u32 nel;
2748 int rc;
2749
2750 for (c = node; c; c = c->next) {
2751 nel = 0;
2752 for (e = c->expr; e; e = e->next)
2753 nel++;
2754 buf[0] = cpu_to_le32(c->permissions);
2755 buf[1] = cpu_to_le32(nel);
2756 rc = put_entry(buf, sizeof(u32), 2, fp);
2757 if (rc)
2758 return rc;
2759 for (e = c->expr; e; e = e->next) {
2760 buf[0] = cpu_to_le32(e->expr_type);
2761 buf[1] = cpu_to_le32(e->attr);
2762 buf[2] = cpu_to_le32(e->op);
2763 rc = put_entry(buf, sizeof(u32), 3, fp);
2764 if (rc)
2765 return rc;
2766
2767 switch (e->expr_type) {
2768 case CEXPR_NAMES:
2769 rc = ebitmap_write(&e->names, fp);
2770 if (rc)
2771 return rc;
2772 break;
2773 default:
2774 break;
2775 }
2776 }
2777 }
2778
2779 return 0;
2780}
2781
2782static int class_write(void *vkey, void *datum, void *ptr)
2783{
2784 char *key = vkey;
2785 struct class_datum *cladatum = datum;
2786 struct policy_data *pd = ptr;
2787 void *fp = pd->fp;
2788 struct policydb *p = pd->p;
2789 struct constraint_node *c;
2790 __le32 buf[6];
2791 u32 ncons;
2792 size_t len, len2;
2793 int rc;
2794
2795 len = strlen(key);
2796 if (cladatum->comkey)
2797 len2 = strlen(cladatum->comkey);
2798 else
2799 len2 = 0;
2800
2801 ncons = 0;
2802 for (c = cladatum->constraints; c; c = c->next)
2803 ncons++;
2804
2805 buf[0] = cpu_to_le32(len);
2806 buf[1] = cpu_to_le32(len2);
2807 buf[2] = cpu_to_le32(cladatum->value);
2808 buf[3] = cpu_to_le32(cladatum->permissions.nprim);
2809 if (cladatum->permissions.table)
2810 buf[4] = cpu_to_le32(cladatum->permissions.table->nel);
2811 else
2812 buf[4] = 0;
2813 buf[5] = cpu_to_le32(ncons);
2814 rc = put_entry(buf, sizeof(u32), 6, fp);
2815 if (rc)
2816 return rc;
2817
2818 rc = put_entry(key, 1, len, fp);
2819 if (rc)
2820 return rc;
2821
2822 if (cladatum->comkey) {
2823 rc = put_entry(cladatum->comkey, 1, len2, fp);
2824 if (rc)
2825 return rc;
2826 }
2827
2828 rc = hashtab_map(cladatum->permissions.table, perm_write, fp);
2829 if (rc)
2830 return rc;
2831
2832 rc = write_cons_helper(p, cladatum->constraints, fp);
2833 if (rc)
2834 return rc;
2835
2836 /* write out the validatetrans rule */
2837 ncons = 0;
2838 for (c = cladatum->validatetrans; c; c = c->next)
2839 ncons++;
2840
2841 buf[0] = cpu_to_le32(ncons);
2842 rc = put_entry(buf, sizeof(u32), 1, fp);
2843 if (rc)
2844 return rc;
2845
2846 rc = write_cons_helper(p, cladatum->validatetrans, fp);
2847 if (rc)
2848 return rc;
2849
Eric Parisaa893262012-03-20 14:35:12 -04002850 if (p->policyvers >= POLICYDB_VERSION_NEW_OBJECT_DEFAULTS) {
2851 buf[0] = cpu_to_le32(cladatum->default_user);
2852 buf[1] = cpu_to_le32(cladatum->default_role);
2853 buf[2] = cpu_to_le32(cladatum->default_range);
2854
2855 rc = put_entry(buf, sizeof(uint32_t), 3, fp);
2856 if (rc)
2857 return rc;
2858 }
2859
Eric Pariscee74f42010-10-13 17:50:25 -04002860 return 0;
2861}
2862
2863static int role_write(void *vkey, void *datum, void *ptr)
2864{
2865 char *key = vkey;
2866 struct role_datum *role = datum;
2867 struct policy_data *pd = ptr;
2868 void *fp = pd->fp;
2869 struct policydb *p = pd->p;
2870 __le32 buf[3];
2871 size_t items, len;
2872 int rc;
2873
2874 len = strlen(key);
2875 items = 0;
2876 buf[items++] = cpu_to_le32(len);
2877 buf[items++] = cpu_to_le32(role->value);
2878 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
2879 buf[items++] = cpu_to_le32(role->bounds);
2880
2881 BUG_ON(items > (sizeof(buf)/sizeof(buf[0])));
2882
2883 rc = put_entry(buf, sizeof(u32), items, fp);
2884 if (rc)
2885 return rc;
2886
2887 rc = put_entry(key, 1, len, fp);
2888 if (rc)
2889 return rc;
2890
2891 rc = ebitmap_write(&role->dominates, fp);
2892 if (rc)
2893 return rc;
2894
2895 rc = ebitmap_write(&role->types, fp);
2896 if (rc)
2897 return rc;
2898
2899 return 0;
2900}
2901
2902static int type_write(void *vkey, void *datum, void *ptr)
2903{
2904 char *key = vkey;
2905 struct type_datum *typdatum = datum;
2906 struct policy_data *pd = ptr;
2907 struct policydb *p = pd->p;
2908 void *fp = pd->fp;
2909 __le32 buf[4];
2910 int rc;
2911 size_t items, len;
2912
2913 len = strlen(key);
2914 items = 0;
2915 buf[items++] = cpu_to_le32(len);
2916 buf[items++] = cpu_to_le32(typdatum->value);
2917 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) {
2918 u32 properties = 0;
2919
2920 if (typdatum->primary)
2921 properties |= TYPEDATUM_PROPERTY_PRIMARY;
2922
2923 if (typdatum->attribute)
2924 properties |= TYPEDATUM_PROPERTY_ATTRIBUTE;
2925
2926 buf[items++] = cpu_to_le32(properties);
2927 buf[items++] = cpu_to_le32(typdatum->bounds);
2928 } else {
2929 buf[items++] = cpu_to_le32(typdatum->primary);
2930 }
2931 BUG_ON(items > (sizeof(buf) / sizeof(buf[0])));
2932 rc = put_entry(buf, sizeof(u32), items, fp);
2933 if (rc)
2934 return rc;
2935
2936 rc = put_entry(key, 1, len, fp);
2937 if (rc)
2938 return rc;
2939
2940 return 0;
2941}
2942
2943static int user_write(void *vkey, void *datum, void *ptr)
2944{
2945 char *key = vkey;
2946 struct user_datum *usrdatum = datum;
2947 struct policy_data *pd = ptr;
2948 struct policydb *p = pd->p;
2949 void *fp = pd->fp;
2950 __le32 buf[3];
2951 size_t items, len;
2952 int rc;
2953
2954 len = strlen(key);
2955 items = 0;
2956 buf[items++] = cpu_to_le32(len);
2957 buf[items++] = cpu_to_le32(usrdatum->value);
2958 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
2959 buf[items++] = cpu_to_le32(usrdatum->bounds);
2960 BUG_ON(items > (sizeof(buf) / sizeof(buf[0])));
2961 rc = put_entry(buf, sizeof(u32), items, fp);
2962 if (rc)
2963 return rc;
2964
2965 rc = put_entry(key, 1, len, fp);
2966 if (rc)
2967 return rc;
2968
2969 rc = ebitmap_write(&usrdatum->roles, fp);
2970 if (rc)
2971 return rc;
2972
2973 rc = mls_write_range_helper(&usrdatum->range, fp);
2974 if (rc)
2975 return rc;
2976
2977 rc = mls_write_level(&usrdatum->dfltlevel, fp);
2978 if (rc)
2979 return rc;
2980
2981 return 0;
2982}
2983
2984static int (*write_f[SYM_NUM]) (void *key, void *datum,
2985 void *datap) =
2986{
2987 common_write,
2988 class_write,
2989 role_write,
2990 type_write,
2991 user_write,
2992 cond_write_bool,
2993 sens_write,
2994 cat_write,
2995};
2996
2997static int ocontext_write(struct policydb *p, struct policydb_compat_info *info,
2998 void *fp)
2999{
3000 unsigned int i, j, rc;
3001 size_t nel, len;
3002 __le32 buf[3];
3003 u32 nodebuf[8];
3004 struct ocontext *c;
3005 for (i = 0; i < info->ocon_num; i++) {
3006 nel = 0;
3007 for (c = p->ocontexts[i]; c; c = c->next)
3008 nel++;
3009 buf[0] = cpu_to_le32(nel);
3010 rc = put_entry(buf, sizeof(u32), 1, fp);
3011 if (rc)
3012 return rc;
3013 for (c = p->ocontexts[i]; c; c = c->next) {
3014 switch (i) {
3015 case OCON_ISID:
3016 buf[0] = cpu_to_le32(c->sid[0]);
3017 rc = put_entry(buf, sizeof(u32), 1, fp);
3018 if (rc)
3019 return rc;
3020 rc = context_write(p, &c->context[0], fp);
3021 if (rc)
3022 return rc;
3023 break;
3024 case OCON_FS:
3025 case OCON_NETIF:
3026 len = strlen(c->u.name);
3027 buf[0] = cpu_to_le32(len);
3028 rc = put_entry(buf, sizeof(u32), 1, fp);
3029 if (rc)
3030 return rc;
3031 rc = put_entry(c->u.name, 1, len, fp);
3032 if (rc)
3033 return rc;
3034 rc = context_write(p, &c->context[0], fp);
3035 if (rc)
3036 return rc;
3037 rc = context_write(p, &c->context[1], fp);
3038 if (rc)
3039 return rc;
3040 break;
3041 case OCON_PORT:
3042 buf[0] = cpu_to_le32(c->u.port.protocol);
3043 buf[1] = cpu_to_le32(c->u.port.low_port);
3044 buf[2] = cpu_to_le32(c->u.port.high_port);
3045 rc = put_entry(buf, sizeof(u32), 3, fp);
3046 if (rc)
3047 return rc;
3048 rc = context_write(p, &c->context[0], fp);
3049 if (rc)
3050 return rc;
3051 break;
3052 case OCON_NODE:
3053 nodebuf[0] = c->u.node.addr; /* network order */
3054 nodebuf[1] = c->u.node.mask; /* network order */
3055 rc = put_entry(nodebuf, sizeof(u32), 2, fp);
3056 if (rc)
3057 return rc;
3058 rc = context_write(p, &c->context[0], fp);
3059 if (rc)
3060 return rc;
3061 break;
3062 case OCON_FSUSE:
3063 buf[0] = cpu_to_le32(c->v.behavior);
3064 len = strlen(c->u.name);
3065 buf[1] = cpu_to_le32(len);
3066 rc = put_entry(buf, sizeof(u32), 2, fp);
3067 if (rc)
3068 return rc;
3069 rc = put_entry(c->u.name, 1, len, fp);
3070 if (rc)
3071 return rc;
3072 rc = context_write(p, &c->context[0], fp);
3073 if (rc)
3074 return rc;
3075 break;
3076 case OCON_NODE6:
3077 for (j = 0; j < 4; j++)
3078 nodebuf[j] = c->u.node6.addr[j]; /* network order */
3079 for (j = 0; j < 4; j++)
3080 nodebuf[j + 4] = c->u.node6.mask[j]; /* network order */
3081 rc = put_entry(nodebuf, sizeof(u32), 8, fp);
3082 if (rc)
3083 return rc;
3084 rc = context_write(p, &c->context[0], fp);
3085 if (rc)
3086 return rc;
3087 break;
3088 }
3089 }
3090 }
3091 return 0;
3092}
3093
3094static int genfs_write(struct policydb *p, void *fp)
3095{
3096 struct genfs *genfs;
3097 struct ocontext *c;
3098 size_t len;
3099 __le32 buf[1];
3100 int rc;
3101
3102 len = 0;
3103 for (genfs = p->genfs; genfs; genfs = genfs->next)
3104 len++;
3105 buf[0] = cpu_to_le32(len);
3106 rc = put_entry(buf, sizeof(u32), 1, fp);
3107 if (rc)
3108 return rc;
3109 for (genfs = p->genfs; genfs; genfs = genfs->next) {
3110 len = strlen(genfs->fstype);
3111 buf[0] = cpu_to_le32(len);
3112 rc = put_entry(buf, sizeof(u32), 1, fp);
3113 if (rc)
3114 return rc;
3115 rc = put_entry(genfs->fstype, 1, len, fp);
3116 if (rc)
3117 return rc;
3118 len = 0;
3119 for (c = genfs->head; c; c = c->next)
3120 len++;
3121 buf[0] = cpu_to_le32(len);
3122 rc = put_entry(buf, sizeof(u32), 1, fp);
3123 if (rc)
3124 return rc;
3125 for (c = genfs->head; c; c = c->next) {
3126 len = strlen(c->u.name);
3127 buf[0] = cpu_to_le32(len);
3128 rc = put_entry(buf, sizeof(u32), 1, fp);
3129 if (rc)
3130 return rc;
3131 rc = put_entry(c->u.name, 1, len, fp);
3132 if (rc)
3133 return rc;
3134 buf[0] = cpu_to_le32(c->v.sclass);
3135 rc = put_entry(buf, sizeof(u32), 1, fp);
3136 if (rc)
3137 return rc;
3138 rc = context_write(p, &c->context[0], fp);
3139 if (rc)
3140 return rc;
3141 }
3142 }
3143 return 0;
3144}
3145
Eric Paris3f058ef2011-04-28 15:11:21 -04003146static int hashtab_cnt(void *key, void *data, void *ptr)
Eric Pariscee74f42010-10-13 17:50:25 -04003147{
3148 int *cnt = ptr;
3149 *cnt = *cnt + 1;
3150
3151 return 0;
3152}
3153
3154static int range_write_helper(void *key, void *data, void *ptr)
3155{
3156 __le32 buf[2];
3157 struct range_trans *rt = key;
3158 struct mls_range *r = data;
3159 struct policy_data *pd = ptr;
3160 void *fp = pd->fp;
3161 struct policydb *p = pd->p;
3162 int rc;
3163
3164 buf[0] = cpu_to_le32(rt->source_type);
3165 buf[1] = cpu_to_le32(rt->target_type);
3166 rc = put_entry(buf, sizeof(u32), 2, fp);
3167 if (rc)
3168 return rc;
3169 if (p->policyvers >= POLICYDB_VERSION_RANGETRANS) {
3170 buf[0] = cpu_to_le32(rt->target_class);
3171 rc = put_entry(buf, sizeof(u32), 1, fp);
3172 if (rc)
3173 return rc;
3174 }
3175 rc = mls_write_range_helper(r, fp);
3176 if (rc)
3177 return rc;
3178
3179 return 0;
3180}
3181
3182static int range_write(struct policydb *p, void *fp)
3183{
3184 size_t nel;
3185 __le32 buf[1];
3186 int rc;
3187 struct policy_data pd;
3188
3189 pd.p = p;
3190 pd.fp = fp;
3191
3192 /* count the number of entries in the hashtab */
3193 nel = 0;
Eric Paris3f058ef2011-04-28 15:11:21 -04003194 rc = hashtab_map(p->range_tr, hashtab_cnt, &nel);
Eric Pariscee74f42010-10-13 17:50:25 -04003195 if (rc)
3196 return rc;
3197
3198 buf[0] = cpu_to_le32(nel);
3199 rc = put_entry(buf, sizeof(u32), 1, fp);
3200 if (rc)
3201 return rc;
3202
3203 /* actually write all of the entries */
3204 rc = hashtab_map(p->range_tr, range_write_helper, &pd);
3205 if (rc)
3206 return rc;
3207
3208 return 0;
3209}
3210
Eric Paris2463c26d2011-04-28 15:11:21 -04003211static int filename_write_helper(void *key, void *data, void *ptr)
3212{
3213 __le32 buf[4];
3214 struct filename_trans *ft = key;
3215 struct filename_trans_datum *otype = data;
3216 void *fp = ptr;
3217 int rc;
3218 u32 len;
3219
3220 len = strlen(ft->name);
3221 buf[0] = cpu_to_le32(len);
3222 rc = put_entry(buf, sizeof(u32), 1, fp);
3223 if (rc)
3224 return rc;
3225
3226 rc = put_entry(ft->name, sizeof(char), len, fp);
3227 if (rc)
3228 return rc;
3229
3230 buf[0] = ft->stype;
3231 buf[1] = ft->ttype;
3232 buf[2] = ft->tclass;
3233 buf[3] = otype->otype;
3234
3235 rc = put_entry(buf, sizeof(u32), 4, fp);
3236 if (rc)
3237 return rc;
3238
3239 return 0;
3240}
3241
Eric Paris652bb9b2011-02-01 11:05:40 -05003242static int filename_trans_write(struct policydb *p, void *fp)
3243{
Eric Paris2463c26d2011-04-28 15:11:21 -04003244 u32 nel;
3245 __le32 buf[1];
Eric Paris652bb9b2011-02-01 11:05:40 -05003246 int rc;
3247
Roy.Lided50982011-05-20 10:38:06 +08003248 if (p->policyvers < POLICYDB_VERSION_FILENAME_TRANS)
3249 return 0;
3250
Eric Paris2463c26d2011-04-28 15:11:21 -04003251 nel = 0;
3252 rc = hashtab_map(p->filename_trans, hashtab_cnt, &nel);
3253 if (rc)
3254 return rc;
Eric Paris652bb9b2011-02-01 11:05:40 -05003255
3256 buf[0] = cpu_to_le32(nel);
3257 rc = put_entry(buf, sizeof(u32), 1, fp);
3258 if (rc)
3259 return rc;
3260
Eric Paris2463c26d2011-04-28 15:11:21 -04003261 rc = hashtab_map(p->filename_trans, filename_write_helper, fp);
3262 if (rc)
3263 return rc;
Eric Paris652bb9b2011-02-01 11:05:40 -05003264
Eric Paris652bb9b2011-02-01 11:05:40 -05003265 return 0;
3266}
Eric Paris2463c26d2011-04-28 15:11:21 -04003267
Eric Pariscee74f42010-10-13 17:50:25 -04003268/*
3269 * Write the configuration data in a policy database
3270 * structure to a policy database binary representation
3271 * file.
3272 */
3273int policydb_write(struct policydb *p, void *fp)
3274{
3275 unsigned int i, num_syms;
3276 int rc;
3277 __le32 buf[4];
3278 u32 config;
3279 size_t len;
3280 struct policydb_compat_info *info;
3281
3282 /*
3283 * refuse to write policy older than compressed avtab
3284 * to simplify the writer. There are other tests dropped
3285 * since we assume this throughout the writer code. Be
3286 * careful if you ever try to remove this restriction
3287 */
3288 if (p->policyvers < POLICYDB_VERSION_AVTAB) {
3289 printk(KERN_ERR "SELinux: refusing to write policy version %d."
3290 " Because it is less than version %d\n", p->policyvers,
3291 POLICYDB_VERSION_AVTAB);
3292 return -EINVAL;
3293 }
3294
3295 config = 0;
3296 if (p->mls_enabled)
3297 config |= POLICYDB_CONFIG_MLS;
3298
3299 if (p->reject_unknown)
3300 config |= REJECT_UNKNOWN;
3301 if (p->allow_unknown)
3302 config |= ALLOW_UNKNOWN;
3303
3304 /* Write the magic number and string identifiers. */
3305 buf[0] = cpu_to_le32(POLICYDB_MAGIC);
3306 len = strlen(POLICYDB_STRING);
3307 buf[1] = cpu_to_le32(len);
3308 rc = put_entry(buf, sizeof(u32), 2, fp);
3309 if (rc)
3310 return rc;
3311 rc = put_entry(POLICYDB_STRING, 1, len, fp);
3312 if (rc)
3313 return rc;
3314
3315 /* Write the version, config, and table sizes. */
3316 info = policydb_lookup_compat(p->policyvers);
3317 if (!info) {
3318 printk(KERN_ERR "SELinux: compatibility lookup failed for policy "
3319 "version %d", p->policyvers);
Eric Paris9398c7f2010-11-23 11:40:08 -05003320 return -EINVAL;
Eric Pariscee74f42010-10-13 17:50:25 -04003321 }
3322
3323 buf[0] = cpu_to_le32(p->policyvers);
3324 buf[1] = cpu_to_le32(config);
3325 buf[2] = cpu_to_le32(info->sym_num);
3326 buf[3] = cpu_to_le32(info->ocon_num);
3327
3328 rc = put_entry(buf, sizeof(u32), 4, fp);
3329 if (rc)
3330 return rc;
3331
3332 if (p->policyvers >= POLICYDB_VERSION_POLCAP) {
3333 rc = ebitmap_write(&p->policycaps, fp);
3334 if (rc)
3335 return rc;
3336 }
3337
3338 if (p->policyvers >= POLICYDB_VERSION_PERMISSIVE) {
3339 rc = ebitmap_write(&p->permissive_map, fp);
3340 if (rc)
3341 return rc;
3342 }
3343
3344 num_syms = info->sym_num;
3345 for (i = 0; i < num_syms; i++) {
3346 struct policy_data pd;
3347
3348 pd.fp = fp;
3349 pd.p = p;
3350
3351 buf[0] = cpu_to_le32(p->symtab[i].nprim);
3352 buf[1] = cpu_to_le32(p->symtab[i].table->nel);
3353
3354 rc = put_entry(buf, sizeof(u32), 2, fp);
3355 if (rc)
3356 return rc;
3357 rc = hashtab_map(p->symtab[i].table, write_f[i], &pd);
3358 if (rc)
3359 return rc;
3360 }
3361
3362 rc = avtab_write(p, &p->te_avtab, fp);
3363 if (rc)
3364 return rc;
3365
3366 rc = cond_write_list(p, p->cond_list, fp);
3367 if (rc)
3368 return rc;
3369
Harry Ciaoc900ff32011-03-25 13:52:00 +08003370 rc = role_trans_write(p, fp);
Eric Pariscee74f42010-10-13 17:50:25 -04003371 if (rc)
3372 return rc;
3373
3374 rc = role_allow_write(p->role_allow, fp);
3375 if (rc)
3376 return rc;
3377
Eric Paris652bb9b2011-02-01 11:05:40 -05003378 rc = filename_trans_write(p, fp);
3379 if (rc)
3380 return rc;
3381
Eric Pariscee74f42010-10-13 17:50:25 -04003382 rc = ocontext_write(p, info, fp);
3383 if (rc)
3384 return rc;
3385
3386 rc = genfs_write(p, fp);
3387 if (rc)
3388 return rc;
3389
3390 rc = range_write(p, fp);
3391 if (rc)
3392 return rc;
3393
3394 for (i = 0; i < p->p_types.nprim; i++) {
3395 struct ebitmap *e = flex_array_get(p->type_attr_map_array, i);
3396
3397 BUG_ON(!e);
3398 rc = ebitmap_write(e, fp);
3399 if (rc)
3400 return rc;
3401 }
3402
3403 return 0;
3404}