blob: 84e2a98d7cc5950a8b06b25a56bbcb38e4da5379 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Implementation of the security services.
3 *
4 * Authors : Stephen Smalley, <sds@epoch.ncsc.mil>
Eric Paris5d55a342008-04-18 17:38:33 -04005 * James Morris <jmorris@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * Updated: Trusted Computer Solutions, Inc. <dgoeddel@trustedcs.com>
8 *
9 * Support for enhanced MLS infrastructure.
Darrel Goeddel376bd9c2006-02-24 15:44:05 -060010 * Support for context based audit filters.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * Updated: Frank Mayer <mayerf@tresys.com> and Karl MacMillan <kmacmillan@tresys.com>
13 *
Eric Paris5d55a342008-04-18 17:38:33 -040014 * Added conditional policy language extensions
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
Venkat Yekkirala7420ed22006-08-04 23:17:57 -070016 * Updated: Hewlett-Packard <paul.moore@hp.com>
17 *
18 * Added support for NetLabel
Paul Moore3bb56b22008-01-29 08:38:19 -050019 * Added support for the policy capability bitmap
Venkat Yekkirala7420ed22006-08-04 23:17:57 -070020 *
Chad Sellersb94c7e62006-11-06 12:38:18 -050021 * Updated: Chad Sellers <csellers@tresys.com>
22 *
23 * Added validation of kernel classes and permissions
24 *
KaiGai Kohei44c2d9b2009-06-18 17:26:13 +090025 * Updated: KaiGai Kohei <kaigai@ak.jp.nec.com>
26 *
27 * Added support for bounds domain and audit messaged on masked permissions
28 *
Guido Trentalancia0719aaf2010-02-03 16:40:20 +010029 * Updated: Guido Trentalancia <guido@trentalancia.com>
30 *
31 * Added support for runtime switching of the policy type
32 *
KaiGai Kohei44c2d9b2009-06-18 17:26:13 +090033 * Copyright (C) 2008, 2009 NEC Corporation
Paul Moore3bb56b22008-01-29 08:38:19 -050034 * Copyright (C) 2006, 2007 Hewlett-Packard Development Company, L.P.
Darrel Goeddel376bd9c2006-02-24 15:44:05 -060035 * Copyright (C) 2004-2006 Trusted Computer Solutions, Inc.
Chad Sellersb94c7e62006-11-06 12:38:18 -050036 * Copyright (C) 2003 - 2004, 2006 Tresys Technology, LLC
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 * Copyright (C) 2003 Red Hat, Inc., James Morris <jmorris@redhat.com>
38 * This program is free software; you can redistribute it and/or modify
Eric Paris5d55a342008-04-18 17:38:33 -040039 * it under the terms of the GNU General Public License as published by
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 * the Free Software Foundation, version 2.
41 */
42#include <linux/kernel.h>
43#include <linux/slab.h>
44#include <linux/string.h>
45#include <linux/spinlock.h>
Paul Moore9f2ad662006-11-17 17:38:53 -050046#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/errno.h>
48#include <linux/in.h>
49#include <linux/sched.h>
50#include <linux/audit.h>
Ingo Molnarbb0030792006-03-22 00:09:14 -080051#include <linux/mutex.h>
Adrian Bunk0e55a002008-03-31 01:54:02 +030052#include <linux/selinux.h>
Eric Paris6371dcd2010-07-29 23:02:34 -040053#include <linux/flex_array.h>
Stephen Rothwellf0d3d982010-10-20 16:08:00 +110054#include <linux/vmalloc.h>
Venkat Yekkirala7420ed22006-08-04 23:17:57 -070055#include <net/netlabel.h>
Ingo Molnarbb0030792006-03-22 00:09:14 -080056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include "flask.h"
58#include "avc.h"
59#include "avc_ss.h"
60#include "security.h"
61#include "context.h"
62#include "policydb.h"
63#include "sidtab.h"
64#include "services.h"
65#include "conditional.h"
66#include "mls.h"
Venkat Yekkirala7420ed22006-08-04 23:17:57 -070067#include "objsec.h"
Paul Moorec60475b2007-02-28 15:14:23 -050068#include "netlabel.h"
Paul Moore3de4bab2006-11-17 17:38:54 -050069#include "xfrm.h"
Paul Moore027527602006-11-29 13:18:18 -050070#include "ebitmap.h"
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +020071#include "audit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73extern void selnl_notify_policyload(u32 seqno);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Paul Moore3bb56b22008-01-29 08:38:19 -050075int selinux_policycap_netpeer;
Eric Parisb0c636b2008-02-28 12:58:40 -050076int selinux_policycap_openperm;
Paul Moore3bb56b22008-01-29 08:38:19 -050077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078static DEFINE_RWLOCK(policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80static struct sidtab sidtab;
81struct policydb policydb;
Eric Paris5d55a342008-04-18 17:38:33 -040082int ss_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84/*
85 * The largest sequence number that has been used when
86 * providing an access decision to the access vector cache.
87 * The sequence number only changes when a policy change
88 * occurs.
89 */
Eric Paris5d55a342008-04-18 17:38:33 -040090static u32 latest_granting;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92/* Forward declaration. */
93static int context_struct_to_string(struct context *context, char **scontext,
94 u32 *scontext_len);
95
Stephen Smalley19439d02010-01-14 17:28:10 -050096static void context_struct_compute_av(struct context *scontext,
97 struct context *tcontext,
98 u16 tclass,
99 struct av_decision *avd);
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400100
101struct selinux_mapping {
102 u16 value; /* policy value */
103 unsigned num_perms;
104 u32 perms[sizeof(u32) * 8];
105};
106
107static struct selinux_mapping *current_mapping;
108static u16 current_mapping_size;
109
110static int selinux_set_mapping(struct policydb *pol,
111 struct security_class_mapping *map,
112 struct selinux_mapping **out_map_p,
113 u16 *out_map_size)
114{
115 struct selinux_mapping *out_map = NULL;
116 size_t size = sizeof(struct selinux_mapping);
117 u16 i, j;
118 unsigned k;
119 bool print_unknown_handle = false;
120
121 /* Find number of classes in the input mapping */
122 if (!map)
123 return -EINVAL;
124 i = 0;
125 while (map[i].name)
126 i++;
127
128 /* Allocate space for the class records, plus one for class zero */
129 out_map = kcalloc(++i, size, GFP_ATOMIC);
130 if (!out_map)
131 return -ENOMEM;
132
133 /* Store the raw class and permission values */
134 j = 0;
135 while (map[j].name) {
136 struct security_class_mapping *p_in = map + (j++);
137 struct selinux_mapping *p_out = out_map + j;
138
139 /* An empty class string skips ahead */
140 if (!strcmp(p_in->name, "")) {
141 p_out->num_perms = 0;
142 continue;
143 }
144
145 p_out->value = string_to_security_class(pol, p_in->name);
146 if (!p_out->value) {
147 printk(KERN_INFO
148 "SELinux: Class %s not defined in policy.\n",
149 p_in->name);
150 if (pol->reject_unknown)
151 goto err;
152 p_out->num_perms = 0;
153 print_unknown_handle = true;
154 continue;
155 }
156
157 k = 0;
158 while (p_in->perms && p_in->perms[k]) {
159 /* An empty permission string skips ahead */
160 if (!*p_in->perms[k]) {
161 k++;
162 continue;
163 }
164 p_out->perms[k] = string_to_av_perm(pol, p_out->value,
165 p_in->perms[k]);
166 if (!p_out->perms[k]) {
167 printk(KERN_INFO
168 "SELinux: Permission %s in class %s not defined in policy.\n",
169 p_in->perms[k], p_in->name);
170 if (pol->reject_unknown)
171 goto err;
172 print_unknown_handle = true;
173 }
174
175 k++;
176 }
177 p_out->num_perms = k;
178 }
179
180 if (print_unknown_handle)
181 printk(KERN_INFO "SELinux: the above unknown classes and permissions will be %s\n",
182 pol->allow_unknown ? "allowed" : "denied");
183
184 *out_map_p = out_map;
185 *out_map_size = i;
186 return 0;
187err:
188 kfree(out_map);
189 return -EINVAL;
190}
191
192/*
193 * Get real, policy values from mapped values
194 */
195
196static u16 unmap_class(u16 tclass)
197{
198 if (tclass < current_mapping_size)
199 return current_mapping[tclass].value;
200
201 return tclass;
202}
203
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400204static void map_decision(u16 tclass, struct av_decision *avd,
205 int allow_unknown)
206{
207 if (tclass < current_mapping_size) {
208 unsigned i, n = current_mapping[tclass].num_perms;
209 u32 result;
210
211 for (i = 0, result = 0; i < n; i++) {
212 if (avd->allowed & current_mapping[tclass].perms[i])
213 result |= 1<<i;
214 if (allow_unknown && !current_mapping[tclass].perms[i])
215 result |= 1<<i;
216 }
217 avd->allowed = result;
218
219 for (i = 0, result = 0; i < n; i++)
220 if (avd->auditallow & current_mapping[tclass].perms[i])
221 result |= 1<<i;
222 avd->auditallow = result;
223
224 for (i = 0, result = 0; i < n; i++) {
225 if (avd->auditdeny & current_mapping[tclass].perms[i])
226 result |= 1<<i;
227 if (!allow_unknown && !current_mapping[tclass].perms[i])
228 result |= 1<<i;
229 }
Eric Paris0bce9522009-11-23 16:47:23 -0500230 /*
231 * In case the kernel has a bug and requests a permission
232 * between num_perms and the maximum permission number, we
233 * should audit that denial
234 */
235 for (; i < (sizeof(u32)*8); i++)
236 result |= 1<<i;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400237 avd->auditdeny = result;
238 }
239}
240
Guido Trentalancia0719aaf2010-02-03 16:40:20 +0100241int security_mls_enabled(void)
242{
243 return policydb.mls_enabled;
244}
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246/*
247 * Return the boolean value of a constraint expression
248 * when it is applied to the specified source and target
249 * security contexts.
250 *
251 * xcontext is a special beast... It is used by the validatetrans rules
252 * only. For these rules, scontext is the context before the transition,
253 * tcontext is the context after the transition, and xcontext is the context
254 * of the process performing the transition. All other callers of
255 * constraint_expr_eval should pass in NULL for xcontext.
256 */
257static int constraint_expr_eval(struct context *scontext,
258 struct context *tcontext,
259 struct context *xcontext,
260 struct constraint_expr *cexpr)
261{
262 u32 val1, val2;
263 struct context *c;
264 struct role_datum *r1, *r2;
265 struct mls_level *l1, *l2;
266 struct constraint_expr *e;
267 int s[CEXPR_MAXDEPTH];
268 int sp = -1;
269
270 for (e = cexpr; e; e = e->next) {
271 switch (e->expr_type) {
272 case CEXPR_NOT:
273 BUG_ON(sp < 0);
274 s[sp] = !s[sp];
275 break;
276 case CEXPR_AND:
277 BUG_ON(sp < 1);
278 sp--;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800279 s[sp] &= s[sp + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 break;
281 case CEXPR_OR:
282 BUG_ON(sp < 1);
283 sp--;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800284 s[sp] |= s[sp + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 break;
286 case CEXPR_ATTR:
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800287 if (sp == (CEXPR_MAXDEPTH - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return 0;
289 switch (e->attr) {
290 case CEXPR_USER:
291 val1 = scontext->user;
292 val2 = tcontext->user;
293 break;
294 case CEXPR_TYPE:
295 val1 = scontext->type;
296 val2 = tcontext->type;
297 break;
298 case CEXPR_ROLE:
299 val1 = scontext->role;
300 val2 = tcontext->role;
301 r1 = policydb.role_val_to_struct[val1 - 1];
302 r2 = policydb.role_val_to_struct[val2 - 1];
303 switch (e->op) {
304 case CEXPR_DOM:
305 s[++sp] = ebitmap_get_bit(&r1->dominates,
306 val2 - 1);
307 continue;
308 case CEXPR_DOMBY:
309 s[++sp] = ebitmap_get_bit(&r2->dominates,
310 val1 - 1);
311 continue;
312 case CEXPR_INCOMP:
Eric Paris5d55a342008-04-18 17:38:33 -0400313 s[++sp] = (!ebitmap_get_bit(&r1->dominates,
314 val2 - 1) &&
315 !ebitmap_get_bit(&r2->dominates,
316 val1 - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 continue;
318 default:
319 break;
320 }
321 break;
322 case CEXPR_L1L2:
323 l1 = &(scontext->range.level[0]);
324 l2 = &(tcontext->range.level[0]);
325 goto mls_ops;
326 case CEXPR_L1H2:
327 l1 = &(scontext->range.level[0]);
328 l2 = &(tcontext->range.level[1]);
329 goto mls_ops;
330 case CEXPR_H1L2:
331 l1 = &(scontext->range.level[1]);
332 l2 = &(tcontext->range.level[0]);
333 goto mls_ops;
334 case CEXPR_H1H2:
335 l1 = &(scontext->range.level[1]);
336 l2 = &(tcontext->range.level[1]);
337 goto mls_ops;
338 case CEXPR_L1H1:
339 l1 = &(scontext->range.level[0]);
340 l2 = &(scontext->range.level[1]);
341 goto mls_ops;
342 case CEXPR_L2H2:
343 l1 = &(tcontext->range.level[0]);
344 l2 = &(tcontext->range.level[1]);
345 goto mls_ops;
346mls_ops:
347 switch (e->op) {
348 case CEXPR_EQ:
349 s[++sp] = mls_level_eq(l1, l2);
350 continue;
351 case CEXPR_NEQ:
352 s[++sp] = !mls_level_eq(l1, l2);
353 continue;
354 case CEXPR_DOM:
355 s[++sp] = mls_level_dom(l1, l2);
356 continue;
357 case CEXPR_DOMBY:
358 s[++sp] = mls_level_dom(l2, l1);
359 continue;
360 case CEXPR_INCOMP:
361 s[++sp] = mls_level_incomp(l2, l1);
362 continue;
363 default:
364 BUG();
365 return 0;
366 }
367 break;
368 default:
369 BUG();
370 return 0;
371 }
372
373 switch (e->op) {
374 case CEXPR_EQ:
375 s[++sp] = (val1 == val2);
376 break;
377 case CEXPR_NEQ:
378 s[++sp] = (val1 != val2);
379 break;
380 default:
381 BUG();
382 return 0;
383 }
384 break;
385 case CEXPR_NAMES:
386 if (sp == (CEXPR_MAXDEPTH-1))
387 return 0;
388 c = scontext;
389 if (e->attr & CEXPR_TARGET)
390 c = tcontext;
391 else if (e->attr & CEXPR_XTARGET) {
392 c = xcontext;
393 if (!c) {
394 BUG();
395 return 0;
396 }
397 }
398 if (e->attr & CEXPR_USER)
399 val1 = c->user;
400 else if (e->attr & CEXPR_ROLE)
401 val1 = c->role;
402 else if (e->attr & CEXPR_TYPE)
403 val1 = c->type;
404 else {
405 BUG();
406 return 0;
407 }
408
409 switch (e->op) {
410 case CEXPR_EQ:
411 s[++sp] = ebitmap_get_bit(&e->names, val1 - 1);
412 break;
413 case CEXPR_NEQ:
414 s[++sp] = !ebitmap_get_bit(&e->names, val1 - 1);
415 break;
416 default:
417 BUG();
418 return 0;
419 }
420 break;
421 default:
422 BUG();
423 return 0;
424 }
425 }
426
427 BUG_ON(sp != 0);
428 return s[0];
429}
430
431/*
KaiGai Kohei44c2d9b2009-06-18 17:26:13 +0900432 * security_dump_masked_av - dumps masked permissions during
433 * security_compute_av due to RBAC, MLS/Constraint and Type bounds.
434 */
435static int dump_masked_av_helper(void *k, void *d, void *args)
436{
437 struct perm_datum *pdatum = d;
438 char **permission_names = args;
439
440 BUG_ON(pdatum->value < 1 || pdatum->value > 32);
441
442 permission_names[pdatum->value - 1] = (char *)k;
443
444 return 0;
445}
446
447static void security_dump_masked_av(struct context *scontext,
448 struct context *tcontext,
449 u16 tclass,
450 u32 permissions,
451 const char *reason)
452{
453 struct common_datum *common_dat;
454 struct class_datum *tclass_dat;
455 struct audit_buffer *ab;
456 char *tclass_name;
457 char *scontext_name = NULL;
458 char *tcontext_name = NULL;
459 char *permission_names[32];
James Morris2da5d312010-02-16 17:29:06 +1100460 int index;
461 u32 length;
KaiGai Kohei44c2d9b2009-06-18 17:26:13 +0900462 bool need_comma = false;
463
464 if (!permissions)
465 return;
466
467 tclass_name = policydb.p_class_val_to_name[tclass - 1];
468 tclass_dat = policydb.class_val_to_struct[tclass - 1];
469 common_dat = tclass_dat->comdatum;
470
471 /* init permission_names */
472 if (common_dat &&
473 hashtab_map(common_dat->permissions.table,
474 dump_masked_av_helper, permission_names) < 0)
475 goto out;
476
477 if (hashtab_map(tclass_dat->permissions.table,
478 dump_masked_av_helper, permission_names) < 0)
479 goto out;
480
481 /* get scontext/tcontext in text form */
482 if (context_struct_to_string(scontext,
483 &scontext_name, &length) < 0)
484 goto out;
485
486 if (context_struct_to_string(tcontext,
487 &tcontext_name, &length) < 0)
488 goto out;
489
490 /* audit a message */
491 ab = audit_log_start(current->audit_context,
492 GFP_ATOMIC, AUDIT_SELINUX_ERR);
493 if (!ab)
494 goto out;
495
496 audit_log_format(ab, "op=security_compute_av reason=%s "
497 "scontext=%s tcontext=%s tclass=%s perms=",
498 reason, scontext_name, tcontext_name, tclass_name);
499
500 for (index = 0; index < 32; index++) {
501 u32 mask = (1 << index);
502
503 if ((mask & permissions) == 0)
504 continue;
505
506 audit_log_format(ab, "%s%s",
507 need_comma ? "," : "",
508 permission_names[index]
509 ? permission_names[index] : "????");
510 need_comma = true;
511 }
512 audit_log_end(ab);
513out:
514 /* release scontext/tcontext */
515 kfree(tcontext_name);
516 kfree(scontext_name);
517
518 return;
519}
520
521/*
KaiGai Koheid9250de2008-08-28 16:35:57 +0900522 * security_boundary_permission - drops violated permissions
523 * on boundary constraint.
524 */
525static void type_attribute_bounds_av(struct context *scontext,
526 struct context *tcontext,
527 u16 tclass,
KaiGai Koheid9250de2008-08-28 16:35:57 +0900528 struct av_decision *avd)
529{
KaiGai Kohei2ae3ba32010-02-17 08:49:41 +0900530 struct context lo_scontext;
531 struct context lo_tcontext;
532 struct av_decision lo_avd;
KaiGai Koheid9250de2008-08-28 16:35:57 +0900533 struct type_datum *source
534 = policydb.type_val_to_struct[scontext->type - 1];
KaiGai Kohei2ae3ba32010-02-17 08:49:41 +0900535 struct type_datum *target
536 = policydb.type_val_to_struct[tcontext->type - 1];
537 u32 masked = 0;
KaiGai Koheid9250de2008-08-28 16:35:57 +0900538
539 if (source->bounds) {
540 memset(&lo_avd, 0, sizeof(lo_avd));
541
542 memcpy(&lo_scontext, scontext, sizeof(lo_scontext));
543 lo_scontext.type = source->bounds;
544
545 context_struct_compute_av(&lo_scontext,
546 tcontext,
547 tclass,
KaiGai Koheid9250de2008-08-28 16:35:57 +0900548 &lo_avd);
549 if ((lo_avd.allowed & avd->allowed) == avd->allowed)
550 return; /* no masked permission */
551 masked = ~lo_avd.allowed & avd->allowed;
KaiGai Kohei2ae3ba32010-02-17 08:49:41 +0900552 }
KaiGai Koheid9250de2008-08-28 16:35:57 +0900553
KaiGai Kohei2ae3ba32010-02-17 08:49:41 +0900554 if (target->bounds) {
555 memset(&lo_avd, 0, sizeof(lo_avd));
556
557 memcpy(&lo_tcontext, tcontext, sizeof(lo_tcontext));
558 lo_tcontext.type = target->bounds;
559
560 context_struct_compute_av(scontext,
561 &lo_tcontext,
562 tclass,
563 &lo_avd);
564 if ((lo_avd.allowed & avd->allowed) == avd->allowed)
565 return; /* no masked permission */
566 masked = ~lo_avd.allowed & avd->allowed;
567 }
568
569 if (source->bounds && target->bounds) {
570 memset(&lo_avd, 0, sizeof(lo_avd));
571 /*
572 * lo_scontext and lo_tcontext are already
573 * set up.
574 */
575
576 context_struct_compute_av(&lo_scontext,
577 &lo_tcontext,
578 tclass,
579 &lo_avd);
580 if ((lo_avd.allowed & avd->allowed) == avd->allowed)
581 return; /* no masked permission */
582 masked = ~lo_avd.allowed & avd->allowed;
583 }
584
585 if (masked) {
KaiGai Koheid9250de2008-08-28 16:35:57 +0900586 /* mask violated permissions */
587 avd->allowed &= ~masked;
588
KaiGai Kohei44c2d9b2009-06-18 17:26:13 +0900589 /* audit masked permissions */
590 security_dump_masked_av(scontext, tcontext,
591 tclass, masked, "bounds");
KaiGai Koheid9250de2008-08-28 16:35:57 +0900592 }
593}
594
595/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 * Compute access vectors based on a context structure pair for
597 * the permissions in a particular class.
598 */
Stephen Smalley19439d02010-01-14 17:28:10 -0500599static void context_struct_compute_av(struct context *scontext,
600 struct context *tcontext,
601 u16 tclass,
602 struct av_decision *avd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
604 struct constraint_node *constraint;
605 struct role_allow *ra;
606 struct avtab_key avkey;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700607 struct avtab_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 struct class_datum *tclass_datum;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700609 struct ebitmap *sattr, *tattr;
610 struct ebitmap_node *snode, *tnode;
611 unsigned int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 avd->allowed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 avd->auditallow = 0;
615 avd->auditdeny = 0xffffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400617 if (unlikely(!tclass || tclass > policydb.p_classes.nprim)) {
618 if (printk_ratelimit())
619 printk(KERN_WARNING "SELinux: Invalid class %hu\n", tclass);
Stephen Smalley19439d02010-01-14 17:28:10 -0500620 return;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400621 }
Eric Paris3f120702007-09-21 14:37:10 -0400622
623 tclass_datum = policydb.class_val_to_struct[tclass - 1];
624
625 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 * If a specific type enforcement rule was defined for
627 * this permission check, then use it.
628 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 avkey.target_class = tclass;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700630 avkey.specified = AVTAB_AV;
Eric Paris6371dcd2010-07-29 23:02:34 -0400631 sattr = flex_array_get(policydb.type_attr_map_array, scontext->type - 1);
632 BUG_ON(!sattr);
633 tattr = flex_array_get(policydb.type_attr_map_array, tcontext->type - 1);
634 BUG_ON(!tattr);
KaiGai Kohei9fe79ad2007-09-29 02:20:55 +0900635 ebitmap_for_each_positive_bit(sattr, snode, i) {
636 ebitmap_for_each_positive_bit(tattr, tnode, j) {
Stephen Smalley782ebb92005-09-03 15:55:16 -0700637 avkey.source_type = i + 1;
638 avkey.target_type = j + 1;
639 for (node = avtab_search_node(&policydb.te_avtab, &avkey);
Vesa-Matti Karidbc74c62008-08-07 03:18:20 +0300640 node;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700641 node = avtab_search_node_next(node, avkey.specified)) {
642 if (node->key.specified == AVTAB_ALLOWED)
643 avd->allowed |= node->datum.data;
644 else if (node->key.specified == AVTAB_AUDITALLOW)
645 avd->auditallow |= node->datum.data;
646 else if (node->key.specified == AVTAB_AUDITDENY)
647 avd->auditdeny &= node->datum.data;
648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Stephen Smalley782ebb92005-09-03 15:55:16 -0700650 /* Check conditional av table for additional permissions */
651 cond_compute_av(&policydb.te_cond_avtab, &avkey, avd);
652
653 }
654 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 /*
657 * Remove any permissions prohibited by a constraint (this includes
658 * the MLS policy).
659 */
660 constraint = tclass_datum->constraints;
661 while (constraint) {
662 if ((constraint->permissions & (avd->allowed)) &&
663 !constraint_expr_eval(scontext, tcontext, NULL,
664 constraint->expr)) {
KaiGai Koheicaabbdc2009-06-18 17:30:07 +0900665 avd->allowed &= ~(constraint->permissions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
667 constraint = constraint->next;
668 }
669
670 /*
671 * If checking process transition permission and the
672 * role is changing, then check the (current_role, new_role)
673 * pair.
674 */
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400675 if (tclass == policydb.process_class &&
676 (avd->allowed & policydb.process_trans_perms) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 scontext->role != tcontext->role) {
678 for (ra = policydb.role_allow; ra; ra = ra->next) {
679 if (scontext->role == ra->role &&
680 tcontext->role == ra->new_role)
681 break;
682 }
683 if (!ra)
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400684 avd->allowed &= ~policydb.process_trans_perms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
686
KaiGai Koheid9250de2008-08-28 16:35:57 +0900687 /*
688 * If the given source and target types have boundary
689 * constraint, lazy checks have to mask any violated
690 * permission and notice it to userspace via audit.
691 */
692 type_attribute_bounds_av(scontext, tcontext,
Stephen Smalley19439d02010-01-14 17:28:10 -0500693 tclass, avd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694}
695
696static int security_validtrans_handle_fail(struct context *ocontext,
Eric Paris5d55a342008-04-18 17:38:33 -0400697 struct context *ncontext,
698 struct context *tcontext,
699 u16 tclass)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
701 char *o = NULL, *n = NULL, *t = NULL;
702 u32 olen, nlen, tlen;
703
Eric Paris4b02b522010-11-23 11:40:08 -0500704 if (context_struct_to_string(ocontext, &o, &olen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 goto out;
Eric Paris4b02b522010-11-23 11:40:08 -0500706 if (context_struct_to_string(ncontext, &n, &nlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 goto out;
Eric Paris4b02b522010-11-23 11:40:08 -0500708 if (context_struct_to_string(tcontext, &t, &tlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 goto out;
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100710 audit_log(current->audit_context, GFP_ATOMIC, AUDIT_SELINUX_ERR,
Eric Paris5d55a342008-04-18 17:38:33 -0400711 "security_validate_transition: denied for"
712 " oldcontext=%s newcontext=%s taskcontext=%s tclass=%s",
713 o, n, t, policydb.p_class_val_to_name[tclass-1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714out:
715 kfree(o);
716 kfree(n);
717 kfree(t);
718
719 if (!selinux_enforcing)
720 return 0;
721 return -EPERM;
722}
723
724int security_validate_transition(u32 oldsid, u32 newsid, u32 tasksid,
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400725 u16 orig_tclass)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
727 struct context *ocontext;
728 struct context *ncontext;
729 struct context *tcontext;
730 struct class_datum *tclass_datum;
731 struct constraint_node *constraint;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400732 u16 tclass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 int rc = 0;
734
735 if (!ss_initialized)
736 return 0;
737
James Morris0804d112008-06-06 18:40:29 +1000738 read_lock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400740 tclass = unmap_class(orig_tclass);
741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (!tclass || tclass > policydb.p_classes.nprim) {
Eric Paris744ba352008-04-17 11:52:44 -0400743 printk(KERN_ERR "SELinux: %s: unrecognized class %d\n",
744 __func__, tclass);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 rc = -EINVAL;
746 goto out;
747 }
748 tclass_datum = policydb.class_val_to_struct[tclass - 1];
749
750 ocontext = sidtab_search(&sidtab, oldsid);
751 if (!ocontext) {
Eric Paris744ba352008-04-17 11:52:44 -0400752 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
753 __func__, oldsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 rc = -EINVAL;
755 goto out;
756 }
757
758 ncontext = sidtab_search(&sidtab, newsid);
759 if (!ncontext) {
Eric Paris744ba352008-04-17 11:52:44 -0400760 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
761 __func__, newsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 rc = -EINVAL;
763 goto out;
764 }
765
766 tcontext = sidtab_search(&sidtab, tasksid);
767 if (!tcontext) {
Eric Paris744ba352008-04-17 11:52:44 -0400768 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
769 __func__, tasksid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 rc = -EINVAL;
771 goto out;
772 }
773
774 constraint = tclass_datum->validatetrans;
775 while (constraint) {
776 if (!constraint_expr_eval(ocontext, ncontext, tcontext,
Eric Paris5d55a342008-04-18 17:38:33 -0400777 constraint->expr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 rc = security_validtrans_handle_fail(ocontext, ncontext,
Eric Paris5d55a342008-04-18 17:38:33 -0400779 tcontext, tclass);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 goto out;
781 }
782 constraint = constraint->next;
783 }
784
785out:
James Morris0804d112008-06-06 18:40:29 +1000786 read_unlock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 return rc;
788}
789
KaiGai Koheid9250de2008-08-28 16:35:57 +0900790/*
791 * security_bounded_transition - check whether the given
792 * transition is directed to bounded, or not.
793 * It returns 0, if @newsid is bounded by @oldsid.
794 * Otherwise, it returns error code.
795 *
796 * @oldsid : current security identifier
797 * @newsid : destinated security identifier
798 */
799int security_bounded_transition(u32 old_sid, u32 new_sid)
800{
801 struct context *old_context, *new_context;
802 struct type_datum *type;
803 int index;
Eric Paris4b02b522010-11-23 11:40:08 -0500804 int rc;
KaiGai Koheid9250de2008-08-28 16:35:57 +0900805
806 read_lock(&policy_rwlock);
807
Eric Paris4b02b522010-11-23 11:40:08 -0500808 rc = -EINVAL;
KaiGai Koheid9250de2008-08-28 16:35:57 +0900809 old_context = sidtab_search(&sidtab, old_sid);
810 if (!old_context) {
811 printk(KERN_ERR "SELinux: %s: unrecognized SID %u\n",
812 __func__, old_sid);
813 goto out;
814 }
815
Eric Paris4b02b522010-11-23 11:40:08 -0500816 rc = -EINVAL;
KaiGai Koheid9250de2008-08-28 16:35:57 +0900817 new_context = sidtab_search(&sidtab, new_sid);
818 if (!new_context) {
819 printk(KERN_ERR "SELinux: %s: unrecognized SID %u\n",
820 __func__, new_sid);
821 goto out;
822 }
823
Eric Paris4b02b522010-11-23 11:40:08 -0500824 rc = 0;
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200825 /* type/domain unchanged */
Eric Paris4b02b522010-11-23 11:40:08 -0500826 if (old_context->type == new_context->type)
KaiGai Koheid9250de2008-08-28 16:35:57 +0900827 goto out;
KaiGai Koheid9250de2008-08-28 16:35:57 +0900828
829 index = new_context->type;
830 while (true) {
831 type = policydb.type_val_to_struct[index - 1];
832 BUG_ON(!type);
833
834 /* not bounded anymore */
Eric Paris4b02b522010-11-23 11:40:08 -0500835 rc = -EPERM;
836 if (!type->bounds)
KaiGai Koheid9250de2008-08-28 16:35:57 +0900837 break;
KaiGai Koheid9250de2008-08-28 16:35:57 +0900838
839 /* @newsid is bounded by @oldsid */
Eric Paris4b02b522010-11-23 11:40:08 -0500840 rc = 0;
841 if (type->bounds == old_context->type)
KaiGai Koheid9250de2008-08-28 16:35:57 +0900842 break;
Eric Paris4b02b522010-11-23 11:40:08 -0500843
KaiGai Koheid9250de2008-08-28 16:35:57 +0900844 index = type->bounds;
845 }
KaiGai Kohei44c2d9b2009-06-18 17:26:13 +0900846
847 if (rc) {
848 char *old_name = NULL;
849 char *new_name = NULL;
James Morris2da5d312010-02-16 17:29:06 +1100850 u32 length;
KaiGai Kohei44c2d9b2009-06-18 17:26:13 +0900851
852 if (!context_struct_to_string(old_context,
853 &old_name, &length) &&
854 !context_struct_to_string(new_context,
855 &new_name, &length)) {
856 audit_log(current->audit_context,
857 GFP_ATOMIC, AUDIT_SELINUX_ERR,
858 "op=security_bounded_transition "
859 "result=denied "
860 "oldcontext=%s newcontext=%s",
861 old_name, new_name);
862 }
863 kfree(new_name);
864 kfree(old_name);
865 }
KaiGai Koheid9250de2008-08-28 16:35:57 +0900866out:
867 read_unlock(&policy_rwlock);
868
869 return rc;
870}
871
Stephen Smalley19439d02010-01-14 17:28:10 -0500872static void avd_init(struct av_decision *avd)
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400873{
Stephen Smalley19439d02010-01-14 17:28:10 -0500874 avd->allowed = 0;
875 avd->auditallow = 0;
876 avd->auditdeny = 0xffffffff;
877 avd->seqno = latest_granting;
878 avd->flags = 0;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400879}
880
Stephen Smalley19439d02010-01-14 17:28:10 -0500881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882/**
883 * security_compute_av - Compute access vector decisions.
884 * @ssid: source security identifier
885 * @tsid: target security identifier
886 * @tclass: target security class
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 * @avd: access vector decisions
888 *
889 * Compute a set of access vector decisions based on the
890 * SID pair (@ssid, @tsid) for the permissions in @tclass.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 */
Stephen Smalley19439d02010-01-14 17:28:10 -0500892void security_compute_av(u32 ssid,
893 u32 tsid,
894 u16 orig_tclass,
895 struct av_decision *avd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400897 u16 tclass;
Stephen Smalley19439d02010-01-14 17:28:10 -0500898 struct context *scontext = NULL, *tcontext = NULL;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400899
Stephen Smalleyb7f30082009-10-19 10:08:50 -0400900 read_lock(&policy_rwlock);
Stephen Smalley19439d02010-01-14 17:28:10 -0500901 avd_init(avd);
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400902 if (!ss_initialized)
903 goto allow;
904
Stephen Smalley19439d02010-01-14 17:28:10 -0500905 scontext = sidtab_search(&sidtab, ssid);
906 if (!scontext) {
907 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
908 __func__, ssid);
909 goto out;
910 }
911
912 /* permissive domain? */
913 if (ebitmap_get_bit(&policydb.permissive_map, scontext->type))
914 avd->flags |= AVD_FLAGS_PERMISSIVE;
915
916 tcontext = sidtab_search(&sidtab, tsid);
917 if (!tcontext) {
918 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
919 __func__, tsid);
920 goto out;
921 }
922
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400923 tclass = unmap_class(orig_tclass);
924 if (unlikely(orig_tclass && !tclass)) {
925 if (policydb.allow_unknown)
926 goto allow;
Stephen Smalleyb7f30082009-10-19 10:08:50 -0400927 goto out;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400928 }
Stephen Smalley19439d02010-01-14 17:28:10 -0500929 context_struct_compute_av(scontext, tcontext, tclass, avd);
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400930 map_decision(orig_tclass, avd, policydb.allow_unknown);
Stephen Smalleyb7f30082009-10-19 10:08:50 -0400931out:
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400932 read_unlock(&policy_rwlock);
Stephen Smalley19439d02010-01-14 17:28:10 -0500933 return;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400934allow:
935 avd->allowed = 0xffffffff;
Stephen Smalleyb7f30082009-10-19 10:08:50 -0400936 goto out;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400937}
938
Stephen Smalley19439d02010-01-14 17:28:10 -0500939void security_compute_av_user(u32 ssid,
940 u32 tsid,
941 u16 tclass,
942 struct av_decision *avd)
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400943{
Stephen Smalley19439d02010-01-14 17:28:10 -0500944 struct context *scontext = NULL, *tcontext = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
James Morris0804d112008-06-06 18:40:29 +1000946 read_lock(&policy_rwlock);
Stephen Smalley19439d02010-01-14 17:28:10 -0500947 avd_init(avd);
948 if (!ss_initialized)
949 goto allow;
950
951 scontext = sidtab_search(&sidtab, ssid);
952 if (!scontext) {
953 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
954 __func__, ssid);
955 goto out;
956 }
957
958 /* permissive domain? */
959 if (ebitmap_get_bit(&policydb.permissive_map, scontext->type))
960 avd->flags |= AVD_FLAGS_PERMISSIVE;
961
962 tcontext = sidtab_search(&sidtab, tsid);
963 if (!tcontext) {
964 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
965 __func__, tsid);
966 goto out;
967 }
968
969 if (unlikely(!tclass)) {
970 if (policydb.allow_unknown)
971 goto allow;
972 goto out;
973 }
974
975 context_struct_compute_av(scontext, tcontext, tclass, avd);
976 out:
James Morris0804d112008-06-06 18:40:29 +1000977 read_unlock(&policy_rwlock);
Stephen Smalley19439d02010-01-14 17:28:10 -0500978 return;
979allow:
980 avd->allowed = 0xffffffff;
981 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982}
983
984/*
985 * Write the security context string representation of
986 * the context structure `context' into a dynamically
987 * allocated string of the correct size. Set `*scontext'
988 * to point to this string and set `*scontext_len' to
989 * the length of the string.
990 */
991static int context_struct_to_string(struct context *context, char **scontext, u32 *scontext_len)
992{
993 char *scontextp;
994
Eric Parisd5630b92010-10-13 16:24:48 -0400995 if (scontext)
996 *scontext = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 *scontext_len = 0;
998
Stephen Smalley12b29f32008-05-07 13:03:20 -0400999 if (context->len) {
1000 *scontext_len = context->len;
1001 *scontext = kstrdup(context->str, GFP_ATOMIC);
1002 if (!(*scontext))
1003 return -ENOMEM;
1004 return 0;
1005 }
1006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 /* Compute the size of the context. */
1008 *scontext_len += strlen(policydb.p_user_val_to_name[context->user - 1]) + 1;
1009 *scontext_len += strlen(policydb.p_role_val_to_name[context->role - 1]) + 1;
1010 *scontext_len += strlen(policydb.p_type_val_to_name[context->type - 1]) + 1;
1011 *scontext_len += mls_compute_context_len(context);
1012
Eric Parisd5630b92010-10-13 16:24:48 -04001013 if (!scontext)
1014 return 0;
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 /* Allocate space for the context; caller must free this space. */
1017 scontextp = kmalloc(*scontext_len, GFP_ATOMIC);
Eric Paris5d55a342008-04-18 17:38:33 -04001018 if (!scontextp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 *scontext = scontextp;
1021
1022 /*
1023 * Copy the user name, role name and type name into the context.
1024 */
1025 sprintf(scontextp, "%s:%s:%s",
1026 policydb.p_user_val_to_name[context->user - 1],
1027 policydb.p_role_val_to_name[context->role - 1],
1028 policydb.p_type_val_to_name[context->type - 1]);
1029 scontextp += strlen(policydb.p_user_val_to_name[context->user - 1]) +
Eric Paris5d55a342008-04-18 17:38:33 -04001030 1 + strlen(policydb.p_role_val_to_name[context->role - 1]) +
1031 1 + strlen(policydb.p_type_val_to_name[context->type - 1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 mls_sid_to_context(context, &scontextp);
1034
1035 *scontextp = 0;
1036
1037 return 0;
1038}
1039
1040#include "initial_sid_to_string.h"
1041
James Carterf0ee2e42007-04-04 10:11:29 -04001042const char *security_get_initial_sid_context(u32 sid)
1043{
1044 if (unlikely(sid > SECINITSID_NUM))
1045 return NULL;
1046 return initial_sid_to_string[sid];
1047}
1048
Stephen Smalley12b29f32008-05-07 13:03:20 -04001049static int security_sid_to_context_core(u32 sid, char **scontext,
1050 u32 *scontext_len, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
1052 struct context *context;
1053 int rc = 0;
1054
Eric Parisd5630b92010-10-13 16:24:48 -04001055 if (scontext)
1056 *scontext = NULL;
Stephen Smalley4f4acf32007-02-26 12:02:34 -05001057 *scontext_len = 0;
1058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 if (!ss_initialized) {
1060 if (sid <= SECINITSID_NUM) {
1061 char *scontextp;
1062
1063 *scontext_len = strlen(initial_sid_to_string[sid]) + 1;
Eric Parisd5630b92010-10-13 16:24:48 -04001064 if (!scontext)
1065 goto out;
Eric Paris5d55a342008-04-18 17:38:33 -04001066 scontextp = kmalloc(*scontext_len, GFP_ATOMIC);
Serge E. Hallyn0cccca062006-05-15 09:43:48 -07001067 if (!scontextp) {
1068 rc = -ENOMEM;
1069 goto out;
1070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 strcpy(scontextp, initial_sid_to_string[sid]);
1072 *scontext = scontextp;
1073 goto out;
1074 }
Eric Paris744ba352008-04-17 11:52:44 -04001075 printk(KERN_ERR "SELinux: %s: called before initial "
1076 "load_policy on unknown SID %d\n", __func__, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 rc = -EINVAL;
1078 goto out;
1079 }
James Morris0804d112008-06-06 18:40:29 +10001080 read_lock(&policy_rwlock);
Stephen Smalley12b29f32008-05-07 13:03:20 -04001081 if (force)
1082 context = sidtab_search_force(&sidtab, sid);
1083 else
1084 context = sidtab_search(&sidtab, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 if (!context) {
Eric Paris744ba352008-04-17 11:52:44 -04001086 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
1087 __func__, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 rc = -EINVAL;
1089 goto out_unlock;
1090 }
1091 rc = context_struct_to_string(context, scontext, scontext_len);
1092out_unlock:
James Morris0804d112008-06-06 18:40:29 +10001093 read_unlock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094out:
1095 return rc;
1096
1097}
1098
Stephen Smalley12b29f32008-05-07 13:03:20 -04001099/**
1100 * security_sid_to_context - Obtain a context for a given SID.
1101 * @sid: security identifier, SID
1102 * @scontext: security context
1103 * @scontext_len: length in bytes
1104 *
1105 * Write the string representation of the context associated with @sid
1106 * into a dynamically allocated string of the correct size. Set @scontext
1107 * to point to this string and set @scontext_len to the length of the string.
1108 */
1109int security_sid_to_context(u32 sid, char **scontext, u32 *scontext_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
Stephen Smalley12b29f32008-05-07 13:03:20 -04001111 return security_sid_to_context_core(sid, scontext, scontext_len, 0);
1112}
1113
1114int security_sid_to_context_force(u32 sid, char **scontext, u32 *scontext_len)
1115{
1116 return security_sid_to_context_core(sid, scontext, scontext_len, 1);
1117}
1118
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001119/*
1120 * Caveat: Mutates scontext.
1121 */
Stephen Smalley12b29f32008-05-07 13:03:20 -04001122static int string_to_context_struct(struct policydb *pol,
1123 struct sidtab *sidtabp,
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001124 char *scontext,
Stephen Smalley12b29f32008-05-07 13:03:20 -04001125 u32 scontext_len,
1126 struct context *ctx,
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001127 u32 def_sid)
Stephen Smalley12b29f32008-05-07 13:03:20 -04001128{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 struct role_datum *role;
1130 struct type_datum *typdatum;
1131 struct user_datum *usrdatum;
1132 char *scontextp, *p, oldc;
1133 int rc = 0;
1134
Stephen Smalley12b29f32008-05-07 13:03:20 -04001135 context_init(ctx);
1136
Stephen Smalley12b29f32008-05-07 13:03:20 -04001137 /* Parse the security context. */
1138
1139 rc = -EINVAL;
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001140 scontextp = (char *) scontext;
Stephen Smalley12b29f32008-05-07 13:03:20 -04001141
1142 /* Extract the user. */
1143 p = scontextp;
1144 while (*p && *p != ':')
1145 p++;
1146
1147 if (*p == 0)
1148 goto out;
1149
1150 *p++ = 0;
1151
1152 usrdatum = hashtab_search(pol->p_users.table, scontextp);
1153 if (!usrdatum)
1154 goto out;
1155
1156 ctx->user = usrdatum->value;
1157
1158 /* Extract role. */
1159 scontextp = p;
1160 while (*p && *p != ':')
1161 p++;
1162
1163 if (*p == 0)
1164 goto out;
1165
1166 *p++ = 0;
1167
1168 role = hashtab_search(pol->p_roles.table, scontextp);
1169 if (!role)
1170 goto out;
1171 ctx->role = role->value;
1172
1173 /* Extract type. */
1174 scontextp = p;
1175 while (*p && *p != ':')
1176 p++;
1177 oldc = *p;
1178 *p++ = 0;
1179
1180 typdatum = hashtab_search(pol->p_types.table, scontextp);
KaiGai Koheid9250de2008-08-28 16:35:57 +09001181 if (!typdatum || typdatum->attribute)
Stephen Smalley12b29f32008-05-07 13:03:20 -04001182 goto out;
1183
1184 ctx->type = typdatum->value;
1185
1186 rc = mls_context_to_sid(pol, oldc, &p, ctx, sidtabp, def_sid);
1187 if (rc)
1188 goto out;
1189
Eric Paris4b02b522010-11-23 11:40:08 -05001190 rc = -EINVAL;
1191 if ((p - scontext) < scontext_len)
Stephen Smalley12b29f32008-05-07 13:03:20 -04001192 goto out;
Stephen Smalley12b29f32008-05-07 13:03:20 -04001193
1194 /* Check the validity of the new context. */
Eric Paris4b02b522010-11-23 11:40:08 -05001195 if (!policydb_context_isvalid(pol, ctx))
Stephen Smalley12b29f32008-05-07 13:03:20 -04001196 goto out;
Stephen Smalley12b29f32008-05-07 13:03:20 -04001197 rc = 0;
1198out:
Eric Paris8e531af2008-09-03 11:49:47 -04001199 if (rc)
1200 context_destroy(ctx);
Stephen Smalley12b29f32008-05-07 13:03:20 -04001201 return rc;
1202}
1203
1204static int security_context_to_sid_core(const char *scontext, u32 scontext_len,
1205 u32 *sid, u32 def_sid, gfp_t gfp_flags,
1206 int force)
1207{
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001208 char *scontext2, *str = NULL;
Stephen Smalley12b29f32008-05-07 13:03:20 -04001209 struct context context;
1210 int rc = 0;
1211
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 if (!ss_initialized) {
1213 int i;
1214
1215 for (i = 1; i < SECINITSID_NUM; i++) {
1216 if (!strcmp(initial_sid_to_string[i], scontext)) {
1217 *sid = i;
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001218 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 }
1220 }
1221 *sid = SECINITSID_KERNEL;
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001222 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224 *sid = SECSID_NULL;
1225
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001226 /* Copy the string so that we can modify the copy as we parse it. */
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001227 scontext2 = kmalloc(scontext_len + 1, gfp_flags);
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001228 if (!scontext2)
1229 return -ENOMEM;
1230 memcpy(scontext2, scontext, scontext_len);
1231 scontext2[scontext_len] = 0;
1232
1233 if (force) {
1234 /* Save another copy for storing in uninterpreted form */
Eric Paris4b02b522010-11-23 11:40:08 -05001235 rc = -ENOMEM;
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001236 str = kstrdup(scontext2, gfp_flags);
Eric Paris4b02b522010-11-23 11:40:08 -05001237 if (!str)
1238 goto out;
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001239 }
1240
James Morris0804d112008-06-06 18:40:29 +10001241 read_lock(&policy_rwlock);
Eric Paris4b02b522010-11-23 11:40:08 -05001242 rc = string_to_context_struct(&policydb, &sidtab, scontext2,
1243 scontext_len, &context, def_sid);
Stephen Smalley12b29f32008-05-07 13:03:20 -04001244 if (rc == -EINVAL && force) {
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001245 context.str = str;
Stephen Smalley12b29f32008-05-07 13:03:20 -04001246 context.len = scontext_len;
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001247 str = NULL;
Stephen Smalley12b29f32008-05-07 13:03:20 -04001248 } else if (rc)
Eric Paris4b02b522010-11-23 11:40:08 -05001249 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 rc = sidtab_context_to_sid(&sidtab, &context, sid);
Eric Paris8e531af2008-09-03 11:49:47 -04001251 context_destroy(&context);
Eric Paris4b02b522010-11-23 11:40:08 -05001252out_unlock:
James Morris0804d112008-06-06 18:40:29 +10001253 read_unlock(&policy_rwlock);
Eric Paris4b02b522010-11-23 11:40:08 -05001254out:
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001255 kfree(scontext2);
1256 kfree(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 return rc;
1258}
1259
James Morrisf5c1d5b2005-07-28 01:07:37 -07001260/**
1261 * security_context_to_sid - Obtain a SID for a given security context.
1262 * @scontext: security context
1263 * @scontext_len: length in bytes
1264 * @sid: security identifier, SID
1265 *
1266 * Obtains a SID associated with the security context that
1267 * has the string representation specified by @scontext.
1268 * Returns -%EINVAL if the context is invalid, -%ENOMEM if insufficient
1269 * memory is available, or 0 on success.
1270 */
David Howells8f0cfa52008-04-29 00:59:41 -07001271int security_context_to_sid(const char *scontext, u32 scontext_len, u32 *sid)
James Morrisf5c1d5b2005-07-28 01:07:37 -07001272{
1273 return security_context_to_sid_core(scontext, scontext_len,
Stephen Smalley12b29f32008-05-07 13:03:20 -04001274 sid, SECSID_NULL, GFP_KERNEL, 0);
James Morrisf5c1d5b2005-07-28 01:07:37 -07001275}
1276
1277/**
1278 * security_context_to_sid_default - Obtain a SID for a given security context,
1279 * falling back to specified default if needed.
1280 *
1281 * @scontext: security context
1282 * @scontext_len: length in bytes
1283 * @sid: security identifier, SID
Gabriel Craciunescud133a962007-07-31 00:39:19 -07001284 * @def_sid: default SID to assign on error
James Morrisf5c1d5b2005-07-28 01:07:37 -07001285 *
1286 * Obtains a SID associated with the security context that
1287 * has the string representation specified by @scontext.
1288 * The default SID is passed to the MLS layer to be used to allow
1289 * kernel labeling of the MLS field if the MLS field is not present
1290 * (for upgrading to MLS without full relabel).
Stephen Smalley12b29f32008-05-07 13:03:20 -04001291 * Implicitly forces adding of the context even if it cannot be mapped yet.
James Morrisf5c1d5b2005-07-28 01:07:37 -07001292 * Returns -%EINVAL if the context is invalid, -%ENOMEM if insufficient
1293 * memory is available, or 0 on success.
1294 */
David Howells7bf570d2008-04-29 20:52:51 +01001295int security_context_to_sid_default(const char *scontext, u32 scontext_len,
1296 u32 *sid, u32 def_sid, gfp_t gfp_flags)
James Morrisf5c1d5b2005-07-28 01:07:37 -07001297{
1298 return security_context_to_sid_core(scontext, scontext_len,
Stephen Smalley12b29f32008-05-07 13:03:20 -04001299 sid, def_sid, gfp_flags, 1);
1300}
1301
1302int security_context_to_sid_force(const char *scontext, u32 scontext_len,
1303 u32 *sid)
1304{
1305 return security_context_to_sid_core(scontext, scontext_len,
1306 sid, SECSID_NULL, GFP_KERNEL, 1);
James Morrisf5c1d5b2005-07-28 01:07:37 -07001307}
1308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309static int compute_sid_handle_invalid_context(
1310 struct context *scontext,
1311 struct context *tcontext,
1312 u16 tclass,
1313 struct context *newcontext)
1314{
1315 char *s = NULL, *t = NULL, *n = NULL;
1316 u32 slen, tlen, nlen;
1317
Eric Paris4b02b522010-11-23 11:40:08 -05001318 if (context_struct_to_string(scontext, &s, &slen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 goto out;
Eric Paris4b02b522010-11-23 11:40:08 -05001320 if (context_struct_to_string(tcontext, &t, &tlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 goto out;
Eric Paris4b02b522010-11-23 11:40:08 -05001322 if (context_struct_to_string(newcontext, &n, &nlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 goto out;
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001324 audit_log(current->audit_context, GFP_ATOMIC, AUDIT_SELINUX_ERR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 "security_compute_sid: invalid context %s"
1326 " for scontext=%s"
1327 " tcontext=%s"
1328 " tclass=%s",
1329 n, s, t, policydb.p_class_val_to_name[tclass-1]);
1330out:
1331 kfree(s);
1332 kfree(t);
1333 kfree(n);
1334 if (!selinux_enforcing)
1335 return 0;
1336 return -EACCES;
1337}
1338
1339static int security_compute_sid(u32 ssid,
1340 u32 tsid,
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001341 u16 orig_tclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 u32 specified,
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001343 u32 *out_sid,
1344 bool kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345{
1346 struct context *scontext = NULL, *tcontext = NULL, newcontext;
1347 struct role_trans *roletr = NULL;
1348 struct avtab_key avkey;
1349 struct avtab_datum *avdatum;
1350 struct avtab_node *node;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001351 u16 tclass;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 int rc = 0;
1353
1354 if (!ss_initialized) {
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001355 switch (orig_tclass) {
1356 case SECCLASS_PROCESS: /* kernel value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 *out_sid = ssid;
1358 break;
1359 default:
1360 *out_sid = tsid;
1361 break;
1362 }
1363 goto out;
1364 }
1365
Venkat Yekkirala851f8a62006-07-30 03:03:18 -07001366 context_init(&newcontext);
1367
James Morris0804d112008-06-06 18:40:29 +10001368 read_lock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001370 if (kern)
1371 tclass = unmap_class(orig_tclass);
1372 else
1373 tclass = orig_tclass;
1374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 scontext = sidtab_search(&sidtab, ssid);
1376 if (!scontext) {
Eric Paris744ba352008-04-17 11:52:44 -04001377 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
1378 __func__, ssid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 rc = -EINVAL;
1380 goto out_unlock;
1381 }
1382 tcontext = sidtab_search(&sidtab, tsid);
1383 if (!tcontext) {
Eric Paris744ba352008-04-17 11:52:44 -04001384 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
1385 __func__, tsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 rc = -EINVAL;
1387 goto out_unlock;
1388 }
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 /* Set the user identity. */
1391 switch (specified) {
1392 case AVTAB_TRANSITION:
1393 case AVTAB_CHANGE:
1394 /* Use the process user identity. */
1395 newcontext.user = scontext->user;
1396 break;
1397 case AVTAB_MEMBER:
1398 /* Use the related object owner. */
1399 newcontext.user = tcontext->user;
1400 break;
1401 }
1402
1403 /* Set the role and type to default values. */
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001404 if (tclass == policydb.process_class) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 /* Use the current role and type of process. */
1406 newcontext.role = scontext->role;
1407 newcontext.type = scontext->type;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001408 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 /* Use the well-defined object role. */
1410 newcontext.role = OBJECT_R_VAL;
1411 /* Use the type of the related object. */
1412 newcontext.type = tcontext->type;
1413 }
1414
1415 /* Look for a type transition/member/change rule. */
1416 avkey.source_type = scontext->type;
1417 avkey.target_type = tcontext->type;
1418 avkey.target_class = tclass;
Stephen Smalley782ebb92005-09-03 15:55:16 -07001419 avkey.specified = specified;
1420 avdatum = avtab_search(&policydb.te_avtab, &avkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
1422 /* If no permanent rule, also check for enabled conditional rules */
Eric Paris5d55a342008-04-18 17:38:33 -04001423 if (!avdatum) {
Stephen Smalley782ebb92005-09-03 15:55:16 -07001424 node = avtab_search_node(&policydb.te_cond_avtab, &avkey);
Vesa-Matti Karidbc74c62008-08-07 03:18:20 +03001425 for (; node; node = avtab_search_node_next(node, specified)) {
Stephen Smalley782ebb92005-09-03 15:55:16 -07001426 if (node->key.specified & AVTAB_ENABLED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 avdatum = &node->datum;
1428 break;
1429 }
1430 }
1431 }
1432
Stephen Smalley782ebb92005-09-03 15:55:16 -07001433 if (avdatum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 /* Use the type from the type transition/member/change rule. */
Stephen Smalley782ebb92005-09-03 15:55:16 -07001435 newcontext.type = avdatum->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 }
1437
1438 /* Check for class-specific changes. */
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001439 if (tclass == policydb.process_class) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 if (specified & AVTAB_TRANSITION) {
1441 /* Look for a role transition rule. */
1442 for (roletr = policydb.role_tr; roletr;
1443 roletr = roletr->next) {
1444 if (roletr->role == scontext->role &&
1445 roletr->type == tcontext->type) {
1446 /* Use the role transition rule. */
1447 newcontext.role = roletr->new_role;
1448 break;
1449 }
1450 }
1451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 }
1453
1454 /* Set the MLS attributes.
1455 This is done last because it may allocate memory. */
1456 rc = mls_compute_sid(scontext, tcontext, tclass, specified, &newcontext);
1457 if (rc)
1458 goto out_unlock;
1459
1460 /* Check the validity of the context. */
1461 if (!policydb_context_isvalid(&policydb, &newcontext)) {
1462 rc = compute_sid_handle_invalid_context(scontext,
1463 tcontext,
1464 tclass,
1465 &newcontext);
1466 if (rc)
1467 goto out_unlock;
1468 }
1469 /* Obtain the sid for the context. */
1470 rc = sidtab_context_to_sid(&sidtab, &newcontext, out_sid);
1471out_unlock:
James Morris0804d112008-06-06 18:40:29 +10001472 read_unlock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 context_destroy(&newcontext);
1474out:
1475 return rc;
1476}
1477
1478/**
1479 * security_transition_sid - Compute the SID for a new subject/object.
1480 * @ssid: source security identifier
1481 * @tsid: target security identifier
1482 * @tclass: target security class
1483 * @out_sid: security identifier for new subject/object
1484 *
1485 * Compute a SID to use for labeling a new subject or object in the
1486 * class @tclass based on a SID pair (@ssid, @tsid).
1487 * Return -%EINVAL if any of the parameters are invalid, -%ENOMEM
1488 * if insufficient memory is available, or %0 if the new SID was
1489 * computed successfully.
1490 */
1491int security_transition_sid(u32 ssid,
1492 u32 tsid,
1493 u16 tclass,
1494 u32 *out_sid)
1495{
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001496 return security_compute_sid(ssid, tsid, tclass, AVTAB_TRANSITION,
1497 out_sid, true);
1498}
1499
1500int security_transition_sid_user(u32 ssid,
1501 u32 tsid,
1502 u16 tclass,
1503 u32 *out_sid)
1504{
1505 return security_compute_sid(ssid, tsid, tclass, AVTAB_TRANSITION,
1506 out_sid, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507}
1508
1509/**
1510 * security_member_sid - Compute the SID for member selection.
1511 * @ssid: source security identifier
1512 * @tsid: target security identifier
1513 * @tclass: target security class
1514 * @out_sid: security identifier for selected member
1515 *
1516 * Compute a SID to use when selecting a member of a polyinstantiated
1517 * object of class @tclass based on a SID pair (@ssid, @tsid).
1518 * Return -%EINVAL if any of the parameters are invalid, -%ENOMEM
1519 * if insufficient memory is available, or %0 if the SID was
1520 * computed successfully.
1521 */
1522int security_member_sid(u32 ssid,
1523 u32 tsid,
1524 u16 tclass,
1525 u32 *out_sid)
1526{
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001527 return security_compute_sid(ssid, tsid, tclass, AVTAB_MEMBER, out_sid,
1528 false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529}
1530
1531/**
1532 * security_change_sid - Compute the SID for object relabeling.
1533 * @ssid: source security identifier
1534 * @tsid: target security identifier
1535 * @tclass: target security class
1536 * @out_sid: security identifier for selected member
1537 *
1538 * Compute a SID to use for relabeling an object of class @tclass
1539 * based on a SID pair (@ssid, @tsid).
1540 * Return -%EINVAL if any of the parameters are invalid, -%ENOMEM
1541 * if insufficient memory is available, or %0 if the SID was
1542 * computed successfully.
1543 */
1544int security_change_sid(u32 ssid,
1545 u32 tsid,
1546 u16 tclass,
1547 u32 *out_sid)
1548{
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001549 return security_compute_sid(ssid, tsid, tclass, AVTAB_CHANGE, out_sid,
1550 false);
Chad Sellersb94c7e62006-11-06 12:38:18 -05001551}
1552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553/* Clone the SID into the new SID table. */
1554static int clone_sid(u32 sid,
1555 struct context *context,
1556 void *arg)
1557{
1558 struct sidtab *s = arg;
1559
Guido Trentalancia42596ea2010-02-03 17:06:01 +01001560 if (sid > SECINITSID_NUM)
1561 return sidtab_insert(s, sid, context);
1562 else
1563 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564}
1565
1566static inline int convert_context_handle_invalid_context(struct context *context)
1567{
Eric Paris4b02b522010-11-23 11:40:08 -05001568 char *s;
1569 u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Eric Paris4b02b522010-11-23 11:40:08 -05001571 if (selinux_enforcing)
1572 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Eric Paris4b02b522010-11-23 11:40:08 -05001574 if (!context_struct_to_string(context, &s, &len)) {
1575 printk(KERN_WARNING "SELinux: Context %s would be invalid if enforcing\n", s);
1576 kfree(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 }
Eric Paris4b02b522010-11-23 11:40:08 -05001578 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579}
1580
1581struct convert_context_args {
1582 struct policydb *oldp;
1583 struct policydb *newp;
1584};
1585
1586/*
1587 * Convert the values in the security context
1588 * structure `c' from the values specified
1589 * in the policy `p->oldp' to the values specified
1590 * in the policy `p->newp'. Verify that the
1591 * context is valid under the new policy.
1592 */
1593static int convert_context(u32 key,
1594 struct context *c,
1595 void *p)
1596{
1597 struct convert_context_args *args;
1598 struct context oldc;
Guido Trentalancia0719aaf2010-02-03 16:40:20 +01001599 struct ocontext *oc;
1600 struct mls_range *range;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 struct role_datum *role;
1602 struct type_datum *typdatum;
1603 struct user_datum *usrdatum;
1604 char *s;
1605 u32 len;
Guido Trentalancia42596ea2010-02-03 17:06:01 +01001606 int rc = 0;
1607
1608 if (key <= SECINITSID_NUM)
1609 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
1611 args = p;
1612
Stephen Smalley12b29f32008-05-07 13:03:20 -04001613 if (c->str) {
1614 struct context ctx;
Eric Paris4b02b522010-11-23 11:40:08 -05001615
1616 rc = -ENOMEM;
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001617 s = kstrdup(c->str, GFP_KERNEL);
Eric Paris4b02b522010-11-23 11:40:08 -05001618 if (!s)
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001619 goto out;
Eric Paris4b02b522010-11-23 11:40:08 -05001620
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001621 rc = string_to_context_struct(args->newp, NULL, s,
1622 c->len, &ctx, SECSID_NULL);
1623 kfree(s);
Stephen Smalley12b29f32008-05-07 13:03:20 -04001624 if (!rc) {
Eric Paris4b02b522010-11-23 11:40:08 -05001625 printk(KERN_INFO "SELinux: Context %s became valid (mapped).\n",
Stephen Smalley12b29f32008-05-07 13:03:20 -04001626 c->str);
1627 /* Replace string with mapped representation. */
1628 kfree(c->str);
1629 memcpy(c, &ctx, sizeof(*c));
1630 goto out;
1631 } else if (rc == -EINVAL) {
1632 /* Retain string representation for later mapping. */
1633 rc = 0;
1634 goto out;
1635 } else {
1636 /* Other error condition, e.g. ENOMEM. */
Eric Paris4b02b522010-11-23 11:40:08 -05001637 printk(KERN_ERR "SELinux: Unable to map context %s, rc = %d.\n",
Stephen Smalley12b29f32008-05-07 13:03:20 -04001638 c->str, -rc);
1639 goto out;
1640 }
1641 }
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 rc = context_cpy(&oldc, c);
1644 if (rc)
1645 goto out;
1646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 /* Convert the user. */
Eric Paris4b02b522010-11-23 11:40:08 -05001648 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 usrdatum = hashtab_search(args->newp->p_users.table,
Eric Paris5d55a342008-04-18 17:38:33 -04001650 args->oldp->p_user_val_to_name[c->user - 1]);
1651 if (!usrdatum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 c->user = usrdatum->value;
1654
1655 /* Convert the role. */
Eric Paris4b02b522010-11-23 11:40:08 -05001656 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 role = hashtab_search(args->newp->p_roles.table,
Eric Paris5d55a342008-04-18 17:38:33 -04001658 args->oldp->p_role_val_to_name[c->role - 1]);
1659 if (!role)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 c->role = role->value;
1662
1663 /* Convert the type. */
Eric Paris4b02b522010-11-23 11:40:08 -05001664 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 typdatum = hashtab_search(args->newp->p_types.table,
Eric Paris5d55a342008-04-18 17:38:33 -04001666 args->oldp->p_type_val_to_name[c->type - 1]);
1667 if (!typdatum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 c->type = typdatum->value;
1670
Guido Trentalancia0719aaf2010-02-03 16:40:20 +01001671 /* Convert the MLS fields if dealing with MLS policies */
1672 if (args->oldp->mls_enabled && args->newp->mls_enabled) {
1673 rc = mls_convert_context(args->oldp, args->newp, c);
1674 if (rc)
1675 goto bad;
1676 } else if (args->oldp->mls_enabled && !args->newp->mls_enabled) {
1677 /*
1678 * Switching between MLS and non-MLS policy:
1679 * free any storage used by the MLS fields in the
1680 * context for all existing entries in the sidtab.
1681 */
1682 mls_context_destroy(c);
1683 } else if (!args->oldp->mls_enabled && args->newp->mls_enabled) {
1684 /*
1685 * Switching between non-MLS and MLS policy:
1686 * ensure that the MLS fields of the context for all
1687 * existing entries in the sidtab are filled in with a
1688 * suitable default value, likely taken from one of the
1689 * initial SIDs.
1690 */
1691 oc = args->newp->ocontexts[OCON_ISID];
1692 while (oc && oc->sid[0] != SECINITSID_UNLABELED)
1693 oc = oc->next;
Eric Paris4b02b522010-11-23 11:40:08 -05001694 rc = -EINVAL;
Guido Trentalancia0719aaf2010-02-03 16:40:20 +01001695 if (!oc) {
1696 printk(KERN_ERR "SELinux: unable to look up"
1697 " the initial SIDs list\n");
1698 goto bad;
1699 }
1700 range = &oc->context[0].range;
1701 rc = mls_range_set(c, range);
1702 if (rc)
1703 goto bad;
1704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
1706 /* Check the validity of the new context. */
1707 if (!policydb_context_isvalid(args->newp, c)) {
1708 rc = convert_context_handle_invalid_context(&oldc);
1709 if (rc)
1710 goto bad;
1711 }
1712
1713 context_destroy(&oldc);
Eric Paris4b02b522010-11-23 11:40:08 -05001714
Stephen Smalley12b29f32008-05-07 13:03:20 -04001715 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716out:
1717 return rc;
1718bad:
Stephen Smalley12b29f32008-05-07 13:03:20 -04001719 /* Map old representation to string and save it. */
Eric Paris4b02b522010-11-23 11:40:08 -05001720 rc = context_struct_to_string(&oldc, &s, &len);
1721 if (rc)
1722 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 context_destroy(&oldc);
Stephen Smalley12b29f32008-05-07 13:03:20 -04001724 context_destroy(c);
1725 c->str = s;
1726 c->len = len;
Eric Paris4b02b522010-11-23 11:40:08 -05001727 printk(KERN_INFO "SELinux: Context %s became invalid (unmapped).\n",
Stephen Smalley12b29f32008-05-07 13:03:20 -04001728 c->str);
1729 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 goto out;
1731}
1732
Paul Moore3bb56b22008-01-29 08:38:19 -05001733static void security_load_policycaps(void)
1734{
1735 selinux_policycap_netpeer = ebitmap_get_bit(&policydb.policycaps,
1736 POLICYDB_CAPABILITY_NETPEER);
Eric Parisb0c636b2008-02-28 12:58:40 -05001737 selinux_policycap_openperm = ebitmap_get_bit(&policydb.policycaps,
1738 POLICYDB_CAPABILITY_OPENPERM);
Paul Moore3bb56b22008-01-29 08:38:19 -05001739}
1740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741extern void selinux_complete_init(void);
Stephen Smalleye900a7d2007-04-19 14:16:19 -04001742static int security_preserve_bools(struct policydb *p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744/**
1745 * security_load_policy - Load a security policy configuration.
1746 * @data: binary policy data
1747 * @len: length of data in bytes
1748 *
1749 * Load a new set of security policy configuration data,
1750 * validate it and convert the SID table as necessary.
1751 * This function will flush the access vector cache after
1752 * loading the new policy.
1753 */
1754int security_load_policy(void *data, size_t len)
1755{
1756 struct policydb oldpolicydb, newpolicydb;
1757 struct sidtab oldsidtab, newsidtab;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001758 struct selinux_mapping *oldmap, *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 struct convert_context_args args;
1760 u32 seqno;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001761 u16 map_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 int rc = 0;
1763 struct policy_file file = { data, len }, *fp = &file;
1764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 if (!ss_initialized) {
1766 avtab_cache_init();
Eric Parisa2000052010-04-20 10:29:42 -04001767 rc = policydb_read(&policydb, fp);
1768 if (rc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 avtab_cache_destroy();
Eric Parisa2000052010-04-20 10:29:42 -04001770 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 }
Eric Parisa2000052010-04-20 10:29:42 -04001772
Eric Pariscee74f42010-10-13 17:50:25 -04001773 policydb.len = len;
Eric Parisa2000052010-04-20 10:29:42 -04001774 rc = selinux_set_mapping(&policydb, secclass_map,
1775 &current_mapping,
1776 &current_mapping_size);
1777 if (rc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 policydb_destroy(&policydb);
1779 avtab_cache_destroy();
Eric Parisa2000052010-04-20 10:29:42 -04001780 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 }
Eric Parisa2000052010-04-20 10:29:42 -04001782
1783 rc = policydb_load_isids(&policydb, &sidtab);
1784 if (rc) {
Chad Sellersb94c7e62006-11-06 12:38:18 -05001785 policydb_destroy(&policydb);
1786 avtab_cache_destroy();
Eric Parisa2000052010-04-20 10:29:42 -04001787 return rc;
Chad Sellersb94c7e62006-11-06 12:38:18 -05001788 }
Eric Parisa2000052010-04-20 10:29:42 -04001789
Paul Moore3bb56b22008-01-29 08:38:19 -05001790 security_load_policycaps();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 ss_initialized = 1;
Stephen Smalley4c443d12005-05-16 21:53:52 -07001792 seqno = ++latest_granting;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 selinux_complete_init();
Stephen Smalley4c443d12005-05-16 21:53:52 -07001794 avc_ss_reset(seqno);
1795 selnl_notify_policyload(seqno);
KaiGai Kohei11904162010-09-14 18:28:39 +09001796 selinux_status_update_policyload(seqno);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001797 selinux_netlbl_cache_invalidate();
Venkat Yekkirala342a0cf2007-01-26 19:03:48 -08001798 selinux_xfrm_notify_policyload();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 return 0;
1800 }
1801
1802#if 0
1803 sidtab_hash_eval(&sidtab, "sids");
1804#endif
1805
Eric Parisa2000052010-04-20 10:29:42 -04001806 rc = policydb_read(&newpolicydb, fp);
1807 if (rc)
1808 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Eric Pariscee74f42010-10-13 17:50:25 -04001810 newpolicydb.len = len;
Guido Trentalancia0719aaf2010-02-03 16:40:20 +01001811 /* If switching between different policy types, log MLS status */
1812 if (policydb.mls_enabled && !newpolicydb.mls_enabled)
1813 printk(KERN_INFO "SELinux: Disabling MLS support...\n");
1814 else if (!policydb.mls_enabled && newpolicydb.mls_enabled)
1815 printk(KERN_INFO "SELinux: Enabling MLS support...\n");
1816
Guido Trentalancia42596ea2010-02-03 17:06:01 +01001817 rc = policydb_load_isids(&newpolicydb, &newsidtab);
1818 if (rc) {
1819 printk(KERN_ERR "SELinux: unable to load the initial SIDs\n");
Stephen Smalley12b29f32008-05-07 13:03:20 -04001820 policydb_destroy(&newpolicydb);
Guido Trentalancia42596ea2010-02-03 17:06:01 +01001821 return rc;
Stephen Smalley12b29f32008-05-07 13:03:20 -04001822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
Eric Parisa2000052010-04-20 10:29:42 -04001824 rc = selinux_set_mapping(&newpolicydb, secclass_map, &map, &map_size);
1825 if (rc)
Chad Sellersb94c7e62006-11-06 12:38:18 -05001826 goto err;
Chad Sellersb94c7e62006-11-06 12:38:18 -05001827
Stephen Smalleye900a7d2007-04-19 14:16:19 -04001828 rc = security_preserve_bools(&newpolicydb);
1829 if (rc) {
James Morris454d9722008-02-26 20:42:02 +11001830 printk(KERN_ERR "SELinux: unable to preserve booleans\n");
Stephen Smalleye900a7d2007-04-19 14:16:19 -04001831 goto err;
1832 }
1833
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 /* Clone the SID table. */
1835 sidtab_shutdown(&sidtab);
Eric Parisa2000052010-04-20 10:29:42 -04001836
1837 rc = sidtab_map(&sidtab, clone_sid, &newsidtab);
1838 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Stephen Smalley12b29f32008-05-07 13:03:20 -04001841 /*
1842 * Convert the internal representations of contexts
1843 * in the new SID table.
1844 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 args.oldp = &policydb;
1846 args.newp = &newpolicydb;
Stephen Smalley12b29f32008-05-07 13:03:20 -04001847 rc = sidtab_map(&newsidtab, convert_context, &args);
Guido Trentalancia0719aaf2010-02-03 16:40:20 +01001848 if (rc) {
1849 printk(KERN_ERR "SELinux: unable to convert the internal"
1850 " representation of contexts in the new SID"
1851 " table\n");
Stephen Smalley12b29f32008-05-07 13:03:20 -04001852 goto err;
Guido Trentalancia0719aaf2010-02-03 16:40:20 +01001853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
1855 /* Save the old policydb and SID table to free later. */
1856 memcpy(&oldpolicydb, &policydb, sizeof policydb);
1857 sidtab_set(&oldsidtab, &sidtab);
1858
1859 /* Install the new policydb and SID table. */
James Morris0804d112008-06-06 18:40:29 +10001860 write_lock_irq(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 memcpy(&policydb, &newpolicydb, sizeof policydb);
1862 sidtab_set(&sidtab, &newsidtab);
Paul Moore3bb56b22008-01-29 08:38:19 -05001863 security_load_policycaps();
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001864 oldmap = current_mapping;
1865 current_mapping = map;
1866 current_mapping_size = map_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 seqno = ++latest_granting;
James Morris0804d112008-06-06 18:40:29 +10001868 write_unlock_irq(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
1870 /* Free the old policydb and SID table. */
1871 policydb_destroy(&oldpolicydb);
1872 sidtab_destroy(&oldsidtab);
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001873 kfree(oldmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
1875 avc_ss_reset(seqno);
1876 selnl_notify_policyload(seqno);
KaiGai Kohei11904162010-09-14 18:28:39 +09001877 selinux_status_update_policyload(seqno);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001878 selinux_netlbl_cache_invalidate();
Venkat Yekkirala342a0cf2007-01-26 19:03:48 -08001879 selinux_xfrm_notify_policyload();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
1881 return 0;
1882
1883err:
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001884 kfree(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 sidtab_destroy(&newsidtab);
1886 policydb_destroy(&newpolicydb);
1887 return rc;
1888
1889}
1890
Eric Pariscee74f42010-10-13 17:50:25 -04001891size_t security_policydb_len(void)
1892{
1893 size_t len;
1894
1895 read_lock(&policy_rwlock);
1896 len = policydb.len;
1897 read_unlock(&policy_rwlock);
1898
1899 return len;
1900}
1901
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902/**
1903 * security_port_sid - Obtain the SID for a port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 * @protocol: protocol number
1905 * @port: port number
1906 * @out_sid: security identifier
1907 */
Paul Moore3e112172008-04-10 10:48:14 -04001908int security_port_sid(u8 protocol, u16 port, u32 *out_sid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909{
1910 struct ocontext *c;
1911 int rc = 0;
1912
James Morris0804d112008-06-06 18:40:29 +10001913 read_lock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
1915 c = policydb.ocontexts[OCON_PORT];
1916 while (c) {
1917 if (c->u.port.protocol == protocol &&
1918 c->u.port.low_port <= port &&
1919 c->u.port.high_port >= port)
1920 break;
1921 c = c->next;
1922 }
1923
1924 if (c) {
1925 if (!c->sid[0]) {
1926 rc = sidtab_context_to_sid(&sidtab,
1927 &c->context[0],
1928 &c->sid[0]);
1929 if (rc)
1930 goto out;
1931 }
1932 *out_sid = c->sid[0];
1933 } else {
1934 *out_sid = SECINITSID_PORT;
1935 }
1936
1937out:
James Morris0804d112008-06-06 18:40:29 +10001938 read_unlock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 return rc;
1940}
1941
1942/**
1943 * security_netif_sid - Obtain the SID for a network interface.
1944 * @name: interface name
1945 * @if_sid: interface SID
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 */
Paul Mooree8bfdb92008-01-29 08:38:08 -05001947int security_netif_sid(char *name, u32 *if_sid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948{
1949 int rc = 0;
1950 struct ocontext *c;
1951
James Morris0804d112008-06-06 18:40:29 +10001952 read_lock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
1954 c = policydb.ocontexts[OCON_NETIF];
1955 while (c) {
1956 if (strcmp(name, c->u.name) == 0)
1957 break;
1958 c = c->next;
1959 }
1960
1961 if (c) {
1962 if (!c->sid[0] || !c->sid[1]) {
1963 rc = sidtab_context_to_sid(&sidtab,
1964 &c->context[0],
1965 &c->sid[0]);
1966 if (rc)
1967 goto out;
1968 rc = sidtab_context_to_sid(&sidtab,
1969 &c->context[1],
1970 &c->sid[1]);
1971 if (rc)
1972 goto out;
1973 }
1974 *if_sid = c->sid[0];
Paul Mooree8bfdb92008-01-29 08:38:08 -05001975 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 *if_sid = SECINITSID_NETIF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
1978out:
James Morris0804d112008-06-06 18:40:29 +10001979 read_unlock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 return rc;
1981}
1982
1983static int match_ipv6_addrmask(u32 *input, u32 *addr, u32 *mask)
1984{
1985 int i, fail = 0;
1986
Eric Paris5d55a342008-04-18 17:38:33 -04001987 for (i = 0; i < 4; i++)
1988 if (addr[i] != (input[i] & mask[i])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 fail = 1;
1990 break;
1991 }
1992
1993 return !fail;
1994}
1995
1996/**
1997 * security_node_sid - Obtain the SID for a node (host).
1998 * @domain: communication domain aka address family
1999 * @addrp: address
2000 * @addrlen: address length in bytes
2001 * @out_sid: security identifier
2002 */
2003int security_node_sid(u16 domain,
2004 void *addrp,
2005 u32 addrlen,
2006 u32 *out_sid)
2007{
Eric Paris4b02b522010-11-23 11:40:08 -05002008 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 struct ocontext *c;
2010
James Morris0804d112008-06-06 18:40:29 +10002011 read_lock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
2013 switch (domain) {
2014 case AF_INET: {
2015 u32 addr;
2016
Eric Paris4b02b522010-11-23 11:40:08 -05002017 rc = -EINVAL;
2018 if (addrlen != sizeof(u32))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021 addr = *((u32 *)addrp);
2022
2023 c = policydb.ocontexts[OCON_NODE];
2024 while (c) {
2025 if (c->u.node.addr == (addr & c->u.node.mask))
2026 break;
2027 c = c->next;
2028 }
2029 break;
2030 }
2031
2032 case AF_INET6:
Eric Paris4b02b522010-11-23 11:40:08 -05002033 rc = -EINVAL;
2034 if (addrlen != sizeof(u64) * 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 c = policydb.ocontexts[OCON_NODE6];
2037 while (c) {
2038 if (match_ipv6_addrmask(addrp, c->u.node6.addr,
2039 c->u.node6.mask))
2040 break;
2041 c = c->next;
2042 }
2043 break;
2044
2045 default:
Eric Paris4b02b522010-11-23 11:40:08 -05002046 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 *out_sid = SECINITSID_NODE;
2048 goto out;
2049 }
2050
2051 if (c) {
2052 if (!c->sid[0]) {
2053 rc = sidtab_context_to_sid(&sidtab,
2054 &c->context[0],
2055 &c->sid[0]);
2056 if (rc)
2057 goto out;
2058 }
2059 *out_sid = c->sid[0];
2060 } else {
2061 *out_sid = SECINITSID_NODE;
2062 }
2063
Eric Paris4b02b522010-11-23 11:40:08 -05002064 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065out:
James Morris0804d112008-06-06 18:40:29 +10002066 read_unlock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 return rc;
2068}
2069
2070#define SIDS_NEL 25
2071
2072/**
2073 * security_get_user_sids - Obtain reachable SIDs for a user.
2074 * @fromsid: starting SID
2075 * @username: username
2076 * @sids: array of reachable SIDs for user
2077 * @nel: number of elements in @sids
2078 *
2079 * Generate the set of SIDs for legal security contexts
2080 * for a given user that can be reached by @fromsid.
2081 * Set *@sids to point to a dynamically allocated
2082 * array containing the set of SIDs. Set *@nel to the
2083 * number of elements in the array.
2084 */
2085
2086int security_get_user_sids(u32 fromsid,
Eric Paris5d55a342008-04-18 17:38:33 -04002087 char *username,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 u32 **sids,
2089 u32 *nel)
2090{
2091 struct context *fromcon, usercon;
Stephen Smalley2c3c05d2007-06-07 15:34:10 -04002092 u32 *mysids = NULL, *mysids2, sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 u32 mynel = 0, maxnel = SIDS_NEL;
2094 struct user_datum *user;
2095 struct role_datum *role;
Stephen Smalley782ebb92005-09-03 15:55:16 -07002096 struct ebitmap_node *rnode, *tnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 int rc = 0, i, j;
2098
Stephen Smalley2c3c05d2007-06-07 15:34:10 -04002099 *sids = NULL;
2100 *nel = 0;
2101
2102 if (!ss_initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
James Morris0804d112008-06-06 18:40:29 +10002105 read_lock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Stephen Smalley12b29f32008-05-07 13:03:20 -04002107 context_init(&usercon);
2108
Eric Paris4b02b522010-11-23 11:40:08 -05002109 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 fromcon = sidtab_search(&sidtab, fromsid);
Eric Paris4b02b522010-11-23 11:40:08 -05002111 if (!fromcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Eric Paris4b02b522010-11-23 11:40:08 -05002114 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 user = hashtab_search(policydb.p_users.table, username);
Eric Paris4b02b522010-11-23 11:40:08 -05002116 if (!user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 goto out_unlock;
Eric Paris4b02b522010-11-23 11:40:08 -05002118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 usercon.user = user->value;
2120
Eric Paris4b02b522010-11-23 11:40:08 -05002121 rc = -ENOMEM;
James Morris89d155e2005-10-30 14:59:21 -08002122 mysids = kcalloc(maxnel, sizeof(*mysids), GFP_ATOMIC);
Eric Paris4b02b522010-11-23 11:40:08 -05002123 if (!mysids)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
KaiGai Kohei9fe79ad2007-09-29 02:20:55 +09002126 ebitmap_for_each_positive_bit(&user->roles, rnode, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 role = policydb.role_val_to_struct[i];
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08002128 usercon.role = i + 1;
KaiGai Kohei9fe79ad2007-09-29 02:20:55 +09002129 ebitmap_for_each_positive_bit(&role->types, tnode, j) {
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08002130 usercon.type = j + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
2132 if (mls_setup_user_range(fromcon, user, &usercon))
2133 continue;
2134
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 rc = sidtab_context_to_sid(&sidtab, &usercon, &sid);
Stephen Smalley2c3c05d2007-06-07 15:34:10 -04002136 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 if (mynel < maxnel) {
2139 mysids[mynel++] = sid;
2140 } else {
Eric Paris4b02b522010-11-23 11:40:08 -05002141 rc = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 maxnel += SIDS_NEL;
James Morris89d155e2005-10-30 14:59:21 -08002143 mysids2 = kcalloc(maxnel, sizeof(*mysids2), GFP_ATOMIC);
Eric Paris4b02b522010-11-23 11:40:08 -05002144 if (!mysids2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 memcpy(mysids2, mysids, mynel * sizeof(*mysids2));
2147 kfree(mysids);
2148 mysids = mysids2;
2149 mysids[mynel++] = sid;
2150 }
2151 }
2152 }
Eric Paris4b02b522010-11-23 11:40:08 -05002153 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154out_unlock:
James Morris0804d112008-06-06 18:40:29 +10002155 read_unlock(&policy_rwlock);
Stephen Smalley2c3c05d2007-06-07 15:34:10 -04002156 if (rc || !mynel) {
2157 kfree(mysids);
2158 goto out;
2159 }
2160
Eric Paris4b02b522010-11-23 11:40:08 -05002161 rc = -ENOMEM;
Stephen Smalley2c3c05d2007-06-07 15:34:10 -04002162 mysids2 = kcalloc(mynel, sizeof(*mysids2), GFP_KERNEL);
2163 if (!mysids2) {
Stephen Smalley2c3c05d2007-06-07 15:34:10 -04002164 kfree(mysids);
2165 goto out;
2166 }
2167 for (i = 0, j = 0; i < mynel; i++) {
2168 rc = avc_has_perm_noaudit(fromsid, mysids[i],
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04002169 SECCLASS_PROCESS, /* kernel value */
Stephen Smalley2c3c05d2007-06-07 15:34:10 -04002170 PROCESS__TRANSITION, AVC_STRICT,
2171 NULL);
2172 if (!rc)
2173 mysids2[j++] = mysids[i];
2174 cond_resched();
2175 }
2176 rc = 0;
2177 kfree(mysids);
2178 *sids = mysids2;
2179 *nel = j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180out:
2181 return rc;
2182}
2183
2184/**
2185 * security_genfs_sid - Obtain a SID for a file in a filesystem
2186 * @fstype: filesystem type
2187 * @path: path from root of mount
2188 * @sclass: file security class
2189 * @sid: SID for path
2190 *
2191 * Obtain a SID to use for a file in a filesystem that
2192 * cannot support xattr or use a fixed labeling behavior like
2193 * transition SIDs or task SIDs.
2194 */
2195int security_genfs_sid(const char *fstype,
Eric Paris5d55a342008-04-18 17:38:33 -04002196 char *path,
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04002197 u16 orig_sclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 u32 *sid)
2199{
2200 int len;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04002201 u16 sclass;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 struct genfs *genfs;
2203 struct ocontext *c;
Eric Paris4b02b522010-11-23 11:40:08 -05002204 int rc, cmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Stephen Smalleyb1aa5302008-01-25 13:03:42 -05002206 while (path[0] == '/' && path[1] == '/')
2207 path++;
2208
James Morris0804d112008-06-06 18:40:29 +10002209 read_lock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04002211 sclass = unmap_class(orig_sclass);
Eric Paris4b02b522010-11-23 11:40:08 -05002212 *sid = SECINITSID_UNLABELED;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04002213
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 for (genfs = policydb.genfs; genfs; genfs = genfs->next) {
2215 cmp = strcmp(fstype, genfs->fstype);
2216 if (cmp <= 0)
2217 break;
2218 }
2219
Eric Paris4b02b522010-11-23 11:40:08 -05002220 rc = -ENOENT;
2221 if (!genfs || cmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
2224 for (c = genfs->head; c; c = c->next) {
2225 len = strlen(c->u.name);
2226 if ((!c->v.sclass || sclass == c->v.sclass) &&
2227 (strncmp(c->u.name, path, len) == 0))
2228 break;
2229 }
2230
Eric Paris4b02b522010-11-23 11:40:08 -05002231 rc = -ENOENT;
2232 if (!c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
2235 if (!c->sid[0]) {
Eric Paris4b02b522010-11-23 11:40:08 -05002236 rc = sidtab_context_to_sid(&sidtab, &c->context[0], &c->sid[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 if (rc)
2238 goto out;
2239 }
2240
2241 *sid = c->sid[0];
Eric Paris4b02b522010-11-23 11:40:08 -05002242 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243out:
James Morris0804d112008-06-06 18:40:29 +10002244 read_unlock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 return rc;
2246}
2247
2248/**
2249 * security_fs_use - Determine how to handle labeling for a filesystem.
2250 * @fstype: filesystem type
2251 * @behavior: labeling behavior
2252 * @sid: SID for filesystem (superblock)
2253 */
2254int security_fs_use(
2255 const char *fstype,
2256 unsigned int *behavior,
James Morris089be432008-07-15 18:32:49 +10002257 u32 *sid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258{
2259 int rc = 0;
2260 struct ocontext *c;
2261
James Morris0804d112008-06-06 18:40:29 +10002262 read_lock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
2264 c = policydb.ocontexts[OCON_FSUSE];
2265 while (c) {
2266 if (strcmp(fstype, c->u.name) == 0)
2267 break;
2268 c = c->next;
2269 }
2270
2271 if (c) {
2272 *behavior = c->v.behavior;
2273 if (!c->sid[0]) {
Eric Paris4b02b522010-11-23 11:40:08 -05002274 rc = sidtab_context_to_sid(&sidtab, &c->context[0],
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 &c->sid[0]);
2276 if (rc)
2277 goto out;
2278 }
2279 *sid = c->sid[0];
2280 } else {
James Morris089be432008-07-15 18:32:49 +10002281 rc = security_genfs_sid(fstype, "/", SECCLASS_DIR, sid);
2282 if (rc) {
2283 *behavior = SECURITY_FS_USE_NONE;
2284 rc = 0;
2285 } else {
2286 *behavior = SECURITY_FS_USE_GENFS;
2287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 }
2289
2290out:
James Morris0804d112008-06-06 18:40:29 +10002291 read_unlock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 return rc;
2293}
2294
2295int security_get_bools(int *len, char ***names, int **values)
2296{
Eric Paris4b02b522010-11-23 11:40:08 -05002297 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
James Morris0804d112008-06-06 18:40:29 +10002299 read_lock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 *names = NULL;
2301 *values = NULL;
2302
Eric Paris4b02b522010-11-23 11:40:08 -05002303 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 *len = policydb.p_bools.nprim;
Eric Paris4b02b522010-11-23 11:40:08 -05002305 if (!*len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
Eric Paris4b02b522010-11-23 11:40:08 -05002308 rc = -ENOMEM;
2309 *names = kcalloc(*len, sizeof(char *), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 if (!*names)
2311 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
Eric Paris4b02b522010-11-23 11:40:08 -05002313 rc = -ENOMEM;
2314 *values = kcalloc(*len, sizeof(int), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 if (!*values)
2316 goto err;
2317
2318 for (i = 0; i < *len; i++) {
2319 size_t name_len;
Eric Paris4b02b522010-11-23 11:40:08 -05002320
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 (*values)[i] = policydb.bool_val_to_struct[i]->state;
2322 name_len = strlen(policydb.p_bool_val_to_name[i]) + 1;
Eric Paris4b02b522010-11-23 11:40:08 -05002323
2324 rc = -ENOMEM;
2325 (*names)[i] = kmalloc(sizeof(char) * name_len, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 if (!(*names)[i])
2327 goto err;
Eric Paris4b02b522010-11-23 11:40:08 -05002328
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 strncpy((*names)[i], policydb.p_bool_val_to_name[i], name_len);
2330 (*names)[i][name_len - 1] = 0;
2331 }
2332 rc = 0;
2333out:
James Morris0804d112008-06-06 18:40:29 +10002334 read_unlock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 return rc;
2336err:
2337 if (*names) {
2338 for (i = 0; i < *len; i++)
Jesper Juhl9a5f04b2005-06-25 14:58:51 -07002339 kfree((*names)[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 }
Jesper Juhl9a5f04b2005-06-25 14:58:51 -07002341 kfree(*values);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 goto out;
2343}
2344
2345
2346int security_set_bools(int len, int *values)
2347{
Eric Paris4b02b522010-11-23 11:40:08 -05002348 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 int lenp, seqno = 0;
2350 struct cond_node *cur;
2351
James Morris0804d112008-06-06 18:40:29 +10002352 write_lock_irq(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
Eric Paris4b02b522010-11-23 11:40:08 -05002354 rc = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 lenp = policydb.p_bools.nprim;
Eric Paris4b02b522010-11-23 11:40:08 -05002356 if (len != lenp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 for (i = 0; i < len; i++) {
Steve Grubbaf601e42006-01-04 14:08:39 +00002360 if (!!values[i] != policydb.bool_val_to_struct[i]->state) {
2361 audit_log(current->audit_context, GFP_ATOMIC,
2362 AUDIT_MAC_CONFIG_CHANGE,
Eric Paris4746ec52008-01-08 10:06:53 -05002363 "bool=%s val=%d old_val=%d auid=%u ses=%u",
Steve Grubbaf601e42006-01-04 14:08:39 +00002364 policydb.p_bool_val_to_name[i],
2365 !!values[i],
2366 policydb.bool_val_to_struct[i]->state,
Eric Paris4746ec52008-01-08 10:06:53 -05002367 audit_get_loginuid(current),
2368 audit_get_sessionid(current));
Steve Grubbaf601e42006-01-04 14:08:39 +00002369 }
Eric Paris5d55a342008-04-18 17:38:33 -04002370 if (values[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 policydb.bool_val_to_struct[i]->state = 1;
Eric Paris5d55a342008-04-18 17:38:33 -04002372 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 policydb.bool_val_to_struct[i]->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375
Vesa-Matti Karidbc74c62008-08-07 03:18:20 +03002376 for (cur = policydb.cond_list; cur; cur = cur->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 rc = evaluate_cond_node(&policydb, cur);
2378 if (rc)
2379 goto out;
2380 }
2381
2382 seqno = ++latest_granting;
Eric Paris4b02b522010-11-23 11:40:08 -05002383 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384out:
James Morris0804d112008-06-06 18:40:29 +10002385 write_unlock_irq(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 if (!rc) {
2387 avc_ss_reset(seqno);
2388 selnl_notify_policyload(seqno);
KaiGai Kohei11904162010-09-14 18:28:39 +09002389 selinux_status_update_policyload(seqno);
Venkat Yekkirala342a0cf2007-01-26 19:03:48 -08002390 selinux_xfrm_notify_policyload();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 }
2392 return rc;
2393}
2394
2395int security_get_bool_value(int bool)
2396{
Eric Paris4b02b522010-11-23 11:40:08 -05002397 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 int len;
2399
James Morris0804d112008-06-06 18:40:29 +10002400 read_lock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
Eric Paris4b02b522010-11-23 11:40:08 -05002402 rc = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 len = policydb.p_bools.nprim;
Eric Paris4b02b522010-11-23 11:40:08 -05002404 if (bool >= len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
2407 rc = policydb.bool_val_to_struct[bool]->state;
2408out:
James Morris0804d112008-06-06 18:40:29 +10002409 read_unlock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 return rc;
2411}
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002412
Stephen Smalleye900a7d2007-04-19 14:16:19 -04002413static int security_preserve_bools(struct policydb *p)
2414{
2415 int rc, nbools = 0, *bvalues = NULL, i;
2416 char **bnames = NULL;
2417 struct cond_bool_datum *booldatum;
2418 struct cond_node *cur;
2419
2420 rc = security_get_bools(&nbools, &bnames, &bvalues);
2421 if (rc)
2422 goto out;
2423 for (i = 0; i < nbools; i++) {
2424 booldatum = hashtab_search(p->p_bools.table, bnames[i]);
2425 if (booldatum)
2426 booldatum->state = bvalues[i];
2427 }
Vesa-Matti Karidbc74c62008-08-07 03:18:20 +03002428 for (cur = p->cond_list; cur; cur = cur->next) {
Stephen Smalleye900a7d2007-04-19 14:16:19 -04002429 rc = evaluate_cond_node(p, cur);
2430 if (rc)
2431 goto out;
2432 }
2433
2434out:
2435 if (bnames) {
2436 for (i = 0; i < nbools; i++)
2437 kfree(bnames[i]);
2438 }
2439 kfree(bnames);
2440 kfree(bvalues);
2441 return rc;
2442}
2443
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002444/*
2445 * security_sid_mls_copy() - computes a new sid based on the given
2446 * sid and the mls portion of mls_sid.
2447 */
2448int security_sid_mls_copy(u32 sid, u32 mls_sid, u32 *new_sid)
2449{
2450 struct context *context1;
2451 struct context *context2;
2452 struct context newcon;
2453 char *s;
2454 u32 len;
Eric Paris4b02b522010-11-23 11:40:08 -05002455 int rc;
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002456
Eric Paris4b02b522010-11-23 11:40:08 -05002457 rc = 0;
Guido Trentalancia0719aaf2010-02-03 16:40:20 +01002458 if (!ss_initialized || !policydb.mls_enabled) {
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002459 *new_sid = sid;
2460 goto out;
2461 }
2462
2463 context_init(&newcon);
2464
James Morris0804d112008-06-06 18:40:29 +10002465 read_lock(&policy_rwlock);
Eric Paris4b02b522010-11-23 11:40:08 -05002466
2467 rc = -EINVAL;
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002468 context1 = sidtab_search(&sidtab, sid);
2469 if (!context1) {
Eric Paris744ba352008-04-17 11:52:44 -04002470 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
2471 __func__, sid);
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002472 goto out_unlock;
2473 }
2474
Eric Paris4b02b522010-11-23 11:40:08 -05002475 rc = -EINVAL;
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002476 context2 = sidtab_search(&sidtab, mls_sid);
2477 if (!context2) {
Eric Paris744ba352008-04-17 11:52:44 -04002478 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
2479 __func__, mls_sid);
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002480 goto out_unlock;
2481 }
2482
2483 newcon.user = context1->user;
2484 newcon.role = context1->role;
2485 newcon.type = context1->type;
Venkat Yekkirala0efc61e2006-12-12 13:02:41 -06002486 rc = mls_context_cpy(&newcon, context2);
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002487 if (rc)
2488 goto out_unlock;
2489
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002490 /* Check the validity of the new context. */
2491 if (!policydb_context_isvalid(&policydb, &newcon)) {
2492 rc = convert_context_handle_invalid_context(&newcon);
Eric Paris4b02b522010-11-23 11:40:08 -05002493 if (rc) {
2494 if (!context_struct_to_string(&newcon, &s, &len)) {
2495 audit_log(current->audit_context, GFP_ATOMIC, AUDIT_SELINUX_ERR,
2496 "security_sid_mls_copy: invalid context %s", s);
2497 kfree(s);
2498 }
2499 goto out_unlock;
2500 }
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002501 }
2502
2503 rc = sidtab_context_to_sid(&sidtab, &newcon, new_sid);
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002504out_unlock:
James Morris0804d112008-06-06 18:40:29 +10002505 read_unlock(&policy_rwlock);
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002506 context_destroy(&newcon);
2507out:
2508 return rc;
2509}
2510
Paul Moore220deb92008-01-29 08:38:23 -05002511/**
2512 * security_net_peersid_resolve - Compare and resolve two network peer SIDs
2513 * @nlbl_sid: NetLabel SID
2514 * @nlbl_type: NetLabel labeling protocol type
2515 * @xfrm_sid: XFRM SID
2516 *
2517 * Description:
2518 * Compare the @nlbl_sid and @xfrm_sid values and if the two SIDs can be
2519 * resolved into a single SID it is returned via @peer_sid and the function
2520 * returns zero. Otherwise @peer_sid is set to SECSID_NULL and the function
2521 * returns a negative value. A table summarizing the behavior is below:
2522 *
2523 * | function return | @sid
2524 * ------------------------------+-----------------+-----------------
2525 * no peer labels | 0 | SECSID_NULL
2526 * single peer label | 0 | <peer_label>
2527 * multiple, consistent labels | 0 | <peer_label>
2528 * multiple, inconsistent labels | -<errno> | SECSID_NULL
2529 *
2530 */
2531int security_net_peersid_resolve(u32 nlbl_sid, u32 nlbl_type,
2532 u32 xfrm_sid,
2533 u32 *peer_sid)
2534{
2535 int rc;
2536 struct context *nlbl_ctx;
2537 struct context *xfrm_ctx;
2538
Eric Paris4b02b522010-11-23 11:40:08 -05002539 *peer_sid = SECSID_NULL;
2540
Paul Moore220deb92008-01-29 08:38:23 -05002541 /* handle the common (which also happens to be the set of easy) cases
2542 * right away, these two if statements catch everything involving a
2543 * single or absent peer SID/label */
2544 if (xfrm_sid == SECSID_NULL) {
2545 *peer_sid = nlbl_sid;
2546 return 0;
2547 }
2548 /* NOTE: an nlbl_type == NETLBL_NLTYPE_UNLABELED is a "fallback" label
2549 * and is treated as if nlbl_sid == SECSID_NULL when a XFRM SID/label
2550 * is present */
2551 if (nlbl_sid == SECSID_NULL || nlbl_type == NETLBL_NLTYPE_UNLABELED) {
2552 *peer_sid = xfrm_sid;
2553 return 0;
2554 }
2555
2556 /* we don't need to check ss_initialized here since the only way both
2557 * nlbl_sid and xfrm_sid are not equal to SECSID_NULL would be if the
2558 * security server was initialized and ss_initialized was true */
Eric Paris4b02b522010-11-23 11:40:08 -05002559 if (!policydb.mls_enabled)
Paul Moore220deb92008-01-29 08:38:23 -05002560 return 0;
Paul Moore220deb92008-01-29 08:38:23 -05002561
James Morris0804d112008-06-06 18:40:29 +10002562 read_lock(&policy_rwlock);
Paul Moore220deb92008-01-29 08:38:23 -05002563
Eric Paris4b02b522010-11-23 11:40:08 -05002564 rc = -EINVAL;
Paul Moore220deb92008-01-29 08:38:23 -05002565 nlbl_ctx = sidtab_search(&sidtab, nlbl_sid);
2566 if (!nlbl_ctx) {
Eric Paris744ba352008-04-17 11:52:44 -04002567 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
2568 __func__, nlbl_sid);
Eric Paris4b02b522010-11-23 11:40:08 -05002569 goto out;
Paul Moore220deb92008-01-29 08:38:23 -05002570 }
Eric Paris4b02b522010-11-23 11:40:08 -05002571 rc = -EINVAL;
Paul Moore220deb92008-01-29 08:38:23 -05002572 xfrm_ctx = sidtab_search(&sidtab, xfrm_sid);
2573 if (!xfrm_ctx) {
Eric Paris744ba352008-04-17 11:52:44 -04002574 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
2575 __func__, xfrm_sid);
Eric Paris4b02b522010-11-23 11:40:08 -05002576 goto out;
Paul Moore220deb92008-01-29 08:38:23 -05002577 }
2578 rc = (mls_context_cmp(nlbl_ctx, xfrm_ctx) ? 0 : -EACCES);
Eric Paris4b02b522010-11-23 11:40:08 -05002579 if (rc)
2580 goto out;
Paul Moore220deb92008-01-29 08:38:23 -05002581
Eric Paris4b02b522010-11-23 11:40:08 -05002582 /* at present NetLabel SIDs/labels really only carry MLS
2583 * information so if the MLS portion of the NetLabel SID
2584 * matches the MLS portion of the labeled XFRM SID/label
2585 * then pass along the XFRM SID as it is the most
2586 * expressive */
2587 *peer_sid = xfrm_sid;
2588out:
James Morris0804d112008-06-06 18:40:29 +10002589 read_unlock(&policy_rwlock);
Paul Moore220deb92008-01-29 08:38:23 -05002590 return rc;
2591}
2592
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002593static int get_classes_callback(void *k, void *d, void *args)
2594{
2595 struct class_datum *datum = d;
2596 char *name = k, **classes = args;
2597 int value = datum->value - 1;
2598
2599 classes[value] = kstrdup(name, GFP_ATOMIC);
2600 if (!classes[value])
2601 return -ENOMEM;
2602
2603 return 0;
2604}
2605
2606int security_get_classes(char ***classes, int *nclasses)
2607{
Eric Paris4b02b522010-11-23 11:40:08 -05002608 int rc;
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002609
James Morris0804d112008-06-06 18:40:29 +10002610 read_lock(&policy_rwlock);
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002611
Eric Paris4b02b522010-11-23 11:40:08 -05002612 rc = -ENOMEM;
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002613 *nclasses = policydb.p_classes.nprim;
Julia Lawall9f59f902009-12-06 10:16:51 +01002614 *classes = kcalloc(*nclasses, sizeof(**classes), GFP_ATOMIC);
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002615 if (!*classes)
2616 goto out;
2617
2618 rc = hashtab_map(policydb.p_classes.table, get_classes_callback,
2619 *classes);
Eric Paris4b02b522010-11-23 11:40:08 -05002620 if (rc) {
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002621 int i;
2622 for (i = 0; i < *nclasses; i++)
2623 kfree((*classes)[i]);
2624 kfree(*classes);
2625 }
2626
2627out:
James Morris0804d112008-06-06 18:40:29 +10002628 read_unlock(&policy_rwlock);
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002629 return rc;
2630}
2631
2632static int get_permissions_callback(void *k, void *d, void *args)
2633{
2634 struct perm_datum *datum = d;
2635 char *name = k, **perms = args;
2636 int value = datum->value - 1;
2637
2638 perms[value] = kstrdup(name, GFP_ATOMIC);
2639 if (!perms[value])
2640 return -ENOMEM;
2641
2642 return 0;
2643}
2644
2645int security_get_permissions(char *class, char ***perms, int *nperms)
2646{
Eric Paris4b02b522010-11-23 11:40:08 -05002647 int rc, i;
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002648 struct class_datum *match;
2649
James Morris0804d112008-06-06 18:40:29 +10002650 read_lock(&policy_rwlock);
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002651
Eric Paris4b02b522010-11-23 11:40:08 -05002652 rc = -EINVAL;
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002653 match = hashtab_search(policydb.p_classes.table, class);
2654 if (!match) {
Eric Paris744ba352008-04-17 11:52:44 -04002655 printk(KERN_ERR "SELinux: %s: unrecognized class %s\n",
Harvey Harrisondd6f9532008-03-06 10:03:59 +11002656 __func__, class);
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002657 goto out;
2658 }
2659
Eric Paris4b02b522010-11-23 11:40:08 -05002660 rc = -ENOMEM;
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002661 *nperms = match->permissions.nprim;
Julia Lawall9f59f902009-12-06 10:16:51 +01002662 *perms = kcalloc(*nperms, sizeof(**perms), GFP_ATOMIC);
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002663 if (!*perms)
2664 goto out;
2665
2666 if (match->comdatum) {
2667 rc = hashtab_map(match->comdatum->permissions.table,
2668 get_permissions_callback, *perms);
Eric Paris4b02b522010-11-23 11:40:08 -05002669 if (rc)
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002670 goto err;
2671 }
2672
2673 rc = hashtab_map(match->permissions.table, get_permissions_callback,
2674 *perms);
Eric Paris4b02b522010-11-23 11:40:08 -05002675 if (rc)
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002676 goto err;
2677
2678out:
James Morris0804d112008-06-06 18:40:29 +10002679 read_unlock(&policy_rwlock);
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002680 return rc;
2681
2682err:
James Morris0804d112008-06-06 18:40:29 +10002683 read_unlock(&policy_rwlock);
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002684 for (i = 0; i < *nperms; i++)
2685 kfree((*perms)[i]);
2686 kfree(*perms);
2687 return rc;
2688}
2689
Eric Paris3f120702007-09-21 14:37:10 -04002690int security_get_reject_unknown(void)
2691{
2692 return policydb.reject_unknown;
2693}
2694
2695int security_get_allow_unknown(void)
2696{
2697 return policydb.allow_unknown;
2698}
2699
Paul Moore3bb56b22008-01-29 08:38:19 -05002700/**
Paul Moore3bb56b22008-01-29 08:38:19 -05002701 * security_policycap_supported - Check for a specific policy capability
2702 * @req_cap: capability
2703 *
2704 * Description:
2705 * This function queries the currently loaded policy to see if it supports the
2706 * capability specified by @req_cap. Returns true (1) if the capability is
2707 * supported, false (0) if it isn't supported.
2708 *
2709 */
2710int security_policycap_supported(unsigned int req_cap)
2711{
2712 int rc;
2713
James Morris0804d112008-06-06 18:40:29 +10002714 read_lock(&policy_rwlock);
Paul Moore3bb56b22008-01-29 08:38:19 -05002715 rc = ebitmap_get_bit(&policydb.policycaps, req_cap);
James Morris0804d112008-06-06 18:40:29 +10002716 read_unlock(&policy_rwlock);
Paul Moore3bb56b22008-01-29 08:38:19 -05002717
2718 return rc;
2719}
2720
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002721struct selinux_audit_rule {
2722 u32 au_seqno;
2723 struct context au_ctxt;
2724};
2725
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +02002726void selinux_audit_rule_free(void *vrule)
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002727{
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +02002728 struct selinux_audit_rule *rule = vrule;
2729
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002730 if (rule) {
2731 context_destroy(&rule->au_ctxt);
2732 kfree(rule);
2733 }
2734}
2735
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +02002736int selinux_audit_rule_init(u32 field, u32 op, char *rulestr, void **vrule)
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002737{
2738 struct selinux_audit_rule *tmprule;
2739 struct role_datum *roledatum;
2740 struct type_datum *typedatum;
2741 struct user_datum *userdatum;
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +02002742 struct selinux_audit_rule **rule = (struct selinux_audit_rule **)vrule;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002743 int rc = 0;
2744
2745 *rule = NULL;
2746
2747 if (!ss_initialized)
Steve G3ad40d62007-08-14 12:50:46 -07002748 return -EOPNOTSUPP;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002749
2750 switch (field) {
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05002751 case AUDIT_SUBJ_USER:
2752 case AUDIT_SUBJ_ROLE:
2753 case AUDIT_SUBJ_TYPE:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05002754 case AUDIT_OBJ_USER:
2755 case AUDIT_OBJ_ROLE:
2756 case AUDIT_OBJ_TYPE:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002757 /* only 'equals' and 'not equals' fit user, role, and type */
Al Viro5af75d82008-12-16 05:59:26 -05002758 if (op != Audit_equal && op != Audit_not_equal)
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002759 return -EINVAL;
2760 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05002761 case AUDIT_SUBJ_SEN:
2762 case AUDIT_SUBJ_CLR:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05002763 case AUDIT_OBJ_LEV_LOW:
2764 case AUDIT_OBJ_LEV_HIGH:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002765 /* we do not allow a range, indicated by the presense of '-' */
2766 if (strchr(rulestr, '-'))
2767 return -EINVAL;
2768 break;
2769 default:
2770 /* only the above fields are valid */
2771 return -EINVAL;
2772 }
2773
2774 tmprule = kzalloc(sizeof(struct selinux_audit_rule), GFP_KERNEL);
2775 if (!tmprule)
2776 return -ENOMEM;
2777
2778 context_init(&tmprule->au_ctxt);
2779
James Morris0804d112008-06-06 18:40:29 +10002780 read_lock(&policy_rwlock);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002781
2782 tmprule->au_seqno = latest_granting;
2783
2784 switch (field) {
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05002785 case AUDIT_SUBJ_USER:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05002786 case AUDIT_OBJ_USER:
Eric Paris4b02b522010-11-23 11:40:08 -05002787 rc = -EINVAL;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002788 userdatum = hashtab_search(policydb.p_users.table, rulestr);
2789 if (!userdatum)
Eric Paris4b02b522010-11-23 11:40:08 -05002790 goto out;
2791 tmprule->au_ctxt.user = userdatum->value;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002792 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05002793 case AUDIT_SUBJ_ROLE:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05002794 case AUDIT_OBJ_ROLE:
Eric Paris4b02b522010-11-23 11:40:08 -05002795 rc = -EINVAL;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002796 roledatum = hashtab_search(policydb.p_roles.table, rulestr);
2797 if (!roledatum)
Eric Paris4b02b522010-11-23 11:40:08 -05002798 goto out;
2799 tmprule->au_ctxt.role = roledatum->value;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002800 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05002801 case AUDIT_SUBJ_TYPE:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05002802 case AUDIT_OBJ_TYPE:
Eric Paris4b02b522010-11-23 11:40:08 -05002803 rc = -EINVAL;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002804 typedatum = hashtab_search(policydb.p_types.table, rulestr);
2805 if (!typedatum)
Eric Paris4b02b522010-11-23 11:40:08 -05002806 goto out;
2807 tmprule->au_ctxt.type = typedatum->value;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002808 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05002809 case AUDIT_SUBJ_SEN:
2810 case AUDIT_SUBJ_CLR:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05002811 case AUDIT_OBJ_LEV_LOW:
2812 case AUDIT_OBJ_LEV_HIGH:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002813 rc = mls_from_string(rulestr, &tmprule->au_ctxt, GFP_ATOMIC);
Eric Paris4b02b522010-11-23 11:40:08 -05002814 if (rc)
2815 goto out;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002816 break;
2817 }
Eric Paris4b02b522010-11-23 11:40:08 -05002818 rc = 0;
2819out:
James Morris0804d112008-06-06 18:40:29 +10002820 read_unlock(&policy_rwlock);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002821
2822 if (rc) {
2823 selinux_audit_rule_free(tmprule);
2824 tmprule = NULL;
2825 }
2826
2827 *rule = tmprule;
2828
2829 return rc;
2830}
2831
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +02002832/* Check to see if the rule contains any selinux fields */
2833int selinux_audit_rule_known(struct audit_krule *rule)
2834{
2835 int i;
2836
2837 for (i = 0; i < rule->field_count; i++) {
2838 struct audit_field *f = &rule->fields[i];
2839 switch (f->type) {
2840 case AUDIT_SUBJ_USER:
2841 case AUDIT_SUBJ_ROLE:
2842 case AUDIT_SUBJ_TYPE:
2843 case AUDIT_SUBJ_SEN:
2844 case AUDIT_SUBJ_CLR:
2845 case AUDIT_OBJ_USER:
2846 case AUDIT_OBJ_ROLE:
2847 case AUDIT_OBJ_TYPE:
2848 case AUDIT_OBJ_LEV_LOW:
2849 case AUDIT_OBJ_LEV_HIGH:
2850 return 1;
2851 }
2852 }
2853
2854 return 0;
2855}
2856
2857int selinux_audit_rule_match(u32 sid, u32 field, u32 op, void *vrule,
Eric Parisf5269712008-05-14 11:27:45 -04002858 struct audit_context *actx)
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002859{
2860 struct context *ctxt;
2861 struct mls_level *level;
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +02002862 struct selinux_audit_rule *rule = vrule;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002863 int match = 0;
2864
2865 if (!rule) {
2866 audit_log(actx, GFP_ATOMIC, AUDIT_SELINUX_ERR,
Eric Paris5d55a342008-04-18 17:38:33 -04002867 "selinux_audit_rule_match: missing rule\n");
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002868 return -ENOENT;
2869 }
2870
James Morris0804d112008-06-06 18:40:29 +10002871 read_lock(&policy_rwlock);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002872
2873 if (rule->au_seqno < latest_granting) {
2874 audit_log(actx, GFP_ATOMIC, AUDIT_SELINUX_ERR,
Eric Paris5d55a342008-04-18 17:38:33 -04002875 "selinux_audit_rule_match: stale rule\n");
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002876 match = -ESTALE;
2877 goto out;
2878 }
2879
Stephen Smalley9a2f44f2006-09-25 23:31:58 -07002880 ctxt = sidtab_search(&sidtab, sid);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002881 if (!ctxt) {
2882 audit_log(actx, GFP_ATOMIC, AUDIT_SELINUX_ERR,
Eric Paris5d55a342008-04-18 17:38:33 -04002883 "selinux_audit_rule_match: unrecognized SID %d\n",
2884 sid);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002885 match = -ENOENT;
2886 goto out;
2887 }
2888
2889 /* a field/op pair that is not caught here will simply fall through
2890 without a match */
2891 switch (field) {
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05002892 case AUDIT_SUBJ_USER:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05002893 case AUDIT_OBJ_USER:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002894 switch (op) {
Al Viro5af75d82008-12-16 05:59:26 -05002895 case Audit_equal:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002896 match = (ctxt->user == rule->au_ctxt.user);
2897 break;
Al Viro5af75d82008-12-16 05:59:26 -05002898 case Audit_not_equal:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002899 match = (ctxt->user != rule->au_ctxt.user);
2900 break;
2901 }
2902 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05002903 case AUDIT_SUBJ_ROLE:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05002904 case AUDIT_OBJ_ROLE:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002905 switch (op) {
Al Viro5af75d82008-12-16 05:59:26 -05002906 case Audit_equal:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002907 match = (ctxt->role == rule->au_ctxt.role);
2908 break;
Al Viro5af75d82008-12-16 05:59:26 -05002909 case Audit_not_equal:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002910 match = (ctxt->role != rule->au_ctxt.role);
2911 break;
2912 }
2913 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05002914 case AUDIT_SUBJ_TYPE:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05002915 case AUDIT_OBJ_TYPE:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002916 switch (op) {
Al Viro5af75d82008-12-16 05:59:26 -05002917 case Audit_equal:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002918 match = (ctxt->type == rule->au_ctxt.type);
2919 break;
Al Viro5af75d82008-12-16 05:59:26 -05002920 case Audit_not_equal:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002921 match = (ctxt->type != rule->au_ctxt.type);
2922 break;
2923 }
2924 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05002925 case AUDIT_SUBJ_SEN:
2926 case AUDIT_SUBJ_CLR:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05002927 case AUDIT_OBJ_LEV_LOW:
2928 case AUDIT_OBJ_LEV_HIGH:
2929 level = ((field == AUDIT_SUBJ_SEN ||
Eric Paris5d55a342008-04-18 17:38:33 -04002930 field == AUDIT_OBJ_LEV_LOW) ?
2931 &ctxt->range.level[0] : &ctxt->range.level[1]);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002932 switch (op) {
Al Viro5af75d82008-12-16 05:59:26 -05002933 case Audit_equal:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002934 match = mls_level_eq(&rule->au_ctxt.range.level[0],
Eric Paris5d55a342008-04-18 17:38:33 -04002935 level);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002936 break;
Al Viro5af75d82008-12-16 05:59:26 -05002937 case Audit_not_equal:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002938 match = !mls_level_eq(&rule->au_ctxt.range.level[0],
Eric Paris5d55a342008-04-18 17:38:33 -04002939 level);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002940 break;
Al Viro5af75d82008-12-16 05:59:26 -05002941 case Audit_lt:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002942 match = (mls_level_dom(&rule->au_ctxt.range.level[0],
Eric Paris5d55a342008-04-18 17:38:33 -04002943 level) &&
2944 !mls_level_eq(&rule->au_ctxt.range.level[0],
2945 level));
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002946 break;
Al Viro5af75d82008-12-16 05:59:26 -05002947 case Audit_le:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002948 match = mls_level_dom(&rule->au_ctxt.range.level[0],
Eric Paris5d55a342008-04-18 17:38:33 -04002949 level);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002950 break;
Al Viro5af75d82008-12-16 05:59:26 -05002951 case Audit_gt:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002952 match = (mls_level_dom(level,
Eric Paris5d55a342008-04-18 17:38:33 -04002953 &rule->au_ctxt.range.level[0]) &&
2954 !mls_level_eq(level,
2955 &rule->au_ctxt.range.level[0]));
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002956 break;
Al Viro5af75d82008-12-16 05:59:26 -05002957 case Audit_ge:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002958 match = mls_level_dom(level,
Eric Paris5d55a342008-04-18 17:38:33 -04002959 &rule->au_ctxt.range.level[0]);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002960 break;
2961 }
2962 }
2963
2964out:
James Morris0804d112008-06-06 18:40:29 +10002965 read_unlock(&policy_rwlock);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002966 return match;
2967}
2968
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +02002969static int (*aurule_callback)(void) = audit_update_lsm_rules;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002970
2971static int aurule_avc_callback(u32 event, u32 ssid, u32 tsid,
Eric Parisf5269712008-05-14 11:27:45 -04002972 u16 class, u32 perms, u32 *retained)
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002973{
2974 int err = 0;
2975
2976 if (event == AVC_CALLBACK_RESET && aurule_callback)
2977 err = aurule_callback();
2978 return err;
2979}
2980
2981static int __init aurule_init(void)
2982{
2983 int err;
2984
2985 err = avc_add_callback(aurule_avc_callback, AVC_CALLBACK_RESET,
Eric Paris5d55a342008-04-18 17:38:33 -04002986 SECSID_NULL, SECSID_NULL, SECCLASS_NULL, 0);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002987 if (err)
2988 panic("avc_add_callback() failed, error %d\n", err);
2989
2990 return err;
2991}
2992__initcall(aurule_init);
2993
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07002994#ifdef CONFIG_NETLABEL
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07002995/**
Paul Moore5778eab2007-02-28 15:14:22 -05002996 * security_netlbl_cache_add - Add an entry to the NetLabel cache
2997 * @secattr: the NetLabel packet security attributes
Paul Moore5dbe1eb2008-01-29 08:44:18 -05002998 * @sid: the SELinux SID
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07002999 *
3000 * Description:
3001 * Attempt to cache the context in @ctx, which was derived from the packet in
Paul Moore5778eab2007-02-28 15:14:22 -05003002 * @skb, in the NetLabel subsystem cache. This function assumes @secattr has
3003 * already been initialized.
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003004 *
3005 */
Paul Moore5778eab2007-02-28 15:14:22 -05003006static void security_netlbl_cache_add(struct netlbl_lsm_secattr *secattr,
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003007 u32 sid)
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003008{
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003009 u32 *sid_cache;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003010
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003011 sid_cache = kmalloc(sizeof(*sid_cache), GFP_ATOMIC);
3012 if (sid_cache == NULL)
3013 return;
Paul Moore5778eab2007-02-28 15:14:22 -05003014 secattr->cache = netlbl_secattr_cache_alloc(GFP_ATOMIC);
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003015 if (secattr->cache == NULL) {
3016 kfree(sid_cache);
Paul Moore5778eab2007-02-28 15:14:22 -05003017 return;
Jesper Juhl0ec8abd2007-07-21 00:12:44 +02003018 }
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003019
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003020 *sid_cache = sid;
3021 secattr->cache->free = kfree;
3022 secattr->cache->data = sid_cache;
Paul Moore5778eab2007-02-28 15:14:22 -05003023 secattr->flags |= NETLBL_SECATTR_CACHE;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003024}
3025
3026/**
Paul Moore5778eab2007-02-28 15:14:22 -05003027 * security_netlbl_secattr_to_sid - Convert a NetLabel secattr to a SELinux SID
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003028 * @secattr: the NetLabel packet security attributes
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003029 * @sid: the SELinux SID
3030 *
3031 * Description:
Paul Moore5778eab2007-02-28 15:14:22 -05003032 * Convert the given NetLabel security attributes in @secattr into a
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003033 * SELinux SID. If the @secattr field does not contain a full SELinux
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003034 * SID/context then use SECINITSID_NETMSG as the foundation. If possibile the
3035 * 'cache' field of @secattr is set and the CACHE flag is set; this is to
3036 * allow the @secattr to be used by NetLabel to cache the secattr to SID
3037 * conversion for future lookups. Returns zero on success, negative values on
3038 * failure.
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003039 *
3040 */
Paul Moore5778eab2007-02-28 15:14:22 -05003041int security_netlbl_secattr_to_sid(struct netlbl_lsm_secattr *secattr,
Paul Moore5778eab2007-02-28 15:14:22 -05003042 u32 *sid)
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003043{
3044 int rc = -EIDRM;
3045 struct context *ctx;
3046 struct context ctx_new;
Paul Moore5778eab2007-02-28 15:14:22 -05003047
3048 if (!ss_initialized) {
3049 *sid = SECSID_NULL;
3050 return 0;
3051 }
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003052
James Morris0804d112008-06-06 18:40:29 +10003053 read_lock(&policy_rwlock);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003054
Paul Moore701a90b2006-11-17 17:38:46 -05003055 if (secattr->flags & NETLBL_SECATTR_CACHE) {
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003056 *sid = *(u32 *)secattr->cache->data;
3057 rc = 0;
Paul Moore16efd452008-01-29 08:37:59 -05003058 } else if (secattr->flags & NETLBL_SECATTR_SECID) {
3059 *sid = secattr->attr.secid;
3060 rc = 0;
Paul Moore701a90b2006-11-17 17:38:46 -05003061 } else if (secattr->flags & NETLBL_SECATTR_MLS_LVL) {
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003062 ctx = sidtab_search(&sidtab, SECINITSID_NETMSG);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003063 if (ctx == NULL)
3064 goto netlbl_secattr_to_sid_return;
3065
Paul Moore81990fb2008-10-03 10:51:15 -04003066 context_init(&ctx_new);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003067 ctx_new.user = ctx->user;
3068 ctx_new.role = ctx->role;
3069 ctx_new.type = ctx->type;
Paul Moore027527602006-11-29 13:18:18 -05003070 mls_import_netlbl_lvl(&ctx_new, secattr);
Paul Moore701a90b2006-11-17 17:38:46 -05003071 if (secattr->flags & NETLBL_SECATTR_MLS_CAT) {
Paul Moore027527602006-11-29 13:18:18 -05003072 if (ebitmap_netlbl_import(&ctx_new.range.level[0].cat,
Paul Moore16efd452008-01-29 08:37:59 -05003073 secattr->attr.mls.cat) != 0)
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003074 goto netlbl_secattr_to_sid_return;
Paul Moore81990fb2008-10-03 10:51:15 -04003075 memcpy(&ctx_new.range.level[1].cat,
3076 &ctx_new.range.level[0].cat,
3077 sizeof(ctx_new.range.level[0].cat));
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003078 }
3079 if (mls_context_isvalid(&policydb, &ctx_new) != 1)
3080 goto netlbl_secattr_to_sid_return_cleanup;
3081
3082 rc = sidtab_context_to_sid(&sidtab, &ctx_new, sid);
3083 if (rc != 0)
3084 goto netlbl_secattr_to_sid_return_cleanup;
3085
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003086 security_netlbl_cache_add(secattr, *sid);
Paul Moore5778eab2007-02-28 15:14:22 -05003087
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003088 ebitmap_destroy(&ctx_new.range.level[0].cat);
3089 } else {
paul.moore@hp.com388b2402006-10-05 18:28:24 -04003090 *sid = SECSID_NULL;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003091 rc = 0;
3092 }
3093
3094netlbl_secattr_to_sid_return:
James Morris0804d112008-06-06 18:40:29 +10003095 read_unlock(&policy_rwlock);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003096 return rc;
3097netlbl_secattr_to_sid_return_cleanup:
3098 ebitmap_destroy(&ctx_new.range.level[0].cat);
3099 goto netlbl_secattr_to_sid_return;
3100}
3101
3102/**
Paul Moore5778eab2007-02-28 15:14:22 -05003103 * security_netlbl_sid_to_secattr - Convert a SELinux SID to a NetLabel secattr
3104 * @sid: the SELinux SID
3105 * @secattr: the NetLabel packet security attributes
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003106 *
3107 * Description:
Paul Moore5778eab2007-02-28 15:14:22 -05003108 * Convert the given SELinux SID in @sid into a NetLabel security attribute.
3109 * Returns zero on success, negative values on failure.
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003110 *
3111 */
Paul Moore5778eab2007-02-28 15:14:22 -05003112int security_netlbl_sid_to_secattr(u32 sid, struct netlbl_lsm_secattr *secattr)
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003113{
Paul Moore99d854d2008-10-10 10:16:30 -04003114 int rc;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003115 struct context *ctx;
3116
3117 if (!ss_initialized)
3118 return 0;
3119
James Morris0804d112008-06-06 18:40:29 +10003120 read_lock(&policy_rwlock);
Eric Paris4b02b522010-11-23 11:40:08 -05003121
3122 rc = -ENOENT;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003123 ctx = sidtab_search(&sidtab, sid);
Eric Paris4b02b522010-11-23 11:40:08 -05003124 if (ctx == NULL)
3125 goto out;
3126
3127 rc = -ENOMEM;
Paul Moore5778eab2007-02-28 15:14:22 -05003128 secattr->domain = kstrdup(policydb.p_type_val_to_name[ctx->type - 1],
3129 GFP_ATOMIC);
Eric Paris4b02b522010-11-23 11:40:08 -05003130 if (secattr->domain == NULL)
3131 goto out;
3132
Paul Moore8d758992008-10-10 10:16:33 -04003133 secattr->attr.secid = sid;
3134 secattr->flags |= NETLBL_SECATTR_DOMAIN_CPY | NETLBL_SECATTR_SECID;
Paul Moore5778eab2007-02-28 15:14:22 -05003135 mls_export_netlbl_lvl(ctx, secattr);
3136 rc = mls_export_netlbl_cat(ctx, secattr);
Eric Paris4b02b522010-11-23 11:40:08 -05003137out:
James Morris0804d112008-06-06 18:40:29 +10003138 read_unlock(&policy_rwlock);
Paul Mooref8687af2006-10-30 15:22:15 -08003139 return rc;
3140}
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003141#endif /* CONFIG_NETLABEL */
Eric Pariscee74f42010-10-13 17:50:25 -04003142
3143/**
3144 * security_read_policy - read the policy.
3145 * @data: binary policy data
3146 * @len: length of data in bytes
3147 *
3148 */
3149int security_read_policy(void **data, ssize_t *len)
3150{
3151 int rc;
3152 struct policy_file fp;
3153
3154 if (!ss_initialized)
3155 return -EINVAL;
3156
3157 *len = security_policydb_len();
3158
Eric Paris845ca302010-10-13 17:50:31 -04003159 *data = vmalloc_user(*len);
Eric Pariscee74f42010-10-13 17:50:25 -04003160 if (!*data)
3161 return -ENOMEM;
3162
3163 fp.data = *data;
3164 fp.len = *len;
3165
3166 read_lock(&policy_rwlock);
3167 rc = policydb_write(&policydb, &fp);
3168 read_unlock(&policy_rwlock);
3169
3170 if (rc)
3171 return rc;
3172
3173 *len = (unsigned long)fp.data - (unsigned long)*data;
3174 return 0;
3175
3176}