2 * Implementation of the security services.
4 * Authors : Stephen Smalley, <sds@epoch.ncsc.mil>
5 * James Morris <jmorris@redhat.com>
7 * Updated: Trusted Computer Solutions, Inc. <dgoeddel@trustedcs.com>
9 * Support for enhanced MLS infrastructure.
11 * Updated: Frank Mayer <mayerf@tresys.com> and Karl MacMillan <kmacmillan@tresys.com>
13 * Added conditional policy language extensions
15 * Copyright (C) 2004-2005 Trusted Computer Solutions, Inc.
16 * Copyright (C) 2003 - 2004 Tresys Technology, LLC
17 * Copyright (C) 2003 Red Hat, Inc., James Morris <jmorris@redhat.com>
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.
22 #include <linux/kernel.h>
23 #include <linux/slab.h>
24 #include <linux/string.h>
25 #include <linux/spinlock.h>
26 #include <linux/errno.h>
28 #include <linux/sched.h>
29 #include <linux/audit.h>
30 #include <asm/semaphore.h>
39 #include "conditional.h"
42 extern void selnl_notify_policyload(u32 seqno
);
43 unsigned int policydb_loaded_version
;
45 static DEFINE_RWLOCK(policy_rwlock
);
46 #define POLICY_RDLOCK read_lock(&policy_rwlock)
47 #define POLICY_WRLOCK write_lock_irq(&policy_rwlock)
48 #define POLICY_RDUNLOCK read_unlock(&policy_rwlock)
49 #define POLICY_WRUNLOCK write_unlock_irq(&policy_rwlock)
51 static DECLARE_MUTEX(load_sem
);
52 #define LOAD_LOCK down(&load_sem)
53 #define LOAD_UNLOCK up(&load_sem)
55 static struct sidtab sidtab
;
56 struct policydb policydb
;
57 int ss_initialized
= 0;
60 * The largest sequence number that has been used when
61 * providing an access decision to the access vector cache.
62 * The sequence number only changes when a policy change
65 static u32 latest_granting
= 0;
67 /* Forward declaration. */
68 static int context_struct_to_string(struct context
*context
, char **scontext
,
72 * Return the boolean value of a constraint expression
73 * when it is applied to the specified source and target
76 * xcontext is a special beast... It is used by the validatetrans rules
77 * only. For these rules, scontext is the context before the transition,
78 * tcontext is the context after the transition, and xcontext is the context
79 * of the process performing the transition. All other callers of
80 * constraint_expr_eval should pass in NULL for xcontext.
82 static int constraint_expr_eval(struct context
*scontext
,
83 struct context
*tcontext
,
84 struct context
*xcontext
,
85 struct constraint_expr
*cexpr
)
89 struct role_datum
*r1
, *r2
;
90 struct mls_level
*l1
, *l2
;
91 struct constraint_expr
*e
;
92 int s
[CEXPR_MAXDEPTH
];
95 for (e
= cexpr
; e
; e
= e
->next
) {
96 switch (e
->expr_type
) {
112 if (sp
== (CEXPR_MAXDEPTH
-1))
116 val1
= scontext
->user
;
117 val2
= tcontext
->user
;
120 val1
= scontext
->type
;
121 val2
= tcontext
->type
;
124 val1
= scontext
->role
;
125 val2
= tcontext
->role
;
126 r1
= policydb
.role_val_to_struct
[val1
- 1];
127 r2
= policydb
.role_val_to_struct
[val2
- 1];
130 s
[++sp
] = ebitmap_get_bit(&r1
->dominates
,
134 s
[++sp
] = ebitmap_get_bit(&r2
->dominates
,
138 s
[++sp
] = ( !ebitmap_get_bit(&r1
->dominates
,
140 !ebitmap_get_bit(&r2
->dominates
,
148 l1
= &(scontext
->range
.level
[0]);
149 l2
= &(tcontext
->range
.level
[0]);
152 l1
= &(scontext
->range
.level
[0]);
153 l2
= &(tcontext
->range
.level
[1]);
156 l1
= &(scontext
->range
.level
[1]);
157 l2
= &(tcontext
->range
.level
[0]);
160 l1
= &(scontext
->range
.level
[1]);
161 l2
= &(tcontext
->range
.level
[1]);
164 l1
= &(scontext
->range
.level
[0]);
165 l2
= &(scontext
->range
.level
[1]);
168 l1
= &(tcontext
->range
.level
[0]);
169 l2
= &(tcontext
->range
.level
[1]);
174 s
[++sp
] = mls_level_eq(l1
, l2
);
177 s
[++sp
] = !mls_level_eq(l1
, l2
);
180 s
[++sp
] = mls_level_dom(l1
, l2
);
183 s
[++sp
] = mls_level_dom(l2
, l1
);
186 s
[++sp
] = mls_level_incomp(l2
, l1
);
200 s
[++sp
] = (val1
== val2
);
203 s
[++sp
] = (val1
!= val2
);
211 if (sp
== (CEXPR_MAXDEPTH
-1))
214 if (e
->attr
& CEXPR_TARGET
)
216 else if (e
->attr
& CEXPR_XTARGET
) {
223 if (e
->attr
& CEXPR_USER
)
225 else if (e
->attr
& CEXPR_ROLE
)
227 else if (e
->attr
& CEXPR_TYPE
)
236 s
[++sp
] = ebitmap_get_bit(&e
->names
, val1
- 1);
239 s
[++sp
] = !ebitmap_get_bit(&e
->names
, val1
- 1);
257 * Compute access vectors based on a context structure pair for
258 * the permissions in a particular class.
260 static int context_struct_compute_av(struct context
*scontext
,
261 struct context
*tcontext
,
264 struct av_decision
*avd
)
266 struct constraint_node
*constraint
;
267 struct role_allow
*ra
;
268 struct avtab_key avkey
;
269 struct avtab_node
*node
;
270 struct class_datum
*tclass_datum
;
271 struct ebitmap
*sattr
, *tattr
;
272 struct ebitmap_node
*snode
, *tnode
;
276 * Remap extended Netlink classes for old policy versions.
277 * Do this here rather than socket_type_to_security_class()
278 * in case a newer policy version is loaded, allowing sockets
279 * to remain in the correct class.
281 if (policydb_loaded_version
< POLICYDB_VERSION_NLCLASS
)
282 if (tclass
>= SECCLASS_NETLINK_ROUTE_SOCKET
&&
283 tclass
<= SECCLASS_NETLINK_DNRT_SOCKET
)
284 tclass
= SECCLASS_NETLINK_SOCKET
;
286 if (!tclass
|| tclass
> policydb
.p_classes
.nprim
) {
287 printk(KERN_ERR
"security_compute_av: unrecognized class %d\n",
291 tclass_datum
= policydb
.class_val_to_struct
[tclass
- 1];
294 * Initialize the access vectors to the default values.
297 avd
->decided
= 0xffffffff;
299 avd
->auditdeny
= 0xffffffff;
300 avd
->seqno
= latest_granting
;
303 * If a specific type enforcement rule was defined for
304 * this permission check, then use it.
306 avkey
.target_class
= tclass
;
307 avkey
.specified
= AVTAB_AV
;
308 sattr
= &policydb
.type_attr_map
[scontext
->type
- 1];
309 tattr
= &policydb
.type_attr_map
[tcontext
->type
- 1];
310 ebitmap_for_each_bit(sattr
, snode
, i
) {
311 if (!ebitmap_node_get_bit(snode
, i
))
313 ebitmap_for_each_bit(tattr
, tnode
, j
) {
314 if (!ebitmap_node_get_bit(tnode
, j
))
316 avkey
.source_type
= i
+ 1;
317 avkey
.target_type
= j
+ 1;
318 for (node
= avtab_search_node(&policydb
.te_avtab
, &avkey
);
320 node
= avtab_search_node_next(node
, avkey
.specified
)) {
321 if (node
->key
.specified
== AVTAB_ALLOWED
)
322 avd
->allowed
|= node
->datum
.data
;
323 else if (node
->key
.specified
== AVTAB_AUDITALLOW
)
324 avd
->auditallow
|= node
->datum
.data
;
325 else if (node
->key
.specified
== AVTAB_AUDITDENY
)
326 avd
->auditdeny
&= node
->datum
.data
;
329 /* Check conditional av table for additional permissions */
330 cond_compute_av(&policydb
.te_cond_avtab
, &avkey
, avd
);
336 * Remove any permissions prohibited by a constraint (this includes
339 constraint
= tclass_datum
->constraints
;
341 if ((constraint
->permissions
& (avd
->allowed
)) &&
342 !constraint_expr_eval(scontext
, tcontext
, NULL
,
344 avd
->allowed
= (avd
->allowed
) & ~(constraint
->permissions
);
346 constraint
= constraint
->next
;
350 * If checking process transition permission and the
351 * role is changing, then check the (current_role, new_role)
354 if (tclass
== SECCLASS_PROCESS
&&
355 (avd
->allowed
& (PROCESS__TRANSITION
| PROCESS__DYNTRANSITION
)) &&
356 scontext
->role
!= tcontext
->role
) {
357 for (ra
= policydb
.role_allow
; ra
; ra
= ra
->next
) {
358 if (scontext
->role
== ra
->role
&&
359 tcontext
->role
== ra
->new_role
)
363 avd
->allowed
= (avd
->allowed
) & ~(PROCESS__TRANSITION
|
364 PROCESS__DYNTRANSITION
);
370 static int security_validtrans_handle_fail(struct context
*ocontext
,
371 struct context
*ncontext
,
372 struct context
*tcontext
,
375 char *o
= NULL
, *n
= NULL
, *t
= NULL
;
376 u32 olen
, nlen
, tlen
;
378 if (context_struct_to_string(ocontext
, &o
, &olen
) < 0)
380 if (context_struct_to_string(ncontext
, &n
, &nlen
) < 0)
382 if (context_struct_to_string(tcontext
, &t
, &tlen
) < 0)
384 audit_log(current
->audit_context
, GFP_ATOMIC
, AUDIT_SELINUX_ERR
,
385 "security_validate_transition: denied for"
386 " oldcontext=%s newcontext=%s taskcontext=%s tclass=%s",
387 o
, n
, t
, policydb
.p_class_val_to_name
[tclass
-1]);
393 if (!selinux_enforcing
)
398 int security_validate_transition(u32 oldsid
, u32 newsid
, u32 tasksid
,
401 struct context
*ocontext
;
402 struct context
*ncontext
;
403 struct context
*tcontext
;
404 struct class_datum
*tclass_datum
;
405 struct constraint_node
*constraint
;
414 * Remap extended Netlink classes for old policy versions.
415 * Do this here rather than socket_type_to_security_class()
416 * in case a newer policy version is loaded, allowing sockets
417 * to remain in the correct class.
419 if (policydb_loaded_version
< POLICYDB_VERSION_NLCLASS
)
420 if (tclass
>= SECCLASS_NETLINK_ROUTE_SOCKET
&&
421 tclass
<= SECCLASS_NETLINK_DNRT_SOCKET
)
422 tclass
= SECCLASS_NETLINK_SOCKET
;
424 if (!tclass
|| tclass
> policydb
.p_classes
.nprim
) {
425 printk(KERN_ERR
"security_validate_transition: "
426 "unrecognized class %d\n", tclass
);
430 tclass_datum
= policydb
.class_val_to_struct
[tclass
- 1];
432 ocontext
= sidtab_search(&sidtab
, oldsid
);
434 printk(KERN_ERR
"security_validate_transition: "
435 " unrecognized SID %d\n", oldsid
);
440 ncontext
= sidtab_search(&sidtab
, newsid
);
442 printk(KERN_ERR
"security_validate_transition: "
443 " unrecognized SID %d\n", newsid
);
448 tcontext
= sidtab_search(&sidtab
, tasksid
);
450 printk(KERN_ERR
"security_validate_transition: "
451 " unrecognized SID %d\n", tasksid
);
456 constraint
= tclass_datum
->validatetrans
;
458 if (!constraint_expr_eval(ocontext
, ncontext
, tcontext
,
460 rc
= security_validtrans_handle_fail(ocontext
, ncontext
,
464 constraint
= constraint
->next
;
473 * security_compute_av - Compute access vector decisions.
474 * @ssid: source security identifier
475 * @tsid: target security identifier
476 * @tclass: target security class
477 * @requested: requested permissions
478 * @avd: access vector decisions
480 * Compute a set of access vector decisions based on the
481 * SID pair (@ssid, @tsid) for the permissions in @tclass.
482 * Return -%EINVAL if any of the parameters are invalid or %0
483 * if the access vector decisions were computed successfully.
485 int security_compute_av(u32 ssid
,
489 struct av_decision
*avd
)
491 struct context
*scontext
= NULL
, *tcontext
= NULL
;
494 if (!ss_initialized
) {
495 avd
->allowed
= 0xffffffff;
496 avd
->decided
= 0xffffffff;
498 avd
->auditdeny
= 0xffffffff;
499 avd
->seqno
= latest_granting
;
505 scontext
= sidtab_search(&sidtab
, ssid
);
507 printk(KERN_ERR
"security_compute_av: unrecognized SID %d\n",
512 tcontext
= sidtab_search(&sidtab
, tsid
);
514 printk(KERN_ERR
"security_compute_av: unrecognized SID %d\n",
520 rc
= context_struct_compute_av(scontext
, tcontext
, tclass
,
528 * Write the security context string representation of
529 * the context structure `context' into a dynamically
530 * allocated string of the correct size. Set `*scontext'
531 * to point to this string and set `*scontext_len' to
532 * the length of the string.
534 static int context_struct_to_string(struct context
*context
, char **scontext
, u32
*scontext_len
)
541 /* Compute the size of the context. */
542 *scontext_len
+= strlen(policydb
.p_user_val_to_name
[context
->user
- 1]) + 1;
543 *scontext_len
+= strlen(policydb
.p_role_val_to_name
[context
->role
- 1]) + 1;
544 *scontext_len
+= strlen(policydb
.p_type_val_to_name
[context
->type
- 1]) + 1;
545 *scontext_len
+= mls_compute_context_len(context
);
547 /* Allocate space for the context; caller must free this space. */
548 scontextp
= kmalloc(*scontext_len
, GFP_ATOMIC
);
552 *scontext
= scontextp
;
555 * Copy the user name, role name and type name into the context.
557 sprintf(scontextp
, "%s:%s:%s",
558 policydb
.p_user_val_to_name
[context
->user
- 1],
559 policydb
.p_role_val_to_name
[context
->role
- 1],
560 policydb
.p_type_val_to_name
[context
->type
- 1]);
561 scontextp
+= strlen(policydb
.p_user_val_to_name
[context
->user
- 1]) +
562 1 + strlen(policydb
.p_role_val_to_name
[context
->role
- 1]) +
563 1 + strlen(policydb
.p_type_val_to_name
[context
->type
- 1]);
565 mls_sid_to_context(context
, &scontextp
);
572 #include "initial_sid_to_string.h"
575 * security_sid_to_context - Obtain a context for a given SID.
576 * @sid: security identifier, SID
577 * @scontext: security context
578 * @scontext_len: length in bytes
580 * Write the string representation of the context associated with @sid
581 * into a dynamically allocated string of the correct size. Set @scontext
582 * to point to this string and set @scontext_len to the length of the string.
584 int security_sid_to_context(u32 sid
, char **scontext
, u32
*scontext_len
)
586 struct context
*context
;
589 if (!ss_initialized
) {
590 if (sid
<= SECINITSID_NUM
) {
593 *scontext_len
= strlen(initial_sid_to_string
[sid
]) + 1;
594 scontextp
= kmalloc(*scontext_len
,GFP_ATOMIC
);
595 strcpy(scontextp
, initial_sid_to_string
[sid
]);
596 *scontext
= scontextp
;
599 printk(KERN_ERR
"security_sid_to_context: called before initial "
600 "load_policy on unknown SID %d\n", sid
);
605 context
= sidtab_search(&sidtab
, sid
);
607 printk(KERN_ERR
"security_sid_to_context: unrecognized SID "
612 rc
= context_struct_to_string(context
, scontext
, scontext_len
);
620 static int security_context_to_sid_core(char *scontext
, u32 scontext_len
, u32
*sid
, u32 def_sid
)
623 struct context context
;
624 struct role_datum
*role
;
625 struct type_datum
*typdatum
;
626 struct user_datum
*usrdatum
;
627 char *scontextp
, *p
, oldc
;
630 if (!ss_initialized
) {
633 for (i
= 1; i
< SECINITSID_NUM
; i
++) {
634 if (!strcmp(initial_sid_to_string
[i
], scontext
)) {
639 *sid
= SECINITSID_KERNEL
;
644 /* Copy the string so that we can modify the copy as we parse it.
645 The string should already by null terminated, but we append a
646 null suffix to the copy to avoid problems with the existing
647 attr package, which doesn't view the null terminator as part
648 of the attribute value. */
649 scontext2
= kmalloc(scontext_len
+1,GFP_KERNEL
);
654 memcpy(scontext2
, scontext
, scontext_len
);
655 scontext2
[scontext_len
] = 0;
657 context_init(&context
);
662 /* Parse the security context. */
665 scontextp
= (char *) scontext2
;
667 /* Extract the user. */
669 while (*p
&& *p
!= ':')
677 usrdatum
= hashtab_search(policydb
.p_users
.table
, scontextp
);
681 context
.user
= usrdatum
->value
;
685 while (*p
&& *p
!= ':')
693 role
= hashtab_search(policydb
.p_roles
.table
, scontextp
);
696 context
.role
= role
->value
;
700 while (*p
&& *p
!= ':')
705 typdatum
= hashtab_search(policydb
.p_types
.table
, scontextp
);
709 context
.type
= typdatum
->value
;
711 rc
= mls_context_to_sid(oldc
, &p
, &context
, &sidtab
, def_sid
);
715 if ((p
- scontext2
) < scontext_len
) {
720 /* Check the validity of the new context. */
721 if (!policydb_context_isvalid(&policydb
, &context
)) {
725 /* Obtain the new sid. */
726 rc
= sidtab_context_to_sid(&sidtab
, &context
, sid
);
729 context_destroy(&context
);
736 * security_context_to_sid - Obtain a SID for a given security context.
737 * @scontext: security context
738 * @scontext_len: length in bytes
739 * @sid: security identifier, SID
741 * Obtains a SID associated with the security context that
742 * has the string representation specified by @scontext.
743 * Returns -%EINVAL if the context is invalid, -%ENOMEM if insufficient
744 * memory is available, or 0 on success.
746 int security_context_to_sid(char *scontext
, u32 scontext_len
, u32
*sid
)
748 return security_context_to_sid_core(scontext
, scontext_len
,
753 * security_context_to_sid_default - Obtain a SID for a given security context,
754 * falling back to specified default if needed.
756 * @scontext: security context
757 * @scontext_len: length in bytes
758 * @sid: security identifier, SID
759 * @def_sid: default SID to assign on errror
761 * Obtains a SID associated with the security context that
762 * has the string representation specified by @scontext.
763 * The default SID is passed to the MLS layer to be used to allow
764 * kernel labeling of the MLS field if the MLS field is not present
765 * (for upgrading to MLS without full relabel).
766 * Returns -%EINVAL if the context is invalid, -%ENOMEM if insufficient
767 * memory is available, or 0 on success.
769 int security_context_to_sid_default(char *scontext
, u32 scontext_len
, u32
*sid
, u32 def_sid
)
771 return security_context_to_sid_core(scontext
, scontext_len
,
775 static int compute_sid_handle_invalid_context(
776 struct context
*scontext
,
777 struct context
*tcontext
,
779 struct context
*newcontext
)
781 char *s
= NULL
, *t
= NULL
, *n
= NULL
;
782 u32 slen
, tlen
, nlen
;
784 if (context_struct_to_string(scontext
, &s
, &slen
) < 0)
786 if (context_struct_to_string(tcontext
, &t
, &tlen
) < 0)
788 if (context_struct_to_string(newcontext
, &n
, &nlen
) < 0)
790 audit_log(current
->audit_context
, GFP_ATOMIC
, AUDIT_SELINUX_ERR
,
791 "security_compute_sid: invalid context %s"
795 n
, s
, t
, policydb
.p_class_val_to_name
[tclass
-1]);
800 if (!selinux_enforcing
)
805 static int security_compute_sid(u32 ssid
,
811 struct context
*scontext
= NULL
, *tcontext
= NULL
, newcontext
;
812 struct role_trans
*roletr
= NULL
;
813 struct avtab_key avkey
;
814 struct avtab_datum
*avdatum
;
815 struct avtab_node
*node
;
818 if (!ss_initialized
) {
820 case SECCLASS_PROCESS
:
832 scontext
= sidtab_search(&sidtab
, ssid
);
834 printk(KERN_ERR
"security_compute_sid: unrecognized SID %d\n",
839 tcontext
= sidtab_search(&sidtab
, tsid
);
841 printk(KERN_ERR
"security_compute_sid: unrecognized SID %d\n",
847 context_init(&newcontext
);
849 /* Set the user identity. */
851 case AVTAB_TRANSITION
:
853 /* Use the process user identity. */
854 newcontext
.user
= scontext
->user
;
857 /* Use the related object owner. */
858 newcontext
.user
= tcontext
->user
;
862 /* Set the role and type to default values. */
864 case SECCLASS_PROCESS
:
865 /* Use the current role and type of process. */
866 newcontext
.role
= scontext
->role
;
867 newcontext
.type
= scontext
->type
;
870 /* Use the well-defined object role. */
871 newcontext
.role
= OBJECT_R_VAL
;
872 /* Use the type of the related object. */
873 newcontext
.type
= tcontext
->type
;
876 /* Look for a type transition/member/change rule. */
877 avkey
.source_type
= scontext
->type
;
878 avkey
.target_type
= tcontext
->type
;
879 avkey
.target_class
= tclass
;
880 avkey
.specified
= specified
;
881 avdatum
= avtab_search(&policydb
.te_avtab
, &avkey
);
883 /* If no permanent rule, also check for enabled conditional rules */
885 node
= avtab_search_node(&policydb
.te_cond_avtab
, &avkey
);
886 for (; node
!= NULL
; node
= avtab_search_node_next(node
, specified
)) {
887 if (node
->key
.specified
& AVTAB_ENABLED
) {
888 avdatum
= &node
->datum
;
895 /* Use the type from the type transition/member/change rule. */
896 newcontext
.type
= avdatum
->data
;
899 /* Check for class-specific changes. */
901 case SECCLASS_PROCESS
:
902 if (specified
& AVTAB_TRANSITION
) {
903 /* Look for a role transition rule. */
904 for (roletr
= policydb
.role_tr
; roletr
;
905 roletr
= roletr
->next
) {
906 if (roletr
->role
== scontext
->role
&&
907 roletr
->type
== tcontext
->type
) {
908 /* Use the role transition rule. */
909 newcontext
.role
= roletr
->new_role
;
919 /* Set the MLS attributes.
920 This is done last because it may allocate memory. */
921 rc
= mls_compute_sid(scontext
, tcontext
, tclass
, specified
, &newcontext
);
925 /* Check the validity of the context. */
926 if (!policydb_context_isvalid(&policydb
, &newcontext
)) {
927 rc
= compute_sid_handle_invalid_context(scontext
,
934 /* Obtain the sid for the context. */
935 rc
= sidtab_context_to_sid(&sidtab
, &newcontext
, out_sid
);
938 context_destroy(&newcontext
);
944 * security_transition_sid - Compute the SID for a new subject/object.
945 * @ssid: source security identifier
946 * @tsid: target security identifier
947 * @tclass: target security class
948 * @out_sid: security identifier for new subject/object
950 * Compute a SID to use for labeling a new subject or object in the
951 * class @tclass based on a SID pair (@ssid, @tsid).
952 * Return -%EINVAL if any of the parameters are invalid, -%ENOMEM
953 * if insufficient memory is available, or %0 if the new SID was
954 * computed successfully.
956 int security_transition_sid(u32 ssid
,
961 return security_compute_sid(ssid
, tsid
, tclass
, AVTAB_TRANSITION
, out_sid
);
965 * security_member_sid - Compute the SID for member selection.
966 * @ssid: source security identifier
967 * @tsid: target security identifier
968 * @tclass: target security class
969 * @out_sid: security identifier for selected member
971 * Compute a SID to use when selecting a member of a polyinstantiated
972 * object of class @tclass based on a SID pair (@ssid, @tsid).
973 * Return -%EINVAL if any of the parameters are invalid, -%ENOMEM
974 * if insufficient memory is available, or %0 if the SID was
975 * computed successfully.
977 int security_member_sid(u32 ssid
,
982 return security_compute_sid(ssid
, tsid
, tclass
, AVTAB_MEMBER
, out_sid
);
986 * security_change_sid - Compute the SID for object relabeling.
987 * @ssid: source security identifier
988 * @tsid: target security identifier
989 * @tclass: target security class
990 * @out_sid: security identifier for selected member
992 * Compute a SID to use for relabeling an object of class @tclass
993 * based on a SID pair (@ssid, @tsid).
994 * Return -%EINVAL if any of the parameters are invalid, -%ENOMEM
995 * if insufficient memory is available, or %0 if the SID was
996 * computed successfully.
998 int security_change_sid(u32 ssid
,
1003 return security_compute_sid(ssid
, tsid
, tclass
, AVTAB_CHANGE
, out_sid
);
1007 * Verify that each permission that is defined under the
1008 * existing policy is still defined with the same value
1009 * in the new policy.
1011 static int validate_perm(void *key
, void *datum
, void *p
)
1014 struct perm_datum
*perdatum
, *perdatum2
;
1021 perdatum2
= hashtab_search(h
, key
);
1023 printk(KERN_ERR
"security: permission %s disappeared",
1028 if (perdatum
->value
!= perdatum2
->value
) {
1029 printk(KERN_ERR
"security: the value of permission %s changed",
1038 * Verify that each class that is defined under the
1039 * existing policy is still defined with the same
1040 * attributes in the new policy.
1042 static int validate_class(void *key
, void *datum
, void *p
)
1044 struct policydb
*newp
;
1045 struct class_datum
*cladatum
, *cladatum2
;
1051 cladatum2
= hashtab_search(newp
->p_classes
.table
, key
);
1053 printk(KERN_ERR
"security: class %s disappeared\n",
1058 if (cladatum
->value
!= cladatum2
->value
) {
1059 printk(KERN_ERR
"security: the value of class %s changed\n",
1064 if ((cladatum
->comdatum
&& !cladatum2
->comdatum
) ||
1065 (!cladatum
->comdatum
&& cladatum2
->comdatum
)) {
1066 printk(KERN_ERR
"security: the inherits clause for the access "
1067 "vector definition for class %s changed\n", (char *)key
);
1071 if (cladatum
->comdatum
) {
1072 rc
= hashtab_map(cladatum
->comdatum
->permissions
.table
, validate_perm
,
1073 cladatum2
->comdatum
->permissions
.table
);
1075 printk(" in the access vector definition for class "
1076 "%s\n", (char *)key
);
1080 rc
= hashtab_map(cladatum
->permissions
.table
, validate_perm
,
1081 cladatum2
->permissions
.table
);
1083 printk(" in access vector definition for class %s\n",
1089 /* Clone the SID into the new SID table. */
1090 static int clone_sid(u32 sid
,
1091 struct context
*context
,
1094 struct sidtab
*s
= arg
;
1096 return sidtab_insert(s
, sid
, context
);
1099 static inline int convert_context_handle_invalid_context(struct context
*context
)
1103 if (selinux_enforcing
) {
1109 context_struct_to_string(context
, &s
, &len
);
1110 printk(KERN_ERR
"security: context %s is invalid\n", s
);
1116 struct convert_context_args
{
1117 struct policydb
*oldp
;
1118 struct policydb
*newp
;
1122 * Convert the values in the security context
1123 * structure `c' from the values specified
1124 * in the policy `p->oldp' to the values specified
1125 * in the policy `p->newp'. Verify that the
1126 * context is valid under the new policy.
1128 static int convert_context(u32 key
,
1132 struct convert_context_args
*args
;
1133 struct context oldc
;
1134 struct role_datum
*role
;
1135 struct type_datum
*typdatum
;
1136 struct user_datum
*usrdatum
;
1143 rc
= context_cpy(&oldc
, c
);
1149 /* Convert the user. */
1150 usrdatum
= hashtab_search(args
->newp
->p_users
.table
,
1151 args
->oldp
->p_user_val_to_name
[c
->user
- 1]);
1155 c
->user
= usrdatum
->value
;
1157 /* Convert the role. */
1158 role
= hashtab_search(args
->newp
->p_roles
.table
,
1159 args
->oldp
->p_role_val_to_name
[c
->role
- 1]);
1163 c
->role
= role
->value
;
1165 /* Convert the type. */
1166 typdatum
= hashtab_search(args
->newp
->p_types
.table
,
1167 args
->oldp
->p_type_val_to_name
[c
->type
- 1]);
1171 c
->type
= typdatum
->value
;
1173 rc
= mls_convert_context(args
->oldp
, args
->newp
, c
);
1177 /* Check the validity of the new context. */
1178 if (!policydb_context_isvalid(args
->newp
, c
)) {
1179 rc
= convert_context_handle_invalid_context(&oldc
);
1184 context_destroy(&oldc
);
1188 context_struct_to_string(&oldc
, &s
, &len
);
1189 context_destroy(&oldc
);
1190 printk(KERN_ERR
"security: invalidating context %s\n", s
);
1195 extern void selinux_complete_init(void);
1198 * security_load_policy - Load a security policy configuration.
1199 * @data: binary policy data
1200 * @len: length of data in bytes
1202 * Load a new set of security policy configuration data,
1203 * validate it and convert the SID table as necessary.
1204 * This function will flush the access vector cache after
1205 * loading the new policy.
1207 int security_load_policy(void *data
, size_t len
)
1209 struct policydb oldpolicydb
, newpolicydb
;
1210 struct sidtab oldsidtab
, newsidtab
;
1211 struct convert_context_args args
;
1214 struct policy_file file
= { data
, len
}, *fp
= &file
;
1218 if (!ss_initialized
) {
1220 if (policydb_read(&policydb
, fp
)) {
1222 avtab_cache_destroy();
1225 if (policydb_load_isids(&policydb
, &sidtab
)) {
1227 policydb_destroy(&policydb
);
1228 avtab_cache_destroy();
1231 policydb_loaded_version
= policydb
.policyvers
;
1233 seqno
= ++latest_granting
;
1235 selinux_complete_init();
1236 avc_ss_reset(seqno
);
1237 selnl_notify_policyload(seqno
);
1242 sidtab_hash_eval(&sidtab
, "sids");
1245 if (policydb_read(&newpolicydb
, fp
)) {
1250 sidtab_init(&newsidtab
);
1252 /* Verify that the existing classes did not change. */
1253 if (hashtab_map(policydb
.p_classes
.table
, validate_class
, &newpolicydb
)) {
1254 printk(KERN_ERR
"security: the definition of an existing "
1260 /* Clone the SID table. */
1261 sidtab_shutdown(&sidtab
);
1262 if (sidtab_map(&sidtab
, clone_sid
, &newsidtab
)) {
1267 /* Convert the internal representations of contexts
1268 in the new SID table and remove invalid SIDs. */
1269 args
.oldp
= &policydb
;
1270 args
.newp
= &newpolicydb
;
1271 sidtab_map_remove_on_error(&newsidtab
, convert_context
, &args
);
1273 /* Save the old policydb and SID table to free later. */
1274 memcpy(&oldpolicydb
, &policydb
, sizeof policydb
);
1275 sidtab_set(&oldsidtab
, &sidtab
);
1277 /* Install the new policydb and SID table. */
1279 memcpy(&policydb
, &newpolicydb
, sizeof policydb
);
1280 sidtab_set(&sidtab
, &newsidtab
);
1281 seqno
= ++latest_granting
;
1282 policydb_loaded_version
= policydb
.policyvers
;
1286 /* Free the old policydb and SID table. */
1287 policydb_destroy(&oldpolicydb
);
1288 sidtab_destroy(&oldsidtab
);
1290 avc_ss_reset(seqno
);
1291 selnl_notify_policyload(seqno
);
1297 sidtab_destroy(&newsidtab
);
1298 policydb_destroy(&newpolicydb
);
1304 * security_port_sid - Obtain the SID for a port.
1305 * @domain: communication domain aka address family
1306 * @type: socket type
1307 * @protocol: protocol number
1308 * @port: port number
1309 * @out_sid: security identifier
1311 int security_port_sid(u16 domain
,
1322 c
= policydb
.ocontexts
[OCON_PORT
];
1324 if (c
->u
.port
.protocol
== protocol
&&
1325 c
->u
.port
.low_port
<= port
&&
1326 c
->u
.port
.high_port
>= port
)
1333 rc
= sidtab_context_to_sid(&sidtab
,
1339 *out_sid
= c
->sid
[0];
1341 *out_sid
= SECINITSID_PORT
;
1350 * security_netif_sid - Obtain the SID for a network interface.
1351 * @name: interface name
1352 * @if_sid: interface SID
1353 * @msg_sid: default SID for received packets
1355 int security_netif_sid(char *name
,
1364 c
= policydb
.ocontexts
[OCON_NETIF
];
1366 if (strcmp(name
, c
->u
.name
) == 0)
1372 if (!c
->sid
[0] || !c
->sid
[1]) {
1373 rc
= sidtab_context_to_sid(&sidtab
,
1378 rc
= sidtab_context_to_sid(&sidtab
,
1384 *if_sid
= c
->sid
[0];
1385 *msg_sid
= c
->sid
[1];
1387 *if_sid
= SECINITSID_NETIF
;
1388 *msg_sid
= SECINITSID_NETMSG
;
1396 static int match_ipv6_addrmask(u32
*input
, u32
*addr
, u32
*mask
)
1400 for(i
= 0; i
< 4; i
++)
1401 if(addr
[i
] != (input
[i
] & mask
[i
])) {
1410 * security_node_sid - Obtain the SID for a node (host).
1411 * @domain: communication domain aka address family
1413 * @addrlen: address length in bytes
1414 * @out_sid: security identifier
1416 int security_node_sid(u16 domain
,
1430 if (addrlen
!= sizeof(u32
)) {
1435 addr
= *((u32
*)addrp
);
1437 c
= policydb
.ocontexts
[OCON_NODE
];
1439 if (c
->u
.node
.addr
== (addr
& c
->u
.node
.mask
))
1447 if (addrlen
!= sizeof(u64
) * 2) {
1451 c
= policydb
.ocontexts
[OCON_NODE6
];
1453 if (match_ipv6_addrmask(addrp
, c
->u
.node6
.addr
,
1461 *out_sid
= SECINITSID_NODE
;
1467 rc
= sidtab_context_to_sid(&sidtab
,
1473 *out_sid
= c
->sid
[0];
1475 *out_sid
= SECINITSID_NODE
;
1486 * security_get_user_sids - Obtain reachable SIDs for a user.
1487 * @fromsid: starting SID
1488 * @username: username
1489 * @sids: array of reachable SIDs for user
1490 * @nel: number of elements in @sids
1492 * Generate the set of SIDs for legal security contexts
1493 * for a given user that can be reached by @fromsid.
1494 * Set *@sids to point to a dynamically allocated
1495 * array containing the set of SIDs. Set *@nel to the
1496 * number of elements in the array.
1499 int security_get_user_sids(u32 fromsid
,
1504 struct context
*fromcon
, usercon
;
1505 u32
*mysids
, *mysids2
, sid
;
1506 u32 mynel
= 0, maxnel
= SIDS_NEL
;
1507 struct user_datum
*user
;
1508 struct role_datum
*role
;
1509 struct av_decision avd
;
1510 struct ebitmap_node
*rnode
, *tnode
;
1513 if (!ss_initialized
) {
1521 fromcon
= sidtab_search(&sidtab
, fromsid
);
1527 user
= hashtab_search(policydb
.p_users
.table
, username
);
1532 usercon
.user
= user
->value
;
1534 mysids
= kcalloc(maxnel
, sizeof(*mysids
), GFP_ATOMIC
);
1540 ebitmap_for_each_bit(&user
->roles
, rnode
, i
) {
1541 if (!ebitmap_node_get_bit(rnode
, i
))
1543 role
= policydb
.role_val_to_struct
[i
];
1545 ebitmap_for_each_bit(&role
->types
, tnode
, j
) {
1546 if (!ebitmap_node_get_bit(tnode
, j
))
1550 if (mls_setup_user_range(fromcon
, user
, &usercon
))
1553 rc
= context_struct_compute_av(fromcon
, &usercon
,
1555 PROCESS__TRANSITION
,
1557 if (rc
|| !(avd
.allowed
& PROCESS__TRANSITION
))
1559 rc
= sidtab_context_to_sid(&sidtab
, &usercon
, &sid
);
1564 if (mynel
< maxnel
) {
1565 mysids
[mynel
++] = sid
;
1568 mysids2
= kcalloc(maxnel
, sizeof(*mysids2
), GFP_ATOMIC
);
1574 memcpy(mysids2
, mysids
, mynel
* sizeof(*mysids2
));
1577 mysids
[mynel
++] = sid
;
1592 * security_genfs_sid - Obtain a SID for a file in a filesystem
1593 * @fstype: filesystem type
1594 * @path: path from root of mount
1595 * @sclass: file security class
1596 * @sid: SID for path
1598 * Obtain a SID to use for a file in a filesystem that
1599 * cannot support xattr or use a fixed labeling behavior like
1600 * transition SIDs or task SIDs.
1602 int security_genfs_sid(const char *fstype
,
1608 struct genfs
*genfs
;
1610 int rc
= 0, cmp
= 0;
1614 for (genfs
= policydb
.genfs
; genfs
; genfs
= genfs
->next
) {
1615 cmp
= strcmp(fstype
, genfs
->fstype
);
1620 if (!genfs
|| cmp
) {
1621 *sid
= SECINITSID_UNLABELED
;
1626 for (c
= genfs
->head
; c
; c
= c
->next
) {
1627 len
= strlen(c
->u
.name
);
1628 if ((!c
->v
.sclass
|| sclass
== c
->v
.sclass
) &&
1629 (strncmp(c
->u
.name
, path
, len
) == 0))
1634 *sid
= SECINITSID_UNLABELED
;
1640 rc
= sidtab_context_to_sid(&sidtab
,
1654 * security_fs_use - Determine how to handle labeling for a filesystem.
1655 * @fstype: filesystem type
1656 * @behavior: labeling behavior
1657 * @sid: SID for filesystem (superblock)
1659 int security_fs_use(
1661 unsigned int *behavior
,
1669 c
= policydb
.ocontexts
[OCON_FSUSE
];
1671 if (strcmp(fstype
, c
->u
.name
) == 0)
1677 *behavior
= c
->v
.behavior
;
1679 rc
= sidtab_context_to_sid(&sidtab
,
1687 rc
= security_genfs_sid(fstype
, "/", SECCLASS_DIR
, sid
);
1689 *behavior
= SECURITY_FS_USE_NONE
;
1692 *behavior
= SECURITY_FS_USE_GENFS
;
1701 int security_get_bools(int *len
, char ***names
, int **values
)
1703 int i
, rc
= -ENOMEM
;
1709 *len
= policydb
.p_bools
.nprim
;
1715 *names
= kcalloc(*len
, sizeof(char*), GFP_ATOMIC
);
1719 *values
= kcalloc(*len
, sizeof(int), GFP_ATOMIC
);
1723 for (i
= 0; i
< *len
; i
++) {
1725 (*values
)[i
] = policydb
.bool_val_to_struct
[i
]->state
;
1726 name_len
= strlen(policydb
.p_bool_val_to_name
[i
]) + 1;
1727 (*names
)[i
] = kmalloc(sizeof(char) * name_len
, GFP_ATOMIC
);
1730 strncpy((*names
)[i
], policydb
.p_bool_val_to_name
[i
], name_len
);
1731 (*names
)[i
][name_len
- 1] = 0;
1739 for (i
= 0; i
< *len
; i
++)
1747 int security_set_bools(int len
, int *values
)
1750 int lenp
, seqno
= 0;
1751 struct cond_node
*cur
;
1755 lenp
= policydb
.p_bools
.nprim
;
1761 printk(KERN_INFO
"security: committed booleans { ");
1762 for (i
= 0; i
< len
; i
++) {
1764 policydb
.bool_val_to_struct
[i
]->state
= 1;
1766 policydb
.bool_val_to_struct
[i
]->state
= 0;
1770 printk("%s:%d", policydb
.p_bool_val_to_name
[i
],
1771 policydb
.bool_val_to_struct
[i
]->state
);
1775 for (cur
= policydb
.cond_list
; cur
!= NULL
; cur
= cur
->next
) {
1776 rc
= evaluate_cond_node(&policydb
, cur
);
1781 seqno
= ++latest_granting
;
1786 avc_ss_reset(seqno
);
1787 selnl_notify_policyload(seqno
);
1792 int security_get_bool_value(int bool)
1799 len
= policydb
.p_bools
.nprim
;
1805 rc
= policydb
.bool_val_to_struct
[bool]->state
;