2 * Implementation of the policy database.
4 * Author : Stephen Smalley, <sds@epoch.ncsc.mil>
8 * Updated: Trusted Computer Solutions, Inc. <dgoeddel@trustedcs.com>
10 * Support for enhanced MLS infrastructure.
12 * Updated: Frank Mayer <mayerf@tresys.com> and Karl MacMillan <kmacmillan@tresys.com>
14 * Added conditional policy language extensions
16 * Copyright (C) 2004-2005 Trusted Computer Solutions, Inc.
17 * Copyright (C) 2003 - 2004 Tresys Technology, LLC
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation, version 2.
23 #include <linux/kernel.h>
24 #include <linux/sched.h>
25 #include <linux/slab.h>
26 #include <linux/string.h>
27 #include <linux/errno.h>
31 #include "conditional.h"
37 static char *symtab_name
[SYM_NUM
] = {
49 int selinux_mls_enabled
= 0;
51 static unsigned int symtab_sizes
[SYM_NUM
] = {
62 struct policydb_compat_info
{
68 /* These need to be updated if SYM_NUM or OCON_NUM changes */
69 static struct policydb_compat_info policydb_compat
[] = {
71 .version
= POLICYDB_VERSION_BASE
,
72 .sym_num
= SYM_NUM
- 3,
73 .ocon_num
= OCON_NUM
- 1,
76 .version
= POLICYDB_VERSION_BOOL
,
77 .sym_num
= SYM_NUM
- 2,
78 .ocon_num
= OCON_NUM
- 1,
81 .version
= POLICYDB_VERSION_IPV6
,
82 .sym_num
= SYM_NUM
- 2,
86 .version
= POLICYDB_VERSION_NLCLASS
,
87 .sym_num
= SYM_NUM
- 2,
91 .version
= POLICYDB_VERSION_MLS
,
96 .version
= POLICYDB_VERSION_AVTAB
,
101 .version
= POLICYDB_VERSION_RANGETRANS
,
103 .ocon_num
= OCON_NUM
,
107 static struct policydb_compat_info
*policydb_lookup_compat(int version
)
110 struct policydb_compat_info
*info
= NULL
;
112 for (i
= 0; i
< ARRAY_SIZE(policydb_compat
); i
++) {
113 if (policydb_compat
[i
].version
== version
) {
114 info
= &policydb_compat
[i
];
122 * Initialize the role table.
124 static int roles_init(struct policydb
*p
)
128 struct role_datum
*role
;
130 role
= kzalloc(sizeof(*role
), GFP_KERNEL
);
135 role
->value
= ++p
->p_roles
.nprim
;
136 if (role
->value
!= OBJECT_R_VAL
) {
140 key
= kmalloc(strlen(OBJECT_R
)+1,GFP_KERNEL
);
145 strcpy(key
, OBJECT_R
);
146 rc
= hashtab_insert(p
->p_roles
.table
, key
, role
);
160 * Initialize a policy database structure.
162 static int policydb_init(struct policydb
*p
)
166 memset(p
, 0, sizeof(*p
));
168 for (i
= 0; i
< SYM_NUM
; i
++) {
169 rc
= symtab_init(&p
->symtab
[i
], symtab_sizes
[i
]);
171 goto out_free_symtab
;
174 rc
= avtab_init(&p
->te_avtab
);
176 goto out_free_symtab
;
180 goto out_free_symtab
;
182 rc
= cond_policydb_init(p
);
184 goto out_free_symtab
;
190 for (i
= 0; i
< SYM_NUM
; i
++)
191 hashtab_destroy(p
->symtab
[i
].table
);
196 * The following *_index functions are used to
197 * define the val_to_name and val_to_struct arrays
198 * in a policy database structure. The val_to_name
199 * arrays are used when converting security context
200 * structures into string representations. The
201 * val_to_struct arrays are used when the attributes
202 * of a class, role, or user are needed.
205 static int common_index(void *key
, void *datum
, void *datap
)
208 struct common_datum
*comdatum
;
212 if (!comdatum
->value
|| comdatum
->value
> p
->p_commons
.nprim
)
214 p
->p_common_val_to_name
[comdatum
->value
- 1] = key
;
218 static int class_index(void *key
, void *datum
, void *datap
)
221 struct class_datum
*cladatum
;
225 if (!cladatum
->value
|| cladatum
->value
> p
->p_classes
.nprim
)
227 p
->p_class_val_to_name
[cladatum
->value
- 1] = key
;
228 p
->class_val_to_struct
[cladatum
->value
- 1] = cladatum
;
232 static int role_index(void *key
, void *datum
, void *datap
)
235 struct role_datum
*role
;
239 if (!role
->value
|| role
->value
> p
->p_roles
.nprim
)
241 p
->p_role_val_to_name
[role
->value
- 1] = key
;
242 p
->role_val_to_struct
[role
->value
- 1] = role
;
246 static int type_index(void *key
, void *datum
, void *datap
)
249 struct type_datum
*typdatum
;
254 if (typdatum
->primary
) {
255 if (!typdatum
->value
|| typdatum
->value
> p
->p_types
.nprim
)
257 p
->p_type_val_to_name
[typdatum
->value
- 1] = key
;
263 static int user_index(void *key
, void *datum
, void *datap
)
266 struct user_datum
*usrdatum
;
270 if (!usrdatum
->value
|| usrdatum
->value
> p
->p_users
.nprim
)
272 p
->p_user_val_to_name
[usrdatum
->value
- 1] = key
;
273 p
->user_val_to_struct
[usrdatum
->value
- 1] = usrdatum
;
277 static int sens_index(void *key
, void *datum
, void *datap
)
280 struct level_datum
*levdatum
;
285 if (!levdatum
->isalias
) {
286 if (!levdatum
->level
->sens
||
287 levdatum
->level
->sens
> p
->p_levels
.nprim
)
289 p
->p_sens_val_to_name
[levdatum
->level
->sens
- 1] = key
;
295 static int cat_index(void *key
, void *datum
, void *datap
)
298 struct cat_datum
*catdatum
;
303 if (!catdatum
->isalias
) {
304 if (!catdatum
->value
|| catdatum
->value
> p
->p_cats
.nprim
)
306 p
->p_cat_val_to_name
[catdatum
->value
- 1] = key
;
312 static int (*index_f
[SYM_NUM
]) (void *key
, void *datum
, void *datap
) =
325 * Define the common val_to_name array and the class
326 * val_to_name and val_to_struct arrays in a policy
327 * database structure.
329 * Caller must clean up upon failure.
331 static int policydb_index_classes(struct policydb
*p
)
335 p
->p_common_val_to_name
=
336 kmalloc(p
->p_commons
.nprim
* sizeof(char *), GFP_KERNEL
);
337 if (!p
->p_common_val_to_name
) {
342 rc
= hashtab_map(p
->p_commons
.table
, common_index
, p
);
346 p
->class_val_to_struct
=
347 kmalloc(p
->p_classes
.nprim
* sizeof(*(p
->class_val_to_struct
)), GFP_KERNEL
);
348 if (!p
->class_val_to_struct
) {
353 p
->p_class_val_to_name
=
354 kmalloc(p
->p_classes
.nprim
* sizeof(char *), GFP_KERNEL
);
355 if (!p
->p_class_val_to_name
) {
360 rc
= hashtab_map(p
->p_classes
.table
, class_index
, p
);
366 static void symtab_hash_eval(struct symtab
*s
)
370 for (i
= 0; i
< SYM_NUM
; i
++) {
371 struct hashtab
*h
= s
[i
].table
;
372 struct hashtab_info info
;
374 hashtab_stat(h
, &info
);
375 printk(KERN_DEBUG
"%s: %d entries and %d/%d buckets used, "
376 "longest chain length %d\n", symtab_name
[i
], h
->nel
,
377 info
.slots_used
, h
->size
, info
.max_chain_len
);
383 * Define the other val_to_name and val_to_struct arrays
384 * in a policy database structure.
386 * Caller must clean up on failure.
388 static int policydb_index_others(struct policydb
*p
)
392 printk(KERN_DEBUG
"security: %d users, %d roles, %d types, %d bools",
393 p
->p_users
.nprim
, p
->p_roles
.nprim
, p
->p_types
.nprim
, p
->p_bools
.nprim
);
394 if (selinux_mls_enabled
)
395 printk(", %d sens, %d cats", p
->p_levels
.nprim
,
399 printk(KERN_DEBUG
"security: %d classes, %d rules\n",
400 p
->p_classes
.nprim
, p
->te_avtab
.nel
);
403 avtab_hash_eval(&p
->te_avtab
, "rules");
404 symtab_hash_eval(p
->symtab
);
407 p
->role_val_to_struct
=
408 kmalloc(p
->p_roles
.nprim
* sizeof(*(p
->role_val_to_struct
)),
410 if (!p
->role_val_to_struct
) {
415 p
->user_val_to_struct
=
416 kmalloc(p
->p_users
.nprim
* sizeof(*(p
->user_val_to_struct
)),
418 if (!p
->user_val_to_struct
) {
423 if (cond_init_bool_indexes(p
)) {
428 for (i
= SYM_ROLES
; i
< SYM_NUM
; i
++) {
429 p
->sym_val_to_name
[i
] =
430 kmalloc(p
->symtab
[i
].nprim
* sizeof(char *), GFP_KERNEL
);
431 if (!p
->sym_val_to_name
[i
]) {
435 rc
= hashtab_map(p
->symtab
[i
].table
, index_f
[i
], p
);
445 * The following *_destroy functions are used to
446 * free any memory allocated for each kind of
447 * symbol data in the policy database.
450 static int perm_destroy(void *key
, void *datum
, void *p
)
457 static int common_destroy(void *key
, void *datum
, void *p
)
459 struct common_datum
*comdatum
;
463 hashtab_map(comdatum
->permissions
.table
, perm_destroy
, NULL
);
464 hashtab_destroy(comdatum
->permissions
.table
);
469 static int cls_destroy(void *key
, void *datum
, void *p
)
471 struct class_datum
*cladatum
;
472 struct constraint_node
*constraint
, *ctemp
;
473 struct constraint_expr
*e
, *etmp
;
477 hashtab_map(cladatum
->permissions
.table
, perm_destroy
, NULL
);
478 hashtab_destroy(cladatum
->permissions
.table
);
479 constraint
= cladatum
->constraints
;
481 e
= constraint
->expr
;
483 ebitmap_destroy(&e
->names
);
489 constraint
= constraint
->next
;
493 constraint
= cladatum
->validatetrans
;
495 e
= constraint
->expr
;
497 ebitmap_destroy(&e
->names
);
503 constraint
= constraint
->next
;
507 kfree(cladatum
->comkey
);
512 static int role_destroy(void *key
, void *datum
, void *p
)
514 struct role_datum
*role
;
518 ebitmap_destroy(&role
->dominates
);
519 ebitmap_destroy(&role
->types
);
524 static int type_destroy(void *key
, void *datum
, void *p
)
531 static int user_destroy(void *key
, void *datum
, void *p
)
533 struct user_datum
*usrdatum
;
537 ebitmap_destroy(&usrdatum
->roles
);
538 ebitmap_destroy(&usrdatum
->range
.level
[0].cat
);
539 ebitmap_destroy(&usrdatum
->range
.level
[1].cat
);
540 ebitmap_destroy(&usrdatum
->dfltlevel
.cat
);
545 static int sens_destroy(void *key
, void *datum
, void *p
)
547 struct level_datum
*levdatum
;
551 ebitmap_destroy(&levdatum
->level
->cat
);
552 kfree(levdatum
->level
);
557 static int cat_destroy(void *key
, void *datum
, void *p
)
564 static int (*destroy_f
[SYM_NUM
]) (void *key
, void *datum
, void *datap
) =
576 static void ocontext_destroy(struct ocontext
*c
, int i
)
578 context_destroy(&c
->context
[0]);
579 context_destroy(&c
->context
[1]);
580 if (i
== OCON_ISID
|| i
== OCON_FS
||
581 i
== OCON_NETIF
|| i
== OCON_FSUSE
)
587 * Free any memory allocated by a policy database structure.
589 void policydb_destroy(struct policydb
*p
)
591 struct ocontext
*c
, *ctmp
;
592 struct genfs
*g
, *gtmp
;
594 struct role_allow
*ra
, *lra
= NULL
;
595 struct role_trans
*tr
, *ltr
= NULL
;
596 struct range_trans
*rt
, *lrt
= NULL
;
598 for (i
= 0; i
< SYM_NUM
; i
++) {
600 hashtab_map(p
->symtab
[i
].table
, destroy_f
[i
], NULL
);
601 hashtab_destroy(p
->symtab
[i
].table
);
604 for (i
= 0; i
< SYM_NUM
; i
++)
605 kfree(p
->sym_val_to_name
[i
]);
607 kfree(p
->class_val_to_struct
);
608 kfree(p
->role_val_to_struct
);
609 kfree(p
->user_val_to_struct
);
611 avtab_destroy(&p
->te_avtab
);
613 for (i
= 0; i
< OCON_NUM
; i
++) {
619 ocontext_destroy(ctmp
,i
);
621 p
->ocontexts
[i
] = NULL
;
632 ocontext_destroy(ctmp
,OCON_FSUSE
);
640 cond_policydb_destroy(p
);
642 for (tr
= p
->role_tr
; tr
; tr
= tr
->next
) {
649 for (ra
= p
->role_allow
; ra
; ra
= ra
-> next
) {
656 for (rt
= p
->range_tr
; rt
; rt
= rt
-> next
) {
659 ebitmap_destroy(&lrt
->target_range
.level
[0].cat
);
660 ebitmap_destroy(&lrt
->target_range
.level
[1].cat
);
666 ebitmap_destroy(&lrt
->target_range
.level
[0].cat
);
667 ebitmap_destroy(&lrt
->target_range
.level
[1].cat
);
671 if (p
->type_attr_map
) {
672 for (i
= 0; i
< p
->p_types
.nprim
; i
++)
673 ebitmap_destroy(&p
->type_attr_map
[i
]);
675 kfree(p
->type_attr_map
);
677 kfree(p
->undefined_perms
);
683 * Load the initial SIDs specified in a policy database
684 * structure into a SID table.
686 int policydb_load_isids(struct policydb
*p
, struct sidtab
*s
)
688 struct ocontext
*head
, *c
;
693 printk(KERN_ERR
"security: out of memory on SID table init\n");
697 head
= p
->ocontexts
[OCON_ISID
];
698 for (c
= head
; c
; c
= c
->next
) {
699 if (!c
->context
[0].user
) {
700 printk(KERN_ERR
"security: SID %s was never "
701 "defined.\n", c
->u
.name
);
705 if (sidtab_insert(s
, c
->sid
[0], &c
->context
[0])) {
706 printk(KERN_ERR
"security: unable to load initial "
707 "SID %s.\n", c
->u
.name
);
716 int policydb_class_isvalid(struct policydb
*p
, unsigned int class)
718 if (!class || class > p
->p_classes
.nprim
)
723 int policydb_role_isvalid(struct policydb
*p
, unsigned int role
)
725 if (!role
|| role
> p
->p_roles
.nprim
)
730 int policydb_type_isvalid(struct policydb
*p
, unsigned int type
)
732 if (!type
|| type
> p
->p_types
.nprim
)
738 * Return 1 if the fields in the security context
739 * structure `c' are valid. Return 0 otherwise.
741 int policydb_context_isvalid(struct policydb
*p
, struct context
*c
)
743 struct role_datum
*role
;
744 struct user_datum
*usrdatum
;
746 if (!c
->role
|| c
->role
> p
->p_roles
.nprim
)
749 if (!c
->user
|| c
->user
> p
->p_users
.nprim
)
752 if (!c
->type
|| c
->type
> p
->p_types
.nprim
)
755 if (c
->role
!= OBJECT_R_VAL
) {
757 * Role must be authorized for the type.
759 role
= p
->role_val_to_struct
[c
->role
- 1];
760 if (!ebitmap_get_bit(&role
->types
,
762 /* role may not be associated with type */
766 * User must be authorized for the role.
768 usrdatum
= p
->user_val_to_struct
[c
->user
- 1];
772 if (!ebitmap_get_bit(&usrdatum
->roles
,
774 /* user may not be associated with role */
778 if (!mls_context_isvalid(p
, c
))
785 * Read a MLS range structure from a policydb binary
786 * representation file.
788 static int mls_read_range_helper(struct mls_range
*r
, void *fp
)
794 rc
= next_entry(buf
, fp
, sizeof(u32
));
798 items
= le32_to_cpu(buf
[0]);
799 if (items
> ARRAY_SIZE(buf
)) {
800 printk(KERN_ERR
"security: mls: range overflow\n");
804 rc
= next_entry(buf
, fp
, sizeof(u32
) * items
);
806 printk(KERN_ERR
"security: mls: truncated range\n");
809 r
->level
[0].sens
= le32_to_cpu(buf
[0]);
811 r
->level
[1].sens
= le32_to_cpu(buf
[1]);
813 r
->level
[1].sens
= r
->level
[0].sens
;
815 rc
= ebitmap_read(&r
->level
[0].cat
, fp
);
817 printk(KERN_ERR
"security: mls: error reading low "
822 rc
= ebitmap_read(&r
->level
[1].cat
, fp
);
824 printk(KERN_ERR
"security: mls: error reading high "
829 rc
= ebitmap_cpy(&r
->level
[1].cat
, &r
->level
[0].cat
);
831 printk(KERN_ERR
"security: mls: out of memory\n");
840 ebitmap_destroy(&r
->level
[0].cat
);
845 * Read and validate a security context structure
846 * from a policydb binary representation file.
848 static int context_read_and_validate(struct context
*c
,
855 rc
= next_entry(buf
, fp
, sizeof buf
);
857 printk(KERN_ERR
"security: context truncated\n");
860 c
->user
= le32_to_cpu(buf
[0]);
861 c
->role
= le32_to_cpu(buf
[1]);
862 c
->type
= le32_to_cpu(buf
[2]);
863 if (p
->policyvers
>= POLICYDB_VERSION_MLS
) {
864 if (mls_read_range_helper(&c
->range
, fp
)) {
865 printk(KERN_ERR
"security: error reading MLS range of "
872 if (!policydb_context_isvalid(p
, c
)) {
873 printk(KERN_ERR
"security: invalid security context\n");
882 * The following *_read functions are used to
883 * read the symbol data from a policy database
884 * binary representation file.
887 static int perm_read(struct policydb
*p
, struct hashtab
*h
, void *fp
)
890 struct perm_datum
*perdatum
;
895 perdatum
= kzalloc(sizeof(*perdatum
), GFP_KERNEL
);
901 rc
= next_entry(buf
, fp
, sizeof buf
);
905 len
= le32_to_cpu(buf
[0]);
906 perdatum
->value
= le32_to_cpu(buf
[1]);
908 key
= kmalloc(len
+ 1,GFP_KERNEL
);
913 rc
= next_entry(key
, fp
, len
);
918 rc
= hashtab_insert(h
, key
, perdatum
);
924 perm_destroy(key
, perdatum
, NULL
);
928 static int common_read(struct policydb
*p
, struct hashtab
*h
, void *fp
)
931 struct common_datum
*comdatum
;
936 comdatum
= kzalloc(sizeof(*comdatum
), GFP_KERNEL
);
942 rc
= next_entry(buf
, fp
, sizeof buf
);
946 len
= le32_to_cpu(buf
[0]);
947 comdatum
->value
= le32_to_cpu(buf
[1]);
949 rc
= symtab_init(&comdatum
->permissions
, PERM_SYMTAB_SIZE
);
952 comdatum
->permissions
.nprim
= le32_to_cpu(buf
[2]);
953 nel
= le32_to_cpu(buf
[3]);
955 key
= kmalloc(len
+ 1,GFP_KERNEL
);
960 rc
= next_entry(key
, fp
, len
);
965 for (i
= 0; i
< nel
; i
++) {
966 rc
= perm_read(p
, comdatum
->permissions
.table
, fp
);
971 rc
= hashtab_insert(h
, key
, comdatum
);
977 common_destroy(key
, comdatum
, NULL
);
981 static int read_cons_helper(struct constraint_node
**nodep
, int ncons
,
982 int allowxtarget
, void *fp
)
984 struct constraint_node
*c
, *lc
;
985 struct constraint_expr
*e
, *le
;
991 for (i
= 0; i
< ncons
; i
++) {
992 c
= kzalloc(sizeof(*c
), GFP_KERNEL
);
1002 rc
= next_entry(buf
, fp
, (sizeof(u32
) * 2));
1005 c
->permissions
= le32_to_cpu(buf
[0]);
1006 nexpr
= le32_to_cpu(buf
[1]);
1009 for (j
= 0; j
< nexpr
; j
++) {
1010 e
= kzalloc(sizeof(*e
), GFP_KERNEL
);
1020 rc
= next_entry(buf
, fp
, (sizeof(u32
) * 3));
1023 e
->expr_type
= le32_to_cpu(buf
[0]);
1024 e
->attr
= le32_to_cpu(buf
[1]);
1025 e
->op
= le32_to_cpu(buf
[2]);
1027 switch (e
->expr_type
) {
1039 if (depth
== (CEXPR_MAXDEPTH
- 1))
1044 if (!allowxtarget
&& (e
->attr
& CEXPR_XTARGET
))
1046 if (depth
== (CEXPR_MAXDEPTH
- 1))
1049 if (ebitmap_read(&e
->names
, fp
))
1065 static int class_read(struct policydb
*p
, struct hashtab
*h
, void *fp
)
1068 struct class_datum
*cladatum
;
1070 u32 len
, len2
, ncons
, nel
;
1073 cladatum
= kzalloc(sizeof(*cladatum
), GFP_KERNEL
);
1079 rc
= next_entry(buf
, fp
, sizeof(u32
)*6);
1083 len
= le32_to_cpu(buf
[0]);
1084 len2
= le32_to_cpu(buf
[1]);
1085 cladatum
->value
= le32_to_cpu(buf
[2]);
1087 rc
= symtab_init(&cladatum
->permissions
, PERM_SYMTAB_SIZE
);
1090 cladatum
->permissions
.nprim
= le32_to_cpu(buf
[3]);
1091 nel
= le32_to_cpu(buf
[4]);
1093 ncons
= le32_to_cpu(buf
[5]);
1095 key
= kmalloc(len
+ 1,GFP_KERNEL
);
1100 rc
= next_entry(key
, fp
, len
);
1106 cladatum
->comkey
= kmalloc(len2
+ 1,GFP_KERNEL
);
1107 if (!cladatum
->comkey
) {
1111 rc
= next_entry(cladatum
->comkey
, fp
, len2
);
1114 cladatum
->comkey
[len2
] = 0;
1116 cladatum
->comdatum
= hashtab_search(p
->p_commons
.table
,
1118 if (!cladatum
->comdatum
) {
1119 printk(KERN_ERR
"security: unknown common %s\n",
1125 for (i
= 0; i
< nel
; i
++) {
1126 rc
= perm_read(p
, cladatum
->permissions
.table
, fp
);
1131 rc
= read_cons_helper(&cladatum
->constraints
, ncons
, 0, fp
);
1135 if (p
->policyvers
>= POLICYDB_VERSION_VALIDATETRANS
) {
1136 /* grab the validatetrans rules */
1137 rc
= next_entry(buf
, fp
, sizeof(u32
));
1140 ncons
= le32_to_cpu(buf
[0]);
1141 rc
= read_cons_helper(&cladatum
->validatetrans
, ncons
, 1, fp
);
1146 rc
= hashtab_insert(h
, key
, cladatum
);
1154 cls_destroy(key
, cladatum
, NULL
);
1158 static int role_read(struct policydb
*p
, struct hashtab
*h
, void *fp
)
1161 struct role_datum
*role
;
1166 role
= kzalloc(sizeof(*role
), GFP_KERNEL
);
1172 rc
= next_entry(buf
, fp
, sizeof buf
);
1176 len
= le32_to_cpu(buf
[0]);
1177 role
->value
= le32_to_cpu(buf
[1]);
1179 key
= kmalloc(len
+ 1,GFP_KERNEL
);
1184 rc
= next_entry(key
, fp
, len
);
1189 rc
= ebitmap_read(&role
->dominates
, fp
);
1193 rc
= ebitmap_read(&role
->types
, fp
);
1197 if (strcmp(key
, OBJECT_R
) == 0) {
1198 if (role
->value
!= OBJECT_R_VAL
) {
1199 printk(KERN_ERR
"Role %s has wrong value %d\n",
1200 OBJECT_R
, role
->value
);
1208 rc
= hashtab_insert(h
, key
, role
);
1214 role_destroy(key
, role
, NULL
);
1218 static int type_read(struct policydb
*p
, struct hashtab
*h
, void *fp
)
1221 struct type_datum
*typdatum
;
1226 typdatum
= kzalloc(sizeof(*typdatum
),GFP_KERNEL
);
1232 rc
= next_entry(buf
, fp
, sizeof buf
);
1236 len
= le32_to_cpu(buf
[0]);
1237 typdatum
->value
= le32_to_cpu(buf
[1]);
1238 typdatum
->primary
= le32_to_cpu(buf
[2]);
1240 key
= kmalloc(len
+ 1,GFP_KERNEL
);
1245 rc
= next_entry(key
, fp
, len
);
1250 rc
= hashtab_insert(h
, key
, typdatum
);
1256 type_destroy(key
, typdatum
, NULL
);
1262 * Read a MLS level structure from a policydb binary
1263 * representation file.
1265 static int mls_read_level(struct mls_level
*lp
, void *fp
)
1270 memset(lp
, 0, sizeof(*lp
));
1272 rc
= next_entry(buf
, fp
, sizeof buf
);
1274 printk(KERN_ERR
"security: mls: truncated level\n");
1277 lp
->sens
= le32_to_cpu(buf
[0]);
1279 if (ebitmap_read(&lp
->cat
, fp
)) {
1280 printk(KERN_ERR
"security: mls: error reading level "
1291 static int user_read(struct policydb
*p
, struct hashtab
*h
, void *fp
)
1294 struct user_datum
*usrdatum
;
1299 usrdatum
= kzalloc(sizeof(*usrdatum
), GFP_KERNEL
);
1305 rc
= next_entry(buf
, fp
, sizeof buf
);
1309 len
= le32_to_cpu(buf
[0]);
1310 usrdatum
->value
= le32_to_cpu(buf
[1]);
1312 key
= kmalloc(len
+ 1,GFP_KERNEL
);
1317 rc
= next_entry(key
, fp
, len
);
1322 rc
= ebitmap_read(&usrdatum
->roles
, fp
);
1326 if (p
->policyvers
>= POLICYDB_VERSION_MLS
) {
1327 rc
= mls_read_range_helper(&usrdatum
->range
, fp
);
1330 rc
= mls_read_level(&usrdatum
->dfltlevel
, fp
);
1335 rc
= hashtab_insert(h
, key
, usrdatum
);
1341 user_destroy(key
, usrdatum
, NULL
);
1345 static int sens_read(struct policydb
*p
, struct hashtab
*h
, void *fp
)
1348 struct level_datum
*levdatum
;
1353 levdatum
= kzalloc(sizeof(*levdatum
), GFP_ATOMIC
);
1359 rc
= next_entry(buf
, fp
, sizeof buf
);
1363 len
= le32_to_cpu(buf
[0]);
1364 levdatum
->isalias
= le32_to_cpu(buf
[1]);
1366 key
= kmalloc(len
+ 1,GFP_ATOMIC
);
1371 rc
= next_entry(key
, fp
, len
);
1376 levdatum
->level
= kmalloc(sizeof(struct mls_level
), GFP_ATOMIC
);
1377 if (!levdatum
->level
) {
1381 if (mls_read_level(levdatum
->level
, fp
)) {
1386 rc
= hashtab_insert(h
, key
, levdatum
);
1392 sens_destroy(key
, levdatum
, NULL
);
1396 static int cat_read(struct policydb
*p
, struct hashtab
*h
, void *fp
)
1399 struct cat_datum
*catdatum
;
1404 catdatum
= kzalloc(sizeof(*catdatum
), GFP_ATOMIC
);
1410 rc
= next_entry(buf
, fp
, sizeof buf
);
1414 len
= le32_to_cpu(buf
[0]);
1415 catdatum
->value
= le32_to_cpu(buf
[1]);
1416 catdatum
->isalias
= le32_to_cpu(buf
[2]);
1418 key
= kmalloc(len
+ 1,GFP_ATOMIC
);
1423 rc
= next_entry(key
, fp
, len
);
1428 rc
= hashtab_insert(h
, key
, catdatum
);
1435 cat_destroy(key
, catdatum
, NULL
);
1439 static int (*read_f
[SYM_NUM
]) (struct policydb
*p
, struct hashtab
*h
, void *fp
) =
1451 extern int ss_initialized
;
1454 * Read the configuration data from a policy database binary
1455 * representation file into a policy database structure.
1457 int policydb_read(struct policydb
*p
, void *fp
)
1459 struct role_allow
*ra
, *lra
;
1460 struct role_trans
*tr
, *ltr
;
1461 struct ocontext
*l
, *c
, *newc
;
1462 struct genfs
*genfs_p
, *genfs
, *newgenfs
;
1465 u32 len
, len2
, config
, nprim
, nel
, nel2
;
1467 struct policydb_compat_info
*info
;
1468 struct range_trans
*rt
, *lrt
;
1472 rc
= policydb_init(p
);
1476 /* Read the magic number and string length. */
1477 rc
= next_entry(buf
, fp
, sizeof(u32
)* 2);
1481 if (le32_to_cpu(buf
[0]) != POLICYDB_MAGIC
) {
1482 printk(KERN_ERR
"security: policydb magic number 0x%x does "
1483 "not match expected magic number 0x%x\n",
1484 le32_to_cpu(buf
[0]), POLICYDB_MAGIC
);
1488 len
= le32_to_cpu(buf
[1]);
1489 if (len
!= strlen(POLICYDB_STRING
)) {
1490 printk(KERN_ERR
"security: policydb string length %d does not "
1491 "match expected length %Zu\n",
1492 len
, strlen(POLICYDB_STRING
));
1495 policydb_str
= kmalloc(len
+ 1,GFP_KERNEL
);
1496 if (!policydb_str
) {
1497 printk(KERN_ERR
"security: unable to allocate memory for policydb "
1498 "string of length %d\n", len
);
1502 rc
= next_entry(policydb_str
, fp
, len
);
1504 printk(KERN_ERR
"security: truncated policydb string identifier\n");
1505 kfree(policydb_str
);
1508 policydb_str
[len
] = 0;
1509 if (strcmp(policydb_str
, POLICYDB_STRING
)) {
1510 printk(KERN_ERR
"security: policydb string %s does not match "
1511 "my string %s\n", policydb_str
, POLICYDB_STRING
);
1512 kfree(policydb_str
);
1515 /* Done with policydb_str. */
1516 kfree(policydb_str
);
1517 policydb_str
= NULL
;
1519 /* Read the version, config, and table sizes. */
1520 rc
= next_entry(buf
, fp
, sizeof(u32
)*4);
1524 p
->policyvers
= le32_to_cpu(buf
[0]);
1525 if (p
->policyvers
< POLICYDB_VERSION_MIN
||
1526 p
->policyvers
> POLICYDB_VERSION_MAX
) {
1527 printk(KERN_ERR
"security: policydb version %d does not match "
1528 "my version range %d-%d\n",
1529 le32_to_cpu(buf
[0]), POLICYDB_VERSION_MIN
, POLICYDB_VERSION_MAX
);
1533 if ((le32_to_cpu(buf
[1]) & POLICYDB_CONFIG_MLS
)) {
1534 if (ss_initialized
&& !selinux_mls_enabled
) {
1535 printk(KERN_ERR
"Cannot switch between non-MLS and MLS "
1539 selinux_mls_enabled
= 1;
1540 config
|= POLICYDB_CONFIG_MLS
;
1542 if (p
->policyvers
< POLICYDB_VERSION_MLS
) {
1543 printk(KERN_ERR
"security policydb version %d (MLS) "
1544 "not backwards compatible\n", p
->policyvers
);
1548 if (ss_initialized
&& selinux_mls_enabled
) {
1549 printk(KERN_ERR
"Cannot switch between MLS and non-MLS "
1554 p
->reject_unknown
= !!(le32_to_cpu(buf
[1]) & REJECT_UNKNOWN
);
1555 p
->allow_unknown
= !!(le32_to_cpu(buf
[1]) & ALLOW_UNKNOWN
);
1557 info
= policydb_lookup_compat(p
->policyvers
);
1559 printk(KERN_ERR
"security: unable to find policy compat info "
1560 "for version %d\n", p
->policyvers
);
1564 if (le32_to_cpu(buf
[2]) != info
->sym_num
||
1565 le32_to_cpu(buf
[3]) != info
->ocon_num
) {
1566 printk(KERN_ERR
"security: policydb table sizes (%d,%d) do "
1567 "not match mine (%d,%d)\n", le32_to_cpu(buf
[2]),
1568 le32_to_cpu(buf
[3]),
1569 info
->sym_num
, info
->ocon_num
);
1573 for (i
= 0; i
< info
->sym_num
; i
++) {
1574 rc
= next_entry(buf
, fp
, sizeof(u32
)*2);
1577 nprim
= le32_to_cpu(buf
[0]);
1578 nel
= le32_to_cpu(buf
[1]);
1579 for (j
= 0; j
< nel
; j
++) {
1580 rc
= read_f
[i
](p
, p
->symtab
[i
].table
, fp
);
1585 p
->symtab
[i
].nprim
= nprim
;
1588 rc
= avtab_read(&p
->te_avtab
, fp
, p
);
1592 if (p
->policyvers
>= POLICYDB_VERSION_BOOL
) {
1593 rc
= cond_read_list(p
, fp
);
1598 rc
= next_entry(buf
, fp
, sizeof(u32
));
1601 nel
= le32_to_cpu(buf
[0]);
1603 for (i
= 0; i
< nel
; i
++) {
1604 tr
= kzalloc(sizeof(*tr
), GFP_KERNEL
);
1614 rc
= next_entry(buf
, fp
, sizeof(u32
)*3);
1617 tr
->role
= le32_to_cpu(buf
[0]);
1618 tr
->type
= le32_to_cpu(buf
[1]);
1619 tr
->new_role
= le32_to_cpu(buf
[2]);
1620 if (!policydb_role_isvalid(p
, tr
->role
) ||
1621 !policydb_type_isvalid(p
, tr
->type
) ||
1622 !policydb_role_isvalid(p
, tr
->new_role
)) {
1629 rc
= next_entry(buf
, fp
, sizeof(u32
));
1632 nel
= le32_to_cpu(buf
[0]);
1634 for (i
= 0; i
< nel
; i
++) {
1635 ra
= kzalloc(sizeof(*ra
), GFP_KERNEL
);
1645 rc
= next_entry(buf
, fp
, sizeof(u32
)*2);
1648 ra
->role
= le32_to_cpu(buf
[0]);
1649 ra
->new_role
= le32_to_cpu(buf
[1]);
1650 if (!policydb_role_isvalid(p
, ra
->role
) ||
1651 !policydb_role_isvalid(p
, ra
->new_role
)) {
1658 rc
= policydb_index_classes(p
);
1662 rc
= policydb_index_others(p
);
1666 for (i
= 0; i
< info
->ocon_num
; i
++) {
1667 rc
= next_entry(buf
, fp
, sizeof(u32
));
1670 nel
= le32_to_cpu(buf
[0]);
1672 for (j
= 0; j
< nel
; j
++) {
1673 c
= kzalloc(sizeof(*c
), GFP_KERNEL
);
1681 p
->ocontexts
[i
] = c
;
1687 rc
= next_entry(buf
, fp
, sizeof(u32
));
1690 c
->sid
[0] = le32_to_cpu(buf
[0]);
1691 rc
= context_read_and_validate(&c
->context
[0], p
, fp
);
1697 rc
= next_entry(buf
, fp
, sizeof(u32
));
1700 len
= le32_to_cpu(buf
[0]);
1701 c
->u
.name
= kmalloc(len
+ 1,GFP_KERNEL
);
1706 rc
= next_entry(c
->u
.name
, fp
, len
);
1710 rc
= context_read_and_validate(&c
->context
[0], p
, fp
);
1713 rc
= context_read_and_validate(&c
->context
[1], p
, fp
);
1718 rc
= next_entry(buf
, fp
, sizeof(u32
)*3);
1721 c
->u
.port
.protocol
= le32_to_cpu(buf
[0]);
1722 c
->u
.port
.low_port
= le32_to_cpu(buf
[1]);
1723 c
->u
.port
.high_port
= le32_to_cpu(buf
[2]);
1724 rc
= context_read_and_validate(&c
->context
[0], p
, fp
);
1729 rc
= next_entry(buf
, fp
, sizeof(u32
)* 2);
1732 c
->u
.node
.addr
= le32_to_cpu(buf
[0]);
1733 c
->u
.node
.mask
= le32_to_cpu(buf
[1]);
1734 rc
= context_read_and_validate(&c
->context
[0], p
, fp
);
1739 rc
= next_entry(buf
, fp
, sizeof(u32
)*2);
1742 c
->v
.behavior
= le32_to_cpu(buf
[0]);
1743 if (c
->v
.behavior
> SECURITY_FS_USE_NONE
)
1745 len
= le32_to_cpu(buf
[1]);
1746 c
->u
.name
= kmalloc(len
+ 1,GFP_KERNEL
);
1751 rc
= next_entry(c
->u
.name
, fp
, len
);
1755 rc
= context_read_and_validate(&c
->context
[0], p
, fp
);
1762 rc
= next_entry(buf
, fp
, sizeof(u32
) * 8);
1765 for (k
= 0; k
< 4; k
++)
1766 c
->u
.node6
.addr
[k
] = le32_to_cpu(buf
[k
]);
1767 for (k
= 0; k
< 4; k
++)
1768 c
->u
.node6
.mask
[k
] = le32_to_cpu(buf
[k
+4]);
1769 if (context_read_and_validate(&c
->context
[0], p
, fp
))
1777 rc
= next_entry(buf
, fp
, sizeof(u32
));
1780 nel
= le32_to_cpu(buf
[0]);
1783 for (i
= 0; i
< nel
; i
++) {
1784 rc
= next_entry(buf
, fp
, sizeof(u32
));
1787 len
= le32_to_cpu(buf
[0]);
1788 newgenfs
= kzalloc(sizeof(*newgenfs
), GFP_KERNEL
);
1794 newgenfs
->fstype
= kmalloc(len
+ 1,GFP_KERNEL
);
1795 if (!newgenfs
->fstype
) {
1800 rc
= next_entry(newgenfs
->fstype
, fp
, len
);
1802 kfree(newgenfs
->fstype
);
1806 newgenfs
->fstype
[len
] = 0;
1807 for (genfs_p
= NULL
, genfs
= p
->genfs
; genfs
;
1808 genfs_p
= genfs
, genfs
= genfs
->next
) {
1809 if (strcmp(newgenfs
->fstype
, genfs
->fstype
) == 0) {
1810 printk(KERN_ERR
"security: dup genfs "
1811 "fstype %s\n", newgenfs
->fstype
);
1812 kfree(newgenfs
->fstype
);
1816 if (strcmp(newgenfs
->fstype
, genfs
->fstype
) < 0)
1819 newgenfs
->next
= genfs
;
1821 genfs_p
->next
= newgenfs
;
1823 p
->genfs
= newgenfs
;
1824 rc
= next_entry(buf
, fp
, sizeof(u32
));
1827 nel2
= le32_to_cpu(buf
[0]);
1828 for (j
= 0; j
< nel2
; j
++) {
1829 rc
= next_entry(buf
, fp
, sizeof(u32
));
1832 len
= le32_to_cpu(buf
[0]);
1834 newc
= kzalloc(sizeof(*newc
), GFP_KERNEL
);
1840 newc
->u
.name
= kmalloc(len
+ 1,GFP_KERNEL
);
1841 if (!newc
->u
.name
) {
1845 rc
= next_entry(newc
->u
.name
, fp
, len
);
1848 newc
->u
.name
[len
] = 0;
1849 rc
= next_entry(buf
, fp
, sizeof(u32
));
1852 newc
->v
.sclass
= le32_to_cpu(buf
[0]);
1853 if (context_read_and_validate(&newc
->context
[0], p
, fp
))
1855 for (l
= NULL
, c
= newgenfs
->head
; c
;
1856 l
= c
, c
= c
->next
) {
1857 if (!strcmp(newc
->u
.name
, c
->u
.name
) &&
1858 (!c
->v
.sclass
|| !newc
->v
.sclass
||
1859 newc
->v
.sclass
== c
->v
.sclass
)) {
1860 printk(KERN_ERR
"security: dup genfs "
1862 newgenfs
->fstype
, c
->u
.name
);
1865 len
= strlen(newc
->u
.name
);
1866 len2
= strlen(c
->u
.name
);
1875 newgenfs
->head
= newc
;
1879 if (p
->policyvers
>= POLICYDB_VERSION_MLS
) {
1880 int new_rangetr
= p
->policyvers
>= POLICYDB_VERSION_RANGETRANS
;
1881 rc
= next_entry(buf
, fp
, sizeof(u32
));
1884 nel
= le32_to_cpu(buf
[0]);
1886 for (i
= 0; i
< nel
; i
++) {
1887 rt
= kzalloc(sizeof(*rt
), GFP_KERNEL
);
1896 rc
= next_entry(buf
, fp
, (sizeof(u32
) * 2));
1899 rt
->source_type
= le32_to_cpu(buf
[0]);
1900 rt
->target_type
= le32_to_cpu(buf
[1]);
1902 rc
= next_entry(buf
, fp
, sizeof(u32
));
1905 rt
->target_class
= le32_to_cpu(buf
[0]);
1907 rt
->target_class
= SECCLASS_PROCESS
;
1908 if (!policydb_type_isvalid(p
, rt
->source_type
) ||
1909 !policydb_type_isvalid(p
, rt
->target_type
) ||
1910 !policydb_class_isvalid(p
, rt
->target_class
)) {
1914 rc
= mls_read_range_helper(&rt
->target_range
, fp
);
1917 if (!mls_range_isvalid(p
, &rt
->target_range
)) {
1918 printk(KERN_WARNING
"security: rangetrans: invalid range\n");
1925 p
->type_attr_map
= kmalloc(p
->p_types
.nprim
*sizeof(struct ebitmap
), GFP_KERNEL
);
1926 if (!p
->type_attr_map
)
1929 for (i
= 0; i
< p
->p_types
.nprim
; i
++) {
1930 ebitmap_init(&p
->type_attr_map
[i
]);
1931 if (p
->policyvers
>= POLICYDB_VERSION_AVTAB
) {
1932 if (ebitmap_read(&p
->type_attr_map
[i
], fp
))
1935 /* add the type itself as the degenerate case */
1936 if (ebitmap_set_bit(&p
->type_attr_map
[i
], i
, 1))
1944 ocontext_destroy(newc
,OCON_FSUSE
);
1948 policydb_destroy(p
);