2 * Implementation of the policy database.
10 * Support for enhanced MLS infrastructure.
14 * Added conditional policy language extensions
18 * Added support for the policy capability bitmap
20 * Copyright (C) 2007 Hewlett-Packard Development Company, L.P.
21 * 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
24 * it under the terms of the GNU General Public License as published by
25 * the Free Software Foundation, version 2.
28 #include <linux/kernel.h>
29 #include <linux/sched.h>
30 #include <linux/slab.h>
31 #include <linux/string.h>
32 #include <linux/errno.h>
33 #include <linux/audit.h>
34 #include <linux/flex_array.h>
38 #include "conditional.h"
45 static const char *symtab_name[SYM_NUM] = {
57 static unsigned int symtab_sizes[SYM_NUM] = {
68 struct policydb_compat_info {
74 /* These need to be updated if SYM_NUM or OCON_NUM changes */
75 static struct policydb_compat_info policydb_compat[] = {
77 .version = POLICYDB_VERSION_BASE,
78 .sym_num = SYM_NUM - 3,
79 .ocon_num = OCON_NUM - 1,
82 .version = POLICYDB_VERSION_BOOL,
83 .sym_num = SYM_NUM - 2,
84 .ocon_num = OCON_NUM - 1,
87 .version = POLICYDB_VERSION_IPV6,
88 .sym_num = SYM_NUM - 2,
92 .version = POLICYDB_VERSION_NLCLASS,
93 .sym_num = SYM_NUM - 2,
97 .version = POLICYDB_VERSION_MLS,
102 .version = POLICYDB_VERSION_AVTAB,
104 .ocon_num = OCON_NUM,
107 .version = POLICYDB_VERSION_RANGETRANS,
109 .ocon_num = OCON_NUM,
112 .version = POLICYDB_VERSION_POLCAP,
114 .ocon_num = OCON_NUM,
117 .version = POLICYDB_VERSION_PERMISSIVE,
119 .ocon_num = OCON_NUM,
122 .version = POLICYDB_VERSION_BOUNDARY,
124 .ocon_num = OCON_NUM,
127 .version = POLICYDB_VERSION_FILENAME_TRANS,
129 .ocon_num = OCON_NUM,
132 .version = POLICYDB_VERSION_ROLETRANS,
134 .ocon_num = OCON_NUM,
137 .version = POLICYDB_VERSION_NEW_OBJECT_DEFAULTS,
139 .ocon_num = OCON_NUM,
142 .version = POLICYDB_VERSION_DEFAULT_TYPE,
144 .ocon_num = OCON_NUM,
147 .version = POLICYDB_VERSION_CONSTRAINT_NAMES,
149 .ocon_num = OCON_NUM,
153 static struct policydb_compat_info *policydb_lookup_compat(int version)
156 struct policydb_compat_info *info = NULL;
158 for (i = 0; i < ARRAY_SIZE(policydb_compat); i++) {
159 if (policydb_compat[i].version == version) {
160 info = &policydb_compat[i];
168 * Initialize the role table.
170 static int roles_init(struct policydb *p)
174 struct role_datum *role;
177 role = kzalloc(sizeof(*role), GFP_KERNEL);
182 role->value = ++p->p_roles.nprim;
183 if (role->value != OBJECT_R_VAL)
187 key = kstrdup(OBJECT_R, GFP_KERNEL);
191 rc = hashtab_insert(p->p_roles.table, key, role);
202 static u32 filenametr_hash(struct hashtab *h, const void *k)
204 const struct filename_trans *ft = k;
206 unsigned int byte_num;
209 hash = ft->stype ^ ft->ttype ^ ft->tclass;
212 while ((focus = ft->name[byte_num++]))
213 hash = partial_name_hash(focus, hash);
214 return hash & (h->size - 1);
217 static int filenametr_cmp(struct hashtab *h, const void *k1, const void *k2)
219 const struct filename_trans *ft1 = k1;
220 const struct filename_trans *ft2 = k2;
223 v = ft1->stype - ft2->stype;
227 v = ft1->ttype - ft2->ttype;
231 v = ft1->tclass - ft2->tclass;
235 return strcmp(ft1->name, ft2->name);
239 static u32 rangetr_hash(struct hashtab *h, const void *k)
241 const struct range_trans *key = k;
242 return (key->source_type + (key->target_type << 3) +
243 (key->target_class << 5)) & (h->size - 1);
246 static int rangetr_cmp(struct hashtab *h, const void *k1, const void *k2)
248 const struct range_trans *key1 = k1, *key2 = k2;
251 v = key1->source_type - key2->source_type;
255 v = key1->target_type - key2->target_type;
259 v = key1->target_class - key2->target_class;
265 * Initialize a policy database structure.
267 static int policydb_init(struct policydb *p)
271 memset(p, 0, sizeof(*p));
273 for (i = 0; i < SYM_NUM; i++) {
274 rc = symtab_init(&p->symtab[i], symtab_sizes[i]);
279 rc = avtab_init(&p->te_avtab);
287 rc = cond_policydb_init(p);
291 p->filename_trans = hashtab_create(filenametr_hash, filenametr_cmp, (1 << 10));
292 if (!p->filename_trans)
295 p->range_tr = hashtab_create(rangetr_hash, rangetr_cmp, 256);
299 ebitmap_init(&p->filename_trans_ttypes);
300 ebitmap_init(&p->policycaps);
301 ebitmap_init(&p->permissive_map);
305 hashtab_destroy(p->filename_trans);
306 hashtab_destroy(p->range_tr);
307 for (i = 0; i < SYM_NUM; i++)
308 hashtab_destroy(p->symtab[i].table);
313 * The following *_index functions are used to
314 * define the val_to_name and val_to_struct arrays
315 * in a policy database structure. The val_to_name
316 * arrays are used when converting security context
317 * structures into string representations. The
318 * val_to_struct arrays are used when the attributes
319 * of a class, role, or user are needed.
322 static int common_index(void *key, void *datum, void *datap)
325 struct common_datum *comdatum;
326 struct flex_array *fa;
330 if (!comdatum->value || comdatum->value > p->p_commons.nprim)
333 fa = p->sym_val_to_name[SYM_COMMONS];
334 if (flex_array_put_ptr(fa, comdatum->value - 1, key,
335 GFP_KERNEL | __GFP_ZERO))
340 static int class_index(void *key, void *datum, void *datap)
343 struct class_datum *cladatum;
344 struct flex_array *fa;
348 if (!cladatum->value || cladatum->value > p->p_classes.nprim)
350 fa = p->sym_val_to_name[SYM_CLASSES];
351 if (flex_array_put_ptr(fa, cladatum->value - 1, key,
352 GFP_KERNEL | __GFP_ZERO))
354 p->class_val_to_struct[cladatum->value - 1] = cladatum;
358 static int role_index(void *key, void *datum, void *datap)
361 struct role_datum *role;
362 struct flex_array *fa;
367 || role->value > p->p_roles.nprim
368 || role->bounds > p->p_roles.nprim)
371 fa = p->sym_val_to_name[SYM_ROLES];
372 if (flex_array_put_ptr(fa, role->value - 1, key,
373 GFP_KERNEL | __GFP_ZERO))
375 p->role_val_to_struct[role->value - 1] = role;
379 static int type_index(void *key, void *datum, void *datap)
382 struct type_datum *typdatum;
383 struct flex_array *fa;
388 if (typdatum->primary) {
390 || typdatum->value > p->p_types.nprim
391 || typdatum->bounds > p->p_types.nprim)
393 fa = p->sym_val_to_name[SYM_TYPES];
394 if (flex_array_put_ptr(fa, typdatum->value - 1, key,
395 GFP_KERNEL | __GFP_ZERO))
398 fa = p->type_val_to_struct_array;
399 if (flex_array_put_ptr(fa, typdatum->value - 1, typdatum,
400 GFP_KERNEL | __GFP_ZERO))
407 static int user_index(void *key, void *datum, void *datap)
410 struct user_datum *usrdatum;
411 struct flex_array *fa;
416 || usrdatum->value > p->p_users.nprim
417 || usrdatum->bounds > p->p_users.nprim)
420 fa = p->sym_val_to_name[SYM_USERS];
421 if (flex_array_put_ptr(fa, usrdatum->value - 1, key,
422 GFP_KERNEL | __GFP_ZERO))
424 p->user_val_to_struct[usrdatum->value - 1] = usrdatum;
428 static int sens_index(void *key, void *datum, void *datap)
431 struct level_datum *levdatum;
432 struct flex_array *fa;
437 if (!levdatum->isalias) {
438 if (!levdatum->level->sens ||
439 levdatum->level->sens > p->p_levels.nprim)
441 fa = p->sym_val_to_name[SYM_LEVELS];
442 if (flex_array_put_ptr(fa, levdatum->level->sens - 1, key,
443 GFP_KERNEL | __GFP_ZERO))
450 static int cat_index(void *key, void *datum, void *datap)
453 struct cat_datum *catdatum;
454 struct flex_array *fa;
459 if (!catdatum->isalias) {
460 if (!catdatum->value || catdatum->value > p->p_cats.nprim)
462 fa = p->sym_val_to_name[SYM_CATS];
463 if (flex_array_put_ptr(fa, catdatum->value - 1, key,
464 GFP_KERNEL | __GFP_ZERO))
471 static int (*index_f[SYM_NUM]) (void *key, void *datum, void *datap) =
484 static void hash_eval(struct hashtab *h, const char *hash_name)
486 struct hashtab_info info;
488 hashtab_stat(h, &info);
489 printk(KERN_DEBUG "SELinux: %s: %d entries and %d/%d buckets used, "
490 "longest chain length %d\n", hash_name, h->nel,
491 info.slots_used, h->size, info.max_chain_len);
494 static void symtab_hash_eval(struct symtab *s)
498 for (i = 0; i < SYM_NUM; i++)
499 hash_eval(s[i].table, symtab_name[i]);
503 static inline void hash_eval(struct hashtab *h, char *hash_name)
509 * Define the other val_to_name and val_to_struct arrays
510 * in a policy database structure.
512 * Caller must clean up on failure.
514 static int policydb_index(struct policydb *p)
518 printk(KERN_DEBUG "SELinux: %d users, %d roles, %d types, %d bools",
519 p->p_users.nprim, p->p_roles.nprim, p->p_types.nprim, p->p_bools.nprim);
521 printk(", %d sens, %d cats", p->p_levels.nprim,
525 printk(KERN_DEBUG "SELinux: %d classes, %d rules\n",
526 p->p_classes.nprim, p->te_avtab.nel);
529 avtab_hash_eval(&p->te_avtab, "rules");
530 symtab_hash_eval(p->symtab);
534 p->class_val_to_struct =
535 kmalloc(p->p_classes.nprim * sizeof(*(p->class_val_to_struct)),
537 if (!p->class_val_to_struct)
541 p->role_val_to_struct =
542 kmalloc(p->p_roles.nprim * sizeof(*(p->role_val_to_struct)),
544 if (!p->role_val_to_struct)
548 p->user_val_to_struct =
549 kmalloc(p->p_users.nprim * sizeof(*(p->user_val_to_struct)),
551 if (!p->user_val_to_struct)
554 /* Yes, I want the sizeof the pointer, not the structure */
556 p->type_val_to_struct_array = flex_array_alloc(sizeof(struct type_datum *),
558 GFP_KERNEL | __GFP_ZERO);
559 if (!p->type_val_to_struct_array)
562 rc = flex_array_prealloc(p->type_val_to_struct_array, 0,
563 p->p_types.nprim, GFP_KERNEL | __GFP_ZERO);
567 rc = cond_init_bool_indexes(p);
571 for (i = 0; i < SYM_NUM; i++) {
573 p->sym_val_to_name[i] = flex_array_alloc(sizeof(char *),
575 GFP_KERNEL | __GFP_ZERO);
576 if (!p->sym_val_to_name[i])
579 rc = flex_array_prealloc(p->sym_val_to_name[i],
580 0, p->symtab[i].nprim,
581 GFP_KERNEL | __GFP_ZERO);
585 rc = hashtab_map(p->symtab[i].table, index_f[i], p);
595 * The following *_destroy functions are used to
596 * free any memory allocated for each kind of
597 * symbol data in the policy database.
600 static int perm_destroy(void *key, void *datum, void *p)
607 static int common_destroy(void *key, void *datum, void *p)
609 struct common_datum *comdatum;
614 hashtab_map(comdatum->permissions.table, perm_destroy, NULL);
615 hashtab_destroy(comdatum->permissions.table);
621 static void constraint_expr_destroy(struct constraint_expr *expr)
624 ebitmap_destroy(&expr->names);
625 if (expr->type_names) {
626 ebitmap_destroy(&expr->type_names->types);
627 ebitmap_destroy(&expr->type_names->negset);
628 kfree(expr->type_names);
634 static int cls_destroy(void *key, void *datum, void *p)
636 struct class_datum *cladatum;
637 struct constraint_node *constraint, *ctemp;
638 struct constraint_expr *e, *etmp;
643 hashtab_map(cladatum->permissions.table, perm_destroy, NULL);
644 hashtab_destroy(cladatum->permissions.table);
645 constraint = cladatum->constraints;
647 e = constraint->expr;
651 constraint_expr_destroy(etmp);
654 constraint = constraint->next;
658 constraint = cladatum->validatetrans;
660 e = constraint->expr;
664 constraint_expr_destroy(etmp);
667 constraint = constraint->next;
670 kfree(cladatum->comkey);
676 static int role_destroy(void *key, void *datum, void *p)
678 struct role_datum *role;
683 ebitmap_destroy(&role->dominates);
684 ebitmap_destroy(&role->types);
690 static int type_destroy(void *key, void *datum, void *p)
697 static int user_destroy(void *key, void *datum, void *p)
699 struct user_datum *usrdatum;
704 ebitmap_destroy(&usrdatum->roles);
705 ebitmap_destroy(&usrdatum->range.level[0].cat);
706 ebitmap_destroy(&usrdatum->range.level[1].cat);
707 ebitmap_destroy(&usrdatum->dfltlevel.cat);
713 static int sens_destroy(void *key, void *datum, void *p)
715 struct level_datum *levdatum;
720 ebitmap_destroy(&levdatum->level->cat);
721 kfree(levdatum->level);
727 static int cat_destroy(void *key, void *datum, void *p)
734 static int (*destroy_f[SYM_NUM]) (void *key, void *datum, void *datap) =
746 static int filenametr_destroy(void *key, void *datum, void *p)
748 struct filename_trans *ft = key;
756 static int range_tr_destroy(void *key, void *datum, void *p)
758 struct mls_range *rt = datum;
760 ebitmap_destroy(&rt->level[0].cat);
761 ebitmap_destroy(&rt->level[1].cat);
767 static void ocontext_destroy(struct ocontext *c, int i)
772 context_destroy(&c->context[0]);
773 context_destroy(&c->context[1]);
774 if (i == OCON_ISID || i == OCON_FS ||
775 i == OCON_NETIF || i == OCON_FSUSE)
781 * Free any memory allocated by a policy database structure.
783 void policydb_destroy(struct policydb *p)
785 struct ocontext *c, *ctmp;
786 struct genfs *g, *gtmp;
788 struct role_allow *ra, *lra = NULL;
789 struct role_trans *tr, *ltr = NULL;
791 for (i = 0; i < SYM_NUM; i++) {
793 hashtab_map(p->symtab[i].table, destroy_f[i], NULL);
794 hashtab_destroy(p->symtab[i].table);
797 for (i = 0; i < SYM_NUM; i++) {
798 if (p->sym_val_to_name[i])
799 flex_array_free(p->sym_val_to_name[i]);
802 kfree(p->class_val_to_struct);
803 kfree(p->role_val_to_struct);
804 kfree(p->user_val_to_struct);
805 if (p->type_val_to_struct_array)
806 flex_array_free(p->type_val_to_struct_array);
808 avtab_destroy(&p->te_avtab);
810 for (i = 0; i < OCON_NUM; i++) {
816 ocontext_destroy(ctmp, i);
818 p->ocontexts[i] = NULL;
829 ocontext_destroy(ctmp, OCON_FSUSE);
837 cond_policydb_destroy(p);
839 for (tr = p->role_tr; tr; tr = tr->next) {
846 for (ra = p->role_allow; ra; ra = ra->next) {
853 hashtab_map(p->filename_trans, filenametr_destroy, NULL);
854 hashtab_destroy(p->filename_trans);
856 hashtab_map(p->range_tr, range_tr_destroy, NULL);
857 hashtab_destroy(p->range_tr);
859 if (p->type_attr_map_array) {
860 for (i = 0; i < p->p_types.nprim; i++) {
863 e = flex_array_get(p->type_attr_map_array, i);
868 flex_array_free(p->type_attr_map_array);
871 ebitmap_destroy(&p->filename_trans_ttypes);
872 ebitmap_destroy(&p->policycaps);
873 ebitmap_destroy(&p->permissive_map);
879 * Load the initial SIDs specified in a policy database
880 * structure into a SID table.
882 int policydb_load_isids(struct policydb *p, struct sidtab *s)
884 struct ocontext *head, *c;
889 printk(KERN_ERR "SELinux: out of memory on SID table init\n");
893 head = p->ocontexts[OCON_ISID];
894 for (c = head; c; c = c->next) {
896 if (!c->context[0].user) {
897 printk(KERN_ERR "SELinux: SID %s was never defined.\n",
902 rc = sidtab_insert(s, c->sid[0], &c->context[0]);
904 printk(KERN_ERR "SELinux: unable to load initial SID %s.\n",
914 int policydb_class_isvalid(struct policydb *p, unsigned int class)
916 if (!class || class > p->p_classes.nprim)
921 int policydb_role_isvalid(struct policydb *p, unsigned int role)
923 if (!role || role > p->p_roles.nprim)
928 int policydb_type_isvalid(struct policydb *p, unsigned int type)
930 if (!type || type > p->p_types.nprim)
936 * Return 1 if the fields in the security context
937 * structure `c' are valid. Return 0 otherwise.
939 int policydb_context_isvalid(struct policydb *p, struct context *c)
941 struct role_datum *role;
942 struct user_datum *usrdatum;
944 if (!c->role || c->role > p->p_roles.nprim)
947 if (!c->user || c->user > p->p_users.nprim)
950 if (!c->type || c->type > p->p_types.nprim)
953 if (c->role != OBJECT_R_VAL) {
955 * Role must be authorized for the type.
957 role = p->role_val_to_struct[c->role - 1];
958 if (!ebitmap_get_bit(&role->types, c->type - 1))
959 /* role may not be associated with type */
963 * User must be authorized for the role.
965 usrdatum = p->user_val_to_struct[c->user - 1];
969 if (!ebitmap_get_bit(&usrdatum->roles, c->role - 1))
970 /* user may not be associated with role */
974 if (!mls_context_isvalid(p, c))
981 * Read a MLS range structure from a policydb binary
982 * representation file.
984 static int mls_read_range_helper(struct mls_range *r, void *fp)
990 rc = next_entry(buf, fp, sizeof(u32));
995 items = le32_to_cpu(buf[0]);
996 if (items > ARRAY_SIZE(buf)) {
997 printk(KERN_ERR "SELinux: mls: range overflow\n");
1001 rc = next_entry(buf, fp, sizeof(u32) * items);
1003 printk(KERN_ERR "SELinux: mls: truncated range\n");
1007 r->level[0].sens = le32_to_cpu(buf[0]);
1009 r->level[1].sens = le32_to_cpu(buf[1]);
1011 r->level[1].sens = r->level[0].sens;
1013 rc = ebitmap_read(&r->level[0].cat, fp);
1015 printk(KERN_ERR "SELinux: mls: error reading low categories\n");
1019 rc = ebitmap_read(&r->level[1].cat, fp);
1021 printk(KERN_ERR "SELinux: mls: error reading high categories\n");
1025 rc = ebitmap_cpy(&r->level[1].cat, &r->level[0].cat);
1027 printk(KERN_ERR "SELinux: mls: out of memory\n");
1034 ebitmap_destroy(&r->level[0].cat);
1040 * Read and validate a security context structure
1041 * from a policydb binary representation file.
1043 static int context_read_and_validate(struct context *c,
1050 rc = next_entry(buf, fp, sizeof buf);
1052 printk(KERN_ERR "SELinux: context truncated\n");
1055 c->user = le32_to_cpu(buf[0]);
1056 c->role = le32_to_cpu(buf[1]);
1057 c->type = le32_to_cpu(buf[2]);
1058 if (p->policyvers >= POLICYDB_VERSION_MLS) {
1059 rc = mls_read_range_helper(&c->range, fp);
1061 printk(KERN_ERR "SELinux: error reading MLS range of context\n");
1067 if (!policydb_context_isvalid(p, c)) {
1068 printk(KERN_ERR "SELinux: invalid security context\n");
1078 * The following *_read functions are used to
1079 * read the symbol data from a policy database
1080 * binary representation file.
1083 static int str_read(char **strp, gfp_t flags, void *fp, u32 len)
1088 str = kmalloc(len + 1, flags);
1092 /* it's expected the caller should free the str */
1095 rc = next_entry(str, fp, len);
1103 static int perm_read(struct policydb *p, struct hashtab *h, void *fp)
1106 struct perm_datum *perdatum;
1112 perdatum = kzalloc(sizeof(*perdatum), GFP_KERNEL);
1116 rc = next_entry(buf, fp, sizeof buf);
1120 len = le32_to_cpu(buf[0]);
1121 perdatum->value = le32_to_cpu(buf[1]);
1123 rc = str_read(&key, GFP_KERNEL, fp, len);
1127 rc = hashtab_insert(h, key, perdatum);
1133 perm_destroy(key, perdatum, NULL);
1137 static int common_read(struct policydb *p, struct hashtab *h, void *fp)
1140 struct common_datum *comdatum;
1146 comdatum = kzalloc(sizeof(*comdatum), GFP_KERNEL);
1150 rc = next_entry(buf, fp, sizeof buf);
1154 len = le32_to_cpu(buf[0]);
1155 comdatum->value = le32_to_cpu(buf[1]);
1157 rc = symtab_init(&comdatum->permissions, PERM_SYMTAB_SIZE);
1160 comdatum->permissions.nprim = le32_to_cpu(buf[2]);
1161 nel = le32_to_cpu(buf[3]);
1163 rc = str_read(&key, GFP_KERNEL, fp, len);
1167 for (i = 0; i < nel; i++) {
1168 rc = perm_read(p, comdatum->permissions.table, fp);
1173 rc = hashtab_insert(h, key, comdatum);
1178 common_destroy(key, comdatum, NULL);
1182 static void type_set_init(struct type_set *t)
1184 ebitmap_init(&t->types);
1185 ebitmap_init(&t->negset);
1188 static int type_set_read(struct type_set *t, void *fp)
1193 if (ebitmap_read(&t->types, fp))
1195 if (ebitmap_read(&t->negset, fp))
1198 rc = next_entry(buf, fp, sizeof(u32));
1201 t->flags = le32_to_cpu(buf[0]);
1207 static int read_cons_helper(struct policydb *p,
1208 struct constraint_node **nodep,
1209 int ncons, int allowxtarget, void *fp)
1211 struct constraint_node *c, *lc;
1212 struct constraint_expr *e, *le;
1215 int rc, i, j, depth;
1218 for (i = 0; i < ncons; i++) {
1219 c = kzalloc(sizeof(*c), GFP_KERNEL);
1228 rc = next_entry(buf, fp, (sizeof(u32) * 2));
1231 c->permissions = le32_to_cpu(buf[0]);
1232 nexpr = le32_to_cpu(buf[1]);
1235 for (j = 0; j < nexpr; j++) {
1236 e = kzalloc(sizeof(*e), GFP_KERNEL);
1245 rc = next_entry(buf, fp, (sizeof(u32) * 3));
1248 e->expr_type = le32_to_cpu(buf[0]);
1249 e->attr = le32_to_cpu(buf[1]);
1250 e->op = le32_to_cpu(buf[2]);
1252 switch (e->expr_type) {
1264 if (depth == (CEXPR_MAXDEPTH - 1))
1269 if (!allowxtarget && (e->attr & CEXPR_XTARGET))
1271 if (depth == (CEXPR_MAXDEPTH - 1))
1274 rc = ebitmap_read(&e->names, fp);
1277 if (p->policyvers >=
1278 POLICYDB_VERSION_CONSTRAINT_NAMES) {
1279 e->type_names = kzalloc(sizeof
1284 type_set_init(e->type_names);
1285 rc = type_set_read(e->type_names, fp);
1303 static int class_read(struct policydb *p, struct hashtab *h, void *fp)
1306 struct class_datum *cladatum;
1308 u32 len, len2, ncons, nel;
1312 cladatum = kzalloc(sizeof(*cladatum), GFP_KERNEL);
1316 rc = next_entry(buf, fp, sizeof(u32)*6);
1320 len = le32_to_cpu(buf[0]);
1321 len2 = le32_to_cpu(buf[1]);
1322 cladatum->value = le32_to_cpu(buf[2]);
1324 rc = symtab_init(&cladatum->permissions, PERM_SYMTAB_SIZE);
1327 cladatum->permissions.nprim = le32_to_cpu(buf[3]);
1328 nel = le32_to_cpu(buf[4]);
1330 ncons = le32_to_cpu(buf[5]);
1332 rc = str_read(&key, GFP_KERNEL, fp, len);
1337 rc = str_read(&cladatum->comkey, GFP_KERNEL, fp, len2);
1342 cladatum->comdatum = hashtab_search(p->p_commons.table, cladatum->comkey);
1343 if (!cladatum->comdatum) {
1344 printk(KERN_ERR "SELinux: unknown common %s\n", cladatum->comkey);
1348 for (i = 0; i < nel; i++) {
1349 rc = perm_read(p, cladatum->permissions.table, fp);
1354 rc = read_cons_helper(p, &cladatum->constraints, ncons, 0, fp);
1358 if (p->policyvers >= POLICYDB_VERSION_VALIDATETRANS) {
1359 /* grab the validatetrans rules */
1360 rc = next_entry(buf, fp, sizeof(u32));
1363 ncons = le32_to_cpu(buf[0]);
1364 rc = read_cons_helper(p, &cladatum->validatetrans,
1370 if (p->policyvers >= POLICYDB_VERSION_NEW_OBJECT_DEFAULTS) {
1371 rc = next_entry(buf, fp, sizeof(u32) * 3);
1375 cladatum->default_user = le32_to_cpu(buf[0]);
1376 cladatum->default_role = le32_to_cpu(buf[1]);
1377 cladatum->default_range = le32_to_cpu(buf[2]);
1380 if (p->policyvers >= POLICYDB_VERSION_DEFAULT_TYPE) {
1381 rc = next_entry(buf, fp, sizeof(u32) * 1);
1384 cladatum->default_type = le32_to_cpu(buf[0]);
1387 rc = hashtab_insert(h, key, cladatum);
1393 cls_destroy(key, cladatum, NULL);
1397 static int role_read(struct policydb *p, struct hashtab *h, void *fp)
1400 struct role_datum *role;
1401 int rc, to_read = 2;
1406 role = kzalloc(sizeof(*role), GFP_KERNEL);
1410 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
1413 rc = next_entry(buf, fp, sizeof(buf[0]) * to_read);
1417 len = le32_to_cpu(buf[0]);
1418 role->value = le32_to_cpu(buf[1]);
1419 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
1420 role->bounds = le32_to_cpu(buf[2]);
1422 rc = str_read(&key, GFP_KERNEL, fp, len);
1426 rc = ebitmap_read(&role->dominates, fp);
1430 rc = ebitmap_read(&role->types, fp);
1434 if (strcmp(key, OBJECT_R) == 0) {
1436 if (role->value != OBJECT_R_VAL) {
1437 printk(KERN_ERR "SELinux: Role %s has wrong value %d\n",
1438 OBJECT_R, role->value);
1445 rc = hashtab_insert(h, key, role);
1450 role_destroy(key, role, NULL);
1454 static int type_read(struct policydb *p, struct hashtab *h, void *fp)
1457 struct type_datum *typdatum;
1458 int rc, to_read = 3;
1463 typdatum = kzalloc(sizeof(*typdatum), GFP_KERNEL);
1467 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
1470 rc = next_entry(buf, fp, sizeof(buf[0]) * to_read);
1474 len = le32_to_cpu(buf[0]);
1475 typdatum->value = le32_to_cpu(buf[1]);
1476 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) {
1477 u32 prop = le32_to_cpu(buf[2]);
1479 if (prop & TYPEDATUM_PROPERTY_PRIMARY)
1480 typdatum->primary = 1;
1481 if (prop & TYPEDATUM_PROPERTY_ATTRIBUTE)
1482 typdatum->attribute = 1;
1484 typdatum->bounds = le32_to_cpu(buf[3]);
1486 typdatum->primary = le32_to_cpu(buf[2]);
1489 rc = str_read(&key, GFP_KERNEL, fp, len);
1493 rc = hashtab_insert(h, key, typdatum);
1498 type_destroy(key, typdatum, NULL);
1504 * Read a MLS level structure from a policydb binary
1505 * representation file.
1507 static int mls_read_level(struct mls_level *lp, void *fp)
1512 memset(lp, 0, sizeof(*lp));
1514 rc = next_entry(buf, fp, sizeof buf);
1516 printk(KERN_ERR "SELinux: mls: truncated level\n");
1519 lp->sens = le32_to_cpu(buf[0]);
1521 rc = ebitmap_read(&lp->cat, fp);
1523 printk(KERN_ERR "SELinux: mls: error reading level categories\n");
1529 static int user_read(struct policydb *p, struct hashtab *h, void *fp)
1532 struct user_datum *usrdatum;
1533 int rc, to_read = 2;
1538 usrdatum = kzalloc(sizeof(*usrdatum), GFP_KERNEL);
1542 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
1545 rc = next_entry(buf, fp, sizeof(buf[0]) * to_read);
1549 len = le32_to_cpu(buf[0]);
1550 usrdatum->value = le32_to_cpu(buf[1]);
1551 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
1552 usrdatum->bounds = le32_to_cpu(buf[2]);
1554 rc = str_read(&key, GFP_KERNEL, fp, len);
1558 rc = ebitmap_read(&usrdatum->roles, fp);
1562 if (p->policyvers >= POLICYDB_VERSION_MLS) {
1563 rc = mls_read_range_helper(&usrdatum->range, fp);
1566 rc = mls_read_level(&usrdatum->dfltlevel, fp);
1571 rc = hashtab_insert(h, key, usrdatum);
1576 user_destroy(key, usrdatum, NULL);
1580 static int sens_read(struct policydb *p, struct hashtab *h, void *fp)
1583 struct level_datum *levdatum;
1589 levdatum = kzalloc(sizeof(*levdatum), GFP_ATOMIC);
1593 rc = next_entry(buf, fp, sizeof buf);
1597 len = le32_to_cpu(buf[0]);
1598 levdatum->isalias = le32_to_cpu(buf[1]);
1600 rc = str_read(&key, GFP_ATOMIC, fp, len);
1605 levdatum->level = kmalloc(sizeof(struct mls_level), GFP_ATOMIC);
1606 if (!levdatum->level)
1609 rc = mls_read_level(levdatum->level, fp);
1613 rc = hashtab_insert(h, key, levdatum);
1618 sens_destroy(key, levdatum, NULL);
1622 static int cat_read(struct policydb *p, struct hashtab *h, void *fp)
1625 struct cat_datum *catdatum;
1631 catdatum = kzalloc(sizeof(*catdatum), GFP_ATOMIC);
1635 rc = next_entry(buf, fp, sizeof buf);
1639 len = le32_to_cpu(buf[0]);
1640 catdatum->value = le32_to_cpu(buf[1]);
1641 catdatum->isalias = le32_to_cpu(buf[2]);
1643 rc = str_read(&key, GFP_ATOMIC, fp, len);
1647 rc = hashtab_insert(h, key, catdatum);
1652 cat_destroy(key, catdatum, NULL);
1656 static int (*read_f[SYM_NUM]) (struct policydb *p, struct hashtab *h, void *fp) =
1668 static int user_bounds_sanity_check(void *key, void *datum, void *datap)
1670 struct user_datum *upper, *user;
1671 struct policydb *p = datap;
1674 upper = user = datum;
1675 while (upper->bounds) {
1676 struct ebitmap_node *node;
1679 if (++depth == POLICYDB_BOUNDS_MAXDEPTH) {
1680 printk(KERN_ERR "SELinux: user %s: "
1681 "too deep or looped boundary",
1686 upper = p->user_val_to_struct[upper->bounds - 1];
1687 ebitmap_for_each_positive_bit(&user->roles, node, bit) {
1688 if (ebitmap_get_bit(&upper->roles, bit))
1692 "SELinux: boundary violated policy: "
1693 "user=%s role=%s bounds=%s\n",
1694 sym_name(p, SYM_USERS, user->value - 1),
1695 sym_name(p, SYM_ROLES, bit),
1696 sym_name(p, SYM_USERS, upper->value - 1));
1705 static int role_bounds_sanity_check(void *key, void *datum, void *datap)
1707 struct role_datum *upper, *role;
1708 struct policydb *p = datap;
1711 upper = role = datum;
1712 while (upper->bounds) {
1713 struct ebitmap_node *node;
1716 if (++depth == POLICYDB_BOUNDS_MAXDEPTH) {
1717 printk(KERN_ERR "SELinux: role %s: "
1718 "too deep or looped bounds\n",
1723 upper = p->role_val_to_struct[upper->bounds - 1];
1724 ebitmap_for_each_positive_bit(&role->types, node, bit) {
1725 if (ebitmap_get_bit(&upper->types, bit))
1729 "SELinux: boundary violated policy: "
1730 "role=%s type=%s bounds=%s\n",
1731 sym_name(p, SYM_ROLES, role->value - 1),
1732 sym_name(p, SYM_TYPES, bit),
1733 sym_name(p, SYM_ROLES, upper->value - 1));
1742 static int type_bounds_sanity_check(void *key, void *datum, void *datap)
1744 struct type_datum *upper;
1745 struct policydb *p = datap;
1749 while (upper->bounds) {
1750 if (++depth == POLICYDB_BOUNDS_MAXDEPTH) {
1751 printk(KERN_ERR "SELinux: type %s: "
1752 "too deep or looped boundary\n",
1757 upper = flex_array_get_ptr(p->type_val_to_struct_array,
1761 if (upper->attribute) {
1762 printk(KERN_ERR "SELinux: type %s: "
1763 "bounded by attribute %s",
1765 sym_name(p, SYM_TYPES, upper->value - 1));
1773 static int policydb_bounds_sanity_check(struct policydb *p)
1777 if (p->policyvers < POLICYDB_VERSION_BOUNDARY)
1780 rc = hashtab_map(p->p_users.table,
1781 user_bounds_sanity_check, p);
1785 rc = hashtab_map(p->p_roles.table,
1786 role_bounds_sanity_check, p);
1790 rc = hashtab_map(p->p_types.table,
1791 type_bounds_sanity_check, p);
1798 u16 string_to_security_class(struct policydb *p, const char *name)
1800 struct class_datum *cladatum;
1802 cladatum = hashtab_search(p->p_classes.table, name);
1806 return cladatum->value;
1809 u32 string_to_av_perm(struct policydb *p, u16 tclass, const char *name)
1811 struct class_datum *cladatum;
1812 struct perm_datum *perdatum = NULL;
1813 struct common_datum *comdatum;
1815 if (!tclass || tclass > p->p_classes.nprim)
1818 cladatum = p->class_val_to_struct[tclass-1];
1819 comdatum = cladatum->comdatum;
1821 perdatum = hashtab_search(comdatum->permissions.table,
1824 perdatum = hashtab_search(cladatum->permissions.table,
1829 return 1U << (perdatum->value-1);
1832 static int range_read(struct policydb *p, void *fp)
1834 struct range_trans *rt = NULL;
1835 struct mls_range *r = NULL;
1840 if (p->policyvers < POLICYDB_VERSION_MLS)
1843 rc = next_entry(buf, fp, sizeof(u32));
1847 nel = le32_to_cpu(buf[0]);
1848 for (i = 0; i < nel; i++) {
1850 rt = kzalloc(sizeof(*rt), GFP_KERNEL);
1854 rc = next_entry(buf, fp, (sizeof(u32) * 2));
1858 rt->source_type = le32_to_cpu(buf[0]);
1859 rt->target_type = le32_to_cpu(buf[1]);
1860 if (p->policyvers >= POLICYDB_VERSION_RANGETRANS) {
1861 rc = next_entry(buf, fp, sizeof(u32));
1864 rt->target_class = le32_to_cpu(buf[0]);
1866 rt->target_class = p->process_class;
1869 if (!policydb_type_isvalid(p, rt->source_type) ||
1870 !policydb_type_isvalid(p, rt->target_type) ||
1871 !policydb_class_isvalid(p, rt->target_class))
1875 r = kzalloc(sizeof(*r), GFP_KERNEL);
1879 rc = mls_read_range_helper(r, fp);
1884 if (!mls_range_isvalid(p, r)) {
1885 printk(KERN_WARNING "SELinux: rangetrans: invalid range\n");
1889 rc = hashtab_insert(p->range_tr, rt, r);
1896 hash_eval(p->range_tr, "rangetr");
1904 static int filename_trans_read(struct policydb *p, void *fp)
1906 struct filename_trans *ft;
1907 struct filename_trans_datum *otype;
1913 if (p->policyvers < POLICYDB_VERSION_FILENAME_TRANS)
1916 rc = next_entry(buf, fp, sizeof(u32));
1919 nel = le32_to_cpu(buf[0]);
1921 for (i = 0; i < nel; i++) {
1927 ft = kzalloc(sizeof(*ft), GFP_KERNEL);
1932 otype = kmalloc(sizeof(*otype), GFP_KERNEL);
1936 /* length of the path component string */
1937 rc = next_entry(buf, fp, sizeof(u32));
1940 len = le32_to_cpu(buf[0]);
1942 /* path component string */
1943 rc = str_read(&name, GFP_KERNEL, fp, len);
1949 rc = next_entry(buf, fp, sizeof(u32) * 4);
1953 ft->stype = le32_to_cpu(buf[0]);
1954 ft->ttype = le32_to_cpu(buf[1]);
1955 ft->tclass = le32_to_cpu(buf[2]);
1957 otype->otype = le32_to_cpu(buf[3]);
1959 rc = ebitmap_set_bit(&p->filename_trans_ttypes, ft->ttype, 1);
1963 rc = hashtab_insert(p->filename_trans, ft, otype);
1966 * Do not return -EEXIST to the caller, or the system
1971 /* But free memory to avoid memory leak. */
1977 hash_eval(p->filename_trans, "filenametr");
1987 static int genfs_read(struct policydb *p, void *fp)
1990 u32 nel, nel2, len, len2;
1992 struct ocontext *l, *c;
1993 struct ocontext *newc = NULL;
1994 struct genfs *genfs_p, *genfs;
1995 struct genfs *newgenfs = NULL;
1997 rc = next_entry(buf, fp, sizeof(u32));
2000 nel = le32_to_cpu(buf[0]);
2002 for (i = 0; i < nel; i++) {
2003 rc = next_entry(buf, fp, sizeof(u32));
2006 len = le32_to_cpu(buf[0]);
2009 newgenfs = kzalloc(sizeof(*newgenfs), GFP_KERNEL);
2013 rc = str_read(&newgenfs->fstype, GFP_KERNEL, fp, len);
2017 for (genfs_p = NULL, genfs = p->genfs; genfs;
2018 genfs_p = genfs, genfs = genfs->next) {
2020 if (strcmp(newgenfs->fstype, genfs->fstype) == 0) {
2021 printk(KERN_ERR "SELinux: dup genfs fstype %s\n",
2025 if (strcmp(newgenfs->fstype, genfs->fstype) < 0)
2028 newgenfs->next = genfs;
2030 genfs_p->next = newgenfs;
2032 p->genfs = newgenfs;
2036 rc = next_entry(buf, fp, sizeof(u32));
2040 nel2 = le32_to_cpu(buf[0]);
2041 for (j = 0; j < nel2; j++) {
2042 rc = next_entry(buf, fp, sizeof(u32));
2045 len = le32_to_cpu(buf[0]);
2048 newc = kzalloc(sizeof(*newc), GFP_KERNEL);
2052 rc = str_read(&newc->u.name, GFP_KERNEL, fp, len);
2056 rc = next_entry(buf, fp, sizeof(u32));
2060 newc->v.sclass = le32_to_cpu(buf[0]);
2061 rc = context_read_and_validate(&newc->context[0], p, fp);
2065 for (l = NULL, c = genfs->head; c;
2066 l = c, c = c->next) {
2068 if (!strcmp(newc->u.name, c->u.name) &&
2069 (!c->v.sclass || !newc->v.sclass ||
2070 newc->v.sclass == c->v.sclass)) {
2071 printk(KERN_ERR "SELinux: dup genfs entry (%s,%s)\n",
2072 genfs->fstype, c->u.name);
2075 len = strlen(newc->u.name);
2076 len2 = strlen(c->u.name);
2092 kfree(newgenfs->fstype);
2094 ocontext_destroy(newc, OCON_FSUSE);
2099 static int ocontext_read(struct policydb *p, struct policydb_compat_info *info,
2105 struct ocontext *l, *c;
2108 for (i = 0; i < info->ocon_num; i++) {
2109 rc = next_entry(buf, fp, sizeof(u32));
2112 nel = le32_to_cpu(buf[0]);
2115 for (j = 0; j < nel; j++) {
2117 c = kzalloc(sizeof(*c), GFP_KERNEL);
2123 p->ocontexts[i] = c;
2128 rc = next_entry(buf, fp, sizeof(u32));
2132 c->sid[0] = le32_to_cpu(buf[0]);
2133 rc = context_read_and_validate(&c->context[0], p, fp);
2139 rc = next_entry(buf, fp, sizeof(u32));
2142 len = le32_to_cpu(buf[0]);
2144 rc = str_read(&c->u.name, GFP_KERNEL, fp, len);
2148 rc = context_read_and_validate(&c->context[0], p, fp);
2151 rc = context_read_and_validate(&c->context[1], p, fp);
2156 rc = next_entry(buf, fp, sizeof(u32)*3);
2159 c->u.port.protocol = le32_to_cpu(buf[0]);
2160 c->u.port.low_port = le32_to_cpu(buf[1]);
2161 c->u.port.high_port = le32_to_cpu(buf[2]);
2162 rc = context_read_and_validate(&c->context[0], p, fp);
2167 rc = next_entry(nodebuf, fp, sizeof(u32) * 2);
2170 c->u.node.addr = nodebuf[0]; /* network order */
2171 c->u.node.mask = nodebuf[1]; /* network order */
2172 rc = context_read_and_validate(&c->context[0], p, fp);
2177 rc = next_entry(buf, fp, sizeof(u32)*2);
2182 c->v.behavior = le32_to_cpu(buf[0]);
2183 /* Determined at runtime, not in policy DB. */
2184 if (c->v.behavior == SECURITY_FS_USE_MNTPOINT)
2186 if (c->v.behavior > SECURITY_FS_USE_MAX)
2189 len = le32_to_cpu(buf[1]);
2190 rc = str_read(&c->u.name, GFP_KERNEL, fp, len);
2194 rc = context_read_and_validate(&c->context[0], p, fp);
2201 rc = next_entry(nodebuf, fp, sizeof(u32) * 8);
2204 for (k = 0; k < 4; k++)
2205 c->u.node6.addr[k] = nodebuf[k];
2206 for (k = 0; k < 4; k++)
2207 c->u.node6.mask[k] = nodebuf[k+4];
2208 rc = context_read_and_validate(&c->context[0], p, fp);
2222 * Read the configuration data from a policy database binary
2223 * representation file into a policy database structure.
2225 int policydb_read(struct policydb *p, void *fp)
2227 struct role_allow *ra, *lra;
2228 struct role_trans *tr, *ltr;
2231 u32 len, nprim, nel;
2234 struct policydb_compat_info *info;
2236 rc = policydb_init(p);
2240 /* Read the magic number and string length. */
2241 rc = next_entry(buf, fp, sizeof(u32) * 2);
2246 if (le32_to_cpu(buf[0]) != POLICYDB_MAGIC) {
2247 printk(KERN_ERR "SELinux: policydb magic number 0x%x does "
2248 "not match expected magic number 0x%x\n",
2249 le32_to_cpu(buf[0]), POLICYDB_MAGIC);
2254 len = le32_to_cpu(buf[1]);
2255 if (len != strlen(POLICYDB_STRING)) {
2256 printk(KERN_ERR "SELinux: policydb string length %d does not "
2257 "match expected length %Zu\n",
2258 len, strlen(POLICYDB_STRING));
2263 policydb_str = kmalloc(len + 1, GFP_KERNEL);
2264 if (!policydb_str) {
2265 printk(KERN_ERR "SELinux: unable to allocate memory for policydb "
2266 "string of length %d\n", len);
2270 rc = next_entry(policydb_str, fp, len);
2272 printk(KERN_ERR "SELinux: truncated policydb string identifier\n");
2273 kfree(policydb_str);
2278 policydb_str[len] = '\0';
2279 if (strcmp(policydb_str, POLICYDB_STRING)) {
2280 printk(KERN_ERR "SELinux: policydb string %s does not match "
2281 "my string %s\n", policydb_str, POLICYDB_STRING);
2282 kfree(policydb_str);
2285 /* Done with policydb_str. */
2286 kfree(policydb_str);
2287 policydb_str = NULL;
2289 /* Read the version and table sizes. */
2290 rc = next_entry(buf, fp, sizeof(u32)*4);
2295 p->policyvers = le32_to_cpu(buf[0]);
2296 if (p->policyvers < POLICYDB_VERSION_MIN ||
2297 p->policyvers > POLICYDB_VERSION_MAX) {
2298 printk(KERN_ERR "SELinux: policydb version %d does not match "
2299 "my version range %d-%d\n",
2300 le32_to_cpu(buf[0]), POLICYDB_VERSION_MIN, POLICYDB_VERSION_MAX);
2304 if ((le32_to_cpu(buf[1]) & POLICYDB_CONFIG_MLS)) {
2308 if (p->policyvers < POLICYDB_VERSION_MLS) {
2309 printk(KERN_ERR "SELinux: security policydb version %d "
2310 "(MLS) not backwards compatible\n",
2315 p->reject_unknown = !!(le32_to_cpu(buf[1]) & REJECT_UNKNOWN);
2316 p->allow_unknown = !!(le32_to_cpu(buf[1]) & ALLOW_UNKNOWN);
2318 if (p->policyvers >= POLICYDB_VERSION_POLCAP) {
2319 rc = ebitmap_read(&p->policycaps, fp);
2324 if (p->policyvers >= POLICYDB_VERSION_PERMISSIVE) {
2325 rc = ebitmap_read(&p->permissive_map, fp);
2331 info = policydb_lookup_compat(p->policyvers);
2333 printk(KERN_ERR "SELinux: unable to find policy compat info "
2334 "for version %d\n", p->policyvers);
2339 if (le32_to_cpu(buf[2]) != info->sym_num ||
2340 le32_to_cpu(buf[3]) != info->ocon_num) {
2341 printk(KERN_ERR "SELinux: policydb table sizes (%d,%d) do "
2342 "not match mine (%d,%d)\n", le32_to_cpu(buf[2]),
2343 le32_to_cpu(buf[3]),
2344 info->sym_num, info->ocon_num);
2348 for (i = 0; i < info->sym_num; i++) {
2349 rc = next_entry(buf, fp, sizeof(u32)*2);
2352 nprim = le32_to_cpu(buf[0]);
2353 nel = le32_to_cpu(buf[1]);
2354 for (j = 0; j < nel; j++) {
2355 rc = read_f[i](p, p->symtab[i].table, fp);
2360 p->symtab[i].nprim = nprim;
2364 p->process_class = string_to_security_class(p, "process");
2365 if (!p->process_class)
2368 rc = avtab_read(&p->te_avtab, fp, p);
2372 if (p->policyvers >= POLICYDB_VERSION_BOOL) {
2373 rc = cond_read_list(p, fp);
2378 rc = next_entry(buf, fp, sizeof(u32));
2381 nel = le32_to_cpu(buf[0]);
2383 for (i = 0; i < nel; i++) {
2385 tr = kzalloc(sizeof(*tr), GFP_KERNEL);
2392 rc = next_entry(buf, fp, sizeof(u32)*3);
2397 tr->role = le32_to_cpu(buf[0]);
2398 tr->type = le32_to_cpu(buf[1]);
2399 tr->new_role = le32_to_cpu(buf[2]);
2400 if (p->policyvers >= POLICYDB_VERSION_ROLETRANS) {
2401 rc = next_entry(buf, fp, sizeof(u32));
2404 tr->tclass = le32_to_cpu(buf[0]);
2406 tr->tclass = p->process_class;
2408 if (!policydb_role_isvalid(p, tr->role) ||
2409 !policydb_type_isvalid(p, tr->type) ||
2410 !policydb_class_isvalid(p, tr->tclass) ||
2411 !policydb_role_isvalid(p, tr->new_role))
2416 rc = next_entry(buf, fp, sizeof(u32));
2419 nel = le32_to_cpu(buf[0]);
2421 for (i = 0; i < nel; i++) {
2423 ra = kzalloc(sizeof(*ra), GFP_KERNEL);
2430 rc = next_entry(buf, fp, sizeof(u32)*2);
2435 ra->role = le32_to_cpu(buf[0]);
2436 ra->new_role = le32_to_cpu(buf[1]);
2437 if (!policydb_role_isvalid(p, ra->role) ||
2438 !policydb_role_isvalid(p, ra->new_role))
2443 rc = filename_trans_read(p, fp);
2447 rc = policydb_index(p);
2452 p->process_trans_perms = string_to_av_perm(p, p->process_class, "transition");
2453 p->process_trans_perms |= string_to_av_perm(p, p->process_class, "dyntransition");
2454 if (!p->process_trans_perms)
2457 rc = ocontext_read(p, info, fp);
2461 rc = genfs_read(p, fp);
2465 rc = range_read(p, fp);
2470 p->type_attr_map_array = flex_array_alloc(sizeof(struct ebitmap),
2472 GFP_KERNEL | __GFP_ZERO);
2473 if (!p->type_attr_map_array)
2476 /* preallocate so we don't have to worry about the put ever failing */
2477 rc = flex_array_prealloc(p->type_attr_map_array, 0, p->p_types.nprim,
2478 GFP_KERNEL | __GFP_ZERO);
2482 for (i = 0; i < p->p_types.nprim; i++) {
2483 struct ebitmap *e = flex_array_get(p->type_attr_map_array, i);
2487 if (p->policyvers >= POLICYDB_VERSION_AVTAB) {
2488 rc = ebitmap_read(e, fp);
2492 /* add the type itself as the degenerate case */
2493 rc = ebitmap_set_bit(e, i, 1);
2498 rc = policydb_bounds_sanity_check(p);
2506 policydb_destroy(p);
2511 * Write a MLS level structure to a policydb binary
2512 * representation file.
2514 static int mls_write_level(struct mls_level *l, void *fp)
2519 buf[0] = cpu_to_le32(l->sens);
2520 rc = put_entry(buf, sizeof(u32), 1, fp);
2524 rc = ebitmap_write(&l->cat, fp);
2532 * Write a MLS range structure to a policydb binary
2533 * representation file.
2535 static int mls_write_range_helper(struct mls_range *r, void *fp)
2541 eq = mls_level_eq(&r->level[1], &r->level[0]);
2547 buf[0] = cpu_to_le32(items-1);
2548 buf[1] = cpu_to_le32(r->level[0].sens);
2550 buf[2] = cpu_to_le32(r->level[1].sens);
2552 BUG_ON(items > ARRAY_SIZE(buf));
2554 rc = put_entry(buf, sizeof(u32), items, fp);
2558 rc = ebitmap_write(&r->level[0].cat, fp);
2562 rc = ebitmap_write(&r->level[1].cat, fp);
2570 static int sens_write(void *vkey, void *datum, void *ptr)
2573 struct level_datum *levdatum = datum;
2574 struct policy_data *pd = ptr;
2581 buf[0] = cpu_to_le32(len);
2582 buf[1] = cpu_to_le32(levdatum->isalias);
2583 rc = put_entry(buf, sizeof(u32), 2, fp);
2587 rc = put_entry(key, 1, len, fp);
2591 rc = mls_write_level(levdatum->level, fp);
2598 static int cat_write(void *vkey, void *datum, void *ptr)
2601 struct cat_datum *catdatum = datum;
2602 struct policy_data *pd = ptr;
2609 buf[0] = cpu_to_le32(len);
2610 buf[1] = cpu_to_le32(catdatum->value);
2611 buf[2] = cpu_to_le32(catdatum->isalias);
2612 rc = put_entry(buf, sizeof(u32), 3, fp);
2616 rc = put_entry(key, 1, len, fp);
2623 static int role_trans_write(struct policydb *p, void *fp)
2625 struct role_trans *r = p->role_tr;
2626 struct role_trans *tr;
2632 for (tr = r; tr; tr = tr->next)
2634 buf[0] = cpu_to_le32(nel);
2635 rc = put_entry(buf, sizeof(u32), 1, fp);
2638 for (tr = r; tr; tr = tr->next) {
2639 buf[0] = cpu_to_le32(tr->role);
2640 buf[1] = cpu_to_le32(tr->type);
2641 buf[2] = cpu_to_le32(tr->new_role);
2642 rc = put_entry(buf, sizeof(u32), 3, fp);
2645 if (p->policyvers >= POLICYDB_VERSION_ROLETRANS) {
2646 buf[0] = cpu_to_le32(tr->tclass);
2647 rc = put_entry(buf, sizeof(u32), 1, fp);
2656 static int role_allow_write(struct role_allow *r, void *fp)
2658 struct role_allow *ra;
2664 for (ra = r; ra; ra = ra->next)
2666 buf[0] = cpu_to_le32(nel);
2667 rc = put_entry(buf, sizeof(u32), 1, fp);
2670 for (ra = r; ra; ra = ra->next) {
2671 buf[0] = cpu_to_le32(ra->role);
2672 buf[1] = cpu_to_le32(ra->new_role);
2673 rc = put_entry(buf, sizeof(u32), 2, fp);
2681 * Write a security context structure
2682 * to a policydb binary representation file.
2684 static int context_write(struct policydb *p, struct context *c,
2690 buf[0] = cpu_to_le32(c->user);
2691 buf[1] = cpu_to_le32(c->role);
2692 buf[2] = cpu_to_le32(c->type);
2694 rc = put_entry(buf, sizeof(u32), 3, fp);
2698 rc = mls_write_range_helper(&c->range, fp);
2706 * The following *_write functions are used to
2707 * write the symbol data to a policy database
2708 * binary representation file.
2711 static int perm_write(void *vkey, void *datum, void *fp)
2714 struct perm_datum *perdatum = datum;
2720 buf[0] = cpu_to_le32(len);
2721 buf[1] = cpu_to_le32(perdatum->value);
2722 rc = put_entry(buf, sizeof(u32), 2, fp);
2726 rc = put_entry(key, 1, len, fp);
2733 static int common_write(void *vkey, void *datum, void *ptr)
2736 struct common_datum *comdatum = datum;
2737 struct policy_data *pd = ptr;
2744 buf[0] = cpu_to_le32(len);
2745 buf[1] = cpu_to_le32(comdatum->value);
2746 buf[2] = cpu_to_le32(comdatum->permissions.nprim);
2747 buf[3] = cpu_to_le32(comdatum->permissions.table->nel);
2748 rc = put_entry(buf, sizeof(u32), 4, fp);
2752 rc = put_entry(key, 1, len, fp);
2756 rc = hashtab_map(comdatum->permissions.table, perm_write, fp);
2763 static int type_set_write(struct type_set *t, void *fp)
2768 if (ebitmap_write(&t->types, fp))
2770 if (ebitmap_write(&t->negset, fp))
2773 buf[0] = cpu_to_le32(t->flags);
2774 rc = put_entry(buf, sizeof(u32), 1, fp);
2781 static int write_cons_helper(struct policydb *p, struct constraint_node *node,
2784 struct constraint_node *c;
2785 struct constraint_expr *e;
2790 for (c = node; c; c = c->next) {
2792 for (e = c->expr; e; e = e->next)
2794 buf[0] = cpu_to_le32(c->permissions);
2795 buf[1] = cpu_to_le32(nel);
2796 rc = put_entry(buf, sizeof(u32), 2, fp);
2799 for (e = c->expr; e; e = e->next) {
2800 buf[0] = cpu_to_le32(e->expr_type);
2801 buf[1] = cpu_to_le32(e->attr);
2802 buf[2] = cpu_to_le32(e->op);
2803 rc = put_entry(buf, sizeof(u32), 3, fp);
2807 switch (e->expr_type) {
2809 rc = ebitmap_write(&e->names, fp);
2812 if (p->policyvers >=
2813 POLICYDB_VERSION_CONSTRAINT_NAMES) {
2814 rc = type_set_write(e->type_names, fp);
2828 static int class_write(void *vkey, void *datum, void *ptr)
2831 struct class_datum *cladatum = datum;
2832 struct policy_data *pd = ptr;
2834 struct policydb *p = pd->p;
2835 struct constraint_node *c;
2842 if (cladatum->comkey)
2843 len2 = strlen(cladatum->comkey);
2848 for (c = cladatum->constraints; c; c = c->next)
2851 buf[0] = cpu_to_le32(len);
2852 buf[1] = cpu_to_le32(len2);
2853 buf[2] = cpu_to_le32(cladatum->value);
2854 buf[3] = cpu_to_le32(cladatum->permissions.nprim);
2855 if (cladatum->permissions.table)
2856 buf[4] = cpu_to_le32(cladatum->permissions.table->nel);
2859 buf[5] = cpu_to_le32(ncons);
2860 rc = put_entry(buf, sizeof(u32), 6, fp);
2864 rc = put_entry(key, 1, len, fp);
2868 if (cladatum->comkey) {
2869 rc = put_entry(cladatum->comkey, 1, len2, fp);
2874 rc = hashtab_map(cladatum->permissions.table, perm_write, fp);
2878 rc = write_cons_helper(p, cladatum->constraints, fp);
2882 /* write out the validatetrans rule */
2884 for (c = cladatum->validatetrans; c; c = c->next)
2887 buf[0] = cpu_to_le32(ncons);
2888 rc = put_entry(buf, sizeof(u32), 1, fp);
2892 rc = write_cons_helper(p, cladatum->validatetrans, fp);
2896 if (p->policyvers >= POLICYDB_VERSION_NEW_OBJECT_DEFAULTS) {
2897 buf[0] = cpu_to_le32(cladatum->default_user);
2898 buf[1] = cpu_to_le32(cladatum->default_role);
2899 buf[2] = cpu_to_le32(cladatum->default_range);
2901 rc = put_entry(buf, sizeof(uint32_t), 3, fp);
2906 if (p->policyvers >= POLICYDB_VERSION_DEFAULT_TYPE) {
2907 buf[0] = cpu_to_le32(cladatum->default_type);
2908 rc = put_entry(buf, sizeof(uint32_t), 1, fp);
2916 static int role_write(void *vkey, void *datum, void *ptr)
2919 struct role_datum *role = datum;
2920 struct policy_data *pd = ptr;
2922 struct policydb *p = pd->p;
2929 buf[items++] = cpu_to_le32(len);
2930 buf[items++] = cpu_to_le32(role->value);
2931 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
2932 buf[items++] = cpu_to_le32(role->bounds);
2934 BUG_ON(items > ARRAY_SIZE(buf));
2936 rc = put_entry(buf, sizeof(u32), items, fp);
2940 rc = put_entry(key, 1, len, fp);
2944 rc = ebitmap_write(&role->dominates, fp);
2948 rc = ebitmap_write(&role->types, fp);
2955 static int type_write(void *vkey, void *datum, void *ptr)
2958 struct type_datum *typdatum = datum;
2959 struct policy_data *pd = ptr;
2960 struct policydb *p = pd->p;
2968 buf[items++] = cpu_to_le32(len);
2969 buf[items++] = cpu_to_le32(typdatum->value);
2970 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) {
2973 if (typdatum->primary)
2974 properties |= TYPEDATUM_PROPERTY_PRIMARY;
2976 if (typdatum->attribute)
2977 properties |= TYPEDATUM_PROPERTY_ATTRIBUTE;
2979 buf[items++] = cpu_to_le32(properties);
2980 buf[items++] = cpu_to_le32(typdatum->bounds);
2982 buf[items++] = cpu_to_le32(typdatum->primary);
2984 BUG_ON(items > ARRAY_SIZE(buf));
2985 rc = put_entry(buf, sizeof(u32), items, fp);
2989 rc = put_entry(key, 1, len, fp);
2996 static int user_write(void *vkey, void *datum, void *ptr)
2999 struct user_datum *usrdatum = datum;
3000 struct policy_data *pd = ptr;
3001 struct policydb *p = pd->p;
3009 buf[items++] = cpu_to_le32(len);
3010 buf[items++] = cpu_to_le32(usrdatum->value);
3011 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
3012 buf[items++] = cpu_to_le32(usrdatum->bounds);
3013 BUG_ON(items > ARRAY_SIZE(buf));
3014 rc = put_entry(buf, sizeof(u32), items, fp);
3018 rc = put_entry(key, 1, len, fp);
3022 rc = ebitmap_write(&usrdatum->roles, fp);
3026 rc = mls_write_range_helper(&usrdatum->range, fp);
3030 rc = mls_write_level(&usrdatum->dfltlevel, fp);
3037 static int (*write_f[SYM_NUM]) (void *key, void *datum,
3050 static int ocontext_write(struct policydb *p, struct policydb_compat_info *info,
3053 unsigned int i, j, rc;
3058 for (i = 0; i < info->ocon_num; i++) {
3060 for (c = p->ocontexts[i]; c; c = c->next)
3062 buf[0] = cpu_to_le32(nel);
3063 rc = put_entry(buf, sizeof(u32), 1, fp);
3066 for (c = p->ocontexts[i]; c; c = c->next) {
3069 buf[0] = cpu_to_le32(c->sid[0]);
3070 rc = put_entry(buf, sizeof(u32), 1, fp);
3073 rc = context_write(p, &c->context[0], fp);
3079 len = strlen(c->u.name);
3080 buf[0] = cpu_to_le32(len);
3081 rc = put_entry(buf, sizeof(u32), 1, fp);
3084 rc = put_entry(c->u.name, 1, len, fp);
3087 rc = context_write(p, &c->context[0], fp);
3090 rc = context_write(p, &c->context[1], fp);
3095 buf[0] = cpu_to_le32(c->u.port.protocol);
3096 buf[1] = cpu_to_le32(c->u.port.low_port);
3097 buf[2] = cpu_to_le32(c->u.port.high_port);
3098 rc = put_entry(buf, sizeof(u32), 3, fp);
3101 rc = context_write(p, &c->context[0], fp);
3106 nodebuf[0] = c->u.node.addr; /* network order */
3107 nodebuf[1] = c->u.node.mask; /* network order */
3108 rc = put_entry(nodebuf, sizeof(u32), 2, fp);
3111 rc = context_write(p, &c->context[0], fp);
3116 buf[0] = cpu_to_le32(c->v.behavior);
3117 len = strlen(c->u.name);
3118 buf[1] = cpu_to_le32(len);
3119 rc = put_entry(buf, sizeof(u32), 2, fp);
3122 rc = put_entry(c->u.name, 1, len, fp);
3125 rc = context_write(p, &c->context[0], fp);
3130 for (j = 0; j < 4; j++)
3131 nodebuf[j] = c->u.node6.addr[j]; /* network order */
3132 for (j = 0; j < 4; j++)
3133 nodebuf[j + 4] = c->u.node6.mask[j]; /* network order */
3134 rc = put_entry(nodebuf, sizeof(u32), 8, fp);
3137 rc = context_write(p, &c->context[0], fp);
3147 static int genfs_write(struct policydb *p, void *fp)
3149 struct genfs *genfs;
3156 for (genfs = p->genfs; genfs; genfs = genfs->next)
3158 buf[0] = cpu_to_le32(len);
3159 rc = put_entry(buf, sizeof(u32), 1, fp);
3162 for (genfs = p->genfs; genfs; genfs = genfs->next) {
3163 len = strlen(genfs->fstype);
3164 buf[0] = cpu_to_le32(len);
3165 rc = put_entry(buf, sizeof(u32), 1, fp);
3168 rc = put_entry(genfs->fstype, 1, len, fp);
3172 for (c = genfs->head; c; c = c->next)
3174 buf[0] = cpu_to_le32(len);
3175 rc = put_entry(buf, sizeof(u32), 1, fp);
3178 for (c = genfs->head; c; c = c->next) {
3179 len = strlen(c->u.name);
3180 buf[0] = cpu_to_le32(len);
3181 rc = put_entry(buf, sizeof(u32), 1, fp);
3184 rc = put_entry(c->u.name, 1, len, fp);
3187 buf[0] = cpu_to_le32(c->v.sclass);
3188 rc = put_entry(buf, sizeof(u32), 1, fp);
3191 rc = context_write(p, &c->context[0], fp);
3199 static int hashtab_cnt(void *key, void *data, void *ptr)
3207 static int range_write_helper(void *key, void *data, void *ptr)
3210 struct range_trans *rt = key;
3211 struct mls_range *r = data;
3212 struct policy_data *pd = ptr;
3214 struct policydb *p = pd->p;
3217 buf[0] = cpu_to_le32(rt->source_type);
3218 buf[1] = cpu_to_le32(rt->target_type);
3219 rc = put_entry(buf, sizeof(u32), 2, fp);
3222 if (p->policyvers >= POLICYDB_VERSION_RANGETRANS) {
3223 buf[0] = cpu_to_le32(rt->target_class);
3224 rc = put_entry(buf, sizeof(u32), 1, fp);
3228 rc = mls_write_range_helper(r, fp);
3235 static int range_write(struct policydb *p, void *fp)
3239 struct policy_data pd;
3244 /* count the number of entries in the hashtab */
3246 rc = hashtab_map(p->range_tr, hashtab_cnt, &nel);
3250 buf[0] = cpu_to_le32(nel);
3251 rc = put_entry(buf, sizeof(u32), 1, fp);
3255 /* actually write all of the entries */
3256 rc = hashtab_map(p->range_tr, range_write_helper, &pd);
3263 static int filename_write_helper(void *key, void *data, void *ptr)
3266 struct filename_trans *ft = key;
3267 struct filename_trans_datum *otype = data;
3272 len = strlen(ft->name);
3273 buf[0] = cpu_to_le32(len);
3274 rc = put_entry(buf, sizeof(u32), 1, fp);
3278 rc = put_entry(ft->name, sizeof(char), len, fp);
3282 buf[0] = cpu_to_le32(ft->stype);
3283 buf[1] = cpu_to_le32(ft->ttype);
3284 buf[2] = cpu_to_le32(ft->tclass);
3285 buf[3] = cpu_to_le32(otype->otype);
3287 rc = put_entry(buf, sizeof(u32), 4, fp);
3294 static int filename_trans_write(struct policydb *p, void *fp)
3300 if (p->policyvers < POLICYDB_VERSION_FILENAME_TRANS)
3304 rc = hashtab_map(p->filename_trans, hashtab_cnt, &nel);
3308 buf[0] = cpu_to_le32(nel);
3309 rc = put_entry(buf, sizeof(u32), 1, fp);
3313 rc = hashtab_map(p->filename_trans, filename_write_helper, fp);
3321 * Write the configuration data in a policy database
3322 * structure to a policy database binary representation
3325 int policydb_write(struct policydb *p, void *fp)
3327 unsigned int i, num_syms;
3332 struct policydb_compat_info *info;
3335 * refuse to write policy older than compressed avtab
3336 * to simplify the writer. There are other tests dropped
3337 * since we assume this throughout the writer code. Be
3338 * careful if you ever try to remove this restriction
3340 if (p->policyvers < POLICYDB_VERSION_AVTAB) {
3341 printk(KERN_ERR "SELinux: refusing to write policy version %d."
3342 " Because it is less than version %d\n", p->policyvers,
3343 POLICYDB_VERSION_AVTAB);
3349 config |= POLICYDB_CONFIG_MLS;
3351 if (p->reject_unknown)
3352 config |= REJECT_UNKNOWN;
3353 if (p->allow_unknown)
3354 config |= ALLOW_UNKNOWN;
3356 /* Write the magic number and string identifiers. */
3357 buf[0] = cpu_to_le32(POLICYDB_MAGIC);
3358 len = strlen(POLICYDB_STRING);
3359 buf[1] = cpu_to_le32(len);
3360 rc = put_entry(buf, sizeof(u32), 2, fp);
3363 rc = put_entry(POLICYDB_STRING, 1, len, fp);
3367 /* Write the version, config, and table sizes. */
3368 info = policydb_lookup_compat(p->policyvers);
3370 printk(KERN_ERR "SELinux: compatibility lookup failed for policy "
3371 "version %d", p->policyvers);
3375 buf[0] = cpu_to_le32(p->policyvers);
3376 buf[1] = cpu_to_le32(config);
3377 buf[2] = cpu_to_le32(info->sym_num);
3378 buf[3] = cpu_to_le32(info->ocon_num);
3380 rc = put_entry(buf, sizeof(u32), 4, fp);
3384 if (p->policyvers >= POLICYDB_VERSION_POLCAP) {
3385 rc = ebitmap_write(&p->policycaps, fp);
3390 if (p->policyvers >= POLICYDB_VERSION_PERMISSIVE) {
3391 rc = ebitmap_write(&p->permissive_map, fp);
3396 num_syms = info->sym_num;
3397 for (i = 0; i < num_syms; i++) {
3398 struct policy_data pd;
3403 buf[0] = cpu_to_le32(p->symtab[i].nprim);
3404 buf[1] = cpu_to_le32(p->symtab[i].table->nel);
3406 rc = put_entry(buf, sizeof(u32), 2, fp);
3409 rc = hashtab_map(p->symtab[i].table, write_f[i], &pd);
3414 rc = avtab_write(p, &p->te_avtab, fp);
3418 rc = cond_write_list(p, p->cond_list, fp);
3422 rc = role_trans_write(p, fp);
3426 rc = role_allow_write(p->role_allow, fp);
3430 rc = filename_trans_write(p, fp);
3434 rc = ocontext_write(p, info, fp);
3438 rc = genfs_write(p, fp);
3442 rc = range_write(p, fp);
3446 for (i = 0; i < p->p_types.nprim; i++) {
3447 struct ebitmap *e = flex_array_get(p->type_attr_map_array, i);
3450 rc = ebitmap_write(e, fp);