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 * Update: Mellanox Techonologies
22 * Added Infiniband support
24 * Copyright (C) 2016 Mellanox Techonologies
25 * Copyright (C) 2007 Hewlett-Packard Development Company, L.P.
26 * Copyright (C) 2004-2005 Trusted Computer Solutions, Inc.
27 * Copyright (C) 2003 - 2004 Tresys Technology, LLC
28 * This program is free software; you can redistribute it and/or modify
29 * it under the terms of the GNU General Public License as published by
30 * the Free Software Foundation, version 2.
33 #include <linux/kernel.h>
34 #include <linux/sched.h>
35 #include <linux/slab.h>
36 #include <linux/string.h>
37 #include <linux/errno.h>
38 #include <linux/audit.h>
39 #include <linux/flex_array.h>
43 #include "conditional.h"
50 static const char *symtab_name[SYM_NUM] = {
62 static unsigned int symtab_sizes[SYM_NUM] = {
73 struct policydb_compat_info {
79 /* These need to be updated if SYM_NUM or OCON_NUM changes */
80 static struct policydb_compat_info policydb_compat[] = {
82 .version = POLICYDB_VERSION_BASE,
83 .sym_num = SYM_NUM - 3,
84 .ocon_num = OCON_NUM - 3,
87 .version = POLICYDB_VERSION_BOOL,
88 .sym_num = SYM_NUM - 2,
89 .ocon_num = OCON_NUM - 3,
92 .version = POLICYDB_VERSION_IPV6,
93 .sym_num = SYM_NUM - 2,
94 .ocon_num = OCON_NUM - 2,
97 .version = POLICYDB_VERSION_NLCLASS,
98 .sym_num = SYM_NUM - 2,
99 .ocon_num = OCON_NUM - 2,
102 .version = POLICYDB_VERSION_MLS,
104 .ocon_num = OCON_NUM - 2,
107 .version = POLICYDB_VERSION_AVTAB,
109 .ocon_num = OCON_NUM - 2,
112 .version = POLICYDB_VERSION_RANGETRANS,
114 .ocon_num = OCON_NUM - 2,
117 .version = POLICYDB_VERSION_POLCAP,
119 .ocon_num = OCON_NUM - 2,
122 .version = POLICYDB_VERSION_PERMISSIVE,
124 .ocon_num = OCON_NUM - 2,
127 .version = POLICYDB_VERSION_BOUNDARY,
129 .ocon_num = OCON_NUM - 2,
132 .version = POLICYDB_VERSION_FILENAME_TRANS,
134 .ocon_num = OCON_NUM - 2,
137 .version = POLICYDB_VERSION_ROLETRANS,
139 .ocon_num = OCON_NUM - 2,
142 .version = POLICYDB_VERSION_NEW_OBJECT_DEFAULTS,
144 .ocon_num = OCON_NUM - 2,
147 .version = POLICYDB_VERSION_DEFAULT_TYPE,
149 .ocon_num = OCON_NUM - 2,
152 .version = POLICYDB_VERSION_CONSTRAINT_NAMES,
154 .ocon_num = OCON_NUM - 2,
157 .version = POLICYDB_VERSION_XPERMS_IOCTL,
159 .ocon_num = OCON_NUM - 2,
162 .version = POLICYDB_VERSION_INFINIBAND,
164 .ocon_num = OCON_NUM,
168 static struct policydb_compat_info *policydb_lookup_compat(int version)
171 struct policydb_compat_info *info = NULL;
173 for (i = 0; i < ARRAY_SIZE(policydb_compat); i++) {
174 if (policydb_compat[i].version == version) {
175 info = &policydb_compat[i];
183 * Initialize the role table.
185 static int roles_init(struct policydb *p)
189 struct role_datum *role;
191 role = kzalloc(sizeof(*role), GFP_KERNEL);
196 role->value = ++p->p_roles.nprim;
197 if (role->value != OBJECT_R_VAL)
201 key = kstrdup(OBJECT_R, GFP_KERNEL);
205 rc = hashtab_insert(p->p_roles.table, key, role);
216 static u32 filenametr_hash(struct hashtab *h, const void *k)
218 const struct filename_trans *ft = k;
220 unsigned int byte_num;
223 hash = ft->stype ^ ft->ttype ^ ft->tclass;
226 while ((focus = ft->name[byte_num++]))
227 hash = partial_name_hash(focus, hash);
228 return hash & (h->size - 1);
231 static int filenametr_cmp(struct hashtab *h, const void *k1, const void *k2)
233 const struct filename_trans *ft1 = k1;
234 const struct filename_trans *ft2 = k2;
237 v = ft1->stype - ft2->stype;
241 v = ft1->ttype - ft2->ttype;
245 v = ft1->tclass - ft2->tclass;
249 return strcmp(ft1->name, ft2->name);
253 static u32 rangetr_hash(struct hashtab *h, const void *k)
255 const struct range_trans *key = k;
256 return (key->source_type + (key->target_type << 3) +
257 (key->target_class << 5)) & (h->size - 1);
260 static int rangetr_cmp(struct hashtab *h, const void *k1, const void *k2)
262 const struct range_trans *key1 = k1, *key2 = k2;
265 v = key1->source_type - key2->source_type;
269 v = key1->target_type - key2->target_type;
273 v = key1->target_class - key2->target_class;
279 * Initialize a policy database structure.
281 static int policydb_init(struct policydb *p)
285 memset(p, 0, sizeof(*p));
287 for (i = 0; i < SYM_NUM; i++) {
288 rc = symtab_init(&p->symtab[i], symtab_sizes[i]);
293 rc = avtab_init(&p->te_avtab);
301 rc = cond_policydb_init(p);
305 p->filename_trans = hashtab_create(filenametr_hash, filenametr_cmp, (1 << 10));
306 if (!p->filename_trans) {
311 p->range_tr = hashtab_create(rangetr_hash, rangetr_cmp, 256);
317 ebitmap_init(&p->filename_trans_ttypes);
318 ebitmap_init(&p->policycaps);
319 ebitmap_init(&p->permissive_map);
323 hashtab_destroy(p->filename_trans);
324 hashtab_destroy(p->range_tr);
325 for (i = 0; i < SYM_NUM; i++)
326 hashtab_destroy(p->symtab[i].table);
331 * The following *_index functions are used to
332 * define the val_to_name and val_to_struct arrays
333 * in a policy database structure. The val_to_name
334 * arrays are used when converting security context
335 * structures into string representations. The
336 * val_to_struct arrays are used when the attributes
337 * of a class, role, or user are needed.
340 static int common_index(void *key, void *datum, void *datap)
343 struct common_datum *comdatum;
344 struct flex_array *fa;
348 if (!comdatum->value || comdatum->value > p->p_commons.nprim)
351 fa = p->sym_val_to_name[SYM_COMMONS];
352 if (flex_array_put_ptr(fa, comdatum->value - 1, key,
353 GFP_KERNEL | __GFP_ZERO))
358 static int class_index(void *key, void *datum, void *datap)
361 struct class_datum *cladatum;
362 struct flex_array *fa;
366 if (!cladatum->value || cladatum->value > p->p_classes.nprim)
368 fa = p->sym_val_to_name[SYM_CLASSES];
369 if (flex_array_put_ptr(fa, cladatum->value - 1, key,
370 GFP_KERNEL | __GFP_ZERO))
372 p->class_val_to_struct[cladatum->value - 1] = cladatum;
376 static int role_index(void *key, void *datum, void *datap)
379 struct role_datum *role;
380 struct flex_array *fa;
385 || role->value > p->p_roles.nprim
386 || role->bounds > p->p_roles.nprim)
389 fa = p->sym_val_to_name[SYM_ROLES];
390 if (flex_array_put_ptr(fa, role->value - 1, key,
391 GFP_KERNEL | __GFP_ZERO))
393 p->role_val_to_struct[role->value - 1] = role;
397 static int type_index(void *key, void *datum, void *datap)
400 struct type_datum *typdatum;
401 struct flex_array *fa;
406 if (typdatum->primary) {
408 || typdatum->value > p->p_types.nprim
409 || typdatum->bounds > p->p_types.nprim)
411 fa = p->sym_val_to_name[SYM_TYPES];
412 if (flex_array_put_ptr(fa, typdatum->value - 1, key,
413 GFP_KERNEL | __GFP_ZERO))
416 fa = p->type_val_to_struct_array;
417 if (flex_array_put_ptr(fa, typdatum->value - 1, typdatum,
418 GFP_KERNEL | __GFP_ZERO))
425 static int user_index(void *key, void *datum, void *datap)
428 struct user_datum *usrdatum;
429 struct flex_array *fa;
434 || usrdatum->value > p->p_users.nprim
435 || usrdatum->bounds > p->p_users.nprim)
438 fa = p->sym_val_to_name[SYM_USERS];
439 if (flex_array_put_ptr(fa, usrdatum->value - 1, key,
440 GFP_KERNEL | __GFP_ZERO))
442 p->user_val_to_struct[usrdatum->value - 1] = usrdatum;
446 static int sens_index(void *key, void *datum, void *datap)
449 struct level_datum *levdatum;
450 struct flex_array *fa;
455 if (!levdatum->isalias) {
456 if (!levdatum->level->sens ||
457 levdatum->level->sens > p->p_levels.nprim)
459 fa = p->sym_val_to_name[SYM_LEVELS];
460 if (flex_array_put_ptr(fa, levdatum->level->sens - 1, key,
461 GFP_KERNEL | __GFP_ZERO))
468 static int cat_index(void *key, void *datum, void *datap)
471 struct cat_datum *catdatum;
472 struct flex_array *fa;
477 if (!catdatum->isalias) {
478 if (!catdatum->value || catdatum->value > p->p_cats.nprim)
480 fa = p->sym_val_to_name[SYM_CATS];
481 if (flex_array_put_ptr(fa, catdatum->value - 1, key,
482 GFP_KERNEL | __GFP_ZERO))
489 static int (*index_f[SYM_NUM]) (void *key, void *datum, void *datap) =
502 static void hash_eval(struct hashtab *h, const char *hash_name)
504 struct hashtab_info info;
506 hashtab_stat(h, &info);
507 printk(KERN_DEBUG "SELinux: %s: %d entries and %d/%d buckets used, "
508 "longest chain length %d\n", hash_name, h->nel,
509 info.slots_used, h->size, info.max_chain_len);
512 static void symtab_hash_eval(struct symtab *s)
516 for (i = 0; i < SYM_NUM; i++)
517 hash_eval(s[i].table, symtab_name[i]);
521 static inline void hash_eval(struct hashtab *h, char *hash_name)
527 * Define the other val_to_name and val_to_struct arrays
528 * in a policy database structure.
530 * Caller must clean up on failure.
532 static int policydb_index(struct policydb *p)
536 printk(KERN_DEBUG "SELinux: %d users, %d roles, %d types, %d bools",
537 p->p_users.nprim, p->p_roles.nprim, p->p_types.nprim, p->p_bools.nprim);
539 printk(KERN_CONT ", %d sens, %d cats", p->p_levels.nprim,
541 printk(KERN_CONT "\n");
543 printk(KERN_DEBUG "SELinux: %d classes, %d rules\n",
544 p->p_classes.nprim, p->te_avtab.nel);
547 avtab_hash_eval(&p->te_avtab, "rules");
548 symtab_hash_eval(p->symtab);
551 p->class_val_to_struct = kcalloc(p->p_classes.nprim,
552 sizeof(*p->class_val_to_struct),
554 if (!p->class_val_to_struct)
557 p->role_val_to_struct = kcalloc(p->p_roles.nprim,
558 sizeof(*p->role_val_to_struct),
560 if (!p->role_val_to_struct)
563 p->user_val_to_struct = kcalloc(p->p_users.nprim,
564 sizeof(*p->user_val_to_struct),
566 if (!p->user_val_to_struct)
569 /* Yes, I want the sizeof the pointer, not the structure */
570 p->type_val_to_struct_array = flex_array_alloc(sizeof(struct type_datum *),
572 GFP_KERNEL | __GFP_ZERO);
573 if (!p->type_val_to_struct_array)
576 rc = flex_array_prealloc(p->type_val_to_struct_array, 0,
577 p->p_types.nprim, GFP_KERNEL | __GFP_ZERO);
581 rc = cond_init_bool_indexes(p);
585 for (i = 0; i < SYM_NUM; i++) {
586 p->sym_val_to_name[i] = flex_array_alloc(sizeof(char *),
588 GFP_KERNEL | __GFP_ZERO);
589 if (!p->sym_val_to_name[i])
592 rc = flex_array_prealloc(p->sym_val_to_name[i],
593 0, p->symtab[i].nprim,
594 GFP_KERNEL | __GFP_ZERO);
598 rc = hashtab_map(p->symtab[i].table, index_f[i], p);
608 * The following *_destroy functions are used to
609 * free any memory allocated for each kind of
610 * symbol data in the policy database.
613 static int perm_destroy(void *key, void *datum, void *p)
620 static int common_destroy(void *key, void *datum, void *p)
622 struct common_datum *comdatum;
627 hashtab_map(comdatum->permissions.table, perm_destroy, NULL);
628 hashtab_destroy(comdatum->permissions.table);
634 static void constraint_expr_destroy(struct constraint_expr *expr)
637 ebitmap_destroy(&expr->names);
638 if (expr->type_names) {
639 ebitmap_destroy(&expr->type_names->types);
640 ebitmap_destroy(&expr->type_names->negset);
641 kfree(expr->type_names);
647 static int cls_destroy(void *key, void *datum, void *p)
649 struct class_datum *cladatum;
650 struct constraint_node *constraint, *ctemp;
651 struct constraint_expr *e, *etmp;
656 hashtab_map(cladatum->permissions.table, perm_destroy, NULL);
657 hashtab_destroy(cladatum->permissions.table);
658 constraint = cladatum->constraints;
660 e = constraint->expr;
664 constraint_expr_destroy(etmp);
667 constraint = constraint->next;
671 constraint = cladatum->validatetrans;
673 e = constraint->expr;
677 constraint_expr_destroy(etmp);
680 constraint = constraint->next;
683 kfree(cladatum->comkey);
689 static int role_destroy(void *key, void *datum, void *p)
691 struct role_datum *role;
696 ebitmap_destroy(&role->dominates);
697 ebitmap_destroy(&role->types);
703 static int type_destroy(void *key, void *datum, void *p)
710 static int user_destroy(void *key, void *datum, void *p)
712 struct user_datum *usrdatum;
717 ebitmap_destroy(&usrdatum->roles);
718 ebitmap_destroy(&usrdatum->range.level[0].cat);
719 ebitmap_destroy(&usrdatum->range.level[1].cat);
720 ebitmap_destroy(&usrdatum->dfltlevel.cat);
726 static int sens_destroy(void *key, void *datum, void *p)
728 struct level_datum *levdatum;
733 ebitmap_destroy(&levdatum->level->cat);
734 kfree(levdatum->level);
740 static int cat_destroy(void *key, void *datum, void *p)
747 static int (*destroy_f[SYM_NUM]) (void *key, void *datum, void *datap) =
759 static int filenametr_destroy(void *key, void *datum, void *p)
761 struct filename_trans *ft = key;
769 static int range_tr_destroy(void *key, void *datum, void *p)
771 struct mls_range *rt = datum;
773 ebitmap_destroy(&rt->level[0].cat);
774 ebitmap_destroy(&rt->level[1].cat);
780 static void ocontext_destroy(struct ocontext *c, int i)
785 context_destroy(&c->context[0]);
786 context_destroy(&c->context[1]);
787 if (i == OCON_ISID || i == OCON_FS ||
788 i == OCON_NETIF || i == OCON_FSUSE)
794 * Free any memory allocated by a policy database structure.
796 void policydb_destroy(struct policydb *p)
798 struct ocontext *c, *ctmp;
799 struct genfs *g, *gtmp;
801 struct role_allow *ra, *lra = NULL;
802 struct role_trans *tr, *ltr = NULL;
804 for (i = 0; i < SYM_NUM; i++) {
806 hashtab_map(p->symtab[i].table, destroy_f[i], NULL);
807 hashtab_destroy(p->symtab[i].table);
810 for (i = 0; i < SYM_NUM; i++) {
811 if (p->sym_val_to_name[i])
812 flex_array_free(p->sym_val_to_name[i]);
815 kfree(p->class_val_to_struct);
816 kfree(p->role_val_to_struct);
817 kfree(p->user_val_to_struct);
818 if (p->type_val_to_struct_array)
819 flex_array_free(p->type_val_to_struct_array);
821 avtab_destroy(&p->te_avtab);
823 for (i = 0; i < OCON_NUM; i++) {
829 ocontext_destroy(ctmp, i);
831 p->ocontexts[i] = NULL;
842 ocontext_destroy(ctmp, OCON_FSUSE);
850 cond_policydb_destroy(p);
852 for (tr = p->role_tr; tr; tr = tr->next) {
859 for (ra = p->role_allow; ra; ra = ra->next) {
866 hashtab_map(p->filename_trans, filenametr_destroy, NULL);
867 hashtab_destroy(p->filename_trans);
869 hashtab_map(p->range_tr, range_tr_destroy, NULL);
870 hashtab_destroy(p->range_tr);
872 if (p->type_attr_map_array) {
873 for (i = 0; i < p->p_types.nprim; i++) {
876 e = flex_array_get(p->type_attr_map_array, i);
881 flex_array_free(p->type_attr_map_array);
884 ebitmap_destroy(&p->filename_trans_ttypes);
885 ebitmap_destroy(&p->policycaps);
886 ebitmap_destroy(&p->permissive_map);
890 * Load the initial SIDs specified in a policy database
891 * structure into a SID table.
893 int policydb_load_isids(struct policydb *p, struct sidtab *s)
895 struct ocontext *head, *c;
900 printk(KERN_ERR "SELinux: out of memory on SID table init\n");
904 head = p->ocontexts[OCON_ISID];
905 for (c = head; c; c = c->next) {
907 if (!c->context[0].user) {
908 printk(KERN_ERR "SELinux: SID %s was never defined.\n",
913 rc = sidtab_insert(s, c->sid[0], &c->context[0]);
915 printk(KERN_ERR "SELinux: unable to load initial SID %s.\n",
925 int policydb_class_isvalid(struct policydb *p, unsigned int class)
927 if (!class || class > p->p_classes.nprim)
932 int policydb_role_isvalid(struct policydb *p, unsigned int role)
934 if (!role || role > p->p_roles.nprim)
939 int policydb_type_isvalid(struct policydb *p, unsigned int type)
941 if (!type || type > p->p_types.nprim)
947 * Return 1 if the fields in the security context
948 * structure `c' are valid. Return 0 otherwise.
950 int policydb_context_isvalid(struct policydb *p, struct context *c)
952 struct role_datum *role;
953 struct user_datum *usrdatum;
955 if (!c->role || c->role > p->p_roles.nprim)
958 if (!c->user || c->user > p->p_users.nprim)
961 if (!c->type || c->type > p->p_types.nprim)
964 if (c->role != OBJECT_R_VAL) {
966 * Role must be authorized for the type.
968 role = p->role_val_to_struct[c->role - 1];
969 if (!role || !ebitmap_get_bit(&role->types, c->type - 1))
970 /* role may not be associated with type */
974 * User must be authorized for the role.
976 usrdatum = p->user_val_to_struct[c->user - 1];
980 if (!ebitmap_get_bit(&usrdatum->roles, c->role - 1))
981 /* user may not be associated with role */
985 if (!mls_context_isvalid(p, c))
992 * Read a MLS range structure from a policydb binary
993 * representation file.
995 static int mls_read_range_helper(struct mls_range *r, void *fp)
1001 rc = next_entry(buf, fp, sizeof(u32));
1006 items = le32_to_cpu(buf[0]);
1007 if (items > ARRAY_SIZE(buf)) {
1008 printk(KERN_ERR "SELinux: mls: range overflow\n");
1012 rc = next_entry(buf, fp, sizeof(u32) * items);
1014 printk(KERN_ERR "SELinux: mls: truncated range\n");
1018 r->level[0].sens = le32_to_cpu(buf[0]);
1020 r->level[1].sens = le32_to_cpu(buf[1]);
1022 r->level[1].sens = r->level[0].sens;
1024 rc = ebitmap_read(&r->level[0].cat, fp);
1026 printk(KERN_ERR "SELinux: mls: error reading low categories\n");
1030 rc = ebitmap_read(&r->level[1].cat, fp);
1032 printk(KERN_ERR "SELinux: mls: error reading high categories\n");
1036 rc = ebitmap_cpy(&r->level[1].cat, &r->level[0].cat);
1038 printk(KERN_ERR "SELinux: mls: out of memory\n");
1045 ebitmap_destroy(&r->level[0].cat);
1051 * Read and validate a security context structure
1052 * from a policydb binary representation file.
1054 static int context_read_and_validate(struct context *c,
1061 rc = next_entry(buf, fp, sizeof buf);
1063 printk(KERN_ERR "SELinux: context truncated\n");
1066 c->user = le32_to_cpu(buf[0]);
1067 c->role = le32_to_cpu(buf[1]);
1068 c->type = le32_to_cpu(buf[2]);
1069 if (p->policyvers >= POLICYDB_VERSION_MLS) {
1070 rc = mls_read_range_helper(&c->range, fp);
1072 printk(KERN_ERR "SELinux: error reading MLS range of context\n");
1078 if (!policydb_context_isvalid(p, c)) {
1079 printk(KERN_ERR "SELinux: invalid security context\n");
1089 * The following *_read functions are used to
1090 * read the symbol data from a policy database
1091 * binary representation file.
1094 static int str_read(char **strp, gfp_t flags, void *fp, u32 len)
1099 if ((len == 0) || (len == (u32)-1))
1102 str = kmalloc(len + 1, flags);
1106 /* it's expected the caller should free the str */
1109 rc = next_entry(str, fp, len);
1117 static int perm_read(struct policydb *p, struct hashtab *h, void *fp)
1120 struct perm_datum *perdatum;
1125 perdatum = kzalloc(sizeof(*perdatum), GFP_KERNEL);
1129 rc = next_entry(buf, fp, sizeof buf);
1133 len = le32_to_cpu(buf[0]);
1134 perdatum->value = le32_to_cpu(buf[1]);
1136 rc = str_read(&key, GFP_KERNEL, fp, len);
1140 rc = hashtab_insert(h, key, perdatum);
1146 perm_destroy(key, perdatum, NULL);
1150 static int common_read(struct policydb *p, struct hashtab *h, void *fp)
1153 struct common_datum *comdatum;
1158 comdatum = kzalloc(sizeof(*comdatum), GFP_KERNEL);
1162 rc = next_entry(buf, fp, sizeof buf);
1166 len = le32_to_cpu(buf[0]);
1167 comdatum->value = le32_to_cpu(buf[1]);
1169 rc = symtab_init(&comdatum->permissions, PERM_SYMTAB_SIZE);
1172 comdatum->permissions.nprim = le32_to_cpu(buf[2]);
1173 nel = le32_to_cpu(buf[3]);
1175 rc = str_read(&key, GFP_KERNEL, fp, len);
1179 for (i = 0; i < nel; i++) {
1180 rc = perm_read(p, comdatum->permissions.table, fp);
1185 rc = hashtab_insert(h, key, comdatum);
1190 common_destroy(key, comdatum, NULL);
1194 static void type_set_init(struct type_set *t)
1196 ebitmap_init(&t->types);
1197 ebitmap_init(&t->negset);
1200 static int type_set_read(struct type_set *t, void *fp)
1205 if (ebitmap_read(&t->types, fp))
1207 if (ebitmap_read(&t->negset, fp))
1210 rc = next_entry(buf, fp, sizeof(u32));
1213 t->flags = le32_to_cpu(buf[0]);
1219 static int read_cons_helper(struct policydb *p,
1220 struct constraint_node **nodep,
1221 int ncons, int allowxtarget, void *fp)
1223 struct constraint_node *c, *lc;
1224 struct constraint_expr *e, *le;
1227 int rc, i, j, depth;
1230 for (i = 0; i < ncons; i++) {
1231 c = kzalloc(sizeof(*c), GFP_KERNEL);
1240 rc = next_entry(buf, fp, (sizeof(u32) * 2));
1243 c->permissions = le32_to_cpu(buf[0]);
1244 nexpr = le32_to_cpu(buf[1]);
1247 for (j = 0; j < nexpr; j++) {
1248 e = kzalloc(sizeof(*e), GFP_KERNEL);
1257 rc = next_entry(buf, fp, (sizeof(u32) * 3));
1260 e->expr_type = le32_to_cpu(buf[0]);
1261 e->attr = le32_to_cpu(buf[1]);
1262 e->op = le32_to_cpu(buf[2]);
1264 switch (e->expr_type) {
1276 if (depth == (CEXPR_MAXDEPTH - 1))
1281 if (!allowxtarget && (e->attr & CEXPR_XTARGET))
1283 if (depth == (CEXPR_MAXDEPTH - 1))
1286 rc = ebitmap_read(&e->names, fp);
1289 if (p->policyvers >=
1290 POLICYDB_VERSION_CONSTRAINT_NAMES) {
1291 e->type_names = kzalloc(sizeof
1296 type_set_init(e->type_names);
1297 rc = type_set_read(e->type_names, fp);
1315 static int class_read(struct policydb *p, struct hashtab *h, void *fp)
1318 struct class_datum *cladatum;
1320 u32 len, len2, ncons, nel;
1323 cladatum = kzalloc(sizeof(*cladatum), GFP_KERNEL);
1327 rc = next_entry(buf, fp, sizeof(u32)*6);
1331 len = le32_to_cpu(buf[0]);
1332 len2 = le32_to_cpu(buf[1]);
1333 cladatum->value = le32_to_cpu(buf[2]);
1335 rc = symtab_init(&cladatum->permissions, PERM_SYMTAB_SIZE);
1338 cladatum->permissions.nprim = le32_to_cpu(buf[3]);
1339 nel = le32_to_cpu(buf[4]);
1341 ncons = le32_to_cpu(buf[5]);
1343 rc = str_read(&key, GFP_KERNEL, fp, len);
1348 rc = str_read(&cladatum->comkey, GFP_KERNEL, fp, len2);
1353 cladatum->comdatum = hashtab_search(p->p_commons.table, cladatum->comkey);
1354 if (!cladatum->comdatum) {
1355 printk(KERN_ERR "SELinux: unknown common %s\n", cladatum->comkey);
1359 for (i = 0; i < nel; i++) {
1360 rc = perm_read(p, cladatum->permissions.table, fp);
1365 rc = read_cons_helper(p, &cladatum->constraints, ncons, 0, fp);
1369 if (p->policyvers >= POLICYDB_VERSION_VALIDATETRANS) {
1370 /* grab the validatetrans rules */
1371 rc = next_entry(buf, fp, sizeof(u32));
1374 ncons = le32_to_cpu(buf[0]);
1375 rc = read_cons_helper(p, &cladatum->validatetrans,
1381 if (p->policyvers >= POLICYDB_VERSION_NEW_OBJECT_DEFAULTS) {
1382 rc = next_entry(buf, fp, sizeof(u32) * 3);
1386 cladatum->default_user = le32_to_cpu(buf[0]);
1387 cladatum->default_role = le32_to_cpu(buf[1]);
1388 cladatum->default_range = le32_to_cpu(buf[2]);
1391 if (p->policyvers >= POLICYDB_VERSION_DEFAULT_TYPE) {
1392 rc = next_entry(buf, fp, sizeof(u32) * 1);
1395 cladatum->default_type = le32_to_cpu(buf[0]);
1398 rc = hashtab_insert(h, key, cladatum);
1404 cls_destroy(key, cladatum, NULL);
1408 static int role_read(struct policydb *p, struct hashtab *h, void *fp)
1411 struct role_datum *role;
1412 int rc, to_read = 2;
1416 role = kzalloc(sizeof(*role), GFP_KERNEL);
1420 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
1423 rc = next_entry(buf, fp, sizeof(buf[0]) * to_read);
1427 len = le32_to_cpu(buf[0]);
1428 role->value = le32_to_cpu(buf[1]);
1429 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
1430 role->bounds = le32_to_cpu(buf[2]);
1432 rc = str_read(&key, GFP_KERNEL, fp, len);
1436 rc = ebitmap_read(&role->dominates, fp);
1440 rc = ebitmap_read(&role->types, fp);
1444 if (strcmp(key, OBJECT_R) == 0) {
1446 if (role->value != OBJECT_R_VAL) {
1447 printk(KERN_ERR "SELinux: Role %s has wrong value %d\n",
1448 OBJECT_R, role->value);
1455 rc = hashtab_insert(h, key, role);
1460 role_destroy(key, role, NULL);
1464 static int type_read(struct policydb *p, struct hashtab *h, void *fp)
1467 struct type_datum *typdatum;
1468 int rc, to_read = 3;
1472 typdatum = kzalloc(sizeof(*typdatum), GFP_KERNEL);
1476 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
1479 rc = next_entry(buf, fp, sizeof(buf[0]) * to_read);
1483 len = le32_to_cpu(buf[0]);
1484 typdatum->value = le32_to_cpu(buf[1]);
1485 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) {
1486 u32 prop = le32_to_cpu(buf[2]);
1488 if (prop & TYPEDATUM_PROPERTY_PRIMARY)
1489 typdatum->primary = 1;
1490 if (prop & TYPEDATUM_PROPERTY_ATTRIBUTE)
1491 typdatum->attribute = 1;
1493 typdatum->bounds = le32_to_cpu(buf[3]);
1495 typdatum->primary = le32_to_cpu(buf[2]);
1498 rc = str_read(&key, GFP_KERNEL, fp, len);
1502 rc = hashtab_insert(h, key, typdatum);
1507 type_destroy(key, typdatum, NULL);
1513 * Read a MLS level structure from a policydb binary
1514 * representation file.
1516 static int mls_read_level(struct mls_level *lp, void *fp)
1521 memset(lp, 0, sizeof(*lp));
1523 rc = next_entry(buf, fp, sizeof buf);
1525 printk(KERN_ERR "SELinux: mls: truncated level\n");
1528 lp->sens = le32_to_cpu(buf[0]);
1530 rc = ebitmap_read(&lp->cat, fp);
1532 printk(KERN_ERR "SELinux: mls: error reading level categories\n");
1538 static int user_read(struct policydb *p, struct hashtab *h, void *fp)
1541 struct user_datum *usrdatum;
1542 int rc, to_read = 2;
1546 usrdatum = kzalloc(sizeof(*usrdatum), GFP_KERNEL);
1550 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
1553 rc = next_entry(buf, fp, sizeof(buf[0]) * to_read);
1557 len = le32_to_cpu(buf[0]);
1558 usrdatum->value = le32_to_cpu(buf[1]);
1559 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
1560 usrdatum->bounds = le32_to_cpu(buf[2]);
1562 rc = str_read(&key, GFP_KERNEL, fp, len);
1566 rc = ebitmap_read(&usrdatum->roles, fp);
1570 if (p->policyvers >= POLICYDB_VERSION_MLS) {
1571 rc = mls_read_range_helper(&usrdatum->range, fp);
1574 rc = mls_read_level(&usrdatum->dfltlevel, fp);
1579 rc = hashtab_insert(h, key, usrdatum);
1584 user_destroy(key, usrdatum, NULL);
1588 static int sens_read(struct policydb *p, struct hashtab *h, void *fp)
1591 struct level_datum *levdatum;
1596 levdatum = kzalloc(sizeof(*levdatum), GFP_ATOMIC);
1600 rc = next_entry(buf, fp, sizeof buf);
1604 len = le32_to_cpu(buf[0]);
1605 levdatum->isalias = le32_to_cpu(buf[1]);
1607 rc = str_read(&key, GFP_ATOMIC, fp, len);
1612 levdatum->level = kmalloc(sizeof(*levdatum->level), GFP_ATOMIC);
1613 if (!levdatum->level)
1616 rc = mls_read_level(levdatum->level, fp);
1620 rc = hashtab_insert(h, key, levdatum);
1625 sens_destroy(key, levdatum, NULL);
1629 static int cat_read(struct policydb *p, struct hashtab *h, void *fp)
1632 struct cat_datum *catdatum;
1637 catdatum = kzalloc(sizeof(*catdatum), GFP_ATOMIC);
1641 rc = next_entry(buf, fp, sizeof buf);
1645 len = le32_to_cpu(buf[0]);
1646 catdatum->value = le32_to_cpu(buf[1]);
1647 catdatum->isalias = le32_to_cpu(buf[2]);
1649 rc = str_read(&key, GFP_ATOMIC, fp, len);
1653 rc = hashtab_insert(h, key, catdatum);
1658 cat_destroy(key, catdatum, NULL);
1662 static int (*read_f[SYM_NUM]) (struct policydb *p, struct hashtab *h, void *fp) =
1674 static int user_bounds_sanity_check(void *key, void *datum, void *datap)
1676 struct user_datum *upper, *user;
1677 struct policydb *p = datap;
1680 upper = user = datum;
1681 while (upper->bounds) {
1682 struct ebitmap_node *node;
1685 if (++depth == POLICYDB_BOUNDS_MAXDEPTH) {
1686 printk(KERN_ERR "SELinux: user %s: "
1687 "too deep or looped boundary",
1692 upper = p->user_val_to_struct[upper->bounds - 1];
1693 ebitmap_for_each_positive_bit(&user->roles, node, bit) {
1694 if (ebitmap_get_bit(&upper->roles, bit))
1698 "SELinux: boundary violated policy: "
1699 "user=%s role=%s bounds=%s\n",
1700 sym_name(p, SYM_USERS, user->value - 1),
1701 sym_name(p, SYM_ROLES, bit),
1702 sym_name(p, SYM_USERS, upper->value - 1));
1711 static int role_bounds_sanity_check(void *key, void *datum, void *datap)
1713 struct role_datum *upper, *role;
1714 struct policydb *p = datap;
1717 upper = role = datum;
1718 while (upper->bounds) {
1719 struct ebitmap_node *node;
1722 if (++depth == POLICYDB_BOUNDS_MAXDEPTH) {
1723 printk(KERN_ERR "SELinux: role %s: "
1724 "too deep or looped bounds\n",
1729 upper = p->role_val_to_struct[upper->bounds - 1];
1730 ebitmap_for_each_positive_bit(&role->types, node, bit) {
1731 if (ebitmap_get_bit(&upper->types, bit))
1735 "SELinux: boundary violated policy: "
1736 "role=%s type=%s bounds=%s\n",
1737 sym_name(p, SYM_ROLES, role->value - 1),
1738 sym_name(p, SYM_TYPES, bit),
1739 sym_name(p, SYM_ROLES, upper->value - 1));
1748 static int type_bounds_sanity_check(void *key, void *datum, void *datap)
1750 struct type_datum *upper;
1751 struct policydb *p = datap;
1755 while (upper->bounds) {
1756 if (++depth == POLICYDB_BOUNDS_MAXDEPTH) {
1757 printk(KERN_ERR "SELinux: type %s: "
1758 "too deep or looped boundary\n",
1763 upper = flex_array_get_ptr(p->type_val_to_struct_array,
1767 if (upper->attribute) {
1768 printk(KERN_ERR "SELinux: type %s: "
1769 "bounded by attribute %s",
1771 sym_name(p, SYM_TYPES, upper->value - 1));
1779 static int policydb_bounds_sanity_check(struct policydb *p)
1783 if (p->policyvers < POLICYDB_VERSION_BOUNDARY)
1786 rc = hashtab_map(p->p_users.table,
1787 user_bounds_sanity_check, p);
1791 rc = hashtab_map(p->p_roles.table,
1792 role_bounds_sanity_check, p);
1796 rc = hashtab_map(p->p_types.table,
1797 type_bounds_sanity_check, p);
1804 u16 string_to_security_class(struct policydb *p, const char *name)
1806 struct class_datum *cladatum;
1808 cladatum = hashtab_search(p->p_classes.table, name);
1812 return cladatum->value;
1815 u32 string_to_av_perm(struct policydb *p, u16 tclass, const char *name)
1817 struct class_datum *cladatum;
1818 struct perm_datum *perdatum = NULL;
1819 struct common_datum *comdatum;
1821 if (!tclass || tclass > p->p_classes.nprim)
1824 cladatum = p->class_val_to_struct[tclass-1];
1825 comdatum = cladatum->comdatum;
1827 perdatum = hashtab_search(comdatum->permissions.table,
1830 perdatum = hashtab_search(cladatum->permissions.table,
1835 return 1U << (perdatum->value-1);
1838 static int range_read(struct policydb *p, void *fp)
1840 struct range_trans *rt = NULL;
1841 struct mls_range *r = NULL;
1846 if (p->policyvers < POLICYDB_VERSION_MLS)
1849 rc = next_entry(buf, fp, sizeof(u32));
1853 nel = le32_to_cpu(buf[0]);
1854 for (i = 0; i < nel; i++) {
1856 rt = kzalloc(sizeof(*rt), GFP_KERNEL);
1860 rc = next_entry(buf, fp, (sizeof(u32) * 2));
1864 rt->source_type = le32_to_cpu(buf[0]);
1865 rt->target_type = le32_to_cpu(buf[1]);
1866 if (p->policyvers >= POLICYDB_VERSION_RANGETRANS) {
1867 rc = next_entry(buf, fp, sizeof(u32));
1870 rt->target_class = le32_to_cpu(buf[0]);
1872 rt->target_class = p->process_class;
1875 if (!policydb_type_isvalid(p, rt->source_type) ||
1876 !policydb_type_isvalid(p, rt->target_type) ||
1877 !policydb_class_isvalid(p, rt->target_class))
1881 r = kzalloc(sizeof(*r), GFP_KERNEL);
1885 rc = mls_read_range_helper(r, fp);
1890 if (!mls_range_isvalid(p, r)) {
1891 printk(KERN_WARNING "SELinux: rangetrans: invalid range\n");
1895 rc = hashtab_insert(p->range_tr, rt, r);
1902 hash_eval(p->range_tr, "rangetr");
1910 static int filename_trans_read(struct policydb *p, void *fp)
1912 struct filename_trans *ft;
1913 struct filename_trans_datum *otype;
1919 if (p->policyvers < POLICYDB_VERSION_FILENAME_TRANS)
1922 rc = next_entry(buf, fp, sizeof(u32));
1925 nel = le32_to_cpu(buf[0]);
1927 for (i = 0; i < nel; i++) {
1932 ft = kzalloc(sizeof(*ft), GFP_KERNEL);
1937 otype = kmalloc(sizeof(*otype), GFP_KERNEL);
1941 /* length of the path component string */
1942 rc = next_entry(buf, fp, sizeof(u32));
1945 len = le32_to_cpu(buf[0]);
1947 /* path component string */
1948 rc = str_read(&name, GFP_KERNEL, fp, len);
1954 rc = next_entry(buf, fp, sizeof(u32) * 4);
1958 ft->stype = le32_to_cpu(buf[0]);
1959 ft->ttype = le32_to_cpu(buf[1]);
1960 ft->tclass = le32_to_cpu(buf[2]);
1962 otype->otype = le32_to_cpu(buf[3]);
1964 rc = ebitmap_set_bit(&p->filename_trans_ttypes, ft->ttype, 1);
1968 rc = hashtab_insert(p->filename_trans, ft, otype);
1971 * Do not return -EEXIST to the caller, or the system
1976 /* But free memory to avoid memory leak. */
1982 hash_eval(p->filename_trans, "filenametr");
1992 static int genfs_read(struct policydb *p, void *fp)
1995 u32 nel, nel2, len, len2;
1997 struct ocontext *l, *c;
1998 struct ocontext *newc = NULL;
1999 struct genfs *genfs_p, *genfs;
2000 struct genfs *newgenfs = NULL;
2002 rc = next_entry(buf, fp, sizeof(u32));
2005 nel = le32_to_cpu(buf[0]);
2007 for (i = 0; i < nel; i++) {
2008 rc = next_entry(buf, fp, sizeof(u32));
2011 len = le32_to_cpu(buf[0]);
2014 newgenfs = kzalloc(sizeof(*newgenfs), GFP_KERNEL);
2018 rc = str_read(&newgenfs->fstype, GFP_KERNEL, fp, len);
2022 for (genfs_p = NULL, genfs = p->genfs; genfs;
2023 genfs_p = genfs, genfs = genfs->next) {
2025 if (strcmp(newgenfs->fstype, genfs->fstype) == 0) {
2026 printk(KERN_ERR "SELinux: dup genfs fstype %s\n",
2030 if (strcmp(newgenfs->fstype, genfs->fstype) < 0)
2033 newgenfs->next = genfs;
2035 genfs_p->next = newgenfs;
2037 p->genfs = newgenfs;
2041 rc = next_entry(buf, fp, sizeof(u32));
2045 nel2 = le32_to_cpu(buf[0]);
2046 for (j = 0; j < nel2; j++) {
2047 rc = next_entry(buf, fp, sizeof(u32));
2050 len = le32_to_cpu(buf[0]);
2053 newc = kzalloc(sizeof(*newc), GFP_KERNEL);
2057 rc = str_read(&newc->u.name, GFP_KERNEL, fp, len);
2061 rc = next_entry(buf, fp, sizeof(u32));
2065 newc->v.sclass = le32_to_cpu(buf[0]);
2066 rc = context_read_and_validate(&newc->context[0], p, fp);
2070 for (l = NULL, c = genfs->head; c;
2071 l = c, c = c->next) {
2073 if (!strcmp(newc->u.name, c->u.name) &&
2074 (!c->v.sclass || !newc->v.sclass ||
2075 newc->v.sclass == c->v.sclass)) {
2076 printk(KERN_ERR "SELinux: dup genfs entry (%s,%s)\n",
2077 genfs->fstype, c->u.name);
2080 len = strlen(newc->u.name);
2081 len2 = strlen(c->u.name);
2097 kfree(newgenfs->fstype);
2100 ocontext_destroy(newc, OCON_FSUSE);
2105 static int ocontext_read(struct policydb *p, struct policydb_compat_info *info,
2111 struct ocontext *l, *c;
2114 for (i = 0; i < info->ocon_num; i++) {
2115 rc = next_entry(buf, fp, sizeof(u32));
2118 nel = le32_to_cpu(buf[0]);
2121 for (j = 0; j < nel; j++) {
2123 c = kzalloc(sizeof(*c), GFP_KERNEL);
2129 p->ocontexts[i] = c;
2134 rc = next_entry(buf, fp, sizeof(u32));
2138 c->sid[0] = le32_to_cpu(buf[0]);
2139 rc = context_read_and_validate(&c->context[0], p, fp);
2145 rc = next_entry(buf, fp, sizeof(u32));
2148 len = le32_to_cpu(buf[0]);
2150 rc = str_read(&c->u.name, GFP_KERNEL, fp, len);
2154 rc = context_read_and_validate(&c->context[0], p, fp);
2157 rc = context_read_and_validate(&c->context[1], p, fp);
2162 rc = next_entry(buf, fp, sizeof(u32)*3);
2165 c->u.port.protocol = le32_to_cpu(buf[0]);
2166 c->u.port.low_port = le32_to_cpu(buf[1]);
2167 c->u.port.high_port = le32_to_cpu(buf[2]);
2168 rc = context_read_and_validate(&c->context[0], p, fp);
2173 rc = next_entry(nodebuf, fp, sizeof(u32) * 2);
2176 c->u.node.addr = nodebuf[0]; /* network order */
2177 c->u.node.mask = nodebuf[1]; /* network order */
2178 rc = context_read_and_validate(&c->context[0], p, fp);
2183 rc = next_entry(buf, fp, sizeof(u32)*2);
2188 c->v.behavior = le32_to_cpu(buf[0]);
2189 /* Determined at runtime, not in policy DB. */
2190 if (c->v.behavior == SECURITY_FS_USE_MNTPOINT)
2192 if (c->v.behavior > SECURITY_FS_USE_MAX)
2195 len = le32_to_cpu(buf[1]);
2196 rc = str_read(&c->u.name, GFP_KERNEL, fp, len);
2200 rc = context_read_and_validate(&c->context[0], p, fp);
2207 rc = next_entry(nodebuf, fp, sizeof(u32) * 8);
2210 for (k = 0; k < 4; k++)
2211 c->u.node6.addr[k] = nodebuf[k];
2212 for (k = 0; k < 4; k++)
2213 c->u.node6.mask[k] = nodebuf[k+4];
2214 rc = context_read_and_validate(&c->context[0], p, fp);
2220 rc = next_entry(nodebuf, fp, sizeof(u32) * 4);
2224 c->u.ibpkey.subnet_prefix = be64_to_cpu(*((__be64 *)nodebuf));
2226 if (nodebuf[2] > 0xffff ||
2227 nodebuf[3] > 0xffff) {
2232 c->u.ibpkey.low_pkey = le32_to_cpu(nodebuf[2]);
2233 c->u.ibpkey.high_pkey = le32_to_cpu(nodebuf[3]);
2235 rc = context_read_and_validate(&c->context[0],
2241 case OCON_IBENDPORT:
2242 rc = next_entry(buf, fp, sizeof(u32) * 2);
2245 len = le32_to_cpu(buf[0]);
2247 rc = str_read(&c->u.ibendport.dev_name, GFP_KERNEL, fp, len);
2251 if (buf[1] > 0xff || buf[1] == 0) {
2256 c->u.ibendport.port = le32_to_cpu(buf[1]);
2258 rc = context_read_and_validate(&c->context[0],
2273 * Read the configuration data from a policy database binary
2274 * representation file into a policy database structure.
2276 int policydb_read(struct policydb *p, void *fp)
2278 struct role_allow *ra, *lra;
2279 struct role_trans *tr, *ltr;
2282 u32 len, nprim, nel;
2285 struct policydb_compat_info *info;
2287 rc = policydb_init(p);
2291 /* Read the magic number and string length. */
2292 rc = next_entry(buf, fp, sizeof(u32) * 2);
2297 if (le32_to_cpu(buf[0]) != POLICYDB_MAGIC) {
2298 printk(KERN_ERR "SELinux: policydb magic number 0x%x does "
2299 "not match expected magic number 0x%x\n",
2300 le32_to_cpu(buf[0]), POLICYDB_MAGIC);
2305 len = le32_to_cpu(buf[1]);
2306 if (len != strlen(POLICYDB_STRING)) {
2307 printk(KERN_ERR "SELinux: policydb string length %d does not "
2308 "match expected length %zu\n",
2309 len, strlen(POLICYDB_STRING));
2314 policydb_str = kmalloc(len + 1, GFP_KERNEL);
2315 if (!policydb_str) {
2316 printk(KERN_ERR "SELinux: unable to allocate memory for policydb "
2317 "string of length %d\n", len);
2321 rc = next_entry(policydb_str, fp, len);
2323 printk(KERN_ERR "SELinux: truncated policydb string identifier\n");
2324 kfree(policydb_str);
2329 policydb_str[len] = '\0';
2330 if (strcmp(policydb_str, POLICYDB_STRING)) {
2331 printk(KERN_ERR "SELinux: policydb string %s does not match "
2332 "my string %s\n", policydb_str, POLICYDB_STRING);
2333 kfree(policydb_str);
2336 /* Done with policydb_str. */
2337 kfree(policydb_str);
2338 policydb_str = NULL;
2340 /* Read the version and table sizes. */
2341 rc = next_entry(buf, fp, sizeof(u32)*4);
2346 p->policyvers = le32_to_cpu(buf[0]);
2347 if (p->policyvers < POLICYDB_VERSION_MIN ||
2348 p->policyvers > POLICYDB_VERSION_MAX) {
2349 printk(KERN_ERR "SELinux: policydb version %d does not match "
2350 "my version range %d-%d\n",
2351 le32_to_cpu(buf[0]), POLICYDB_VERSION_MIN, POLICYDB_VERSION_MAX);
2355 if ((le32_to_cpu(buf[1]) & POLICYDB_CONFIG_MLS)) {
2359 if (p->policyvers < POLICYDB_VERSION_MLS) {
2360 printk(KERN_ERR "SELinux: security policydb version %d "
2361 "(MLS) not backwards compatible\n",
2366 p->reject_unknown = !!(le32_to_cpu(buf[1]) & REJECT_UNKNOWN);
2367 p->allow_unknown = !!(le32_to_cpu(buf[1]) & ALLOW_UNKNOWN);
2369 if (p->policyvers >= POLICYDB_VERSION_POLCAP) {
2370 rc = ebitmap_read(&p->policycaps, fp);
2375 if (p->policyvers >= POLICYDB_VERSION_PERMISSIVE) {
2376 rc = ebitmap_read(&p->permissive_map, fp);
2382 info = policydb_lookup_compat(p->policyvers);
2384 printk(KERN_ERR "SELinux: unable to find policy compat info "
2385 "for version %d\n", p->policyvers);
2390 if (le32_to_cpu(buf[2]) != info->sym_num ||
2391 le32_to_cpu(buf[3]) != info->ocon_num) {
2392 printk(KERN_ERR "SELinux: policydb table sizes (%d,%d) do "
2393 "not match mine (%d,%d)\n", le32_to_cpu(buf[2]),
2394 le32_to_cpu(buf[3]),
2395 info->sym_num, info->ocon_num);
2399 for (i = 0; i < info->sym_num; i++) {
2400 rc = next_entry(buf, fp, sizeof(u32)*2);
2403 nprim = le32_to_cpu(buf[0]);
2404 nel = le32_to_cpu(buf[1]);
2405 for (j = 0; j < nel; j++) {
2406 rc = read_f[i](p, p->symtab[i].table, fp);
2411 p->symtab[i].nprim = nprim;
2415 p->process_class = string_to_security_class(p, "process");
2416 if (!p->process_class)
2419 rc = avtab_read(&p->te_avtab, fp, p);
2423 if (p->policyvers >= POLICYDB_VERSION_BOOL) {
2424 rc = cond_read_list(p, fp);
2429 rc = next_entry(buf, fp, sizeof(u32));
2432 nel = le32_to_cpu(buf[0]);
2434 for (i = 0; i < nel; i++) {
2436 tr = kzalloc(sizeof(*tr), GFP_KERNEL);
2443 rc = next_entry(buf, fp, sizeof(u32)*3);
2448 tr->role = le32_to_cpu(buf[0]);
2449 tr->type = le32_to_cpu(buf[1]);
2450 tr->new_role = le32_to_cpu(buf[2]);
2451 if (p->policyvers >= POLICYDB_VERSION_ROLETRANS) {
2452 rc = next_entry(buf, fp, sizeof(u32));
2455 tr->tclass = le32_to_cpu(buf[0]);
2457 tr->tclass = p->process_class;
2460 if (!policydb_role_isvalid(p, tr->role) ||
2461 !policydb_type_isvalid(p, tr->type) ||
2462 !policydb_class_isvalid(p, tr->tclass) ||
2463 !policydb_role_isvalid(p, tr->new_role))
2468 rc = next_entry(buf, fp, sizeof(u32));
2471 nel = le32_to_cpu(buf[0]);
2473 for (i = 0; i < nel; i++) {
2475 ra = kzalloc(sizeof(*ra), GFP_KERNEL);
2482 rc = next_entry(buf, fp, sizeof(u32)*2);
2487 ra->role = le32_to_cpu(buf[0]);
2488 ra->new_role = le32_to_cpu(buf[1]);
2489 if (!policydb_role_isvalid(p, ra->role) ||
2490 !policydb_role_isvalid(p, ra->new_role))
2495 rc = filename_trans_read(p, fp);
2499 rc = policydb_index(p);
2504 p->process_trans_perms = string_to_av_perm(p, p->process_class, "transition");
2505 p->process_trans_perms |= string_to_av_perm(p, p->process_class, "dyntransition");
2506 if (!p->process_trans_perms)
2509 rc = ocontext_read(p, info, fp);
2513 rc = genfs_read(p, fp);
2517 rc = range_read(p, fp);
2522 p->type_attr_map_array = flex_array_alloc(sizeof(struct ebitmap),
2524 GFP_KERNEL | __GFP_ZERO);
2525 if (!p->type_attr_map_array)
2528 /* preallocate so we don't have to worry about the put ever failing */
2529 rc = flex_array_prealloc(p->type_attr_map_array, 0, p->p_types.nprim,
2530 GFP_KERNEL | __GFP_ZERO);
2534 for (i = 0; i < p->p_types.nprim; i++) {
2535 struct ebitmap *e = flex_array_get(p->type_attr_map_array, i);
2539 if (p->policyvers >= POLICYDB_VERSION_AVTAB) {
2540 rc = ebitmap_read(e, fp);
2544 /* add the type itself as the degenerate case */
2545 rc = ebitmap_set_bit(e, i, 1);
2550 rc = policydb_bounds_sanity_check(p);
2558 policydb_destroy(p);
2563 * Write a MLS level structure to a policydb binary
2564 * representation file.
2566 static int mls_write_level(struct mls_level *l, void *fp)
2571 buf[0] = cpu_to_le32(l->sens);
2572 rc = put_entry(buf, sizeof(u32), 1, fp);
2576 rc = ebitmap_write(&l->cat, fp);
2584 * Write a MLS range structure to a policydb binary
2585 * representation file.
2587 static int mls_write_range_helper(struct mls_range *r, void *fp)
2593 eq = mls_level_eq(&r->level[1], &r->level[0]);
2599 buf[0] = cpu_to_le32(items-1);
2600 buf[1] = cpu_to_le32(r->level[0].sens);
2602 buf[2] = cpu_to_le32(r->level[1].sens);
2604 BUG_ON(items > ARRAY_SIZE(buf));
2606 rc = put_entry(buf, sizeof(u32), items, fp);
2610 rc = ebitmap_write(&r->level[0].cat, fp);
2614 rc = ebitmap_write(&r->level[1].cat, fp);
2622 static int sens_write(void *vkey, void *datum, void *ptr)
2625 struct level_datum *levdatum = datum;
2626 struct policy_data *pd = ptr;
2633 buf[0] = cpu_to_le32(len);
2634 buf[1] = cpu_to_le32(levdatum->isalias);
2635 rc = put_entry(buf, sizeof(u32), 2, fp);
2639 rc = put_entry(key, 1, len, fp);
2643 rc = mls_write_level(levdatum->level, fp);
2650 static int cat_write(void *vkey, void *datum, void *ptr)
2653 struct cat_datum *catdatum = datum;
2654 struct policy_data *pd = ptr;
2661 buf[0] = cpu_to_le32(len);
2662 buf[1] = cpu_to_le32(catdatum->value);
2663 buf[2] = cpu_to_le32(catdatum->isalias);
2664 rc = put_entry(buf, sizeof(u32), 3, fp);
2668 rc = put_entry(key, 1, len, fp);
2675 static int role_trans_write(struct policydb *p, void *fp)
2677 struct role_trans *r = p->role_tr;
2678 struct role_trans *tr;
2684 for (tr = r; tr; tr = tr->next)
2686 buf[0] = cpu_to_le32(nel);
2687 rc = put_entry(buf, sizeof(u32), 1, fp);
2690 for (tr = r; tr; tr = tr->next) {
2691 buf[0] = cpu_to_le32(tr->role);
2692 buf[1] = cpu_to_le32(tr->type);
2693 buf[2] = cpu_to_le32(tr->new_role);
2694 rc = put_entry(buf, sizeof(u32), 3, fp);
2697 if (p->policyvers >= POLICYDB_VERSION_ROLETRANS) {
2698 buf[0] = cpu_to_le32(tr->tclass);
2699 rc = put_entry(buf, sizeof(u32), 1, fp);
2708 static int role_allow_write(struct role_allow *r, void *fp)
2710 struct role_allow *ra;
2716 for (ra = r; ra; ra = ra->next)
2718 buf[0] = cpu_to_le32(nel);
2719 rc = put_entry(buf, sizeof(u32), 1, fp);
2722 for (ra = r; ra; ra = ra->next) {
2723 buf[0] = cpu_to_le32(ra->role);
2724 buf[1] = cpu_to_le32(ra->new_role);
2725 rc = put_entry(buf, sizeof(u32), 2, fp);
2733 * Write a security context structure
2734 * to a policydb binary representation file.
2736 static int context_write(struct policydb *p, struct context *c,
2742 buf[0] = cpu_to_le32(c->user);
2743 buf[1] = cpu_to_le32(c->role);
2744 buf[2] = cpu_to_le32(c->type);
2746 rc = put_entry(buf, sizeof(u32), 3, fp);
2750 rc = mls_write_range_helper(&c->range, fp);
2758 * The following *_write functions are used to
2759 * write the symbol data to a policy database
2760 * binary representation file.
2763 static int perm_write(void *vkey, void *datum, void *fp)
2766 struct perm_datum *perdatum = datum;
2772 buf[0] = cpu_to_le32(len);
2773 buf[1] = cpu_to_le32(perdatum->value);
2774 rc = put_entry(buf, sizeof(u32), 2, fp);
2778 rc = put_entry(key, 1, len, fp);
2785 static int common_write(void *vkey, void *datum, void *ptr)
2788 struct common_datum *comdatum = datum;
2789 struct policy_data *pd = ptr;
2796 buf[0] = cpu_to_le32(len);
2797 buf[1] = cpu_to_le32(comdatum->value);
2798 buf[2] = cpu_to_le32(comdatum->permissions.nprim);
2799 buf[3] = cpu_to_le32(comdatum->permissions.table->nel);
2800 rc = put_entry(buf, sizeof(u32), 4, fp);
2804 rc = put_entry(key, 1, len, fp);
2808 rc = hashtab_map(comdatum->permissions.table, perm_write, fp);
2815 static int type_set_write(struct type_set *t, void *fp)
2820 if (ebitmap_write(&t->types, fp))
2822 if (ebitmap_write(&t->negset, fp))
2825 buf[0] = cpu_to_le32(t->flags);
2826 rc = put_entry(buf, sizeof(u32), 1, fp);
2833 static int write_cons_helper(struct policydb *p, struct constraint_node *node,
2836 struct constraint_node *c;
2837 struct constraint_expr *e;
2842 for (c = node; c; c = c->next) {
2844 for (e = c->expr; e; e = e->next)
2846 buf[0] = cpu_to_le32(c->permissions);
2847 buf[1] = cpu_to_le32(nel);
2848 rc = put_entry(buf, sizeof(u32), 2, fp);
2851 for (e = c->expr; e; e = e->next) {
2852 buf[0] = cpu_to_le32(e->expr_type);
2853 buf[1] = cpu_to_le32(e->attr);
2854 buf[2] = cpu_to_le32(e->op);
2855 rc = put_entry(buf, sizeof(u32), 3, fp);
2859 switch (e->expr_type) {
2861 rc = ebitmap_write(&e->names, fp);
2864 if (p->policyvers >=
2865 POLICYDB_VERSION_CONSTRAINT_NAMES) {
2866 rc = type_set_write(e->type_names, fp);
2880 static int class_write(void *vkey, void *datum, void *ptr)
2883 struct class_datum *cladatum = datum;
2884 struct policy_data *pd = ptr;
2886 struct policydb *p = pd->p;
2887 struct constraint_node *c;
2894 if (cladatum->comkey)
2895 len2 = strlen(cladatum->comkey);
2900 for (c = cladatum->constraints; c; c = c->next)
2903 buf[0] = cpu_to_le32(len);
2904 buf[1] = cpu_to_le32(len2);
2905 buf[2] = cpu_to_le32(cladatum->value);
2906 buf[3] = cpu_to_le32(cladatum->permissions.nprim);
2907 if (cladatum->permissions.table)
2908 buf[4] = cpu_to_le32(cladatum->permissions.table->nel);
2911 buf[5] = cpu_to_le32(ncons);
2912 rc = put_entry(buf, sizeof(u32), 6, fp);
2916 rc = put_entry(key, 1, len, fp);
2920 if (cladatum->comkey) {
2921 rc = put_entry(cladatum->comkey, 1, len2, fp);
2926 rc = hashtab_map(cladatum->permissions.table, perm_write, fp);
2930 rc = write_cons_helper(p, cladatum->constraints, fp);
2934 /* write out the validatetrans rule */
2936 for (c = cladatum->validatetrans; c; c = c->next)
2939 buf[0] = cpu_to_le32(ncons);
2940 rc = put_entry(buf, sizeof(u32), 1, fp);
2944 rc = write_cons_helper(p, cladatum->validatetrans, fp);
2948 if (p->policyvers >= POLICYDB_VERSION_NEW_OBJECT_DEFAULTS) {
2949 buf[0] = cpu_to_le32(cladatum->default_user);
2950 buf[1] = cpu_to_le32(cladatum->default_role);
2951 buf[2] = cpu_to_le32(cladatum->default_range);
2953 rc = put_entry(buf, sizeof(uint32_t), 3, fp);
2958 if (p->policyvers >= POLICYDB_VERSION_DEFAULT_TYPE) {
2959 buf[0] = cpu_to_le32(cladatum->default_type);
2960 rc = put_entry(buf, sizeof(uint32_t), 1, fp);
2968 static int role_write(void *vkey, void *datum, void *ptr)
2971 struct role_datum *role = datum;
2972 struct policy_data *pd = ptr;
2974 struct policydb *p = pd->p;
2981 buf[items++] = cpu_to_le32(len);
2982 buf[items++] = cpu_to_le32(role->value);
2983 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
2984 buf[items++] = cpu_to_le32(role->bounds);
2986 BUG_ON(items > ARRAY_SIZE(buf));
2988 rc = put_entry(buf, sizeof(u32), items, fp);
2992 rc = put_entry(key, 1, len, fp);
2996 rc = ebitmap_write(&role->dominates, fp);
3000 rc = ebitmap_write(&role->types, fp);
3007 static int type_write(void *vkey, void *datum, void *ptr)
3010 struct type_datum *typdatum = datum;
3011 struct policy_data *pd = ptr;
3012 struct policydb *p = pd->p;
3020 buf[items++] = cpu_to_le32(len);
3021 buf[items++] = cpu_to_le32(typdatum->value);
3022 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY) {
3025 if (typdatum->primary)
3026 properties |= TYPEDATUM_PROPERTY_PRIMARY;
3028 if (typdatum->attribute)
3029 properties |= TYPEDATUM_PROPERTY_ATTRIBUTE;
3031 buf[items++] = cpu_to_le32(properties);
3032 buf[items++] = cpu_to_le32(typdatum->bounds);
3034 buf[items++] = cpu_to_le32(typdatum->primary);
3036 BUG_ON(items > ARRAY_SIZE(buf));
3037 rc = put_entry(buf, sizeof(u32), items, fp);
3041 rc = put_entry(key, 1, len, fp);
3048 static int user_write(void *vkey, void *datum, void *ptr)
3051 struct user_datum *usrdatum = datum;
3052 struct policy_data *pd = ptr;
3053 struct policydb *p = pd->p;
3061 buf[items++] = cpu_to_le32(len);
3062 buf[items++] = cpu_to_le32(usrdatum->value);
3063 if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
3064 buf[items++] = cpu_to_le32(usrdatum->bounds);
3065 BUG_ON(items > ARRAY_SIZE(buf));
3066 rc = put_entry(buf, sizeof(u32), items, fp);
3070 rc = put_entry(key, 1, len, fp);
3074 rc = ebitmap_write(&usrdatum->roles, fp);
3078 rc = mls_write_range_helper(&usrdatum->range, fp);
3082 rc = mls_write_level(&usrdatum->dfltlevel, fp);
3089 static int (*write_f[SYM_NUM]) (void *key, void *datum,
3102 static int ocontext_write(struct policydb *p, struct policydb_compat_info *info,
3105 unsigned int i, j, rc;
3110 for (i = 0; i < info->ocon_num; i++) {
3112 for (c = p->ocontexts[i]; c; c = c->next)
3114 buf[0] = cpu_to_le32(nel);
3115 rc = put_entry(buf, sizeof(u32), 1, fp);
3118 for (c = p->ocontexts[i]; c; c = c->next) {
3121 buf[0] = cpu_to_le32(c->sid[0]);
3122 rc = put_entry(buf, sizeof(u32), 1, fp);
3125 rc = context_write(p, &c->context[0], fp);
3131 len = strlen(c->u.name);
3132 buf[0] = cpu_to_le32(len);
3133 rc = put_entry(buf, sizeof(u32), 1, fp);
3136 rc = put_entry(c->u.name, 1, len, fp);
3139 rc = context_write(p, &c->context[0], fp);
3142 rc = context_write(p, &c->context[1], fp);
3147 buf[0] = cpu_to_le32(c->u.port.protocol);
3148 buf[1] = cpu_to_le32(c->u.port.low_port);
3149 buf[2] = cpu_to_le32(c->u.port.high_port);
3150 rc = put_entry(buf, sizeof(u32), 3, fp);
3153 rc = context_write(p, &c->context[0], fp);
3158 nodebuf[0] = c->u.node.addr; /* network order */
3159 nodebuf[1] = c->u.node.mask; /* network order */
3160 rc = put_entry(nodebuf, sizeof(u32), 2, fp);
3163 rc = context_write(p, &c->context[0], fp);
3168 buf[0] = cpu_to_le32(c->v.behavior);
3169 len = strlen(c->u.name);
3170 buf[1] = cpu_to_le32(len);
3171 rc = put_entry(buf, sizeof(u32), 2, fp);
3174 rc = put_entry(c->u.name, 1, len, fp);
3177 rc = context_write(p, &c->context[0], fp);
3182 for (j = 0; j < 4; j++)
3183 nodebuf[j] = c->u.node6.addr[j]; /* network order */
3184 for (j = 0; j < 4; j++)
3185 nodebuf[j + 4] = c->u.node6.mask[j]; /* network order */
3186 rc = put_entry(nodebuf, sizeof(u32), 8, fp);
3189 rc = context_write(p, &c->context[0], fp);
3194 *((__be64 *)nodebuf) = cpu_to_be64(c->u.ibpkey.subnet_prefix);
3196 nodebuf[2] = cpu_to_le32(c->u.ibpkey.low_pkey);
3197 nodebuf[3] = cpu_to_le32(c->u.ibpkey.high_pkey);
3199 rc = put_entry(nodebuf, sizeof(u32), 4, fp);
3202 rc = context_write(p, &c->context[0], fp);
3206 case OCON_IBENDPORT:
3207 len = strlen(c->u.ibendport.dev_name);
3208 buf[0] = cpu_to_le32(len);
3209 buf[1] = cpu_to_le32(c->u.ibendport.port);
3210 rc = put_entry(buf, sizeof(u32), 2, fp);
3213 rc = put_entry(c->u.ibendport.dev_name, 1, len, fp);
3216 rc = context_write(p, &c->context[0], fp);
3226 static int genfs_write(struct policydb *p, void *fp)
3228 struct genfs *genfs;
3235 for (genfs = p->genfs; genfs; genfs = genfs->next)
3237 buf[0] = cpu_to_le32(len);
3238 rc = put_entry(buf, sizeof(u32), 1, fp);
3241 for (genfs = p->genfs; genfs; genfs = genfs->next) {
3242 len = strlen(genfs->fstype);
3243 buf[0] = cpu_to_le32(len);
3244 rc = put_entry(buf, sizeof(u32), 1, fp);
3247 rc = put_entry(genfs->fstype, 1, len, fp);
3251 for (c = genfs->head; c; c = c->next)
3253 buf[0] = cpu_to_le32(len);
3254 rc = put_entry(buf, sizeof(u32), 1, fp);
3257 for (c = genfs->head; c; c = c->next) {
3258 len = strlen(c->u.name);
3259 buf[0] = cpu_to_le32(len);
3260 rc = put_entry(buf, sizeof(u32), 1, fp);
3263 rc = put_entry(c->u.name, 1, len, fp);
3266 buf[0] = cpu_to_le32(c->v.sclass);
3267 rc = put_entry(buf, sizeof(u32), 1, fp);
3270 rc = context_write(p, &c->context[0], fp);
3278 static int hashtab_cnt(void *key, void *data, void *ptr)
3286 static int range_write_helper(void *key, void *data, void *ptr)
3289 struct range_trans *rt = key;
3290 struct mls_range *r = data;
3291 struct policy_data *pd = ptr;
3293 struct policydb *p = pd->p;
3296 buf[0] = cpu_to_le32(rt->source_type);
3297 buf[1] = cpu_to_le32(rt->target_type);
3298 rc = put_entry(buf, sizeof(u32), 2, fp);
3301 if (p->policyvers >= POLICYDB_VERSION_RANGETRANS) {
3302 buf[0] = cpu_to_le32(rt->target_class);
3303 rc = put_entry(buf, sizeof(u32), 1, fp);
3307 rc = mls_write_range_helper(r, fp);
3314 static int range_write(struct policydb *p, void *fp)
3318 struct policy_data pd;
3323 /* count the number of entries in the hashtab */
3325 rc = hashtab_map(p->range_tr, hashtab_cnt, &nel);
3329 buf[0] = cpu_to_le32(nel);
3330 rc = put_entry(buf, sizeof(u32), 1, fp);
3334 /* actually write all of the entries */
3335 rc = hashtab_map(p->range_tr, range_write_helper, &pd);
3342 static int filename_write_helper(void *key, void *data, void *ptr)
3345 struct filename_trans *ft = key;
3346 struct filename_trans_datum *otype = data;
3351 len = strlen(ft->name);
3352 buf[0] = cpu_to_le32(len);
3353 rc = put_entry(buf, sizeof(u32), 1, fp);
3357 rc = put_entry(ft->name, sizeof(char), len, fp);
3361 buf[0] = cpu_to_le32(ft->stype);
3362 buf[1] = cpu_to_le32(ft->ttype);
3363 buf[2] = cpu_to_le32(ft->tclass);
3364 buf[3] = cpu_to_le32(otype->otype);
3366 rc = put_entry(buf, sizeof(u32), 4, fp);
3373 static int filename_trans_write(struct policydb *p, void *fp)
3379 if (p->policyvers < POLICYDB_VERSION_FILENAME_TRANS)
3383 rc = hashtab_map(p->filename_trans, hashtab_cnt, &nel);
3387 buf[0] = cpu_to_le32(nel);
3388 rc = put_entry(buf, sizeof(u32), 1, fp);
3392 rc = hashtab_map(p->filename_trans, filename_write_helper, fp);
3400 * Write the configuration data in a policy database
3401 * structure to a policy database binary representation
3404 int policydb_write(struct policydb *p, void *fp)
3406 unsigned int i, num_syms;
3411 struct policydb_compat_info *info;
3414 * refuse to write policy older than compressed avtab
3415 * to simplify the writer. There are other tests dropped
3416 * since we assume this throughout the writer code. Be
3417 * careful if you ever try to remove this restriction
3419 if (p->policyvers < POLICYDB_VERSION_AVTAB) {
3420 printk(KERN_ERR "SELinux: refusing to write policy version %d."
3421 " Because it is less than version %d\n", p->policyvers,
3422 POLICYDB_VERSION_AVTAB);
3428 config |= POLICYDB_CONFIG_MLS;
3430 if (p->reject_unknown)
3431 config |= REJECT_UNKNOWN;
3432 if (p->allow_unknown)
3433 config |= ALLOW_UNKNOWN;
3435 /* Write the magic number and string identifiers. */
3436 buf[0] = cpu_to_le32(POLICYDB_MAGIC);
3437 len = strlen(POLICYDB_STRING);
3438 buf[1] = cpu_to_le32(len);
3439 rc = put_entry(buf, sizeof(u32), 2, fp);
3442 rc = put_entry(POLICYDB_STRING, 1, len, fp);
3446 /* Write the version, config, and table sizes. */
3447 info = policydb_lookup_compat(p->policyvers);
3449 printk(KERN_ERR "SELinux: compatibility lookup failed for policy "
3450 "version %d", p->policyvers);
3454 buf[0] = cpu_to_le32(p->policyvers);
3455 buf[1] = cpu_to_le32(config);
3456 buf[2] = cpu_to_le32(info->sym_num);
3457 buf[3] = cpu_to_le32(info->ocon_num);
3459 rc = put_entry(buf, sizeof(u32), 4, fp);
3463 if (p->policyvers >= POLICYDB_VERSION_POLCAP) {
3464 rc = ebitmap_write(&p->policycaps, fp);
3469 if (p->policyvers >= POLICYDB_VERSION_PERMISSIVE) {
3470 rc = ebitmap_write(&p->permissive_map, fp);
3475 num_syms = info->sym_num;
3476 for (i = 0; i < num_syms; i++) {
3477 struct policy_data pd;
3482 buf[0] = cpu_to_le32(p->symtab[i].nprim);
3483 buf[1] = cpu_to_le32(p->symtab[i].table->nel);
3485 rc = put_entry(buf, sizeof(u32), 2, fp);
3488 rc = hashtab_map(p->symtab[i].table, write_f[i], &pd);
3493 rc = avtab_write(p, &p->te_avtab, fp);
3497 rc = cond_write_list(p, p->cond_list, fp);
3501 rc = role_trans_write(p, fp);
3505 rc = role_allow_write(p->role_allow, fp);
3509 rc = filename_trans_write(p, fp);
3513 rc = ocontext_write(p, info, fp);
3517 rc = genfs_write(p, fp);
3521 rc = range_write(p, fp);
3525 for (i = 0; i < p->p_types.nprim; i++) {
3526 struct ebitmap *e = flex_array_get(p->type_attr_map_array, i);
3529 rc = ebitmap_write(e, fp);