blob: 273eb0913c05b0cea66078f642950c6c2b3d1730 [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 Parisd076bc72012-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 Paris03a4c012011-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 Trentalancia0719aaf52010-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 Paris03a4c012011-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 Parisd076bc72012-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 Paris03a4c012011-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
Tetsuo Handaef609ed2014-01-06 21:28:15 +09001932 rc = hashtab_insert(p->filename_trans, ft, otype);
1933 if (rc) {
1934 /*
1935 * Do not return -EEXIST to the caller, or the system
1936 * will not boot.
1937 */
1938 if (rc != -EEXIST)
1939 goto out;
1940 /* But free memory to avoid memory leak. */
1941 kfree(ft);
1942 kfree(name);
1943 kfree(otype);
1944 }
Eric Paris652bb9b2011-02-01 11:05:40 -05001945 }
Eric Paris2463c26d2011-04-28 15:11:21 -04001946 hash_eval(p->filename_trans, "filenametr");
1947 return 0;
Eric Paris652bb9b2011-02-01 11:05:40 -05001948out:
Eric Paris2463c26d2011-04-28 15:11:21 -04001949 kfree(ft);
1950 kfree(name);
1951 kfree(otype);
1952
Eric Paris652bb9b2011-02-01 11:05:40 -05001953 return rc;
1954}
1955
Eric Parisd1b43542010-07-21 12:50:57 -04001956static int genfs_read(struct policydb *p, void *fp)
1957{
1958 int i, j, rc;
1959 u32 nel, nel2, len, len2;
1960 __le32 buf[1];
1961 struct ocontext *l, *c;
1962 struct ocontext *newc = NULL;
1963 struct genfs *genfs_p, *genfs;
1964 struct genfs *newgenfs = NULL;
1965
1966 rc = next_entry(buf, fp, sizeof(u32));
1967 if (rc)
1968 goto out;
1969 nel = le32_to_cpu(buf[0]);
1970
1971 for (i = 0; i < nel; i++) {
1972 rc = next_entry(buf, fp, sizeof(u32));
1973 if (rc)
1974 goto out;
1975 len = le32_to_cpu(buf[0]);
1976
1977 rc = -ENOMEM;
1978 newgenfs = kzalloc(sizeof(*newgenfs), GFP_KERNEL);
1979 if (!newgenfs)
1980 goto out;
1981
1982 rc = -ENOMEM;
1983 newgenfs->fstype = kmalloc(len + 1, GFP_KERNEL);
1984 if (!newgenfs->fstype)
1985 goto out;
1986
1987 rc = next_entry(newgenfs->fstype, fp, len);
1988 if (rc)
1989 goto out;
1990
1991 newgenfs->fstype[len] = 0;
1992
1993 for (genfs_p = NULL, genfs = p->genfs; genfs;
1994 genfs_p = genfs, genfs = genfs->next) {
1995 rc = -EINVAL;
1996 if (strcmp(newgenfs->fstype, genfs->fstype) == 0) {
1997 printk(KERN_ERR "SELinux: dup genfs fstype %s\n",
1998 newgenfs->fstype);
1999 goto out;
2000 }
2001 if (strcmp(newgenfs->fstype, genfs->fstype) < 0)
2002 break;
2003 }
2004 newgenfs->next = genfs;
2005 if (genfs_p)
2006 genfs_p->next = newgenfs;
2007 else
2008 p->genfs = newgenfs;
2009 genfs = newgenfs;
2010 newgenfs = NULL;
2011
2012 rc = next_entry(buf, fp, sizeof(u32));
2013 if (rc)
2014 goto out;
2015
2016 nel2 = le32_to_cpu(buf[0]);
2017 for (j = 0; j < nel2; j++) {
2018 rc = next_entry(buf, fp, sizeof(u32));
2019 if (rc)
2020 goto out;
2021 len = le32_to_cpu(buf[0]);
2022
2023 rc = -ENOMEM;
2024 newc = kzalloc(sizeof(*newc), GFP_KERNEL);
2025 if (!newc)
2026 goto out;
2027
2028 rc = -ENOMEM;
2029 newc->u.name = kmalloc(len + 1, GFP_KERNEL);
2030 if (!newc->u.name)
2031 goto out;
2032
2033 rc = next_entry(newc->u.name, fp, len);
2034 if (rc)
2035 goto out;
2036 newc->u.name[len] = 0;
2037
2038 rc = next_entry(buf, fp, sizeof(u32));
2039 if (rc)
2040 goto out;
2041
2042 newc->v.sclass = le32_to_cpu(buf[0]);
2043 rc = context_read_and_validate(&newc->context[0], p, fp);
2044 if (rc)
2045 goto out;
2046
2047 for (l = NULL, c = genfs->head; c;
2048 l = c, c = c->next) {
2049 rc = -EINVAL;
2050 if (!strcmp(newc->u.name, c->u.name) &&
2051 (!c->v.sclass || !newc->v.sclass ||
2052 newc->v.sclass == c->v.sclass)) {
2053 printk(KERN_ERR "SELinux: dup genfs entry (%s,%s)\n",
2054 genfs->fstype, c->u.name);
2055 goto out;
2056 }
2057 len = strlen(newc->u.name);
2058 len2 = strlen(c->u.name);
2059 if (len > len2)
2060 break;
2061 }
2062
2063 newc->next = c;
2064 if (l)
2065 l->next = newc;
2066 else
2067 genfs->head = newc;
2068 newc = NULL;
2069 }
2070 }
2071 rc = 0;
2072out:
2073 if (newgenfs)
2074 kfree(newgenfs->fstype);
2075 kfree(newgenfs);
2076 ocontext_destroy(newc, OCON_FSUSE);
2077
2078 return rc;
2079}
2080
Eric Paris692a8a22010-07-21 12:51:03 -04002081static int ocontext_read(struct policydb *p, struct policydb_compat_info *info,
2082 void *fp)
2083{
2084 int i, j, rc;
2085 u32 nel, len;
2086 __le32 buf[3];
2087 struct ocontext *l, *c;
2088 u32 nodebuf[8];
2089
2090 for (i = 0; i < info->ocon_num; i++) {
2091 rc = next_entry(buf, fp, sizeof(u32));
2092 if (rc)
2093 goto out;
2094 nel = le32_to_cpu(buf[0]);
2095
2096 l = NULL;
2097 for (j = 0; j < nel; j++) {
2098 rc = -ENOMEM;
2099 c = kzalloc(sizeof(*c), GFP_KERNEL);
2100 if (!c)
2101 goto out;
2102 if (l)
2103 l->next = c;
2104 else
2105 p->ocontexts[i] = c;
2106 l = c;
2107
2108 switch (i) {
2109 case OCON_ISID:
2110 rc = next_entry(buf, fp, sizeof(u32));
2111 if (rc)
2112 goto out;
2113
2114 c->sid[0] = le32_to_cpu(buf[0]);
2115 rc = context_read_and_validate(&c->context[0], p, fp);
2116 if (rc)
2117 goto out;
2118 break;
2119 case OCON_FS:
2120 case OCON_NETIF:
2121 rc = next_entry(buf, fp, sizeof(u32));
2122 if (rc)
2123 goto out;
2124 len = le32_to_cpu(buf[0]);
2125
2126 rc = -ENOMEM;
2127 c->u.name = kmalloc(len + 1, GFP_KERNEL);
2128 if (!c->u.name)
2129 goto out;
2130
2131 rc = next_entry(c->u.name, fp, len);
2132 if (rc)
2133 goto out;
2134
2135 c->u.name[len] = 0;
2136 rc = context_read_and_validate(&c->context[0], p, fp);
2137 if (rc)
2138 goto out;
2139 rc = context_read_and_validate(&c->context[1], p, fp);
2140 if (rc)
2141 goto out;
2142 break;
2143 case OCON_PORT:
2144 rc = next_entry(buf, fp, sizeof(u32)*3);
2145 if (rc)
2146 goto out;
2147 c->u.port.protocol = le32_to_cpu(buf[0]);
2148 c->u.port.low_port = le32_to_cpu(buf[1]);
2149 c->u.port.high_port = le32_to_cpu(buf[2]);
2150 rc = context_read_and_validate(&c->context[0], p, fp);
2151 if (rc)
2152 goto out;
2153 break;
2154 case OCON_NODE:
2155 rc = next_entry(nodebuf, fp, sizeof(u32) * 2);
2156 if (rc)
2157 goto out;
2158 c->u.node.addr = nodebuf[0]; /* network order */
2159 c->u.node.mask = nodebuf[1]; /* network order */
2160 rc = context_read_and_validate(&c->context[0], p, fp);
2161 if (rc)
2162 goto out;
2163 break;
2164 case OCON_FSUSE:
2165 rc = next_entry(buf, fp, sizeof(u32)*2);
2166 if (rc)
2167 goto out;
2168
2169 rc = -EINVAL;
2170 c->v.behavior = le32_to_cpu(buf[0]);
2171 if (c->v.behavior > SECURITY_FS_USE_NONE)
2172 goto out;
2173
2174 rc = -ENOMEM;
2175 len = le32_to_cpu(buf[1]);
2176 c->u.name = kmalloc(len + 1, GFP_KERNEL);
2177 if (!c->u.name)
2178 goto out;
2179
2180 rc = next_entry(c->u.name, fp, len);
2181 if (rc)
2182 goto out;
2183 c->u.name[len] = 0;
2184 rc = context_read_and_validate(&c->context[0], p, fp);
2185 if (rc)
2186 goto out;
2187 break;
2188 case OCON_NODE6: {
2189 int k;
2190
2191 rc = next_entry(nodebuf, fp, sizeof(u32) * 8);
2192 if (rc)
2193 goto out;
2194 for (k = 0; k < 4; k++)
2195 c->u.node6.addr[k] = nodebuf[k];
2196 for (k = 0; k < 4; k++)
2197 c->u.node6.mask[k] = nodebuf[k+4];
2198 rc = context_read_and_validate(&c->context[0], p, fp);
2199 if (rc)
2200 goto out;
2201 break;
2202 }
2203 }
2204 }
2205 }
2206 rc = 0;
2207out:
2208 return rc;
2209}
2210
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211/*
2212 * Read the configuration data from a policy database binary
2213 * representation file into a policy database structure.
2214 */
2215int policydb_read(struct policydb *p, void *fp)
2216{
2217 struct role_allow *ra, *lra;
2218 struct role_trans *tr, *ltr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 int i, j, rc;
Stephen Smalley59dbd1b2008-06-05 09:48:51 -04002220 __le32 buf[4];
Eric Parisd1b43542010-07-21 12:50:57 -04002221 u32 len, nprim, nel;
2222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 char *policydb_str;
2224 struct policydb_compat_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 rc = policydb_init(p);
2227 if (rc)
Eric Paris9398c7f2010-11-23 11:40:08 -05002228 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
2230 /* Read the magic number and string length. */
Eric Paris2ced3df2008-04-17 13:37:12 -04002231 rc = next_entry(buf, fp, sizeof(u32) * 2);
Eric Paris9398c7f2010-11-23 11:40:08 -05002232 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 goto bad;
2234
Eric Paris9398c7f2010-11-23 11:40:08 -05002235 rc = -EINVAL;
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07002236 if (le32_to_cpu(buf[0]) != POLICYDB_MAGIC) {
James Morris454d9722008-02-26 20:42:02 +11002237 printk(KERN_ERR "SELinux: policydb magic number 0x%x does "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 "not match expected magic number 0x%x\n",
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07002239 le32_to_cpu(buf[0]), POLICYDB_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 goto bad;
2241 }
2242
Eric Paris9398c7f2010-11-23 11:40:08 -05002243 rc = -EINVAL;
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07002244 len = le32_to_cpu(buf[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 if (len != strlen(POLICYDB_STRING)) {
James Morris454d9722008-02-26 20:42:02 +11002246 printk(KERN_ERR "SELinux: policydb string length %d does not "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 "match expected length %Zu\n",
2248 len, strlen(POLICYDB_STRING));
2249 goto bad;
2250 }
Eric Paris9398c7f2010-11-23 11:40:08 -05002251
2252 rc = -ENOMEM;
Eric Paris2ced3df2008-04-17 13:37:12 -04002253 policydb_str = kmalloc(len + 1, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 if (!policydb_str) {
James Morris454d9722008-02-26 20:42:02 +11002255 printk(KERN_ERR "SELinux: unable to allocate memory for policydb "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 "string of length %d\n", len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 goto bad;
2258 }
Eric Paris9398c7f2010-11-23 11:40:08 -05002259
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 rc = next_entry(policydb_str, fp, len);
Eric Paris9398c7f2010-11-23 11:40:08 -05002261 if (rc) {
James Morris454d9722008-02-26 20:42:02 +11002262 printk(KERN_ERR "SELinux: truncated policydb string identifier\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 kfree(policydb_str);
2264 goto bad;
2265 }
Eric Paris9398c7f2010-11-23 11:40:08 -05002266
2267 rc = -EINVAL;
Vesa-Matti J Karidf4ea862008-07-20 23:57:01 +03002268 policydb_str[len] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 if (strcmp(policydb_str, POLICYDB_STRING)) {
James Morris454d9722008-02-26 20:42:02 +11002270 printk(KERN_ERR "SELinux: policydb string %s does not match "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 "my string %s\n", policydb_str, POLICYDB_STRING);
2272 kfree(policydb_str);
2273 goto bad;
2274 }
2275 /* Done with policydb_str. */
2276 kfree(policydb_str);
2277 policydb_str = NULL;
2278
Guido Trentalancia0719aaf52010-02-03 16:40:20 +01002279 /* Read the version and table sizes. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 rc = next_entry(buf, fp, sizeof(u32)*4);
Eric Paris9398c7f2010-11-23 11:40:08 -05002281 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
Eric Paris9398c7f2010-11-23 11:40:08 -05002284 rc = -EINVAL;
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07002285 p->policyvers = le32_to_cpu(buf[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 if (p->policyvers < POLICYDB_VERSION_MIN ||
2287 p->policyvers > POLICYDB_VERSION_MAX) {
James Morris454d9722008-02-26 20:42:02 +11002288 printk(KERN_ERR "SELinux: policydb version %d does not match "
Eric Paris2ced3df2008-04-17 13:37:12 -04002289 "my version range %d-%d\n",
2290 le32_to_cpu(buf[0]), POLICYDB_VERSION_MIN, POLICYDB_VERSION_MAX);
2291 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 }
2293
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07002294 if ((le32_to_cpu(buf[1]) & POLICYDB_CONFIG_MLS)) {
Guido Trentalancia0719aaf52010-02-03 16:40:20 +01002295 p->mls_enabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
Eric Paris9398c7f2010-11-23 11:40:08 -05002297 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 if (p->policyvers < POLICYDB_VERSION_MLS) {
Eric Paris744ba352008-04-17 11:52:44 -04002299 printk(KERN_ERR "SELinux: security policydb version %d "
2300 "(MLS) not backwards compatible\n",
2301 p->policyvers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 goto bad;
2303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 }
Eric Paris3f120702007-09-21 14:37:10 -04002305 p->reject_unknown = !!(le32_to_cpu(buf[1]) & REJECT_UNKNOWN);
2306 p->allow_unknown = !!(le32_to_cpu(buf[1]) & ALLOW_UNKNOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
Eric Paris9398c7f2010-11-23 11:40:08 -05002308 if (p->policyvers >= POLICYDB_VERSION_POLCAP) {
2309 rc = ebitmap_read(&p->policycaps, fp);
2310 if (rc)
2311 goto bad;
2312 }
Paul Moore3bb56b22008-01-29 08:38:19 -05002313
Eric Paris9398c7f2010-11-23 11:40:08 -05002314 if (p->policyvers >= POLICYDB_VERSION_PERMISSIVE) {
2315 rc = ebitmap_read(&p->permissive_map, fp);
2316 if (rc)
2317 goto bad;
2318 }
Eric Paris64dbf072008-03-31 12:17:33 +11002319
Eric Paris9398c7f2010-11-23 11:40:08 -05002320 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 info = policydb_lookup_compat(p->policyvers);
2322 if (!info) {
James Morris454d9722008-02-26 20:42:02 +11002323 printk(KERN_ERR "SELinux: unable to find policy compat info "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 "for version %d\n", p->policyvers);
2325 goto bad;
2326 }
2327
Eric Paris9398c7f2010-11-23 11:40:08 -05002328 rc = -EINVAL;
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07002329 if (le32_to_cpu(buf[2]) != info->sym_num ||
2330 le32_to_cpu(buf[3]) != info->ocon_num) {
James Morris454d9722008-02-26 20:42:02 +11002331 printk(KERN_ERR "SELinux: policydb table sizes (%d,%d) do "
Alexey Dobriyanb5bf6c52005-09-03 15:55:17 -07002332 "not match mine (%d,%d)\n", le32_to_cpu(buf[2]),
2333 le32_to_cpu(buf[3]),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 info->sym_num, info->ocon_num);
2335 goto bad;
2336 }
2337
2338 for (i = 0; i < info->sym_num; i++) {
2339 rc = next_entry(buf, fp, sizeof(u32)*2);
Eric Paris9398c7f2010-11-23 11:40:08 -05002340 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 goto bad;
2342 nprim = le32_to_cpu(buf[0]);
2343 nel = le32_to_cpu(buf[1]);
2344 for (j = 0; j < nel; j++) {
2345 rc = read_f[i](p, p->symtab[i].table, fp);
2346 if (rc)
2347 goto bad;
2348 }
2349
2350 p->symtab[i].nprim = nprim;
2351 }
2352
Harry Ciao1214eac2011-04-07 14:12:57 +08002353 rc = -EINVAL;
2354 p->process_class = string_to_security_class(p, "process");
2355 if (!p->process_class)
2356 goto bad;
2357
Stephen Smalley45e54212007-11-07 10:08:00 -05002358 rc = avtab_read(&p->te_avtab, fp, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 if (rc)
2360 goto bad;
2361
2362 if (p->policyvers >= POLICYDB_VERSION_BOOL) {
2363 rc = cond_read_list(p, fp);
2364 if (rc)
2365 goto bad;
2366 }
2367
2368 rc = next_entry(buf, fp, sizeof(u32));
Eric Paris9398c7f2010-11-23 11:40:08 -05002369 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 goto bad;
2371 nel = le32_to_cpu(buf[0]);
2372 ltr = NULL;
2373 for (i = 0; i < nel; i++) {
Eric Paris9398c7f2010-11-23 11:40:08 -05002374 rc = -ENOMEM;
James Morris89d155e2005-10-30 14:59:21 -08002375 tr = kzalloc(sizeof(*tr), GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -05002376 if (!tr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 goto bad;
Eric Paris2ced3df2008-04-17 13:37:12 -04002378 if (ltr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 ltr->next = tr;
Eric Paris2ced3df2008-04-17 13:37:12 -04002380 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 p->role_tr = tr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 rc = next_entry(buf, fp, sizeof(u32)*3);
Eric Paris9398c7f2010-11-23 11:40:08 -05002383 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 goto bad;
Eric Paris9398c7f2010-11-23 11:40:08 -05002385
2386 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 tr->role = le32_to_cpu(buf[0]);
2388 tr->type = le32_to_cpu(buf[1]);
2389 tr->new_role = le32_to_cpu(buf[2]);
Harry Ciao80239762011-03-25 13:51:56 +08002390 if (p->policyvers >= POLICYDB_VERSION_ROLETRANS) {
2391 rc = next_entry(buf, fp, sizeof(u32));
2392 if (rc)
2393 goto bad;
2394 tr->tclass = le32_to_cpu(buf[0]);
2395 } else
2396 tr->tclass = p->process_class;
2397
Stephen Smalley45e54212007-11-07 10:08:00 -05002398 if (!policydb_role_isvalid(p, tr->role) ||
2399 !policydb_type_isvalid(p, tr->type) ||
Harry Ciao80239762011-03-25 13:51:56 +08002400 !policydb_class_isvalid(p, tr->tclass) ||
Eric Paris9398c7f2010-11-23 11:40:08 -05002401 !policydb_role_isvalid(p, tr->new_role))
Stephen Smalley45e54212007-11-07 10:08:00 -05002402 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 ltr = tr;
2404 }
2405
2406 rc = next_entry(buf, fp, sizeof(u32));
Eric Paris9398c7f2010-11-23 11:40:08 -05002407 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 goto bad;
2409 nel = le32_to_cpu(buf[0]);
2410 lra = NULL;
2411 for (i = 0; i < nel; i++) {
Eric Paris9398c7f2010-11-23 11:40:08 -05002412 rc = -ENOMEM;
James Morris89d155e2005-10-30 14:59:21 -08002413 ra = kzalloc(sizeof(*ra), GFP_KERNEL);
Eric Paris9398c7f2010-11-23 11:40:08 -05002414 if (!ra)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 goto bad;
Eric Paris2ced3df2008-04-17 13:37:12 -04002416 if (lra)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 lra->next = ra;
Eric Paris2ced3df2008-04-17 13:37:12 -04002418 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 p->role_allow = ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 rc = next_entry(buf, fp, sizeof(u32)*2);
Eric Paris9398c7f2010-11-23 11:40:08 -05002421 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 goto bad;
Eric Paris9398c7f2010-11-23 11:40:08 -05002423
2424 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 ra->role = le32_to_cpu(buf[0]);
2426 ra->new_role = le32_to_cpu(buf[1]);
Stephen Smalley45e54212007-11-07 10:08:00 -05002427 if (!policydb_role_isvalid(p, ra->role) ||
Eric Paris9398c7f2010-11-23 11:40:08 -05002428 !policydb_role_isvalid(p, ra->new_role))
Stephen Smalley45e54212007-11-07 10:08:00 -05002429 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 lra = ra;
2431 }
2432
Eric Paris652bb9b2011-02-01 11:05:40 -05002433 rc = filename_trans_read(p, fp);
2434 if (rc)
2435 goto bad;
2436
Eric Paris1d9bc6dc2010-11-29 15:47:09 -05002437 rc = policydb_index(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 if (rc)
2439 goto bad;
2440
Eric Paris9398c7f2010-11-23 11:40:08 -05002441 rc = -EINVAL;
Eric Paris9398c7f2010-11-23 11:40:08 -05002442 p->process_trans_perms = string_to_av_perm(p, p->process_class, "transition");
2443 p->process_trans_perms |= string_to_av_perm(p, p->process_class, "dyntransition");
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04002444 if (!p->process_trans_perms)
2445 goto bad;
2446
Eric Paris692a8a22010-07-21 12:51:03 -04002447 rc = ocontext_read(p, info, fp);
2448 if (rc)
2449 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
Eric Parisd1b43542010-07-21 12:50:57 -04002451 rc = genfs_read(p, fp);
2452 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
Eric Paris9ee0c822010-06-11 12:37:05 -04002455 rc = range_read(p, fp);
2456 if (rc)
2457 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
Eric Paris6371dcd2010-07-29 23:02:34 -04002459 rc = -ENOMEM;
2460 p->type_attr_map_array = flex_array_alloc(sizeof(struct ebitmap),
2461 p->p_types.nprim,
2462 GFP_KERNEL | __GFP_ZERO);
2463 if (!p->type_attr_map_array)
2464 goto bad;
2465
2466 /* preallocate so we don't have to worry about the put ever failing */
Eric Paris5a3ea872011-04-28 15:55:52 -04002467 rc = flex_array_prealloc(p->type_attr_map_array, 0, p->p_types.nprim,
Eric Paris6371dcd2010-07-29 23:02:34 -04002468 GFP_KERNEL | __GFP_ZERO);
2469 if (rc)
Stephen Smalley782ebb92005-09-03 15:55:16 -07002470 goto bad;
2471
2472 for (i = 0; i < p->p_types.nprim; i++) {
Eric Paris6371dcd2010-07-29 23:02:34 -04002473 struct ebitmap *e = flex_array_get(p->type_attr_map_array, i);
2474
2475 BUG_ON(!e);
2476 ebitmap_init(e);
Stephen Smalley782ebb92005-09-03 15:55:16 -07002477 if (p->policyvers >= POLICYDB_VERSION_AVTAB) {
Eric Paris6371dcd2010-07-29 23:02:34 -04002478 rc = ebitmap_read(e, fp);
2479 if (rc)
Stephen Smalley782ebb92005-09-03 15:55:16 -07002480 goto bad;
2481 }
2482 /* add the type itself as the degenerate case */
Eric Paris6371dcd2010-07-29 23:02:34 -04002483 rc = ebitmap_set_bit(e, i, 1);
2484 if (rc)
2485 goto bad;
Stephen Smalley782ebb92005-09-03 15:55:16 -07002486 }
2487
KaiGai Koheid9250de2008-08-28 16:35:57 +09002488 rc = policydb_bounds_sanity_check(p);
2489 if (rc)
2490 goto bad;
2491
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 rc = 0;
2493out:
2494 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495bad:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 policydb_destroy(p);
2497 goto out;
2498}
Eric Pariscee74f42010-10-13 17:50:25 -04002499
2500/*
2501 * Write a MLS level structure to a policydb binary
2502 * representation file.
2503 */
2504static int mls_write_level(struct mls_level *l, void *fp)
2505{
2506 __le32 buf[1];
2507 int rc;
2508
2509 buf[0] = cpu_to_le32(l->sens);
2510 rc = put_entry(buf, sizeof(u32), 1, fp);
2511 if (rc)
2512 return rc;
2513
2514 rc = ebitmap_write(&l->cat, fp);
2515 if (rc)
2516 return rc;
2517
2518 return 0;
2519}
2520
2521/*
2522 * Write a MLS range structure to a policydb binary
2523 * representation file.
2524 */
2525static int mls_write_range_helper(struct mls_range *r, void *fp)
2526{
2527 __le32 buf[3];
2528 size_t items;
2529 int rc, eq;
2530
2531 eq = mls_level_eq(&r->level[1], &r->level[0]);
2532
2533 if (eq)
2534 items = 2;
2535 else
2536 items = 3;
2537 buf[0] = cpu_to_le32(items-1);
2538 buf[1] = cpu_to_le32(r->level[0].sens);
2539 if (!eq)
2540 buf[2] = cpu_to_le32(r->level[1].sens);
2541
2542 BUG_ON(items > (sizeof(buf)/sizeof(buf[0])));
2543
2544 rc = put_entry(buf, sizeof(u32), items, fp);
2545 if (rc)
2546 return rc;
2547
2548 rc = ebitmap_write(&r->level[0].cat, fp);
2549 if (rc)
2550 return rc;
2551 if (!eq) {
2552 rc = ebitmap_write(&r->level[1].cat, fp);
2553 if (rc)
2554 return rc;
2555 }
2556
2557 return 0;
2558}
2559
2560static int sens_write(void *vkey, void *datum, void *ptr)
2561{
2562 char *key = vkey;
2563 struct level_datum *levdatum = datum;
2564 struct policy_data *pd = ptr;
2565 void *fp = pd->fp;
2566 __le32 buf[2];
2567 size_t len;
2568 int rc;
2569
2570 len = strlen(key);
2571 buf[0] = cpu_to_le32(len);
2572 buf[1] = cpu_to_le32(levdatum->isalias);
2573 rc = put_entry(buf, sizeof(u32), 2, fp);
2574 if (rc)
2575 return rc;
2576
2577 rc = put_entry(key, 1, len, fp);
2578 if (rc)
2579 return rc;
2580
2581 rc = mls_write_level(levdatum->level, fp);
2582 if (rc)
2583 return rc;
2584
2585 return 0;
2586}
2587
2588static int cat_write(void *vkey, void *datum, void *ptr)
2589{
2590 char *key = vkey;
2591 struct cat_datum *catdatum = datum;
2592 struct policy_data *pd = ptr;
2593 void *fp = pd->fp;
2594 __le32 buf[3];
2595 size_t len;
2596 int rc;
2597
2598 len = strlen(key);
2599 buf[0] = cpu_to_le32(len);
2600 buf[1] = cpu_to_le32(catdatum->value);
2601 buf[2] = cpu_to_le32(catdatum->isalias);
2602 rc = put_entry(buf, sizeof(u32), 3, fp);
2603 if (rc)
2604 return rc;
2605
2606 rc = put_entry(key, 1, len, fp);
2607 if (rc)
2608 return rc;
2609
2610 return 0;
2611}
2612
Harry Ciaoc900ff32011-03-25 13:52:00 +08002613static int role_trans_write(struct policydb *p, void *fp)
Eric Pariscee74f42010-10-13 17:50:25 -04002614{
Harry Ciaoc900ff32011-03-25 13:52:00 +08002615 struct role_trans *r = p->role_tr;
Eric Pariscee74f42010-10-13 17:50:25 -04002616 struct role_trans *tr;
2617 u32 buf[3];
2618 size_t nel;
2619 int rc;
2620
2621 nel = 0;
2622 for (tr = r; tr; tr = tr->next)
2623 nel++;
2624 buf[0] = cpu_to_le32(nel);
2625 rc = put_entry(buf, sizeof(u32), 1, fp);
2626 if (rc)
2627 return rc;
2628 for (tr = r; tr; tr = tr->next) {
2629 buf[0] = cpu_to_le32(tr->role);
2630 buf[1] = cpu_to_le32(tr->type);
2631 buf[2] = cpu_to_le32(tr->new_role);
2632 rc = put_entry(buf, sizeof(u32), 3, fp);
2633 if (rc)
2634 return rc;
Harry Ciaoc900ff32011-03-25 13:52:00 +08002635 if (p->policyvers >= POLICYDB_VERSION_ROLETRANS) {
2636 buf[0] = cpu_to_le32(tr->tclass);
2637 rc = put_entry(buf, sizeof(u32), 1, fp);
2638 if (rc)
2639 return rc;
2640 }
Eric Pariscee74f42010-10-13 17:50:25 -04002641 }
2642
2643 return 0;
2644}
2645
2646static int role_allow_write(struct role_allow *r, void *fp)
2647{
2648 struct role_allow *ra;
2649 u32 buf[2];
2650 size_t nel;
2651 int rc;
2652
2653 nel = 0;
2654 for (ra = r; ra; ra = ra->next)
2655 nel++;
2656 buf[0] = cpu_to_le32(nel);
2657 rc = put_entry(buf, sizeof(u32), 1, fp);
2658 if (rc)
2659 return rc;
2660 for (ra = r; ra; ra = ra->next) {
2661 buf[0] = cpu_to_le32(ra->role);
2662 buf[1] = cpu_to_le32(ra->new_role);
2663 rc = put_entry(buf, sizeof(u32), 2, fp);
2664 if (rc)
2665 return rc;
2666 }
2667 return 0;
2668}
2669
2670/*
2671 * Write a security context structure
2672 * to a policydb binary representation file.
2673 */
2674static int context_write(struct policydb *p, struct context *c,
2675 void *fp)
2676{
2677 int rc;
2678 __le32 buf[3];
2679
2680 buf[0] = cpu_to_le32(c->user);
2681 buf[1] = cpu_to_le32(c->role);
2682 buf[2] = cpu_to_le32(c->type);
2683
2684 rc = put_entry(buf, sizeof(u32), 3, fp);
2685 if (rc)
2686 return rc;
2687
2688 rc = mls_write_range_helper(&c->range, fp);
2689 if (rc)
2690 return rc;
2691
2692 return 0;
2693}
2694
2695/*
2696 * The following *_write functions are used to
2697 * write the symbol data to a policy database
2698 * binary representation file.
2699 */
2700
2701static int perm_write(void *vkey, void *datum, void *fp)
2702{
2703 char *key = vkey;
2704 struct perm_datum *perdatum = datum;
2705 __le32 buf[2];
2706 size_t len;
2707 int rc;
2708
2709 len = strlen(key);
2710 buf[0] = cpu_to_le32(len);
2711 buf[1] = cpu_to_le32(perdatum->value);
2712 rc = put_entry(buf, sizeof(u32), 2, fp);
2713 if (rc)
2714 return rc;
2715
2716 rc = put_entry(key, 1, len, fp);
2717 if (rc)
2718 return rc;
2719
2720 return 0;
2721}
2722
2723static int common_write(void *vkey, void *datum, void *ptr)
2724{
2725 char *key = vkey;
2726 struct common_datum *comdatum = datum;
2727 struct policy_data *pd = ptr;
2728 void *fp = pd->fp;
2729 __le32 buf[4];
2730 size_t len;
2731 int rc;
2732
2733 len = strlen(key);
2734 buf[0] = cpu_to_le32(len);
2735 buf[1] = cpu_to_le32(comdatum->value);
2736 buf[2] = cpu_to_le32(comdatum->permissions.nprim);
2737 buf[3] = cpu_to_le32(comdatum->permissions.table->nel);
2738 rc = put_entry(buf, sizeof(u32), 4, fp);
2739 if (rc)
2740 return rc;
2741
2742 rc = put_entry(key, 1, len, fp);
2743 if (rc)
2744 return rc;
2745
2746 rc = hashtab_map(comdatum->permissions.table, perm_write, fp);
2747 if (rc)
2748 return rc;
2749
2750 return 0;
2751}
2752
2753static int write_cons_helper(struct policydb *p, struct constraint_node *node,
2754 void *fp)
2755{
2756 struct constraint_node *c;
2757 struct constraint_expr *e;
2758 __le32 buf[3];
2759 u32 nel;
2760 int rc;
2761
2762 for (c = node; c; c = c->next) {
2763 nel = 0;
2764 for (e = c->expr; e; e = e->next)
2765 nel++;
2766 buf[0] = cpu_to_le32(c->permissions);
2767 buf[1] = cpu_to_le32(nel);
2768 rc = put_entry(buf, sizeof(u32), 2, fp);
2769 if (rc)
2770 return rc;
2771 for (e = c->expr; e; e = e->next) {
2772 buf[0] = cpu_to_le32(e->expr_type);
2773 buf[1] = cpu_to_le32(e->attr);
2774 buf[2] = cpu_to_le32(e->op);
2775 rc = put_entry(buf, sizeof(u32), 3, fp);
2776 if (rc)
2777 return rc;
2778
2779 switch (e->expr_type) {
2780 case CEXPR_NAMES:
2781 rc = ebitmap_write(&e->names, fp);
2782 if (rc)
2783 return rc;
2784 break;
2785 default:
2786 break;
2787 }
2788 }
2789 }
2790
2791 return 0;
2792}
2793
2794static int class_write(void *vkey, void *datum, void *ptr)
2795{
2796 char *key = vkey;
2797 struct class_datum *cladatum = datum;
2798 struct policy_data *pd = ptr;
2799 void *fp = pd->fp;
2800 struct policydb *p = pd->p;
2801 struct constraint_node *c;
2802 __le32 buf[6];
2803 u32 ncons;
2804 size_t len, len2;
2805 int rc;
2806
2807 len = strlen(key);
2808 if (cladatum->comkey)
2809 len2 = strlen(cladatum->comkey);
2810 else
2811 len2 = 0;
2812
2813 ncons = 0;
2814 for (c = cladatum->constraints; c; c = c->next)
2815 ncons++;
2816
2817 buf[0] = cpu_to_le32(len);
2818 buf[1] = cpu_to_le32(len2);
2819 buf[2] = cpu_to_le32(cladatum->value);
2820 buf[3] = cpu_to_le32(cladatum->permissions.nprim);
2821 if (cladatum->permissions.table)
2822 buf[4] = cpu_to_le32(cladatum->permissions.table->nel);
2823 else
2824 buf[4] = 0;
2825 buf[5] = cpu_to_le32(ncons);
2826 rc = put_entry(buf, sizeof(u32), 6, fp);
2827 if (rc)
2828 return rc;
2829
2830 rc = put_entry(key, 1, len, fp);
2831 if (rc)
2832 return rc;
2833
2834 if (cladatum->comkey) {
2835 rc = put_entry(cladatum->comkey, 1, len2, fp);
2836 if (rc)
2837 return rc;
2838 }
2839
2840 rc = hashtab_map(cladatum->permissions.table, perm_write, fp);
2841 if (rc)
2842 return rc;
2843
2844 rc = write_cons_helper(p, cladatum->constraints, fp);
2845 if (rc)
2846 return rc;
2847
2848 /* write out the validatetrans rule */
2849 ncons = 0;
2850 for (c = cladatum->validatetrans; c; c = c->next)
2851 ncons++;
2852
2853 buf[0] = cpu_to_le32(ncons);
2854 rc = put_entry(buf, sizeof(u32), 1, fp);
2855 if (rc)
2856 return rc;
2857
2858 rc = write_cons_helper(p, cladatum->validatetrans, fp);
2859 if (rc)
2860 return rc;
2861
Eric Parisd076bc72012-03-20 14:35:12 -04002862 if (p->policyvers >= POLICYDB_VERSION_NEW_OBJECT_DEFAULTS) {
2863 buf[0] = cpu_to_le32(cladatum->default_user);
2864 buf[1] = cpu_to_le32(cladatum->default_role);
2865 buf[2] = cpu_to_le32(cladatum->default_range);
2866
2867 rc = put_entry(buf, sizeof(uint32_t), 3, fp);
2868 if (rc)
2869 return rc;
2870 }
2871
Eric Pariscee74f42010-10-13 17:50:25 -04002872 return 0;
2873}
2874
2875static int role_write(void *vkey, void *datum, void *ptr)
2876{
2877 char *key = vkey;
2878 struct role_datum *role = datum;
2879 struct policy_data *pd = ptr;
2880 void *fp = pd->fp;
2881 struct policydb *p = pd->p;
2882 __le32 buf[3];
2883 size_t items, len;
2884 int rc;
2885
2886 len = strlen(key);
2887 items = 0;
2888 buf[items++] = cpu_to_le32(len);
2889 buf[items++] = cpu_to_le32(role->value);
2890 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
2891 buf[items++] = cpu_to_le32(role->bounds);
2892
2893 BUG_ON(items > (sizeof(buf)/sizeof(buf[0])));
2894
2895 rc = put_entry(buf, sizeof(u32), items, fp);
2896 if (rc)
2897 return rc;
2898
2899 rc = put_entry(key, 1, len, fp);
2900 if (rc)
2901 return rc;
2902
2903 rc = ebitmap_write(&role->dominates, fp);
2904 if (rc)
2905 return rc;
2906
2907 rc = ebitmap_write(&role->types, fp);
2908 if (rc)
2909 return rc;
2910
2911 return 0;
2912}
2913
2914static int type_write(void *vkey, void *datum, void *ptr)
2915{
2916 char *key = vkey;
2917 struct type_datum *typdatum = datum;
2918 struct policy_data *pd = ptr;
2919 struct policydb *p = pd->p;
2920 void *fp = pd->fp;
2921 __le32 buf[4];
2922 int rc;
2923 size_t items, len;
2924
2925 len = strlen(key);
2926 items = 0;
2927 buf[items++] = cpu_to_le32(len);
2928 buf[items++] = cpu_to_le32(typdatum->value);
2929 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) {
2930 u32 properties = 0;
2931
2932 if (typdatum->primary)
2933 properties |= TYPEDATUM_PROPERTY_PRIMARY;
2934
2935 if (typdatum->attribute)
2936 properties |= TYPEDATUM_PROPERTY_ATTRIBUTE;
2937
2938 buf[items++] = cpu_to_le32(properties);
2939 buf[items++] = cpu_to_le32(typdatum->bounds);
2940 } else {
2941 buf[items++] = cpu_to_le32(typdatum->primary);
2942 }
2943 BUG_ON(items > (sizeof(buf) / sizeof(buf[0])));
2944 rc = put_entry(buf, sizeof(u32), items, fp);
2945 if (rc)
2946 return rc;
2947
2948 rc = put_entry(key, 1, len, fp);
2949 if (rc)
2950 return rc;
2951
2952 return 0;
2953}
2954
2955static int user_write(void *vkey, void *datum, void *ptr)
2956{
2957 char *key = vkey;
2958 struct user_datum *usrdatum = datum;
2959 struct policy_data *pd = ptr;
2960 struct policydb *p = pd->p;
2961 void *fp = pd->fp;
2962 __le32 buf[3];
2963 size_t items, len;
2964 int rc;
2965
2966 len = strlen(key);
2967 items = 0;
2968 buf[items++] = cpu_to_le32(len);
2969 buf[items++] = cpu_to_le32(usrdatum->value);
2970 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
2971 buf[items++] = cpu_to_le32(usrdatum->bounds);
2972 BUG_ON(items > (sizeof(buf) / sizeof(buf[0])));
2973 rc = put_entry(buf, sizeof(u32), items, fp);
2974 if (rc)
2975 return rc;
2976
2977 rc = put_entry(key, 1, len, fp);
2978 if (rc)
2979 return rc;
2980
2981 rc = ebitmap_write(&usrdatum->roles, fp);
2982 if (rc)
2983 return rc;
2984
2985 rc = mls_write_range_helper(&usrdatum->range, fp);
2986 if (rc)
2987 return rc;
2988
2989 rc = mls_write_level(&usrdatum->dfltlevel, fp);
2990 if (rc)
2991 return rc;
2992
2993 return 0;
2994}
2995
2996static int (*write_f[SYM_NUM]) (void *key, void *datum,
2997 void *datap) =
2998{
2999 common_write,
3000 class_write,
3001 role_write,
3002 type_write,
3003 user_write,
3004 cond_write_bool,
3005 sens_write,
3006 cat_write,
3007};
3008
3009static int ocontext_write(struct policydb *p, struct policydb_compat_info *info,
3010 void *fp)
3011{
3012 unsigned int i, j, rc;
3013 size_t nel, len;
3014 __le32 buf[3];
3015 u32 nodebuf[8];
3016 struct ocontext *c;
3017 for (i = 0; i < info->ocon_num; i++) {
3018 nel = 0;
3019 for (c = p->ocontexts[i]; c; c = c->next)
3020 nel++;
3021 buf[0] = cpu_to_le32(nel);
3022 rc = put_entry(buf, sizeof(u32), 1, fp);
3023 if (rc)
3024 return rc;
3025 for (c = p->ocontexts[i]; c; c = c->next) {
3026 switch (i) {
3027 case OCON_ISID:
3028 buf[0] = cpu_to_le32(c->sid[0]);
3029 rc = put_entry(buf, sizeof(u32), 1, fp);
3030 if (rc)
3031 return rc;
3032 rc = context_write(p, &c->context[0], fp);
3033 if (rc)
3034 return rc;
3035 break;
3036 case OCON_FS:
3037 case OCON_NETIF:
3038 len = strlen(c->u.name);
3039 buf[0] = cpu_to_le32(len);
3040 rc = put_entry(buf, sizeof(u32), 1, fp);
3041 if (rc)
3042 return rc;
3043 rc = put_entry(c->u.name, 1, len, fp);
3044 if (rc)
3045 return rc;
3046 rc = context_write(p, &c->context[0], fp);
3047 if (rc)
3048 return rc;
3049 rc = context_write(p, &c->context[1], fp);
3050 if (rc)
3051 return rc;
3052 break;
3053 case OCON_PORT:
3054 buf[0] = cpu_to_le32(c->u.port.protocol);
3055 buf[1] = cpu_to_le32(c->u.port.low_port);
3056 buf[2] = cpu_to_le32(c->u.port.high_port);
3057 rc = put_entry(buf, sizeof(u32), 3, fp);
3058 if (rc)
3059 return rc;
3060 rc = context_write(p, &c->context[0], fp);
3061 if (rc)
3062 return rc;
3063 break;
3064 case OCON_NODE:
3065 nodebuf[0] = c->u.node.addr; /* network order */
3066 nodebuf[1] = c->u.node.mask; /* network order */
3067 rc = put_entry(nodebuf, sizeof(u32), 2, fp);
3068 if (rc)
3069 return rc;
3070 rc = context_write(p, &c->context[0], fp);
3071 if (rc)
3072 return rc;
3073 break;
3074 case OCON_FSUSE:
3075 buf[0] = cpu_to_le32(c->v.behavior);
3076 len = strlen(c->u.name);
3077 buf[1] = cpu_to_le32(len);
3078 rc = put_entry(buf, sizeof(u32), 2, fp);
3079 if (rc)
3080 return rc;
3081 rc = put_entry(c->u.name, 1, len, 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 case OCON_NODE6:
3089 for (j = 0; j < 4; j++)
3090 nodebuf[j] = c->u.node6.addr[j]; /* network order */
3091 for (j = 0; j < 4; j++)
3092 nodebuf[j + 4] = c->u.node6.mask[j]; /* network order */
3093 rc = put_entry(nodebuf, sizeof(u32), 8, fp);
3094 if (rc)
3095 return rc;
3096 rc = context_write(p, &c->context[0], fp);
3097 if (rc)
3098 return rc;
3099 break;
3100 }
3101 }
3102 }
3103 return 0;
3104}
3105
3106static int genfs_write(struct policydb *p, void *fp)
3107{
3108 struct genfs *genfs;
3109 struct ocontext *c;
3110 size_t len;
3111 __le32 buf[1];
3112 int rc;
3113
3114 len = 0;
3115 for (genfs = p->genfs; genfs; genfs = genfs->next)
3116 len++;
3117 buf[0] = cpu_to_le32(len);
3118 rc = put_entry(buf, sizeof(u32), 1, fp);
3119 if (rc)
3120 return rc;
3121 for (genfs = p->genfs; genfs; genfs = genfs->next) {
3122 len = strlen(genfs->fstype);
3123 buf[0] = cpu_to_le32(len);
3124 rc = put_entry(buf, sizeof(u32), 1, fp);
3125 if (rc)
3126 return rc;
3127 rc = put_entry(genfs->fstype, 1, len, fp);
3128 if (rc)
3129 return rc;
3130 len = 0;
3131 for (c = genfs->head; c; c = c->next)
3132 len++;
3133 buf[0] = cpu_to_le32(len);
3134 rc = put_entry(buf, sizeof(u32), 1, fp);
3135 if (rc)
3136 return rc;
3137 for (c = genfs->head; c; c = c->next) {
3138 len = strlen(c->u.name);
3139 buf[0] = cpu_to_le32(len);
3140 rc = put_entry(buf, sizeof(u32), 1, fp);
3141 if (rc)
3142 return rc;
3143 rc = put_entry(c->u.name, 1, len, fp);
3144 if (rc)
3145 return rc;
3146 buf[0] = cpu_to_le32(c->v.sclass);
3147 rc = put_entry(buf, sizeof(u32), 1, fp);
3148 if (rc)
3149 return rc;
3150 rc = context_write(p, &c->context[0], fp);
3151 if (rc)
3152 return rc;
3153 }
3154 }
3155 return 0;
3156}
3157
Eric Paris3f058ef2011-04-28 15:11:21 -04003158static int hashtab_cnt(void *key, void *data, void *ptr)
Eric Pariscee74f42010-10-13 17:50:25 -04003159{
3160 int *cnt = ptr;
3161 *cnt = *cnt + 1;
3162
3163 return 0;
3164}
3165
3166static int range_write_helper(void *key, void *data, void *ptr)
3167{
3168 __le32 buf[2];
3169 struct range_trans *rt = key;
3170 struct mls_range *r = data;
3171 struct policy_data *pd = ptr;
3172 void *fp = pd->fp;
3173 struct policydb *p = pd->p;
3174 int rc;
3175
3176 buf[0] = cpu_to_le32(rt->source_type);
3177 buf[1] = cpu_to_le32(rt->target_type);
3178 rc = put_entry(buf, sizeof(u32), 2, fp);
3179 if (rc)
3180 return rc;
3181 if (p->policyvers >= POLICYDB_VERSION_RANGETRANS) {
3182 buf[0] = cpu_to_le32(rt->target_class);
3183 rc = put_entry(buf, sizeof(u32), 1, fp);
3184 if (rc)
3185 return rc;
3186 }
3187 rc = mls_write_range_helper(r, fp);
3188 if (rc)
3189 return rc;
3190
3191 return 0;
3192}
3193
3194static int range_write(struct policydb *p, void *fp)
3195{
3196 size_t nel;
3197 __le32 buf[1];
3198 int rc;
3199 struct policy_data pd;
3200
3201 pd.p = p;
3202 pd.fp = fp;
3203
3204 /* count the number of entries in the hashtab */
3205 nel = 0;
Eric Paris3f058ef2011-04-28 15:11:21 -04003206 rc = hashtab_map(p->range_tr, hashtab_cnt, &nel);
Eric Pariscee74f42010-10-13 17:50:25 -04003207 if (rc)
3208 return rc;
3209
3210 buf[0] = cpu_to_le32(nel);
3211 rc = put_entry(buf, sizeof(u32), 1, fp);
3212 if (rc)
3213 return rc;
3214
3215 /* actually write all of the entries */
3216 rc = hashtab_map(p->range_tr, range_write_helper, &pd);
3217 if (rc)
3218 return rc;
3219
3220 return 0;
3221}
3222
Eric Paris2463c26d2011-04-28 15:11:21 -04003223static int filename_write_helper(void *key, void *data, void *ptr)
3224{
3225 __le32 buf[4];
3226 struct filename_trans *ft = key;
3227 struct filename_trans_datum *otype = data;
3228 void *fp = ptr;
3229 int rc;
3230 u32 len;
3231
3232 len = strlen(ft->name);
3233 buf[0] = cpu_to_le32(len);
3234 rc = put_entry(buf, sizeof(u32), 1, fp);
3235 if (rc)
3236 return rc;
3237
3238 rc = put_entry(ft->name, sizeof(char), len, fp);
3239 if (rc)
3240 return rc;
3241
Eric Paris186ef232014-02-20 10:56:45 -05003242 buf[0] = cpu_to_le32(ft->stype);
3243 buf[1] = cpu_to_le32(ft->ttype);
3244 buf[2] = cpu_to_le32(ft->tclass);
3245 buf[3] = cpu_to_le32(otype->otype);
Eric Paris2463c26d2011-04-28 15:11:21 -04003246
3247 rc = put_entry(buf, sizeof(u32), 4, fp);
3248 if (rc)
3249 return rc;
3250
3251 return 0;
3252}
3253
Eric Paris652bb9b2011-02-01 11:05:40 -05003254static int filename_trans_write(struct policydb *p, void *fp)
3255{
Eric Paris2463c26d2011-04-28 15:11:21 -04003256 u32 nel;
3257 __le32 buf[1];
Eric Paris652bb9b2011-02-01 11:05:40 -05003258 int rc;
3259
Roy.Lided50982011-05-20 10:38:06 +08003260 if (p->policyvers < POLICYDB_VERSION_FILENAME_TRANS)
3261 return 0;
3262
Eric Paris2463c26d2011-04-28 15:11:21 -04003263 nel = 0;
3264 rc = hashtab_map(p->filename_trans, hashtab_cnt, &nel);
3265 if (rc)
3266 return rc;
Eric Paris652bb9b2011-02-01 11:05:40 -05003267
3268 buf[0] = cpu_to_le32(nel);
3269 rc = put_entry(buf, sizeof(u32), 1, fp);
3270 if (rc)
3271 return rc;
3272
Eric Paris2463c26d2011-04-28 15:11:21 -04003273 rc = hashtab_map(p->filename_trans, filename_write_helper, fp);
3274 if (rc)
3275 return rc;
Eric Paris652bb9b2011-02-01 11:05:40 -05003276
Eric Paris652bb9b2011-02-01 11:05:40 -05003277 return 0;
3278}
Eric Paris2463c26d2011-04-28 15:11:21 -04003279
Eric Pariscee74f42010-10-13 17:50:25 -04003280/*
3281 * Write the configuration data in a policy database
3282 * structure to a policy database binary representation
3283 * file.
3284 */
3285int policydb_write(struct policydb *p, void *fp)
3286{
3287 unsigned int i, num_syms;
3288 int rc;
3289 __le32 buf[4];
3290 u32 config;
3291 size_t len;
3292 struct policydb_compat_info *info;
3293
3294 /*
3295 * refuse to write policy older than compressed avtab
3296 * to simplify the writer. There are other tests dropped
3297 * since we assume this throughout the writer code. Be
3298 * careful if you ever try to remove this restriction
3299 */
3300 if (p->policyvers < POLICYDB_VERSION_AVTAB) {
3301 printk(KERN_ERR "SELinux: refusing to write policy version %d."
3302 " Because it is less than version %d\n", p->policyvers,
3303 POLICYDB_VERSION_AVTAB);
3304 return -EINVAL;
3305 }
3306
3307 config = 0;
3308 if (p->mls_enabled)
3309 config |= POLICYDB_CONFIG_MLS;
3310
3311 if (p->reject_unknown)
3312 config |= REJECT_UNKNOWN;
3313 if (p->allow_unknown)
3314 config |= ALLOW_UNKNOWN;
3315
3316 /* Write the magic number and string identifiers. */
3317 buf[0] = cpu_to_le32(POLICYDB_MAGIC);
3318 len = strlen(POLICYDB_STRING);
3319 buf[1] = cpu_to_le32(len);
3320 rc = put_entry(buf, sizeof(u32), 2, fp);
3321 if (rc)
3322 return rc;
3323 rc = put_entry(POLICYDB_STRING, 1, len, fp);
3324 if (rc)
3325 return rc;
3326
3327 /* Write the version, config, and table sizes. */
3328 info = policydb_lookup_compat(p->policyvers);
3329 if (!info) {
3330 printk(KERN_ERR "SELinux: compatibility lookup failed for policy "
3331 "version %d", p->policyvers);
Eric Paris9398c7f2010-11-23 11:40:08 -05003332 return -EINVAL;
Eric Pariscee74f42010-10-13 17:50:25 -04003333 }
3334
3335 buf[0] = cpu_to_le32(p->policyvers);
3336 buf[1] = cpu_to_le32(config);
3337 buf[2] = cpu_to_le32(info->sym_num);
3338 buf[3] = cpu_to_le32(info->ocon_num);
3339
3340 rc = put_entry(buf, sizeof(u32), 4, fp);
3341 if (rc)
3342 return rc;
3343
3344 if (p->policyvers >= POLICYDB_VERSION_POLCAP) {
3345 rc = ebitmap_write(&p->policycaps, fp);
3346 if (rc)
3347 return rc;
3348 }
3349
3350 if (p->policyvers >= POLICYDB_VERSION_PERMISSIVE) {
3351 rc = ebitmap_write(&p->permissive_map, fp);
3352 if (rc)
3353 return rc;
3354 }
3355
3356 num_syms = info->sym_num;
3357 for (i = 0; i < num_syms; i++) {
3358 struct policy_data pd;
3359
3360 pd.fp = fp;
3361 pd.p = p;
3362
3363 buf[0] = cpu_to_le32(p->symtab[i].nprim);
3364 buf[1] = cpu_to_le32(p->symtab[i].table->nel);
3365
3366 rc = put_entry(buf, sizeof(u32), 2, fp);
3367 if (rc)
3368 return rc;
3369 rc = hashtab_map(p->symtab[i].table, write_f[i], &pd);
3370 if (rc)
3371 return rc;
3372 }
3373
3374 rc = avtab_write(p, &p->te_avtab, fp);
3375 if (rc)
3376 return rc;
3377
3378 rc = cond_write_list(p, p->cond_list, fp);
3379 if (rc)
3380 return rc;
3381
Harry Ciaoc900ff32011-03-25 13:52:00 +08003382 rc = role_trans_write(p, fp);
Eric Pariscee74f42010-10-13 17:50:25 -04003383 if (rc)
3384 return rc;
3385
3386 rc = role_allow_write(p->role_allow, fp);
3387 if (rc)
3388 return rc;
3389
Eric Paris652bb9b2011-02-01 11:05:40 -05003390 rc = filename_trans_write(p, fp);
3391 if (rc)
3392 return rc;
3393
Eric Pariscee74f42010-10-13 17:50:25 -04003394 rc = ocontext_write(p, info, fp);
3395 if (rc)
3396 return rc;
3397
3398 rc = genfs_write(p, fp);
3399 if (rc)
3400 return rc;
3401
3402 rc = range_write(p, fp);
3403 if (rc)
3404 return rc;
3405
3406 for (i = 0; i < p->p_types.nprim; i++) {
3407 struct ebitmap *e = flex_array_get(p->type_attr_map_array, i);
3408
3409 BUG_ON(!e);
3410 rc = ebitmap_write(e, fp);
3411 if (rc)
3412 return rc;
3413 }
3414
3415 return 0;
3416}