selinux: change handling of invalid classes (Was: Re: 2.6.26-rc5-mm1 selinux whine)
[pandora-kernel.git] / security / selinux / ss / services.c
1 /*
2  * Implementation of the security services.
3  *
4  * Authors : Stephen Smalley, <sds@epoch.ncsc.mil>
5  *           James Morris <jmorris@redhat.com>
6  *
7  * Updated: Trusted Computer Solutions, Inc. <dgoeddel@trustedcs.com>
8  *
9  *      Support for enhanced MLS infrastructure.
10  *      Support for context based audit filters.
11  *
12  * Updated: Frank Mayer <mayerf@tresys.com> and Karl MacMillan <kmacmillan@tresys.com>
13  *
14  *      Added conditional policy language extensions
15  *
16  * Updated: Hewlett-Packard <paul.moore@hp.com>
17  *
18  *      Added support for NetLabel
19  *      Added support for the policy capability bitmap
20  *
21  * Updated: Chad Sellers <csellers@tresys.com>
22  *
23  *  Added validation of kernel classes and permissions
24  *
25  * Copyright (C) 2006, 2007 Hewlett-Packard Development Company, L.P.
26  * Copyright (C) 2004-2006 Trusted Computer Solutions, Inc.
27  * Copyright (C) 2003 - 2004, 2006 Tresys Technology, LLC
28  * Copyright (C) 2003 Red Hat, Inc., James Morris <jmorris@redhat.com>
29  *      This program is free software; you can redistribute it and/or modify
30  *      it under the terms of the GNU General Public License as published by
31  *      the Free Software Foundation, version 2.
32  */
33 #include <linux/kernel.h>
34 #include <linux/slab.h>
35 #include <linux/string.h>
36 #include <linux/spinlock.h>
37 #include <linux/rcupdate.h>
38 #include <linux/errno.h>
39 #include <linux/in.h>
40 #include <linux/sched.h>
41 #include <linux/audit.h>
42 #include <linux/mutex.h>
43 #include <linux/selinux.h>
44 #include <net/netlabel.h>
45
46 #include "flask.h"
47 #include "avc.h"
48 #include "avc_ss.h"
49 #include "security.h"
50 #include "context.h"
51 #include "policydb.h"
52 #include "sidtab.h"
53 #include "services.h"
54 #include "conditional.h"
55 #include "mls.h"
56 #include "objsec.h"
57 #include "netlabel.h"
58 #include "xfrm.h"
59 #include "ebitmap.h"
60 #include "audit.h"
61
62 extern void selnl_notify_policyload(u32 seqno);
63 unsigned int policydb_loaded_version;
64
65 int selinux_policycap_netpeer;
66 int selinux_policycap_openperm;
67
68 /*
69  * This is declared in avc.c
70  */
71 extern const struct selinux_class_perm selinux_class_perm;
72
73 static DEFINE_RWLOCK(policy_rwlock);
74
75 static struct sidtab sidtab;
76 struct policydb policydb;
77 int ss_initialized;
78
79 /*
80  * The largest sequence number that has been used when
81  * providing an access decision to the access vector cache.
82  * The sequence number only changes when a policy change
83  * occurs.
84  */
85 static u32 latest_granting;
86
87 /* Forward declaration. */
88 static int context_struct_to_string(struct context *context, char **scontext,
89                                     u32 *scontext_len);
90
91 /*
92  * Return the boolean value of a constraint expression
93  * when it is applied to the specified source and target
94  * security contexts.
95  *
96  * xcontext is a special beast...  It is used by the validatetrans rules
97  * only.  For these rules, scontext is the context before the transition,
98  * tcontext is the context after the transition, and xcontext is the context
99  * of the process performing the transition.  All other callers of
100  * constraint_expr_eval should pass in NULL for xcontext.
101  */
102 static int constraint_expr_eval(struct context *scontext,
103                                 struct context *tcontext,
104                                 struct context *xcontext,
105                                 struct constraint_expr *cexpr)
106 {
107         u32 val1, val2;
108         struct context *c;
109         struct role_datum *r1, *r2;
110         struct mls_level *l1, *l2;
111         struct constraint_expr *e;
112         int s[CEXPR_MAXDEPTH];
113         int sp = -1;
114
115         for (e = cexpr; e; e = e->next) {
116                 switch (e->expr_type) {
117                 case CEXPR_NOT:
118                         BUG_ON(sp < 0);
119                         s[sp] = !s[sp];
120                         break;
121                 case CEXPR_AND:
122                         BUG_ON(sp < 1);
123                         sp--;
124                         s[sp] &= s[sp+1];
125                         break;
126                 case CEXPR_OR:
127                         BUG_ON(sp < 1);
128                         sp--;
129                         s[sp] |= s[sp+1];
130                         break;
131                 case CEXPR_ATTR:
132                         if (sp == (CEXPR_MAXDEPTH-1))
133                                 return 0;
134                         switch (e->attr) {
135                         case CEXPR_USER:
136                                 val1 = scontext->user;
137                                 val2 = tcontext->user;
138                                 break;
139                         case CEXPR_TYPE:
140                                 val1 = scontext->type;
141                                 val2 = tcontext->type;
142                                 break;
143                         case CEXPR_ROLE:
144                                 val1 = scontext->role;
145                                 val2 = tcontext->role;
146                                 r1 = policydb.role_val_to_struct[val1 - 1];
147                                 r2 = policydb.role_val_to_struct[val2 - 1];
148                                 switch (e->op) {
149                                 case CEXPR_DOM:
150                                         s[++sp] = ebitmap_get_bit(&r1->dominates,
151                                                                   val2 - 1);
152                                         continue;
153                                 case CEXPR_DOMBY:
154                                         s[++sp] = ebitmap_get_bit(&r2->dominates,
155                                                                   val1 - 1);
156                                         continue;
157                                 case CEXPR_INCOMP:
158                                         s[++sp] = (!ebitmap_get_bit(&r1->dominates,
159                                                                     val2 - 1) &&
160                                                    !ebitmap_get_bit(&r2->dominates,
161                                                                     val1 - 1));
162                                         continue;
163                                 default:
164                                         break;
165                                 }
166                                 break;
167                         case CEXPR_L1L2:
168                                 l1 = &(scontext->range.level[0]);
169                                 l2 = &(tcontext->range.level[0]);
170                                 goto mls_ops;
171                         case CEXPR_L1H2:
172                                 l1 = &(scontext->range.level[0]);
173                                 l2 = &(tcontext->range.level[1]);
174                                 goto mls_ops;
175                         case CEXPR_H1L2:
176                                 l1 = &(scontext->range.level[1]);
177                                 l2 = &(tcontext->range.level[0]);
178                                 goto mls_ops;
179                         case CEXPR_H1H2:
180                                 l1 = &(scontext->range.level[1]);
181                                 l2 = &(tcontext->range.level[1]);
182                                 goto mls_ops;
183                         case CEXPR_L1H1:
184                                 l1 = &(scontext->range.level[0]);
185                                 l2 = &(scontext->range.level[1]);
186                                 goto mls_ops;
187                         case CEXPR_L2H2:
188                                 l1 = &(tcontext->range.level[0]);
189                                 l2 = &(tcontext->range.level[1]);
190                                 goto mls_ops;
191 mls_ops:
192                         switch (e->op) {
193                         case CEXPR_EQ:
194                                 s[++sp] = mls_level_eq(l1, l2);
195                                 continue;
196                         case CEXPR_NEQ:
197                                 s[++sp] = !mls_level_eq(l1, l2);
198                                 continue;
199                         case CEXPR_DOM:
200                                 s[++sp] = mls_level_dom(l1, l2);
201                                 continue;
202                         case CEXPR_DOMBY:
203                                 s[++sp] = mls_level_dom(l2, l1);
204                                 continue;
205                         case CEXPR_INCOMP:
206                                 s[++sp] = mls_level_incomp(l2, l1);
207                                 continue;
208                         default:
209                                 BUG();
210                                 return 0;
211                         }
212                         break;
213                         default:
214                                 BUG();
215                                 return 0;
216                         }
217
218                         switch (e->op) {
219                         case CEXPR_EQ:
220                                 s[++sp] = (val1 == val2);
221                                 break;
222                         case CEXPR_NEQ:
223                                 s[++sp] = (val1 != val2);
224                                 break;
225                         default:
226                                 BUG();
227                                 return 0;
228                         }
229                         break;
230                 case CEXPR_NAMES:
231                         if (sp == (CEXPR_MAXDEPTH-1))
232                                 return 0;
233                         c = scontext;
234                         if (e->attr & CEXPR_TARGET)
235                                 c = tcontext;
236                         else if (e->attr & CEXPR_XTARGET) {
237                                 c = xcontext;
238                                 if (!c) {
239                                         BUG();
240                                         return 0;
241                                 }
242                         }
243                         if (e->attr & CEXPR_USER)
244                                 val1 = c->user;
245                         else if (e->attr & CEXPR_ROLE)
246                                 val1 = c->role;
247                         else if (e->attr & CEXPR_TYPE)
248                                 val1 = c->type;
249                         else {
250                                 BUG();
251                                 return 0;
252                         }
253
254                         switch (e->op) {
255                         case CEXPR_EQ:
256                                 s[++sp] = ebitmap_get_bit(&e->names, val1 - 1);
257                                 break;
258                         case CEXPR_NEQ:
259                                 s[++sp] = !ebitmap_get_bit(&e->names, val1 - 1);
260                                 break;
261                         default:
262                                 BUG();
263                                 return 0;
264                         }
265                         break;
266                 default:
267                         BUG();
268                         return 0;
269                 }
270         }
271
272         BUG_ON(sp != 0);
273         return s[0];
274 }
275
276 /*
277  * Compute access vectors based on a context structure pair for
278  * the permissions in a particular class.
279  */
280 static int context_struct_compute_av(struct context *scontext,
281                                      struct context *tcontext,
282                                      u16 tclass,
283                                      u32 requested,
284                                      struct av_decision *avd)
285 {
286         struct constraint_node *constraint;
287         struct role_allow *ra;
288         struct avtab_key avkey;
289         struct avtab_node *node;
290         struct class_datum *tclass_datum;
291         struct ebitmap *sattr, *tattr;
292         struct ebitmap_node *snode, *tnode;
293         const struct selinux_class_perm *kdefs = &selinux_class_perm;
294         unsigned int i, j;
295
296         /*
297          * Remap extended Netlink classes for old policy versions.
298          * Do this here rather than socket_type_to_security_class()
299          * in case a newer policy version is loaded, allowing sockets
300          * to remain in the correct class.
301          */
302         if (policydb_loaded_version < POLICYDB_VERSION_NLCLASS)
303                 if (tclass >= SECCLASS_NETLINK_ROUTE_SOCKET &&
304                     tclass <= SECCLASS_NETLINK_DNRT_SOCKET)
305                         tclass = SECCLASS_NETLINK_SOCKET;
306
307         /*
308          * Initialize the access vectors to the default values.
309          */
310         avd->allowed = 0;
311         avd->decided = 0xffffffff;
312         avd->auditallow = 0;
313         avd->auditdeny = 0xffffffff;
314         avd->seqno = latest_granting;
315
316         /*
317          * Check for all the invalid cases.
318          * - tclass 0
319          * - tclass > policy and > kernel
320          * - tclass > policy but is a userspace class
321          * - tclass > policy but we do not allow unknowns
322          */
323         if (unlikely(!tclass))
324                 goto inval_class;
325         if (unlikely(tclass > policydb.p_classes.nprim))
326                 if (tclass > kdefs->cts_len ||
327                     !kdefs->class_to_string[tclass] ||
328                     !policydb.allow_unknown)
329                         goto inval_class;
330
331         /*
332          * Kernel class and we allow unknown so pad the allow decision
333          * the pad will be all 1 for unknown classes.
334          */
335         if (tclass <= kdefs->cts_len && policydb.allow_unknown)
336                 avd->allowed = policydb.undefined_perms[tclass - 1];
337
338         /*
339          * Not in policy. Since decision is completed (all 1 or all 0) return.
340          */
341         if (unlikely(tclass > policydb.p_classes.nprim))
342                 return 0;
343
344         tclass_datum = policydb.class_val_to_struct[tclass - 1];
345
346         /*
347          * If a specific type enforcement rule was defined for
348          * this permission check, then use it.
349          */
350         avkey.target_class = tclass;
351         avkey.specified = AVTAB_AV;
352         sattr = &policydb.type_attr_map[scontext->type - 1];
353         tattr = &policydb.type_attr_map[tcontext->type - 1];
354         ebitmap_for_each_positive_bit(sattr, snode, i) {
355                 ebitmap_for_each_positive_bit(tattr, tnode, j) {
356                         avkey.source_type = i + 1;
357                         avkey.target_type = j + 1;
358                         for (node = avtab_search_node(&policydb.te_avtab, &avkey);
359                              node != NULL;
360                              node = avtab_search_node_next(node, avkey.specified)) {
361                                 if (node->key.specified == AVTAB_ALLOWED)
362                                         avd->allowed |= node->datum.data;
363                                 else if (node->key.specified == AVTAB_AUDITALLOW)
364                                         avd->auditallow |= node->datum.data;
365                                 else if (node->key.specified == AVTAB_AUDITDENY)
366                                         avd->auditdeny &= node->datum.data;
367                         }
368
369                         /* Check conditional av table for additional permissions */
370                         cond_compute_av(&policydb.te_cond_avtab, &avkey, avd);
371
372                 }
373         }
374
375         /*
376          * Remove any permissions prohibited by a constraint (this includes
377          * the MLS policy).
378          */
379         constraint = tclass_datum->constraints;
380         while (constraint) {
381                 if ((constraint->permissions & (avd->allowed)) &&
382                     !constraint_expr_eval(scontext, tcontext, NULL,
383                                           constraint->expr)) {
384                         avd->allowed = (avd->allowed) & ~(constraint->permissions);
385                 }
386                 constraint = constraint->next;
387         }
388
389         /*
390          * If checking process transition permission and the
391          * role is changing, then check the (current_role, new_role)
392          * pair.
393          */
394         if (tclass == SECCLASS_PROCESS &&
395             (avd->allowed & (PROCESS__TRANSITION | PROCESS__DYNTRANSITION)) &&
396             scontext->role != tcontext->role) {
397                 for (ra = policydb.role_allow; ra; ra = ra->next) {
398                         if (scontext->role == ra->role &&
399                             tcontext->role == ra->new_role)
400                                 break;
401                 }
402                 if (!ra)
403                         avd->allowed = (avd->allowed) & ~(PROCESS__TRANSITION |
404                                                         PROCESS__DYNTRANSITION);
405         }
406
407         return 0;
408
409 inval_class:
410         if (!tclass || tclass > kdefs->cts_len ||
411             !kdefs->class_to_string[tclass]) {
412                 if (printk_ratelimit())
413                         printk(KERN_ERR "SELinux: %s:  unrecognized class %d\n",
414                                __func__, tclass);
415                 return -EINVAL;
416         }
417
418         /*
419          * Known to the kernel, but not to the policy.
420          * Handle as a denial (allowed is 0).
421          */
422         return 0;
423 }
424
425 /*
426  * Given a sid find if the type has the permissive flag set
427  */
428 int security_permissive_sid(u32 sid)
429 {
430         struct context *context;
431         u32 type;
432         int rc;
433
434         read_lock(&policy_rwlock);
435
436         context = sidtab_search(&sidtab, sid);
437         BUG_ON(!context);
438
439         type = context->type;
440         /*
441          * we are intentionally using type here, not type-1, the 0th bit may
442          * someday indicate that we are globally setting permissive in policy.
443          */
444         rc = ebitmap_get_bit(&policydb.permissive_map, type);
445
446         read_unlock(&policy_rwlock);
447         return rc;
448 }
449
450 static int security_validtrans_handle_fail(struct context *ocontext,
451                                            struct context *ncontext,
452                                            struct context *tcontext,
453                                            u16 tclass)
454 {
455         char *o = NULL, *n = NULL, *t = NULL;
456         u32 olen, nlen, tlen;
457
458         if (context_struct_to_string(ocontext, &o, &olen) < 0)
459                 goto out;
460         if (context_struct_to_string(ncontext, &n, &nlen) < 0)
461                 goto out;
462         if (context_struct_to_string(tcontext, &t, &tlen) < 0)
463                 goto out;
464         audit_log(current->audit_context, GFP_ATOMIC, AUDIT_SELINUX_ERR,
465                   "security_validate_transition:  denied for"
466                   " oldcontext=%s newcontext=%s taskcontext=%s tclass=%s",
467                   o, n, t, policydb.p_class_val_to_name[tclass-1]);
468 out:
469         kfree(o);
470         kfree(n);
471         kfree(t);
472
473         if (!selinux_enforcing)
474                 return 0;
475         return -EPERM;
476 }
477
478 int security_validate_transition(u32 oldsid, u32 newsid, u32 tasksid,
479                                  u16 tclass)
480 {
481         struct context *ocontext;
482         struct context *ncontext;
483         struct context *tcontext;
484         struct class_datum *tclass_datum;
485         struct constraint_node *constraint;
486         int rc = 0;
487
488         if (!ss_initialized)
489                 return 0;
490
491         read_lock(&policy_rwlock);
492
493         /*
494          * Remap extended Netlink classes for old policy versions.
495          * Do this here rather than socket_type_to_security_class()
496          * in case a newer policy version is loaded, allowing sockets
497          * to remain in the correct class.
498          */
499         if (policydb_loaded_version < POLICYDB_VERSION_NLCLASS)
500                 if (tclass >= SECCLASS_NETLINK_ROUTE_SOCKET &&
501                     tclass <= SECCLASS_NETLINK_DNRT_SOCKET)
502                         tclass = SECCLASS_NETLINK_SOCKET;
503
504         if (!tclass || tclass > policydb.p_classes.nprim) {
505                 printk(KERN_ERR "SELinux: %s:  unrecognized class %d\n",
506                         __func__, tclass);
507                 rc = -EINVAL;
508                 goto out;
509         }
510         tclass_datum = policydb.class_val_to_struct[tclass - 1];
511
512         ocontext = sidtab_search(&sidtab, oldsid);
513         if (!ocontext) {
514                 printk(KERN_ERR "SELinux: %s:  unrecognized SID %d\n",
515                         __func__, oldsid);
516                 rc = -EINVAL;
517                 goto out;
518         }
519
520         ncontext = sidtab_search(&sidtab, newsid);
521         if (!ncontext) {
522                 printk(KERN_ERR "SELinux: %s:  unrecognized SID %d\n",
523                         __func__, newsid);
524                 rc = -EINVAL;
525                 goto out;
526         }
527
528         tcontext = sidtab_search(&sidtab, tasksid);
529         if (!tcontext) {
530                 printk(KERN_ERR "SELinux: %s:  unrecognized SID %d\n",
531                         __func__, tasksid);
532                 rc = -EINVAL;
533                 goto out;
534         }
535
536         constraint = tclass_datum->validatetrans;
537         while (constraint) {
538                 if (!constraint_expr_eval(ocontext, ncontext, tcontext,
539                                           constraint->expr)) {
540                         rc = security_validtrans_handle_fail(ocontext, ncontext,
541                                                              tcontext, tclass);
542                         goto out;
543                 }
544                 constraint = constraint->next;
545         }
546
547 out:
548         read_unlock(&policy_rwlock);
549         return rc;
550 }
551
552 /**
553  * security_compute_av - Compute access vector decisions.
554  * @ssid: source security identifier
555  * @tsid: target security identifier
556  * @tclass: target security class
557  * @requested: requested permissions
558  * @avd: access vector decisions
559  *
560  * Compute a set of access vector decisions based on the
561  * SID pair (@ssid, @tsid) for the permissions in @tclass.
562  * Return -%EINVAL if any of the parameters are invalid or %0
563  * if the access vector decisions were computed successfully.
564  */
565 int security_compute_av(u32 ssid,
566                         u32 tsid,
567                         u16 tclass,
568                         u32 requested,
569                         struct av_decision *avd)
570 {
571         struct context *scontext = NULL, *tcontext = NULL;
572         int rc = 0;
573
574         if (!ss_initialized) {
575                 avd->allowed = 0xffffffff;
576                 avd->decided = 0xffffffff;
577                 avd->auditallow = 0;
578                 avd->auditdeny = 0xffffffff;
579                 avd->seqno = latest_granting;
580                 return 0;
581         }
582
583         read_lock(&policy_rwlock);
584
585         scontext = sidtab_search(&sidtab, ssid);
586         if (!scontext) {
587                 printk(KERN_ERR "SELinux: %s:  unrecognized SID %d\n",
588                        __func__, ssid);
589                 rc = -EINVAL;
590                 goto out;
591         }
592         tcontext = sidtab_search(&sidtab, tsid);
593         if (!tcontext) {
594                 printk(KERN_ERR "SELinux: %s:  unrecognized SID %d\n",
595                        __func__, tsid);
596                 rc = -EINVAL;
597                 goto out;
598         }
599
600         rc = context_struct_compute_av(scontext, tcontext, tclass,
601                                        requested, avd);
602 out:
603         read_unlock(&policy_rwlock);
604         return rc;
605 }
606
607 /*
608  * Write the security context string representation of
609  * the context structure `context' into a dynamically
610  * allocated string of the correct size.  Set `*scontext'
611  * to point to this string and set `*scontext_len' to
612  * the length of the string.
613  */
614 static int context_struct_to_string(struct context *context, char **scontext, u32 *scontext_len)
615 {
616         char *scontextp;
617
618         *scontext = NULL;
619         *scontext_len = 0;
620
621         if (context->len) {
622                 *scontext_len = context->len;
623                 *scontext = kstrdup(context->str, GFP_ATOMIC);
624                 if (!(*scontext))
625                         return -ENOMEM;
626                 return 0;
627         }
628
629         /* Compute the size of the context. */
630         *scontext_len += strlen(policydb.p_user_val_to_name[context->user - 1]) + 1;
631         *scontext_len += strlen(policydb.p_role_val_to_name[context->role - 1]) + 1;
632         *scontext_len += strlen(policydb.p_type_val_to_name[context->type - 1]) + 1;
633         *scontext_len += mls_compute_context_len(context);
634
635         /* Allocate space for the context; caller must free this space. */
636         scontextp = kmalloc(*scontext_len, GFP_ATOMIC);
637         if (!scontextp)
638                 return -ENOMEM;
639         *scontext = scontextp;
640
641         /*
642          * Copy the user name, role name and type name into the context.
643          */
644         sprintf(scontextp, "%s:%s:%s",
645                 policydb.p_user_val_to_name[context->user - 1],
646                 policydb.p_role_val_to_name[context->role - 1],
647                 policydb.p_type_val_to_name[context->type - 1]);
648         scontextp += strlen(policydb.p_user_val_to_name[context->user - 1]) +
649                      1 + strlen(policydb.p_role_val_to_name[context->role - 1]) +
650                      1 + strlen(policydb.p_type_val_to_name[context->type - 1]);
651
652         mls_sid_to_context(context, &scontextp);
653
654         *scontextp = 0;
655
656         return 0;
657 }
658
659 #include "initial_sid_to_string.h"
660
661 const char *security_get_initial_sid_context(u32 sid)
662 {
663         if (unlikely(sid > SECINITSID_NUM))
664                 return NULL;
665         return initial_sid_to_string[sid];
666 }
667
668 static int security_sid_to_context_core(u32 sid, char **scontext,
669                                         u32 *scontext_len, int force)
670 {
671         struct context *context;
672         int rc = 0;
673
674         *scontext = NULL;
675         *scontext_len  = 0;
676
677         if (!ss_initialized) {
678                 if (sid <= SECINITSID_NUM) {
679                         char *scontextp;
680
681                         *scontext_len = strlen(initial_sid_to_string[sid]) + 1;
682                         scontextp = kmalloc(*scontext_len, GFP_ATOMIC);
683                         if (!scontextp) {
684                                 rc = -ENOMEM;
685                                 goto out;
686                         }
687                         strcpy(scontextp, initial_sid_to_string[sid]);
688                         *scontext = scontextp;
689                         goto out;
690                 }
691                 printk(KERN_ERR "SELinux: %s:  called before initial "
692                        "load_policy on unknown SID %d\n", __func__, sid);
693                 rc = -EINVAL;
694                 goto out;
695         }
696         read_lock(&policy_rwlock);
697         if (force)
698                 context = sidtab_search_force(&sidtab, sid);
699         else
700                 context = sidtab_search(&sidtab, sid);
701         if (!context) {
702                 printk(KERN_ERR "SELinux: %s:  unrecognized SID %d\n",
703                         __func__, sid);
704                 rc = -EINVAL;
705                 goto out_unlock;
706         }
707         rc = context_struct_to_string(context, scontext, scontext_len);
708 out_unlock:
709         read_unlock(&policy_rwlock);
710 out:
711         return rc;
712
713 }
714
715 /**
716  * security_sid_to_context - Obtain a context for a given SID.
717  * @sid: security identifier, SID
718  * @scontext: security context
719  * @scontext_len: length in bytes
720  *
721  * Write the string representation of the context associated with @sid
722  * into a dynamically allocated string of the correct size.  Set @scontext
723  * to point to this string and set @scontext_len to the length of the string.
724  */
725 int security_sid_to_context(u32 sid, char **scontext, u32 *scontext_len)
726 {
727         return security_sid_to_context_core(sid, scontext, scontext_len, 0);
728 }
729
730 int security_sid_to_context_force(u32 sid, char **scontext, u32 *scontext_len)
731 {
732         return security_sid_to_context_core(sid, scontext, scontext_len, 1);
733 }
734
735 /*
736  * Caveat:  Mutates scontext.
737  */
738 static int string_to_context_struct(struct policydb *pol,
739                                     struct sidtab *sidtabp,
740                                     char *scontext,
741                                     u32 scontext_len,
742                                     struct context *ctx,
743                                     u32 def_sid)
744 {
745         struct role_datum *role;
746         struct type_datum *typdatum;
747         struct user_datum *usrdatum;
748         char *scontextp, *p, oldc;
749         int rc = 0;
750
751         context_init(ctx);
752
753         /* Parse the security context. */
754
755         rc = -EINVAL;
756         scontextp = (char *) scontext;
757
758         /* Extract the user. */
759         p = scontextp;
760         while (*p && *p != ':')
761                 p++;
762
763         if (*p == 0)
764                 goto out;
765
766         *p++ = 0;
767
768         usrdatum = hashtab_search(pol->p_users.table, scontextp);
769         if (!usrdatum)
770                 goto out;
771
772         ctx->user = usrdatum->value;
773
774         /* Extract role. */
775         scontextp = p;
776         while (*p && *p != ':')
777                 p++;
778
779         if (*p == 0)
780                 goto out;
781
782         *p++ = 0;
783
784         role = hashtab_search(pol->p_roles.table, scontextp);
785         if (!role)
786                 goto out;
787         ctx->role = role->value;
788
789         /* Extract type. */
790         scontextp = p;
791         while (*p && *p != ':')
792                 p++;
793         oldc = *p;
794         *p++ = 0;
795
796         typdatum = hashtab_search(pol->p_types.table, scontextp);
797         if (!typdatum)
798                 goto out;
799
800         ctx->type = typdatum->value;
801
802         rc = mls_context_to_sid(pol, oldc, &p, ctx, sidtabp, def_sid);
803         if (rc)
804                 goto out;
805
806         if ((p - scontext) < scontext_len) {
807                 rc = -EINVAL;
808                 goto out;
809         }
810
811         /* Check the validity of the new context. */
812         if (!policydb_context_isvalid(pol, ctx)) {
813                 rc = -EINVAL;
814                 context_destroy(ctx);
815                 goto out;
816         }
817         rc = 0;
818 out:
819         return rc;
820 }
821
822 static int security_context_to_sid_core(const char *scontext, u32 scontext_len,
823                                         u32 *sid, u32 def_sid, gfp_t gfp_flags,
824                                         int force)
825 {
826         char *scontext2, *str = NULL;
827         struct context context;
828         int rc = 0;
829
830         if (!ss_initialized) {
831                 int i;
832
833                 for (i = 1; i < SECINITSID_NUM; i++) {
834                         if (!strcmp(initial_sid_to_string[i], scontext)) {
835                                 *sid = i;
836                                 return 0;
837                         }
838                 }
839                 *sid = SECINITSID_KERNEL;
840                 return 0;
841         }
842         *sid = SECSID_NULL;
843
844         /* Copy the string so that we can modify the copy as we parse it. */
845         scontext2 = kmalloc(scontext_len+1, gfp_flags);
846         if (!scontext2)
847                 return -ENOMEM;
848         memcpy(scontext2, scontext, scontext_len);
849         scontext2[scontext_len] = 0;
850
851         if (force) {
852                 /* Save another copy for storing in uninterpreted form */
853                 str = kstrdup(scontext2, gfp_flags);
854                 if (!str) {
855                         kfree(scontext2);
856                         return -ENOMEM;
857                 }
858         }
859
860         read_lock(&policy_rwlock);
861         rc = string_to_context_struct(&policydb, &sidtab,
862                                       scontext2, scontext_len,
863                                       &context, def_sid);
864         if (rc == -EINVAL && force) {
865                 context.str = str;
866                 context.len = scontext_len;
867                 str = NULL;
868         } else if (rc)
869                 goto out;
870         rc = sidtab_context_to_sid(&sidtab, &context, sid);
871         if (rc)
872                 context_destroy(&context);
873 out:
874         read_unlock(&policy_rwlock);
875         kfree(scontext2);
876         kfree(str);
877         return rc;
878 }
879
880 /**
881  * security_context_to_sid - Obtain a SID for a given security context.
882  * @scontext: security context
883  * @scontext_len: length in bytes
884  * @sid: security identifier, SID
885  *
886  * Obtains a SID associated with the security context that
887  * has the string representation specified by @scontext.
888  * Returns -%EINVAL if the context is invalid, -%ENOMEM if insufficient
889  * memory is available, or 0 on success.
890  */
891 int security_context_to_sid(const char *scontext, u32 scontext_len, u32 *sid)
892 {
893         return security_context_to_sid_core(scontext, scontext_len,
894                                             sid, SECSID_NULL, GFP_KERNEL, 0);
895 }
896
897 /**
898  * security_context_to_sid_default - Obtain a SID for a given security context,
899  * falling back to specified default if needed.
900  *
901  * @scontext: security context
902  * @scontext_len: length in bytes
903  * @sid: security identifier, SID
904  * @def_sid: default SID to assign on error
905  *
906  * Obtains a SID associated with the security context that
907  * has the string representation specified by @scontext.
908  * The default SID is passed to the MLS layer to be used to allow
909  * kernel labeling of the MLS field if the MLS field is not present
910  * (for upgrading to MLS without full relabel).
911  * Implicitly forces adding of the context even if it cannot be mapped yet.
912  * Returns -%EINVAL if the context is invalid, -%ENOMEM if insufficient
913  * memory is available, or 0 on success.
914  */
915 int security_context_to_sid_default(const char *scontext, u32 scontext_len,
916                                     u32 *sid, u32 def_sid, gfp_t gfp_flags)
917 {
918         return security_context_to_sid_core(scontext, scontext_len,
919                                             sid, def_sid, gfp_flags, 1);
920 }
921
922 int security_context_to_sid_force(const char *scontext, u32 scontext_len,
923                                   u32 *sid)
924 {
925         return security_context_to_sid_core(scontext, scontext_len,
926                                             sid, SECSID_NULL, GFP_KERNEL, 1);
927 }
928
929 static int compute_sid_handle_invalid_context(
930         struct context *scontext,
931         struct context *tcontext,
932         u16 tclass,
933         struct context *newcontext)
934 {
935         char *s = NULL, *t = NULL, *n = NULL;
936         u32 slen, tlen, nlen;
937
938         if (context_struct_to_string(scontext, &s, &slen) < 0)
939                 goto out;
940         if (context_struct_to_string(tcontext, &t, &tlen) < 0)
941                 goto out;
942         if (context_struct_to_string(newcontext, &n, &nlen) < 0)
943                 goto out;
944         audit_log(current->audit_context, GFP_ATOMIC, AUDIT_SELINUX_ERR,
945                   "security_compute_sid:  invalid context %s"
946                   " for scontext=%s"
947                   " tcontext=%s"
948                   " tclass=%s",
949                   n, s, t, policydb.p_class_val_to_name[tclass-1]);
950 out:
951         kfree(s);
952         kfree(t);
953         kfree(n);
954         if (!selinux_enforcing)
955                 return 0;
956         return -EACCES;
957 }
958
959 static int security_compute_sid(u32 ssid,
960                                 u32 tsid,
961                                 u16 tclass,
962                                 u32 specified,
963                                 u32 *out_sid)
964 {
965         struct context *scontext = NULL, *tcontext = NULL, newcontext;
966         struct role_trans *roletr = NULL;
967         struct avtab_key avkey;
968         struct avtab_datum *avdatum;
969         struct avtab_node *node;
970         int rc = 0;
971
972         if (!ss_initialized) {
973                 switch (tclass) {
974                 case SECCLASS_PROCESS:
975                         *out_sid = ssid;
976                         break;
977                 default:
978                         *out_sid = tsid;
979                         break;
980                 }
981                 goto out;
982         }
983
984         context_init(&newcontext);
985
986         read_lock(&policy_rwlock);
987
988         scontext = sidtab_search(&sidtab, ssid);
989         if (!scontext) {
990                 printk(KERN_ERR "SELinux: %s:  unrecognized SID %d\n",
991                        __func__, ssid);
992                 rc = -EINVAL;
993                 goto out_unlock;
994         }
995         tcontext = sidtab_search(&sidtab, tsid);
996         if (!tcontext) {
997                 printk(KERN_ERR "SELinux: %s:  unrecognized SID %d\n",
998                        __func__, tsid);
999                 rc = -EINVAL;
1000                 goto out_unlock;
1001         }
1002
1003         /* Set the user identity. */
1004         switch (specified) {
1005         case AVTAB_TRANSITION:
1006         case AVTAB_CHANGE:
1007                 /* Use the process user identity. */
1008                 newcontext.user = scontext->user;
1009                 break;
1010         case AVTAB_MEMBER:
1011                 /* Use the related object owner. */
1012                 newcontext.user = tcontext->user;
1013                 break;
1014         }
1015
1016         /* Set the role and type to default values. */
1017         switch (tclass) {
1018         case SECCLASS_PROCESS:
1019                 /* Use the current role and type of process. */
1020                 newcontext.role = scontext->role;
1021                 newcontext.type = scontext->type;
1022                 break;
1023         default:
1024                 /* Use the well-defined object role. */
1025                 newcontext.role = OBJECT_R_VAL;
1026                 /* Use the type of the related object. */
1027                 newcontext.type = tcontext->type;
1028         }
1029
1030         /* Look for a type transition/member/change rule. */
1031         avkey.source_type = scontext->type;
1032         avkey.target_type = tcontext->type;
1033         avkey.target_class = tclass;
1034         avkey.specified = specified;
1035         avdatum = avtab_search(&policydb.te_avtab, &avkey);
1036
1037         /* If no permanent rule, also check for enabled conditional rules */
1038         if (!avdatum) {
1039                 node = avtab_search_node(&policydb.te_cond_avtab, &avkey);
1040                 for (; node != NULL; node = avtab_search_node_next(node, specified)) {
1041                         if (node->key.specified & AVTAB_ENABLED) {
1042                                 avdatum = &node->datum;
1043                                 break;
1044                         }
1045                 }
1046         }
1047
1048         if (avdatum) {
1049                 /* Use the type from the type transition/member/change rule. */
1050                 newcontext.type = avdatum->data;
1051         }
1052
1053         /* Check for class-specific changes. */
1054         switch (tclass) {
1055         case SECCLASS_PROCESS:
1056                 if (specified & AVTAB_TRANSITION) {
1057                         /* Look for a role transition rule. */
1058                         for (roletr = policydb.role_tr; roletr;
1059                              roletr = roletr->next) {
1060                                 if (roletr->role == scontext->role &&
1061                                     roletr->type == tcontext->type) {
1062                                         /* Use the role transition rule. */
1063                                         newcontext.role = roletr->new_role;
1064                                         break;
1065                                 }
1066                         }
1067                 }
1068                 break;
1069         default:
1070                 break;
1071         }
1072
1073         /* Set the MLS attributes.
1074            This is done last because it may allocate memory. */
1075         rc = mls_compute_sid(scontext, tcontext, tclass, specified, &newcontext);
1076         if (rc)
1077                 goto out_unlock;
1078
1079         /* Check the validity of the context. */
1080         if (!policydb_context_isvalid(&policydb, &newcontext)) {
1081                 rc = compute_sid_handle_invalid_context(scontext,
1082                                                         tcontext,
1083                                                         tclass,
1084                                                         &newcontext);
1085                 if (rc)
1086                         goto out_unlock;
1087         }
1088         /* Obtain the sid for the context. */
1089         rc = sidtab_context_to_sid(&sidtab, &newcontext, out_sid);
1090 out_unlock:
1091         read_unlock(&policy_rwlock);
1092         context_destroy(&newcontext);
1093 out:
1094         return rc;
1095 }
1096
1097 /**
1098  * security_transition_sid - Compute the SID for a new subject/object.
1099  * @ssid: source security identifier
1100  * @tsid: target security identifier
1101  * @tclass: target security class
1102  * @out_sid: security identifier for new subject/object
1103  *
1104  * Compute a SID to use for labeling a new subject or object in the
1105  * class @tclass based on a SID pair (@ssid, @tsid).
1106  * Return -%EINVAL if any of the parameters are invalid, -%ENOMEM
1107  * if insufficient memory is available, or %0 if the new SID was
1108  * computed successfully.
1109  */
1110 int security_transition_sid(u32 ssid,
1111                             u32 tsid,
1112                             u16 tclass,
1113                             u32 *out_sid)
1114 {
1115         return security_compute_sid(ssid, tsid, tclass, AVTAB_TRANSITION, out_sid);
1116 }
1117
1118 /**
1119  * security_member_sid - Compute the SID for member selection.
1120  * @ssid: source security identifier
1121  * @tsid: target security identifier
1122  * @tclass: target security class
1123  * @out_sid: security identifier for selected member
1124  *
1125  * Compute a SID to use when selecting a member of a polyinstantiated
1126  * object of class @tclass based on a SID pair (@ssid, @tsid).
1127  * Return -%EINVAL if any of the parameters are invalid, -%ENOMEM
1128  * if insufficient memory is available, or %0 if the SID was
1129  * computed successfully.
1130  */
1131 int security_member_sid(u32 ssid,
1132                         u32 tsid,
1133                         u16 tclass,
1134                         u32 *out_sid)
1135 {
1136         return security_compute_sid(ssid, tsid, tclass, AVTAB_MEMBER, out_sid);
1137 }
1138
1139 /**
1140  * security_change_sid - Compute the SID for object relabeling.
1141  * @ssid: source security identifier
1142  * @tsid: target security identifier
1143  * @tclass: target security class
1144  * @out_sid: security identifier for selected member
1145  *
1146  * Compute a SID to use for relabeling an object of class @tclass
1147  * based on a SID pair (@ssid, @tsid).
1148  * Return -%EINVAL if any of the parameters are invalid, -%ENOMEM
1149  * if insufficient memory is available, or %0 if the SID was
1150  * computed successfully.
1151  */
1152 int security_change_sid(u32 ssid,
1153                         u32 tsid,
1154                         u16 tclass,
1155                         u32 *out_sid)
1156 {
1157         return security_compute_sid(ssid, tsid, tclass, AVTAB_CHANGE, out_sid);
1158 }
1159
1160 /*
1161  * Verify that each kernel class that is defined in the
1162  * policy is correct
1163  */
1164 static int validate_classes(struct policydb *p)
1165 {
1166         int i, j;
1167         struct class_datum *cladatum;
1168         struct perm_datum *perdatum;
1169         u32 nprim, tmp, common_pts_len, perm_val, pol_val;
1170         u16 class_val;
1171         const struct selinux_class_perm *kdefs = &selinux_class_perm;
1172         const char *def_class, *def_perm, *pol_class;
1173         struct symtab *perms;
1174
1175         if (p->allow_unknown) {
1176                 u32 num_classes = kdefs->cts_len;
1177                 p->undefined_perms = kcalloc(num_classes, sizeof(u32), GFP_KERNEL);
1178                 if (!p->undefined_perms)
1179                         return -ENOMEM;
1180         }
1181
1182         for (i = 1; i < kdefs->cts_len; i++) {
1183                 def_class = kdefs->class_to_string[i];
1184                 if (!def_class)
1185                         continue;
1186                 if (i > p->p_classes.nprim) {
1187                         printk(KERN_INFO
1188                                "SELinux:  class %s not defined in policy\n",
1189                                def_class);
1190                         if (p->reject_unknown)
1191                                 return -EINVAL;
1192                         if (p->allow_unknown)
1193                                 p->undefined_perms[i-1] = ~0U;
1194                         continue;
1195                 }
1196                 pol_class = p->p_class_val_to_name[i-1];
1197                 if (strcmp(pol_class, def_class)) {
1198                         printk(KERN_ERR
1199                                "SELinux:  class %d is incorrect, found %s but should be %s\n",
1200                                i, pol_class, def_class);
1201                         return -EINVAL;
1202                 }
1203         }
1204         for (i = 0; i < kdefs->av_pts_len; i++) {
1205                 class_val = kdefs->av_perm_to_string[i].tclass;
1206                 perm_val = kdefs->av_perm_to_string[i].value;
1207                 def_perm = kdefs->av_perm_to_string[i].name;
1208                 if (class_val > p->p_classes.nprim)
1209                         continue;
1210                 pol_class = p->p_class_val_to_name[class_val-1];
1211                 cladatum = hashtab_search(p->p_classes.table, pol_class);
1212                 BUG_ON(!cladatum);
1213                 perms = &cladatum->permissions;
1214                 nprim = 1 << (perms->nprim - 1);
1215                 if (perm_val > nprim) {
1216                         printk(KERN_INFO
1217                                "SELinux:  permission %s in class %s not defined in policy\n",
1218                                def_perm, pol_class);
1219                         if (p->reject_unknown)
1220                                 return -EINVAL;
1221                         if (p->allow_unknown)
1222                                 p->undefined_perms[class_val-1] |= perm_val;
1223                         continue;
1224                 }
1225                 perdatum = hashtab_search(perms->table, def_perm);
1226                 if (perdatum == NULL) {
1227                         printk(KERN_ERR
1228                                "SELinux:  permission %s in class %s not found in policy, bad policy\n",
1229                                def_perm, pol_class);
1230                         return -EINVAL;
1231                 }
1232                 pol_val = 1 << (perdatum->value - 1);
1233                 if (pol_val != perm_val) {
1234                         printk(KERN_ERR
1235                                "SELinux:  permission %s in class %s has incorrect value\n",
1236                                def_perm, pol_class);
1237                         return -EINVAL;
1238                 }
1239         }
1240         for (i = 0; i < kdefs->av_inherit_len; i++) {
1241                 class_val = kdefs->av_inherit[i].tclass;
1242                 if (class_val > p->p_classes.nprim)
1243                         continue;
1244                 pol_class = p->p_class_val_to_name[class_val-1];
1245                 cladatum = hashtab_search(p->p_classes.table, pol_class);
1246                 BUG_ON(!cladatum);
1247                 if (!cladatum->comdatum) {
1248                         printk(KERN_ERR
1249                                "SELinux:  class %s should have an inherits clause but does not\n",
1250                                pol_class);
1251                         return -EINVAL;
1252                 }
1253                 tmp = kdefs->av_inherit[i].common_base;
1254                 common_pts_len = 0;
1255                 while (!(tmp & 0x01)) {
1256                         common_pts_len++;
1257                         tmp >>= 1;
1258                 }
1259                 perms = &cladatum->comdatum->permissions;
1260                 for (j = 0; j < common_pts_len; j++) {
1261                         def_perm = kdefs->av_inherit[i].common_pts[j];
1262                         if (j >= perms->nprim) {
1263                                 printk(KERN_INFO
1264                                        "SELinux:  permission %s in class %s not defined in policy\n",
1265                                        def_perm, pol_class);
1266                                 if (p->reject_unknown)
1267                                         return -EINVAL;
1268                                 if (p->allow_unknown)
1269                                         p->undefined_perms[class_val-1] |= (1 << j);
1270                                 continue;
1271                         }
1272                         perdatum = hashtab_search(perms->table, def_perm);
1273                         if (perdatum == NULL) {
1274                                 printk(KERN_ERR
1275                                        "SELinux:  permission %s in class %s not found in policy, bad policy\n",
1276                                        def_perm, pol_class);
1277                                 return -EINVAL;
1278                         }
1279                         if (perdatum->value != j + 1) {
1280                                 printk(KERN_ERR
1281                                        "SELinux:  permission %s in class %s has incorrect value\n",
1282                                        def_perm, pol_class);
1283                                 return -EINVAL;
1284                         }
1285                 }
1286         }
1287         return 0;
1288 }
1289
1290 /* Clone the SID into the new SID table. */
1291 static int clone_sid(u32 sid,
1292                      struct context *context,
1293                      void *arg)
1294 {
1295         struct sidtab *s = arg;
1296
1297         return sidtab_insert(s, sid, context);
1298 }
1299
1300 static inline int convert_context_handle_invalid_context(struct context *context)
1301 {
1302         int rc = 0;
1303
1304         if (selinux_enforcing) {
1305                 rc = -EINVAL;
1306         } else {
1307                 char *s;
1308                 u32 len;
1309
1310                 if (!context_struct_to_string(context, &s, &len)) {
1311                         printk(KERN_WARNING
1312                        "SELinux:  Context %s would be invalid if enforcing\n",
1313                                s);
1314                         kfree(s);
1315                 }
1316         }
1317         return rc;
1318 }
1319
1320 struct convert_context_args {
1321         struct policydb *oldp;
1322         struct policydb *newp;
1323 };
1324
1325 /*
1326  * Convert the values in the security context
1327  * structure `c' from the values specified
1328  * in the policy `p->oldp' to the values specified
1329  * in the policy `p->newp'.  Verify that the
1330  * context is valid under the new policy.
1331  */
1332 static int convert_context(u32 key,
1333                            struct context *c,
1334                            void *p)
1335 {
1336         struct convert_context_args *args;
1337         struct context oldc;
1338         struct role_datum *role;
1339         struct type_datum *typdatum;
1340         struct user_datum *usrdatum;
1341         char *s;
1342         u32 len;
1343         int rc;
1344
1345         args = p;
1346
1347         if (c->str) {
1348                 struct context ctx;
1349                 s = kstrdup(c->str, GFP_KERNEL);
1350                 if (!s) {
1351                         rc = -ENOMEM;
1352                         goto out;
1353                 }
1354                 rc = string_to_context_struct(args->newp, NULL, s,
1355                                               c->len, &ctx, SECSID_NULL);
1356                 kfree(s);
1357                 if (!rc) {
1358                         printk(KERN_INFO
1359                        "SELinux:  Context %s became valid (mapped).\n",
1360                                c->str);
1361                         /* Replace string with mapped representation. */
1362                         kfree(c->str);
1363                         memcpy(c, &ctx, sizeof(*c));
1364                         goto out;
1365                 } else if (rc == -EINVAL) {
1366                         /* Retain string representation for later mapping. */
1367                         rc = 0;
1368                         goto out;
1369                 } else {
1370                         /* Other error condition, e.g. ENOMEM. */
1371                         printk(KERN_ERR
1372                        "SELinux:   Unable to map context %s, rc = %d.\n",
1373                                c->str, -rc);
1374                         goto out;
1375                 }
1376         }
1377
1378         rc = context_cpy(&oldc, c);
1379         if (rc)
1380                 goto out;
1381
1382         rc = -EINVAL;
1383
1384         /* Convert the user. */
1385         usrdatum = hashtab_search(args->newp->p_users.table,
1386                                   args->oldp->p_user_val_to_name[c->user - 1]);
1387         if (!usrdatum)
1388                 goto bad;
1389         c->user = usrdatum->value;
1390
1391         /* Convert the role. */
1392         role = hashtab_search(args->newp->p_roles.table,
1393                               args->oldp->p_role_val_to_name[c->role - 1]);
1394         if (!role)
1395                 goto bad;
1396         c->role = role->value;
1397
1398         /* Convert the type. */
1399         typdatum = hashtab_search(args->newp->p_types.table,
1400                                   args->oldp->p_type_val_to_name[c->type - 1]);
1401         if (!typdatum)
1402                 goto bad;
1403         c->type = typdatum->value;
1404
1405         rc = mls_convert_context(args->oldp, args->newp, c);
1406         if (rc)
1407                 goto bad;
1408
1409         /* Check the validity of the new context. */
1410         if (!policydb_context_isvalid(args->newp, c)) {
1411                 rc = convert_context_handle_invalid_context(&oldc);
1412                 if (rc)
1413                         goto bad;
1414         }
1415
1416         context_destroy(&oldc);
1417         rc = 0;
1418 out:
1419         return rc;
1420 bad:
1421         /* Map old representation to string and save it. */
1422         if (context_struct_to_string(&oldc, &s, &len))
1423                 return -ENOMEM;
1424         context_destroy(&oldc);
1425         context_destroy(c);
1426         c->str = s;
1427         c->len = len;
1428         printk(KERN_INFO
1429                "SELinux:  Context %s became invalid (unmapped).\n",
1430                c->str);
1431         rc = 0;
1432         goto out;
1433 }
1434
1435 static void security_load_policycaps(void)
1436 {
1437         selinux_policycap_netpeer = ebitmap_get_bit(&policydb.policycaps,
1438                                                   POLICYDB_CAPABILITY_NETPEER);
1439         selinux_policycap_openperm = ebitmap_get_bit(&policydb.policycaps,
1440                                                   POLICYDB_CAPABILITY_OPENPERM);
1441 }
1442
1443 extern void selinux_complete_init(void);
1444 static int security_preserve_bools(struct policydb *p);
1445
1446 /**
1447  * security_load_policy - Load a security policy configuration.
1448  * @data: binary policy data
1449  * @len: length of data in bytes
1450  *
1451  * Load a new set of security policy configuration data,
1452  * validate it and convert the SID table as necessary.
1453  * This function will flush the access vector cache after
1454  * loading the new policy.
1455  */
1456 int security_load_policy(void *data, size_t len)
1457 {
1458         struct policydb oldpolicydb, newpolicydb;
1459         struct sidtab oldsidtab, newsidtab;
1460         struct convert_context_args args;
1461         u32 seqno;
1462         int rc = 0;
1463         struct policy_file file = { data, len }, *fp = &file;
1464
1465         if (!ss_initialized) {
1466                 avtab_cache_init();
1467                 if (policydb_read(&policydb, fp)) {
1468                         avtab_cache_destroy();
1469                         return -EINVAL;
1470                 }
1471                 if (policydb_load_isids(&policydb, &sidtab)) {
1472                         policydb_destroy(&policydb);
1473                         avtab_cache_destroy();
1474                         return -EINVAL;
1475                 }
1476                 /* Verify that the kernel defined classes are correct. */
1477                 if (validate_classes(&policydb)) {
1478                         printk(KERN_ERR
1479                                "SELinux:  the definition of a class is incorrect\n");
1480                         sidtab_destroy(&sidtab);
1481                         policydb_destroy(&policydb);
1482                         avtab_cache_destroy();
1483                         return -EINVAL;
1484                 }
1485                 security_load_policycaps();
1486                 policydb_loaded_version = policydb.policyvers;
1487                 ss_initialized = 1;
1488                 seqno = ++latest_granting;
1489                 selinux_complete_init();
1490                 avc_ss_reset(seqno);
1491                 selnl_notify_policyload(seqno);
1492                 selinux_netlbl_cache_invalidate();
1493                 selinux_xfrm_notify_policyload();
1494                 return 0;
1495         }
1496
1497 #if 0
1498         sidtab_hash_eval(&sidtab, "sids");
1499 #endif
1500
1501         if (policydb_read(&newpolicydb, fp))
1502                 return -EINVAL;
1503
1504         if (sidtab_init(&newsidtab)) {
1505                 policydb_destroy(&newpolicydb);
1506                 return -ENOMEM;
1507         }
1508
1509         /* Verify that the kernel defined classes are correct. */
1510         if (validate_classes(&newpolicydb)) {
1511                 printk(KERN_ERR
1512                        "SELinux:  the definition of a class is incorrect\n");
1513                 rc = -EINVAL;
1514                 goto err;
1515         }
1516
1517         rc = security_preserve_bools(&newpolicydb);
1518         if (rc) {
1519                 printk(KERN_ERR "SELinux:  unable to preserve booleans\n");
1520                 goto err;
1521         }
1522
1523         /* Clone the SID table. */
1524         sidtab_shutdown(&sidtab);
1525         if (sidtab_map(&sidtab, clone_sid, &newsidtab)) {
1526                 rc = -ENOMEM;
1527                 goto err;
1528         }
1529
1530         /*
1531          * Convert the internal representations of contexts
1532          * in the new SID table.
1533          */
1534         args.oldp = &policydb;
1535         args.newp = &newpolicydb;
1536         rc = sidtab_map(&newsidtab, convert_context, &args);
1537         if (rc)
1538                 goto err;
1539
1540         /* Save the old policydb and SID table to free later. */
1541         memcpy(&oldpolicydb, &policydb, sizeof policydb);
1542         sidtab_set(&oldsidtab, &sidtab);
1543
1544         /* Install the new policydb and SID table. */
1545         write_lock_irq(&policy_rwlock);
1546         memcpy(&policydb, &newpolicydb, sizeof policydb);
1547         sidtab_set(&sidtab, &newsidtab);
1548         security_load_policycaps();
1549         seqno = ++latest_granting;
1550         policydb_loaded_version = policydb.policyvers;
1551         write_unlock_irq(&policy_rwlock);
1552
1553         /* Free the old policydb and SID table. */
1554         policydb_destroy(&oldpolicydb);
1555         sidtab_destroy(&oldsidtab);
1556
1557         avc_ss_reset(seqno);
1558         selnl_notify_policyload(seqno);
1559         selinux_netlbl_cache_invalidate();
1560         selinux_xfrm_notify_policyload();
1561
1562         return 0;
1563
1564 err:
1565         sidtab_destroy(&newsidtab);
1566         policydb_destroy(&newpolicydb);
1567         return rc;
1568
1569 }
1570
1571 /**
1572  * security_port_sid - Obtain the SID for a port.
1573  * @protocol: protocol number
1574  * @port: port number
1575  * @out_sid: security identifier
1576  */
1577 int security_port_sid(u8 protocol, u16 port, u32 *out_sid)
1578 {
1579         struct ocontext *c;
1580         int rc = 0;
1581
1582         read_lock(&policy_rwlock);
1583
1584         c = policydb.ocontexts[OCON_PORT];
1585         while (c) {
1586                 if (c->u.port.protocol == protocol &&
1587                     c->u.port.low_port <= port &&
1588                     c->u.port.high_port >= port)
1589                         break;
1590                 c = c->next;
1591         }
1592
1593         if (c) {
1594                 if (!c->sid[0]) {
1595                         rc = sidtab_context_to_sid(&sidtab,
1596                                                    &c->context[0],
1597                                                    &c->sid[0]);
1598                         if (rc)
1599                                 goto out;
1600                 }
1601                 *out_sid = c->sid[0];
1602         } else {
1603                 *out_sid = SECINITSID_PORT;
1604         }
1605
1606 out:
1607         read_unlock(&policy_rwlock);
1608         return rc;
1609 }
1610
1611 /**
1612  * security_netif_sid - Obtain the SID for a network interface.
1613  * @name: interface name
1614  * @if_sid: interface SID
1615  */
1616 int security_netif_sid(char *name, u32 *if_sid)
1617 {
1618         int rc = 0;
1619         struct ocontext *c;
1620
1621         read_lock(&policy_rwlock);
1622
1623         c = policydb.ocontexts[OCON_NETIF];
1624         while (c) {
1625                 if (strcmp(name, c->u.name) == 0)
1626                         break;
1627                 c = c->next;
1628         }
1629
1630         if (c) {
1631                 if (!c->sid[0] || !c->sid[1]) {
1632                         rc = sidtab_context_to_sid(&sidtab,
1633                                                   &c->context[0],
1634                                                   &c->sid[0]);
1635                         if (rc)
1636                                 goto out;
1637                         rc = sidtab_context_to_sid(&sidtab,
1638                                                    &c->context[1],
1639                                                    &c->sid[1]);
1640                         if (rc)
1641                                 goto out;
1642                 }
1643                 *if_sid = c->sid[0];
1644         } else
1645                 *if_sid = SECINITSID_NETIF;
1646
1647 out:
1648         read_unlock(&policy_rwlock);
1649         return rc;
1650 }
1651
1652 static int match_ipv6_addrmask(u32 *input, u32 *addr, u32 *mask)
1653 {
1654         int i, fail = 0;
1655
1656         for (i = 0; i < 4; i++)
1657                 if (addr[i] != (input[i] & mask[i])) {
1658                         fail = 1;
1659                         break;
1660                 }
1661
1662         return !fail;
1663 }
1664
1665 /**
1666  * security_node_sid - Obtain the SID for a node (host).
1667  * @domain: communication domain aka address family
1668  * @addrp: address
1669  * @addrlen: address length in bytes
1670  * @out_sid: security identifier
1671  */
1672 int security_node_sid(u16 domain,
1673                       void *addrp,
1674                       u32 addrlen,
1675                       u32 *out_sid)
1676 {
1677         int rc = 0;
1678         struct ocontext *c;
1679
1680         read_lock(&policy_rwlock);
1681
1682         switch (domain) {
1683         case AF_INET: {
1684                 u32 addr;
1685
1686                 if (addrlen != sizeof(u32)) {
1687                         rc = -EINVAL;
1688                         goto out;
1689                 }
1690
1691                 addr = *((u32 *)addrp);
1692
1693                 c = policydb.ocontexts[OCON_NODE];
1694                 while (c) {
1695                         if (c->u.node.addr == (addr & c->u.node.mask))
1696                                 break;
1697                         c = c->next;
1698                 }
1699                 break;
1700         }
1701
1702         case AF_INET6:
1703                 if (addrlen != sizeof(u64) * 2) {
1704                         rc = -EINVAL;
1705                         goto out;
1706                 }
1707                 c = policydb.ocontexts[OCON_NODE6];
1708                 while (c) {
1709                         if (match_ipv6_addrmask(addrp, c->u.node6.addr,
1710                                                 c->u.node6.mask))
1711                                 break;
1712                         c = c->next;
1713                 }
1714                 break;
1715
1716         default:
1717                 *out_sid = SECINITSID_NODE;
1718                 goto out;
1719         }
1720
1721         if (c) {
1722                 if (!c->sid[0]) {
1723                         rc = sidtab_context_to_sid(&sidtab,
1724                                                    &c->context[0],
1725                                                    &c->sid[0]);
1726                         if (rc)
1727                                 goto out;
1728                 }
1729                 *out_sid = c->sid[0];
1730         } else {
1731                 *out_sid = SECINITSID_NODE;
1732         }
1733
1734 out:
1735         read_unlock(&policy_rwlock);
1736         return rc;
1737 }
1738
1739 #define SIDS_NEL 25
1740
1741 /**
1742  * security_get_user_sids - Obtain reachable SIDs for a user.
1743  * @fromsid: starting SID
1744  * @username: username
1745  * @sids: array of reachable SIDs for user
1746  * @nel: number of elements in @sids
1747  *
1748  * Generate the set of SIDs for legal security contexts
1749  * for a given user that can be reached by @fromsid.
1750  * Set *@sids to point to a dynamically allocated
1751  * array containing the set of SIDs.  Set *@nel to the
1752  * number of elements in the array.
1753  */
1754
1755 int security_get_user_sids(u32 fromsid,
1756                            char *username,
1757                            u32 **sids,
1758                            u32 *nel)
1759 {
1760         struct context *fromcon, usercon;
1761         u32 *mysids = NULL, *mysids2, sid;
1762         u32 mynel = 0, maxnel = SIDS_NEL;
1763         struct user_datum *user;
1764         struct role_datum *role;
1765         struct ebitmap_node *rnode, *tnode;
1766         int rc = 0, i, j;
1767
1768         *sids = NULL;
1769         *nel = 0;
1770
1771         if (!ss_initialized)
1772                 goto out;
1773
1774         read_lock(&policy_rwlock);
1775
1776         context_init(&usercon);
1777
1778         fromcon = sidtab_search(&sidtab, fromsid);
1779         if (!fromcon) {
1780                 rc = -EINVAL;
1781                 goto out_unlock;
1782         }
1783
1784         user = hashtab_search(policydb.p_users.table, username);
1785         if (!user) {
1786                 rc = -EINVAL;
1787                 goto out_unlock;
1788         }
1789         usercon.user = user->value;
1790
1791         mysids = kcalloc(maxnel, sizeof(*mysids), GFP_ATOMIC);
1792         if (!mysids) {
1793                 rc = -ENOMEM;
1794                 goto out_unlock;
1795         }
1796
1797         ebitmap_for_each_positive_bit(&user->roles, rnode, i) {
1798                 role = policydb.role_val_to_struct[i];
1799                 usercon.role = i+1;
1800                 ebitmap_for_each_positive_bit(&role->types, tnode, j) {
1801                         usercon.type = j+1;
1802
1803                         if (mls_setup_user_range(fromcon, user, &usercon))
1804                                 continue;
1805
1806                         rc = sidtab_context_to_sid(&sidtab, &usercon, &sid);
1807                         if (rc)
1808                                 goto out_unlock;
1809                         if (mynel < maxnel) {
1810                                 mysids[mynel++] = sid;
1811                         } else {
1812                                 maxnel += SIDS_NEL;
1813                                 mysids2 = kcalloc(maxnel, sizeof(*mysids2), GFP_ATOMIC);
1814                                 if (!mysids2) {
1815                                         rc = -ENOMEM;
1816                                         goto out_unlock;
1817                                 }
1818                                 memcpy(mysids2, mysids, mynel * sizeof(*mysids2));
1819                                 kfree(mysids);
1820                                 mysids = mysids2;
1821                                 mysids[mynel++] = sid;
1822                         }
1823                 }
1824         }
1825
1826 out_unlock:
1827         read_unlock(&policy_rwlock);
1828         if (rc || !mynel) {
1829                 kfree(mysids);
1830                 goto out;
1831         }
1832
1833         mysids2 = kcalloc(mynel, sizeof(*mysids2), GFP_KERNEL);
1834         if (!mysids2) {
1835                 rc = -ENOMEM;
1836                 kfree(mysids);
1837                 goto out;
1838         }
1839         for (i = 0, j = 0; i < mynel; i++) {
1840                 rc = avc_has_perm_noaudit(fromsid, mysids[i],
1841                                           SECCLASS_PROCESS,
1842                                           PROCESS__TRANSITION, AVC_STRICT,
1843                                           NULL);
1844                 if (!rc)
1845                         mysids2[j++] = mysids[i];
1846                 cond_resched();
1847         }
1848         rc = 0;
1849         kfree(mysids);
1850         *sids = mysids2;
1851         *nel = j;
1852 out:
1853         return rc;
1854 }
1855
1856 /**
1857  * security_genfs_sid - Obtain a SID for a file in a filesystem
1858  * @fstype: filesystem type
1859  * @path: path from root of mount
1860  * @sclass: file security class
1861  * @sid: SID for path
1862  *
1863  * Obtain a SID to use for a file in a filesystem that
1864  * cannot support xattr or use a fixed labeling behavior like
1865  * transition SIDs or task SIDs.
1866  */
1867 int security_genfs_sid(const char *fstype,
1868                        char *path,
1869                        u16 sclass,
1870                        u32 *sid)
1871 {
1872         int len;
1873         struct genfs *genfs;
1874         struct ocontext *c;
1875         int rc = 0, cmp = 0;
1876
1877         while (path[0] == '/' && path[1] == '/')
1878                 path++;
1879
1880         read_lock(&policy_rwlock);
1881
1882         for (genfs = policydb.genfs; genfs; genfs = genfs->next) {
1883                 cmp = strcmp(fstype, genfs->fstype);
1884                 if (cmp <= 0)
1885                         break;
1886         }
1887
1888         if (!genfs || cmp) {
1889                 *sid = SECINITSID_UNLABELED;
1890                 rc = -ENOENT;
1891                 goto out;
1892         }
1893
1894         for (c = genfs->head; c; c = c->next) {
1895                 len = strlen(c->u.name);
1896                 if ((!c->v.sclass || sclass == c->v.sclass) &&
1897                     (strncmp(c->u.name, path, len) == 0))
1898                         break;
1899         }
1900
1901         if (!c) {
1902                 *sid = SECINITSID_UNLABELED;
1903                 rc = -ENOENT;
1904                 goto out;
1905         }
1906
1907         if (!c->sid[0]) {
1908                 rc = sidtab_context_to_sid(&sidtab,
1909                                            &c->context[0],
1910                                            &c->sid[0]);
1911                 if (rc)
1912                         goto out;
1913         }
1914
1915         *sid = c->sid[0];
1916 out:
1917         read_unlock(&policy_rwlock);
1918         return rc;
1919 }
1920
1921 /**
1922  * security_fs_use - Determine how to handle labeling for a filesystem.
1923  * @fstype: filesystem type
1924  * @behavior: labeling behavior
1925  * @sid: SID for filesystem (superblock)
1926  */
1927 int security_fs_use(
1928         const char *fstype,
1929         unsigned int *behavior,
1930         u32 *sid)
1931 {
1932         int rc = 0;
1933         struct ocontext *c;
1934
1935         read_lock(&policy_rwlock);
1936
1937         c = policydb.ocontexts[OCON_FSUSE];
1938         while (c) {
1939                 if (strcmp(fstype, c->u.name) == 0)
1940                         break;
1941                 c = c->next;
1942         }
1943
1944         if (c) {
1945                 *behavior = c->v.behavior;
1946                 if (!c->sid[0]) {
1947                         rc = sidtab_context_to_sid(&sidtab,
1948                                                    &c->context[0],
1949                                                    &c->sid[0]);
1950                         if (rc)
1951                                 goto out;
1952                 }
1953                 *sid = c->sid[0];
1954         } else {
1955                 rc = security_genfs_sid(fstype, "/", SECCLASS_DIR, sid);
1956                 if (rc) {
1957                         *behavior = SECURITY_FS_USE_NONE;
1958                         rc = 0;
1959                 } else {
1960                         *behavior = SECURITY_FS_USE_GENFS;
1961                 }
1962         }
1963
1964 out:
1965         read_unlock(&policy_rwlock);
1966         return rc;
1967 }
1968
1969 int security_get_bools(int *len, char ***names, int **values)
1970 {
1971         int i, rc = -ENOMEM;
1972
1973         read_lock(&policy_rwlock);
1974         *names = NULL;
1975         *values = NULL;
1976
1977         *len = policydb.p_bools.nprim;
1978         if (!*len) {
1979                 rc = 0;
1980                 goto out;
1981         }
1982
1983        *names = kcalloc(*len, sizeof(char *), GFP_ATOMIC);
1984         if (!*names)
1985                 goto err;
1986
1987        *values = kcalloc(*len, sizeof(int), GFP_ATOMIC);
1988         if (!*values)
1989                 goto err;
1990
1991         for (i = 0; i < *len; i++) {
1992                 size_t name_len;
1993                 (*values)[i] = policydb.bool_val_to_struct[i]->state;
1994                 name_len = strlen(policydb.p_bool_val_to_name[i]) + 1;
1995                (*names)[i] = kmalloc(sizeof(char) * name_len, GFP_ATOMIC);
1996                 if (!(*names)[i])
1997                         goto err;
1998                 strncpy((*names)[i], policydb.p_bool_val_to_name[i], name_len);
1999                 (*names)[i][name_len - 1] = 0;
2000         }
2001         rc = 0;
2002 out:
2003         read_unlock(&policy_rwlock);
2004         return rc;
2005 err:
2006         if (*names) {
2007                 for (i = 0; i < *len; i++)
2008                         kfree((*names)[i]);
2009         }
2010         kfree(*values);
2011         goto out;
2012 }
2013
2014
2015 int security_set_bools(int len, int *values)
2016 {
2017         int i, rc = 0;
2018         int lenp, seqno = 0;
2019         struct cond_node *cur;
2020
2021         write_lock_irq(&policy_rwlock);
2022
2023         lenp = policydb.p_bools.nprim;
2024         if (len != lenp) {
2025                 rc = -EFAULT;
2026                 goto out;
2027         }
2028
2029         for (i = 0; i < len; i++) {
2030                 if (!!values[i] != policydb.bool_val_to_struct[i]->state) {
2031                         audit_log(current->audit_context, GFP_ATOMIC,
2032                                 AUDIT_MAC_CONFIG_CHANGE,
2033                                 "bool=%s val=%d old_val=%d auid=%u ses=%u",
2034                                 policydb.p_bool_val_to_name[i],
2035                                 !!values[i],
2036                                 policydb.bool_val_to_struct[i]->state,
2037                                 audit_get_loginuid(current),
2038                                 audit_get_sessionid(current));
2039                 }
2040                 if (values[i])
2041                         policydb.bool_val_to_struct[i]->state = 1;
2042                 else
2043                         policydb.bool_val_to_struct[i]->state = 0;
2044         }
2045
2046         for (cur = policydb.cond_list; cur != NULL; cur = cur->next) {
2047                 rc = evaluate_cond_node(&policydb, cur);
2048                 if (rc)
2049                         goto out;
2050         }
2051
2052         seqno = ++latest_granting;
2053
2054 out:
2055         write_unlock_irq(&policy_rwlock);
2056         if (!rc) {
2057                 avc_ss_reset(seqno);
2058                 selnl_notify_policyload(seqno);
2059                 selinux_xfrm_notify_policyload();
2060         }
2061         return rc;
2062 }
2063
2064 int security_get_bool_value(int bool)
2065 {
2066         int rc = 0;
2067         int len;
2068
2069         read_lock(&policy_rwlock);
2070
2071         len = policydb.p_bools.nprim;
2072         if (bool >= len) {
2073                 rc = -EFAULT;
2074                 goto out;
2075         }
2076
2077         rc = policydb.bool_val_to_struct[bool]->state;
2078 out:
2079         read_unlock(&policy_rwlock);
2080         return rc;
2081 }
2082
2083 static int security_preserve_bools(struct policydb *p)
2084 {
2085         int rc, nbools = 0, *bvalues = NULL, i;
2086         char **bnames = NULL;
2087         struct cond_bool_datum *booldatum;
2088         struct cond_node *cur;
2089
2090         rc = security_get_bools(&nbools, &bnames, &bvalues);
2091         if (rc)
2092                 goto out;
2093         for (i = 0; i < nbools; i++) {
2094                 booldatum = hashtab_search(p->p_bools.table, bnames[i]);
2095                 if (booldatum)
2096                         booldatum->state = bvalues[i];
2097         }
2098         for (cur = p->cond_list; cur != NULL; cur = cur->next) {
2099                 rc = evaluate_cond_node(p, cur);
2100                 if (rc)
2101                         goto out;
2102         }
2103
2104 out:
2105         if (bnames) {
2106                 for (i = 0; i < nbools; i++)
2107                         kfree(bnames[i]);
2108         }
2109         kfree(bnames);
2110         kfree(bvalues);
2111         return rc;
2112 }
2113
2114 /*
2115  * security_sid_mls_copy() - computes a new sid based on the given
2116  * sid and the mls portion of mls_sid.
2117  */
2118 int security_sid_mls_copy(u32 sid, u32 mls_sid, u32 *new_sid)
2119 {
2120         struct context *context1;
2121         struct context *context2;
2122         struct context newcon;
2123         char *s;
2124         u32 len;
2125         int rc = 0;
2126
2127         if (!ss_initialized || !selinux_mls_enabled) {
2128                 *new_sid = sid;
2129                 goto out;
2130         }
2131
2132         context_init(&newcon);
2133
2134         read_lock(&policy_rwlock);
2135         context1 = sidtab_search(&sidtab, sid);
2136         if (!context1) {
2137                 printk(KERN_ERR "SELinux: %s:  unrecognized SID %d\n",
2138                         __func__, sid);
2139                 rc = -EINVAL;
2140                 goto out_unlock;
2141         }
2142
2143         context2 = sidtab_search(&sidtab, mls_sid);
2144         if (!context2) {
2145                 printk(KERN_ERR "SELinux: %s:  unrecognized SID %d\n",
2146                         __func__, mls_sid);
2147                 rc = -EINVAL;
2148                 goto out_unlock;
2149         }
2150
2151         newcon.user = context1->user;
2152         newcon.role = context1->role;
2153         newcon.type = context1->type;
2154         rc = mls_context_cpy(&newcon, context2);
2155         if (rc)
2156                 goto out_unlock;
2157
2158         /* Check the validity of the new context. */
2159         if (!policydb_context_isvalid(&policydb, &newcon)) {
2160                 rc = convert_context_handle_invalid_context(&newcon);
2161                 if (rc)
2162                         goto bad;
2163         }
2164
2165         rc = sidtab_context_to_sid(&sidtab, &newcon, new_sid);
2166         goto out_unlock;
2167
2168 bad:
2169         if (!context_struct_to_string(&newcon, &s, &len)) {
2170                 audit_log(current->audit_context, GFP_ATOMIC, AUDIT_SELINUX_ERR,
2171                           "security_sid_mls_copy: invalid context %s", s);
2172                 kfree(s);
2173         }
2174
2175 out_unlock:
2176         read_unlock(&policy_rwlock);
2177         context_destroy(&newcon);
2178 out:
2179         return rc;
2180 }
2181
2182 /**
2183  * security_net_peersid_resolve - Compare and resolve two network peer SIDs
2184  * @nlbl_sid: NetLabel SID
2185  * @nlbl_type: NetLabel labeling protocol type
2186  * @xfrm_sid: XFRM SID
2187  *
2188  * Description:
2189  * Compare the @nlbl_sid and @xfrm_sid values and if the two SIDs can be
2190  * resolved into a single SID it is returned via @peer_sid and the function
2191  * returns zero.  Otherwise @peer_sid is set to SECSID_NULL and the function
2192  * returns a negative value.  A table summarizing the behavior is below:
2193  *
2194  *                                 | function return |      @sid
2195  *   ------------------------------+-----------------+-----------------
2196  *   no peer labels                |        0        |    SECSID_NULL
2197  *   single peer label             |        0        |    <peer_label>
2198  *   multiple, consistent labels   |        0        |    <peer_label>
2199  *   multiple, inconsistent labels |    -<errno>     |    SECSID_NULL
2200  *
2201  */
2202 int security_net_peersid_resolve(u32 nlbl_sid, u32 nlbl_type,
2203                                  u32 xfrm_sid,
2204                                  u32 *peer_sid)
2205 {
2206         int rc;
2207         struct context *nlbl_ctx;
2208         struct context *xfrm_ctx;
2209
2210         /* handle the common (which also happens to be the set of easy) cases
2211          * right away, these two if statements catch everything involving a
2212          * single or absent peer SID/label */
2213         if (xfrm_sid == SECSID_NULL) {
2214                 *peer_sid = nlbl_sid;
2215                 return 0;
2216         }
2217         /* NOTE: an nlbl_type == NETLBL_NLTYPE_UNLABELED is a "fallback" label
2218          * and is treated as if nlbl_sid == SECSID_NULL when a XFRM SID/label
2219          * is present */
2220         if (nlbl_sid == SECSID_NULL || nlbl_type == NETLBL_NLTYPE_UNLABELED) {
2221                 *peer_sid = xfrm_sid;
2222                 return 0;
2223         }
2224
2225         /* we don't need to check ss_initialized here since the only way both
2226          * nlbl_sid and xfrm_sid are not equal to SECSID_NULL would be if the
2227          * security server was initialized and ss_initialized was true */
2228         if (!selinux_mls_enabled) {
2229                 *peer_sid = SECSID_NULL;
2230                 return 0;
2231         }
2232
2233         read_lock(&policy_rwlock);
2234
2235         nlbl_ctx = sidtab_search(&sidtab, nlbl_sid);
2236         if (!nlbl_ctx) {
2237                 printk(KERN_ERR "SELinux: %s:  unrecognized SID %d\n",
2238                        __func__, nlbl_sid);
2239                 rc = -EINVAL;
2240                 goto out_slowpath;
2241         }
2242         xfrm_ctx = sidtab_search(&sidtab, xfrm_sid);
2243         if (!xfrm_ctx) {
2244                 printk(KERN_ERR "SELinux: %s:  unrecognized SID %d\n",
2245                        __func__, xfrm_sid);
2246                 rc = -EINVAL;
2247                 goto out_slowpath;
2248         }
2249         rc = (mls_context_cmp(nlbl_ctx, xfrm_ctx) ? 0 : -EACCES);
2250
2251 out_slowpath:
2252         read_unlock(&policy_rwlock);
2253         if (rc == 0)
2254                 /* at present NetLabel SIDs/labels really only carry MLS
2255                  * information so if the MLS portion of the NetLabel SID
2256                  * matches the MLS portion of the labeled XFRM SID/label
2257                  * then pass along the XFRM SID as it is the most
2258                  * expressive */
2259                 *peer_sid = xfrm_sid;
2260         else
2261                 *peer_sid = SECSID_NULL;
2262         return rc;
2263 }
2264
2265 static int get_classes_callback(void *k, void *d, void *args)
2266 {
2267         struct class_datum *datum = d;
2268         char *name = k, **classes = args;
2269         int value = datum->value - 1;
2270
2271         classes[value] = kstrdup(name, GFP_ATOMIC);
2272         if (!classes[value])
2273                 return -ENOMEM;
2274
2275         return 0;
2276 }
2277
2278 int security_get_classes(char ***classes, int *nclasses)
2279 {
2280         int rc = -ENOMEM;
2281
2282         read_lock(&policy_rwlock);
2283
2284         *nclasses = policydb.p_classes.nprim;
2285         *classes = kcalloc(*nclasses, sizeof(*classes), GFP_ATOMIC);
2286         if (!*classes)
2287                 goto out;
2288
2289         rc = hashtab_map(policydb.p_classes.table, get_classes_callback,
2290                         *classes);
2291         if (rc < 0) {
2292                 int i;
2293                 for (i = 0; i < *nclasses; i++)
2294                         kfree((*classes)[i]);
2295                 kfree(*classes);
2296         }
2297
2298 out:
2299         read_unlock(&policy_rwlock);
2300         return rc;
2301 }
2302
2303 static int get_permissions_callback(void *k, void *d, void *args)
2304 {
2305         struct perm_datum *datum = d;
2306         char *name = k, **perms = args;
2307         int value = datum->value - 1;
2308
2309         perms[value] = kstrdup(name, GFP_ATOMIC);
2310         if (!perms[value])
2311                 return -ENOMEM;
2312
2313         return 0;
2314 }
2315
2316 int security_get_permissions(char *class, char ***perms, int *nperms)
2317 {
2318         int rc = -ENOMEM, i;
2319         struct class_datum *match;
2320
2321         read_lock(&policy_rwlock);
2322
2323         match = hashtab_search(policydb.p_classes.table, class);
2324         if (!match) {
2325                 printk(KERN_ERR "SELinux: %s:  unrecognized class %s\n",
2326                         __func__, class);
2327                 rc = -EINVAL;
2328                 goto out;
2329         }
2330
2331         *nperms = match->permissions.nprim;
2332         *perms = kcalloc(*nperms, sizeof(*perms), GFP_ATOMIC);
2333         if (!*perms)
2334                 goto out;
2335
2336         if (match->comdatum) {
2337                 rc = hashtab_map(match->comdatum->permissions.table,
2338                                 get_permissions_callback, *perms);
2339                 if (rc < 0)
2340                         goto err;
2341         }
2342
2343         rc = hashtab_map(match->permissions.table, get_permissions_callback,
2344                         *perms);
2345         if (rc < 0)
2346                 goto err;
2347
2348 out:
2349         read_unlock(&policy_rwlock);
2350         return rc;
2351
2352 err:
2353         read_unlock(&policy_rwlock);
2354         for (i = 0; i < *nperms; i++)
2355                 kfree((*perms)[i]);
2356         kfree(*perms);
2357         return rc;
2358 }
2359
2360 int security_get_reject_unknown(void)
2361 {
2362         return policydb.reject_unknown;
2363 }
2364
2365 int security_get_allow_unknown(void)
2366 {
2367         return policydb.allow_unknown;
2368 }
2369
2370 /**
2371  * security_policycap_supported - Check for a specific policy capability
2372  * @req_cap: capability
2373  *
2374  * Description:
2375  * This function queries the currently loaded policy to see if it supports the
2376  * capability specified by @req_cap.  Returns true (1) if the capability is
2377  * supported, false (0) if it isn't supported.
2378  *
2379  */
2380 int security_policycap_supported(unsigned int req_cap)
2381 {
2382         int rc;
2383
2384         read_lock(&policy_rwlock);
2385         rc = ebitmap_get_bit(&policydb.policycaps, req_cap);
2386         read_unlock(&policy_rwlock);
2387
2388         return rc;
2389 }
2390
2391 struct selinux_audit_rule {
2392         u32 au_seqno;
2393         struct context au_ctxt;
2394 };
2395
2396 void selinux_audit_rule_free(void *vrule)
2397 {
2398         struct selinux_audit_rule *rule = vrule;
2399
2400         if (rule) {
2401                 context_destroy(&rule->au_ctxt);
2402                 kfree(rule);
2403         }
2404 }
2405
2406 int selinux_audit_rule_init(u32 field, u32 op, char *rulestr, void **vrule)
2407 {
2408         struct selinux_audit_rule *tmprule;
2409         struct role_datum *roledatum;
2410         struct type_datum *typedatum;
2411         struct user_datum *userdatum;
2412         struct selinux_audit_rule **rule = (struct selinux_audit_rule **)vrule;
2413         int rc = 0;
2414
2415         *rule = NULL;
2416
2417         if (!ss_initialized)
2418                 return -EOPNOTSUPP;
2419
2420         switch (field) {
2421         case AUDIT_SUBJ_USER:
2422         case AUDIT_SUBJ_ROLE:
2423         case AUDIT_SUBJ_TYPE:
2424         case AUDIT_OBJ_USER:
2425         case AUDIT_OBJ_ROLE:
2426         case AUDIT_OBJ_TYPE:
2427                 /* only 'equals' and 'not equals' fit user, role, and type */
2428                 if (op != AUDIT_EQUAL && op != AUDIT_NOT_EQUAL)
2429                         return -EINVAL;
2430                 break;
2431         case AUDIT_SUBJ_SEN:
2432         case AUDIT_SUBJ_CLR:
2433         case AUDIT_OBJ_LEV_LOW:
2434         case AUDIT_OBJ_LEV_HIGH:
2435                 /* we do not allow a range, indicated by the presense of '-' */
2436                 if (strchr(rulestr, '-'))
2437                         return -EINVAL;
2438                 break;
2439         default:
2440                 /* only the above fields are valid */
2441                 return -EINVAL;
2442         }
2443
2444         tmprule = kzalloc(sizeof(struct selinux_audit_rule), GFP_KERNEL);
2445         if (!tmprule)
2446                 return -ENOMEM;
2447
2448         context_init(&tmprule->au_ctxt);
2449
2450         read_lock(&policy_rwlock);
2451
2452         tmprule->au_seqno = latest_granting;
2453
2454         switch (field) {
2455         case AUDIT_SUBJ_USER:
2456         case AUDIT_OBJ_USER:
2457                 userdatum = hashtab_search(policydb.p_users.table, rulestr);
2458                 if (!userdatum)
2459                         rc = -EINVAL;
2460                 else
2461                         tmprule->au_ctxt.user = userdatum->value;
2462                 break;
2463         case AUDIT_SUBJ_ROLE:
2464         case AUDIT_OBJ_ROLE:
2465                 roledatum = hashtab_search(policydb.p_roles.table, rulestr);
2466                 if (!roledatum)
2467                         rc = -EINVAL;
2468                 else
2469                         tmprule->au_ctxt.role = roledatum->value;
2470                 break;
2471         case AUDIT_SUBJ_TYPE:
2472         case AUDIT_OBJ_TYPE:
2473                 typedatum = hashtab_search(policydb.p_types.table, rulestr);
2474                 if (!typedatum)
2475                         rc = -EINVAL;
2476                 else
2477                         tmprule->au_ctxt.type = typedatum->value;
2478                 break;
2479         case AUDIT_SUBJ_SEN:
2480         case AUDIT_SUBJ_CLR:
2481         case AUDIT_OBJ_LEV_LOW:
2482         case AUDIT_OBJ_LEV_HIGH:
2483                 rc = mls_from_string(rulestr, &tmprule->au_ctxt, GFP_ATOMIC);
2484                 break;
2485         }
2486
2487         read_unlock(&policy_rwlock);
2488
2489         if (rc) {
2490                 selinux_audit_rule_free(tmprule);
2491                 tmprule = NULL;
2492         }
2493
2494         *rule = tmprule;
2495
2496         return rc;
2497 }
2498
2499 /* Check to see if the rule contains any selinux fields */
2500 int selinux_audit_rule_known(struct audit_krule *rule)
2501 {
2502         int i;
2503
2504         for (i = 0; i < rule->field_count; i++) {
2505                 struct audit_field *f = &rule->fields[i];
2506                 switch (f->type) {
2507                 case AUDIT_SUBJ_USER:
2508                 case AUDIT_SUBJ_ROLE:
2509                 case AUDIT_SUBJ_TYPE:
2510                 case AUDIT_SUBJ_SEN:
2511                 case AUDIT_SUBJ_CLR:
2512                 case AUDIT_OBJ_USER:
2513                 case AUDIT_OBJ_ROLE:
2514                 case AUDIT_OBJ_TYPE:
2515                 case AUDIT_OBJ_LEV_LOW:
2516                 case AUDIT_OBJ_LEV_HIGH:
2517                         return 1;
2518                 }
2519         }
2520
2521         return 0;
2522 }
2523
2524 int selinux_audit_rule_match(u32 sid, u32 field, u32 op, void *vrule,
2525                              struct audit_context *actx)
2526 {
2527         struct context *ctxt;
2528         struct mls_level *level;
2529         struct selinux_audit_rule *rule = vrule;
2530         int match = 0;
2531
2532         if (!rule) {
2533                 audit_log(actx, GFP_ATOMIC, AUDIT_SELINUX_ERR,
2534                           "selinux_audit_rule_match: missing rule\n");
2535                 return -ENOENT;
2536         }
2537
2538         read_lock(&policy_rwlock);
2539
2540         if (rule->au_seqno < latest_granting) {
2541                 audit_log(actx, GFP_ATOMIC, AUDIT_SELINUX_ERR,
2542                           "selinux_audit_rule_match: stale rule\n");
2543                 match = -ESTALE;
2544                 goto out;
2545         }
2546
2547         ctxt = sidtab_search(&sidtab, sid);
2548         if (!ctxt) {
2549                 audit_log(actx, GFP_ATOMIC, AUDIT_SELINUX_ERR,
2550                           "selinux_audit_rule_match: unrecognized SID %d\n",
2551                           sid);
2552                 match = -ENOENT;
2553                 goto out;
2554         }
2555
2556         /* a field/op pair that is not caught here will simply fall through
2557            without a match */
2558         switch (field) {
2559         case AUDIT_SUBJ_USER:
2560         case AUDIT_OBJ_USER:
2561                 switch (op) {
2562                 case AUDIT_EQUAL:
2563                         match = (ctxt->user == rule->au_ctxt.user);
2564                         break;
2565                 case AUDIT_NOT_EQUAL:
2566                         match = (ctxt->user != rule->au_ctxt.user);
2567                         break;
2568                 }
2569                 break;
2570         case AUDIT_SUBJ_ROLE:
2571         case AUDIT_OBJ_ROLE:
2572                 switch (op) {
2573                 case AUDIT_EQUAL:
2574                         match = (ctxt->role == rule->au_ctxt.role);
2575                         break;
2576                 case AUDIT_NOT_EQUAL:
2577                         match = (ctxt->role != rule->au_ctxt.role);
2578                         break;
2579                 }
2580                 break;
2581         case AUDIT_SUBJ_TYPE:
2582         case AUDIT_OBJ_TYPE:
2583                 switch (op) {
2584                 case AUDIT_EQUAL:
2585                         match = (ctxt->type == rule->au_ctxt.type);
2586                         break;
2587                 case AUDIT_NOT_EQUAL:
2588                         match = (ctxt->type != rule->au_ctxt.type);
2589                         break;
2590                 }
2591                 break;
2592         case AUDIT_SUBJ_SEN:
2593         case AUDIT_SUBJ_CLR:
2594         case AUDIT_OBJ_LEV_LOW:
2595         case AUDIT_OBJ_LEV_HIGH:
2596                 level = ((field == AUDIT_SUBJ_SEN ||
2597                           field == AUDIT_OBJ_LEV_LOW) ?
2598                          &ctxt->range.level[0] : &ctxt->range.level[1]);
2599                 switch (op) {
2600                 case AUDIT_EQUAL:
2601                         match = mls_level_eq(&rule->au_ctxt.range.level[0],
2602                                              level);
2603                         break;
2604                 case AUDIT_NOT_EQUAL:
2605                         match = !mls_level_eq(&rule->au_ctxt.range.level[0],
2606                                               level);
2607                         break;
2608                 case AUDIT_LESS_THAN:
2609                         match = (mls_level_dom(&rule->au_ctxt.range.level[0],
2610                                                level) &&
2611                                  !mls_level_eq(&rule->au_ctxt.range.level[0],
2612                                                level));
2613                         break;
2614                 case AUDIT_LESS_THAN_OR_EQUAL:
2615                         match = mls_level_dom(&rule->au_ctxt.range.level[0],
2616                                               level);
2617                         break;
2618                 case AUDIT_GREATER_THAN:
2619                         match = (mls_level_dom(level,
2620                                               &rule->au_ctxt.range.level[0]) &&
2621                                  !mls_level_eq(level,
2622                                                &rule->au_ctxt.range.level[0]));
2623                         break;
2624                 case AUDIT_GREATER_THAN_OR_EQUAL:
2625                         match = mls_level_dom(level,
2626                                               &rule->au_ctxt.range.level[0]);
2627                         break;
2628                 }
2629         }
2630
2631 out:
2632         read_unlock(&policy_rwlock);
2633         return match;
2634 }
2635
2636 static int (*aurule_callback)(void) = audit_update_lsm_rules;
2637
2638 static int aurule_avc_callback(u32 event, u32 ssid, u32 tsid,
2639                                u16 class, u32 perms, u32 *retained)
2640 {
2641         int err = 0;
2642
2643         if (event == AVC_CALLBACK_RESET && aurule_callback)
2644                 err = aurule_callback();
2645         return err;
2646 }
2647
2648 static int __init aurule_init(void)
2649 {
2650         int err;
2651
2652         err = avc_add_callback(aurule_avc_callback, AVC_CALLBACK_RESET,
2653                                SECSID_NULL, SECSID_NULL, SECCLASS_NULL, 0);
2654         if (err)
2655                 panic("avc_add_callback() failed, error %d\n", err);
2656
2657         return err;
2658 }
2659 __initcall(aurule_init);
2660
2661 #ifdef CONFIG_NETLABEL
2662 /**
2663  * security_netlbl_cache_add - Add an entry to the NetLabel cache
2664  * @secattr: the NetLabel packet security attributes
2665  * @sid: the SELinux SID
2666  *
2667  * Description:
2668  * Attempt to cache the context in @ctx, which was derived from the packet in
2669  * @skb, in the NetLabel subsystem cache.  This function assumes @secattr has
2670  * already been initialized.
2671  *
2672  */
2673 static void security_netlbl_cache_add(struct netlbl_lsm_secattr *secattr,
2674                                       u32 sid)
2675 {
2676         u32 *sid_cache;
2677
2678         sid_cache = kmalloc(sizeof(*sid_cache), GFP_ATOMIC);
2679         if (sid_cache == NULL)
2680                 return;
2681         secattr->cache = netlbl_secattr_cache_alloc(GFP_ATOMIC);
2682         if (secattr->cache == NULL) {
2683                 kfree(sid_cache);
2684                 return;
2685         }
2686
2687         *sid_cache = sid;
2688         secattr->cache->free = kfree;
2689         secattr->cache->data = sid_cache;
2690         secattr->flags |= NETLBL_SECATTR_CACHE;
2691 }
2692
2693 /**
2694  * security_netlbl_secattr_to_sid - Convert a NetLabel secattr to a SELinux SID
2695  * @secattr: the NetLabel packet security attributes
2696  * @sid: the SELinux SID
2697  *
2698  * Description:
2699  * Convert the given NetLabel security attributes in @secattr into a
2700  * SELinux SID.  If the @secattr field does not contain a full SELinux
2701  * SID/context then use SECINITSID_NETMSG as the foundation.  If possibile the
2702  * 'cache' field of @secattr is set and the CACHE flag is set; this is to
2703  * allow the @secattr to be used by NetLabel to cache the secattr to SID
2704  * conversion for future lookups.  Returns zero on success, negative values on
2705  * failure.
2706  *
2707  */
2708 int security_netlbl_secattr_to_sid(struct netlbl_lsm_secattr *secattr,
2709                                    u32 *sid)
2710 {
2711         int rc = -EIDRM;
2712         struct context *ctx;
2713         struct context ctx_new;
2714
2715         if (!ss_initialized) {
2716                 *sid = SECSID_NULL;
2717                 return 0;
2718         }
2719
2720         read_lock(&policy_rwlock);
2721
2722         if (secattr->flags & NETLBL_SECATTR_CACHE) {
2723                 *sid = *(u32 *)secattr->cache->data;
2724                 rc = 0;
2725         } else if (secattr->flags & NETLBL_SECATTR_SECID) {
2726                 *sid = secattr->attr.secid;
2727                 rc = 0;
2728         } else if (secattr->flags & NETLBL_SECATTR_MLS_LVL) {
2729                 ctx = sidtab_search(&sidtab, SECINITSID_NETMSG);
2730                 if (ctx == NULL)
2731                         goto netlbl_secattr_to_sid_return;
2732
2733                 ctx_new.user = ctx->user;
2734                 ctx_new.role = ctx->role;
2735                 ctx_new.type = ctx->type;
2736                 mls_import_netlbl_lvl(&ctx_new, secattr);
2737                 if (secattr->flags & NETLBL_SECATTR_MLS_CAT) {
2738                         if (ebitmap_netlbl_import(&ctx_new.range.level[0].cat,
2739                                                   secattr->attr.mls.cat) != 0)
2740                                 goto netlbl_secattr_to_sid_return;
2741                         ctx_new.range.level[1].cat.highbit =
2742                                 ctx_new.range.level[0].cat.highbit;
2743                         ctx_new.range.level[1].cat.node =
2744                                 ctx_new.range.level[0].cat.node;
2745                 } else {
2746                         ebitmap_init(&ctx_new.range.level[0].cat);
2747                         ebitmap_init(&ctx_new.range.level[1].cat);
2748                 }
2749                 if (mls_context_isvalid(&policydb, &ctx_new) != 1)
2750                         goto netlbl_secattr_to_sid_return_cleanup;
2751
2752                 rc = sidtab_context_to_sid(&sidtab, &ctx_new, sid);
2753                 if (rc != 0)
2754                         goto netlbl_secattr_to_sid_return_cleanup;
2755
2756                 security_netlbl_cache_add(secattr, *sid);
2757
2758                 ebitmap_destroy(&ctx_new.range.level[0].cat);
2759         } else {
2760                 *sid = SECSID_NULL;
2761                 rc = 0;
2762         }
2763
2764 netlbl_secattr_to_sid_return:
2765         read_unlock(&policy_rwlock);
2766         return rc;
2767 netlbl_secattr_to_sid_return_cleanup:
2768         ebitmap_destroy(&ctx_new.range.level[0].cat);
2769         goto netlbl_secattr_to_sid_return;
2770 }
2771
2772 /**
2773  * security_netlbl_sid_to_secattr - Convert a SELinux SID to a NetLabel secattr
2774  * @sid: the SELinux SID
2775  * @secattr: the NetLabel packet security attributes
2776  *
2777  * Description:
2778  * Convert the given SELinux SID in @sid into a NetLabel security attribute.
2779  * Returns zero on success, negative values on failure.
2780  *
2781  */
2782 int security_netlbl_sid_to_secattr(u32 sid, struct netlbl_lsm_secattr *secattr)
2783 {
2784         int rc = -ENOENT;
2785         struct context *ctx;
2786
2787         if (!ss_initialized)
2788                 return 0;
2789
2790         read_lock(&policy_rwlock);
2791         ctx = sidtab_search(&sidtab, sid);
2792         if (ctx == NULL)
2793                 goto netlbl_sid_to_secattr_failure;
2794         secattr->domain = kstrdup(policydb.p_type_val_to_name[ctx->type - 1],
2795                                   GFP_ATOMIC);
2796         secattr->flags |= NETLBL_SECATTR_DOMAIN_CPY;
2797         mls_export_netlbl_lvl(ctx, secattr);
2798         rc = mls_export_netlbl_cat(ctx, secattr);
2799         if (rc != 0)
2800                 goto netlbl_sid_to_secattr_failure;
2801         read_unlock(&policy_rwlock);
2802
2803         return 0;
2804
2805 netlbl_sid_to_secattr_failure:
2806         read_unlock(&policy_rwlock);
2807         return rc;
2808 }
2809 #endif /* CONFIG_NETLABEL */