blob: 60d9b02523215aa37b0399e1446726e05b99cb8f [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 *
Paul Moore82c21bf2011-08-01 11:10:33 +000016 * Updated: Hewlett-Packard <paul@paul-moore.com>
Venkat Yekkirala7420ed22006-08-04 23:17:57 -070017 *
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 Moore02752762006-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
Paul Moore3bb56b22008-01-29 08:38:19 -050073int selinux_policycap_netpeer;
Eric Parisb0c636b2008-02-28 12:58:40 -050074int selinux_policycap_openperm;
Stephen Smalleyda69a532017-01-09 10:07:30 -050075int selinux_policycap_extsockclass;
Chris PeBenito2be4d742013-05-03 09:05:39 -040076int selinux_policycap_alwaysnetwork;
Stephen Smalley2651225b2017-02-28 10:35:56 -050077int selinux_policycap_cgroupseclabel;
Paul Moore3bb56b22008-01-29 08:38:19 -050078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079static DEFINE_RWLOCK(policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81static struct sidtab sidtab;
82struct policydb policydb;
Eric Paris5d55a342008-04-18 17:38:33 -040083int ss_initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85/*
86 * The largest sequence number that has been used when
87 * providing an access decision to the access vector cache.
88 * The sequence number only changes when a policy change
89 * occurs.
90 */
Eric Paris5d55a342008-04-18 17:38:33 -040091static u32 latest_granting;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93/* Forward declaration. */
94static int context_struct_to_string(struct context *context, char **scontext,
95 u32 *scontext_len);
96
Stephen Smalley19439d02010-01-14 17:28:10 -050097static void context_struct_compute_av(struct context *scontext,
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -040098 struct context *tcontext,
99 u16 tclass,
100 struct av_decision *avd,
101 struct extended_perms *xperms);
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400102
103struct selinux_mapping {
104 u16 value; /* policy value */
105 unsigned num_perms;
106 u32 perms[sizeof(u32) * 8];
107};
108
109static struct selinux_mapping *current_mapping;
110static u16 current_mapping_size;
111
112static int selinux_set_mapping(struct policydb *pol,
113 struct security_class_mapping *map,
114 struct selinux_mapping **out_map_p,
115 u16 *out_map_size)
116{
117 struct selinux_mapping *out_map = NULL;
118 size_t size = sizeof(struct selinux_mapping);
119 u16 i, j;
120 unsigned k;
121 bool print_unknown_handle = false;
122
123 /* Find number of classes in the input mapping */
124 if (!map)
125 return -EINVAL;
126 i = 0;
127 while (map[i].name)
128 i++;
129
130 /* Allocate space for the class records, plus one for class zero */
131 out_map = kcalloc(++i, size, GFP_ATOMIC);
132 if (!out_map)
133 return -ENOMEM;
134
135 /* Store the raw class and permission values */
136 j = 0;
137 while (map[j].name) {
138 struct security_class_mapping *p_in = map + (j++);
139 struct selinux_mapping *p_out = out_map + j;
140
141 /* An empty class string skips ahead */
142 if (!strcmp(p_in->name, "")) {
143 p_out->num_perms = 0;
144 continue;
145 }
146
147 p_out->value = string_to_security_class(pol, p_in->name);
148 if (!p_out->value) {
149 printk(KERN_INFO
150 "SELinux: Class %s not defined in policy.\n",
151 p_in->name);
152 if (pol->reject_unknown)
153 goto err;
154 p_out->num_perms = 0;
155 print_unknown_handle = true;
156 continue;
157 }
158
159 k = 0;
Matthias Kaehlcke342e9152017-03-16 15:26:52 -0700160 while (p_in->perms[k]) {
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400161 /* An empty permission string skips ahead */
162 if (!*p_in->perms[k]) {
163 k++;
164 continue;
165 }
166 p_out->perms[k] = string_to_av_perm(pol, p_out->value,
167 p_in->perms[k]);
168 if (!p_out->perms[k]) {
169 printk(KERN_INFO
170 "SELinux: Permission %s in class %s not defined in policy.\n",
171 p_in->perms[k], p_in->name);
172 if (pol->reject_unknown)
173 goto err;
174 print_unknown_handle = true;
175 }
176
177 k++;
178 }
179 p_out->num_perms = k;
180 }
181
182 if (print_unknown_handle)
183 printk(KERN_INFO "SELinux: the above unknown classes and permissions will be %s\n",
184 pol->allow_unknown ? "allowed" : "denied");
185
186 *out_map_p = out_map;
187 *out_map_size = i;
188 return 0;
189err:
190 kfree(out_map);
191 return -EINVAL;
192}
193
194/*
195 * Get real, policy values from mapped values
196 */
197
198static u16 unmap_class(u16 tclass)
199{
200 if (tclass < current_mapping_size)
201 return current_mapping[tclass].value;
202
203 return tclass;
204}
205
Harry Ciao6f5317e2011-03-02 13:32:33 +0800206/*
207 * Get kernel value for class from its policy value
208 */
209static u16 map_class(u16 pol_value)
210{
211 u16 i;
212
213 for (i = 1; i < current_mapping_size; i++) {
214 if (current_mapping[i].value == pol_value)
215 return i;
216 }
217
Stephen Smalley85cd6da2011-03-25 10:13:43 -0400218 return SECCLASS_NULL;
Harry Ciao6f5317e2011-03-02 13:32:33 +0800219}
220
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400221static void map_decision(u16 tclass, struct av_decision *avd,
222 int allow_unknown)
223{
224 if (tclass < current_mapping_size) {
225 unsigned i, n = current_mapping[tclass].num_perms;
226 u32 result;
227
228 for (i = 0, result = 0; i < n; i++) {
229 if (avd->allowed & current_mapping[tclass].perms[i])
230 result |= 1<<i;
231 if (allow_unknown && !current_mapping[tclass].perms[i])
232 result |= 1<<i;
233 }
234 avd->allowed = result;
235
236 for (i = 0, result = 0; i < n; i++)
237 if (avd->auditallow & current_mapping[tclass].perms[i])
238 result |= 1<<i;
239 avd->auditallow = result;
240
241 for (i = 0, result = 0; i < n; i++) {
242 if (avd->auditdeny & current_mapping[tclass].perms[i])
243 result |= 1<<i;
244 if (!allow_unknown && !current_mapping[tclass].perms[i])
245 result |= 1<<i;
246 }
Eric Paris0bce9522009-11-23 16:47:23 -0500247 /*
248 * In case the kernel has a bug and requests a permission
249 * between num_perms and the maximum permission number, we
250 * should audit that denial
251 */
252 for (; i < (sizeof(u32)*8); i++)
253 result |= 1<<i;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400254 avd->auditdeny = result;
255 }
256}
257
Guido Trentalancia0719aaf2010-02-03 16:40:20 +0100258int security_mls_enabled(void)
259{
260 return policydb.mls_enabled;
261}
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263/*
264 * Return the boolean value of a constraint expression
265 * when it is applied to the specified source and target
266 * security contexts.
267 *
268 * xcontext is a special beast... It is used by the validatetrans rules
269 * only. For these rules, scontext is the context before the transition,
270 * tcontext is the context after the transition, and xcontext is the context
271 * of the process performing the transition. All other callers of
272 * constraint_expr_eval should pass in NULL for xcontext.
273 */
274static int constraint_expr_eval(struct context *scontext,
275 struct context *tcontext,
276 struct context *xcontext,
277 struct constraint_expr *cexpr)
278{
279 u32 val1, val2;
280 struct context *c;
281 struct role_datum *r1, *r2;
282 struct mls_level *l1, *l2;
283 struct constraint_expr *e;
284 int s[CEXPR_MAXDEPTH];
285 int sp = -1;
286
287 for (e = cexpr; e; e = e->next) {
288 switch (e->expr_type) {
289 case CEXPR_NOT:
290 BUG_ON(sp < 0);
291 s[sp] = !s[sp];
292 break;
293 case CEXPR_AND:
294 BUG_ON(sp < 1);
295 sp--;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800296 s[sp] &= s[sp + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 break;
298 case CEXPR_OR:
299 BUG_ON(sp < 1);
300 sp--;
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800301 s[sp] |= s[sp + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 break;
303 case CEXPR_ATTR:
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +0800304 if (sp == (CEXPR_MAXDEPTH - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 return 0;
306 switch (e->attr) {
307 case CEXPR_USER:
308 val1 = scontext->user;
309 val2 = tcontext->user;
310 break;
311 case CEXPR_TYPE:
312 val1 = scontext->type;
313 val2 = tcontext->type;
314 break;
315 case CEXPR_ROLE:
316 val1 = scontext->role;
317 val2 = tcontext->role;
318 r1 = policydb.role_val_to_struct[val1 - 1];
319 r2 = policydb.role_val_to_struct[val2 - 1];
320 switch (e->op) {
321 case CEXPR_DOM:
322 s[++sp] = ebitmap_get_bit(&r1->dominates,
323 val2 - 1);
324 continue;
325 case CEXPR_DOMBY:
326 s[++sp] = ebitmap_get_bit(&r2->dominates,
327 val1 - 1);
328 continue;
329 case CEXPR_INCOMP:
Eric Paris5d55a342008-04-18 17:38:33 -0400330 s[++sp] = (!ebitmap_get_bit(&r1->dominates,
331 val2 - 1) &&
332 !ebitmap_get_bit(&r2->dominates,
333 val1 - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 continue;
335 default:
336 break;
337 }
338 break;
339 case CEXPR_L1L2:
340 l1 = &(scontext->range.level[0]);
341 l2 = &(tcontext->range.level[0]);
342 goto mls_ops;
343 case CEXPR_L1H2:
344 l1 = &(scontext->range.level[0]);
345 l2 = &(tcontext->range.level[1]);
346 goto mls_ops;
347 case CEXPR_H1L2:
348 l1 = &(scontext->range.level[1]);
349 l2 = &(tcontext->range.level[0]);
350 goto mls_ops;
351 case CEXPR_H1H2:
352 l1 = &(scontext->range.level[1]);
353 l2 = &(tcontext->range.level[1]);
354 goto mls_ops;
355 case CEXPR_L1H1:
356 l1 = &(scontext->range.level[0]);
357 l2 = &(scontext->range.level[1]);
358 goto mls_ops;
359 case CEXPR_L2H2:
360 l1 = &(tcontext->range.level[0]);
361 l2 = &(tcontext->range.level[1]);
362 goto mls_ops;
363mls_ops:
364 switch (e->op) {
365 case CEXPR_EQ:
366 s[++sp] = mls_level_eq(l1, l2);
367 continue;
368 case CEXPR_NEQ:
369 s[++sp] = !mls_level_eq(l1, l2);
370 continue;
371 case CEXPR_DOM:
372 s[++sp] = mls_level_dom(l1, l2);
373 continue;
374 case CEXPR_DOMBY:
375 s[++sp] = mls_level_dom(l2, l1);
376 continue;
377 case CEXPR_INCOMP:
378 s[++sp] = mls_level_incomp(l2, l1);
379 continue;
380 default:
381 BUG();
382 return 0;
383 }
384 break;
385 default:
386 BUG();
387 return 0;
388 }
389
390 switch (e->op) {
391 case CEXPR_EQ:
392 s[++sp] = (val1 == val2);
393 break;
394 case CEXPR_NEQ:
395 s[++sp] = (val1 != val2);
396 break;
397 default:
398 BUG();
399 return 0;
400 }
401 break;
402 case CEXPR_NAMES:
403 if (sp == (CEXPR_MAXDEPTH-1))
404 return 0;
405 c = scontext;
406 if (e->attr & CEXPR_TARGET)
407 c = tcontext;
408 else if (e->attr & CEXPR_XTARGET) {
409 c = xcontext;
410 if (!c) {
411 BUG();
412 return 0;
413 }
414 }
415 if (e->attr & CEXPR_USER)
416 val1 = c->user;
417 else if (e->attr & CEXPR_ROLE)
418 val1 = c->role;
419 else if (e->attr & CEXPR_TYPE)
420 val1 = c->type;
421 else {
422 BUG();
423 return 0;
424 }
425
426 switch (e->op) {
427 case CEXPR_EQ:
428 s[++sp] = ebitmap_get_bit(&e->names, val1 - 1);
429 break;
430 case CEXPR_NEQ:
431 s[++sp] = !ebitmap_get_bit(&e->names, val1 - 1);
432 break;
433 default:
434 BUG();
435 return 0;
436 }
437 break;
438 default:
439 BUG();
440 return 0;
441 }
442 }
443
444 BUG_ON(sp != 0);
445 return s[0];
446}
447
448/*
KaiGai Kohei44c2d9b2009-06-18 17:26:13 +0900449 * security_dump_masked_av - dumps masked permissions during
450 * security_compute_av due to RBAC, MLS/Constraint and Type bounds.
451 */
452static int dump_masked_av_helper(void *k, void *d, void *args)
453{
454 struct perm_datum *pdatum = d;
455 char **permission_names = args;
456
457 BUG_ON(pdatum->value < 1 || pdatum->value > 32);
458
459 permission_names[pdatum->value - 1] = (char *)k;
460
461 return 0;
462}
463
464static void security_dump_masked_av(struct context *scontext,
465 struct context *tcontext,
466 u16 tclass,
467 u32 permissions,
468 const char *reason)
469{
470 struct common_datum *common_dat;
471 struct class_datum *tclass_dat;
472 struct audit_buffer *ab;
473 char *tclass_name;
474 char *scontext_name = NULL;
475 char *tcontext_name = NULL;
476 char *permission_names[32];
James Morris2da5d312010-02-16 17:29:06 +1100477 int index;
478 u32 length;
KaiGai Kohei44c2d9b2009-06-18 17:26:13 +0900479 bool need_comma = false;
480
481 if (!permissions)
482 return;
483
Eric Parisac76c052010-11-29 15:47:09 -0500484 tclass_name = sym_name(&policydb, SYM_CLASSES, tclass - 1);
KaiGai Kohei44c2d9b2009-06-18 17:26:13 +0900485 tclass_dat = policydb.class_val_to_struct[tclass - 1];
486 common_dat = tclass_dat->comdatum;
487
488 /* init permission_names */
489 if (common_dat &&
490 hashtab_map(common_dat->permissions.table,
491 dump_masked_av_helper, permission_names) < 0)
492 goto out;
493
494 if (hashtab_map(tclass_dat->permissions.table,
495 dump_masked_av_helper, permission_names) < 0)
496 goto out;
497
498 /* get scontext/tcontext in text form */
499 if (context_struct_to_string(scontext,
500 &scontext_name, &length) < 0)
501 goto out;
502
503 if (context_struct_to_string(tcontext,
504 &tcontext_name, &length) < 0)
505 goto out;
506
507 /* audit a message */
508 ab = audit_log_start(current->audit_context,
509 GFP_ATOMIC, AUDIT_SELINUX_ERR);
510 if (!ab)
511 goto out;
512
513 audit_log_format(ab, "op=security_compute_av reason=%s "
514 "scontext=%s tcontext=%s tclass=%s perms=",
515 reason, scontext_name, tcontext_name, tclass_name);
516
517 for (index = 0; index < 32; index++) {
518 u32 mask = (1 << index);
519
520 if ((mask & permissions) == 0)
521 continue;
522
523 audit_log_format(ab, "%s%s",
524 need_comma ? "," : "",
525 permission_names[index]
526 ? permission_names[index] : "????");
527 need_comma = true;
528 }
529 audit_log_end(ab);
530out:
531 /* release scontext/tcontext */
532 kfree(tcontext_name);
533 kfree(scontext_name);
534
535 return;
536}
537
538/*
KaiGai Koheid9250de2008-08-28 16:35:57 +0900539 * security_boundary_permission - drops violated permissions
540 * on boundary constraint.
541 */
542static void type_attribute_bounds_av(struct context *scontext,
543 struct context *tcontext,
544 u16 tclass,
KaiGai Koheid9250de2008-08-28 16:35:57 +0900545 struct av_decision *avd)
546{
KaiGai Kohei2ae3ba32010-02-17 08:49:41 +0900547 struct context lo_scontext;
Stephen Smalley7ea59202016-05-23 10:54:11 -0400548 struct context lo_tcontext, *tcontextp = tcontext;
KaiGai Kohei2ae3ba32010-02-17 08:49:41 +0900549 struct av_decision lo_avd;
Eric Paris23bdecb2010-11-29 15:47:09 -0500550 struct type_datum *source;
551 struct type_datum *target;
KaiGai Kohei2ae3ba32010-02-17 08:49:41 +0900552 u32 masked = 0;
KaiGai Koheid9250de2008-08-28 16:35:57 +0900553
Eric Paris23bdecb2010-11-29 15:47:09 -0500554 source = flex_array_get_ptr(policydb.type_val_to_struct_array,
555 scontext->type - 1);
556 BUG_ON(!source);
557
Stephen Smalley7ea59202016-05-23 10:54:11 -0400558 if (!source->bounds)
559 return;
560
Eric Paris23bdecb2010-11-29 15:47:09 -0500561 target = flex_array_get_ptr(policydb.type_val_to_struct_array,
562 tcontext->type - 1);
563 BUG_ON(!target);
564
Stephen Smalley7ea59202016-05-23 10:54:11 -0400565 memset(&lo_avd, 0, sizeof(lo_avd));
KaiGai Koheid9250de2008-08-28 16:35:57 +0900566
Stephen Smalley7ea59202016-05-23 10:54:11 -0400567 memcpy(&lo_scontext, scontext, sizeof(lo_scontext));
568 lo_scontext.type = source->bounds;
KaiGai Koheid9250de2008-08-28 16:35:57 +0900569
KaiGai Kohei2ae3ba32010-02-17 08:49:41 +0900570 if (target->bounds) {
KaiGai Kohei2ae3ba32010-02-17 08:49:41 +0900571 memcpy(&lo_tcontext, tcontext, sizeof(lo_tcontext));
572 lo_tcontext.type = target->bounds;
Stephen Smalley7ea59202016-05-23 10:54:11 -0400573 tcontextp = &lo_tcontext;
KaiGai Kohei2ae3ba32010-02-17 08:49:41 +0900574 }
575
Stephen Smalley7ea59202016-05-23 10:54:11 -0400576 context_struct_compute_av(&lo_scontext,
577 tcontextp,
578 tclass,
579 &lo_avd,
580 NULL);
KaiGai Kohei2ae3ba32010-02-17 08:49:41 +0900581
Stephen Smalley7ea59202016-05-23 10:54:11 -0400582 masked = ~lo_avd.allowed & avd->allowed;
KaiGai Kohei2ae3ba32010-02-17 08:49:41 +0900583
Stephen Smalley7ea59202016-05-23 10:54:11 -0400584 if (likely(!masked))
585 return; /* no masked permission */
KaiGai Koheid9250de2008-08-28 16:35:57 +0900586
Stephen Smalley7ea59202016-05-23 10:54:11 -0400587 /* mask violated permissions */
588 avd->allowed &= ~masked;
589
590 /* audit masked permissions */
591 security_dump_masked_av(scontext, tcontext,
592 tclass, masked, "bounds");
KaiGai Koheid9250de2008-08-28 16:35:57 +0900593}
594
595/*
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -0400596 * flag which drivers have permissions
597 * only looking for ioctl based extended permssions
598 */
599void services_compute_xperms_drivers(
600 struct extended_perms *xperms,
601 struct avtab_node *node)
602{
603 unsigned int i;
604
605 if (node->datum.u.xperms->specified == AVTAB_XPERMS_IOCTLDRIVER) {
606 /* if one or more driver has all permissions allowed */
607 for (i = 0; i < ARRAY_SIZE(xperms->drivers.p); i++)
608 xperms->drivers.p[i] |= node->datum.u.xperms->perms.p[i];
609 } else if (node->datum.u.xperms->specified == AVTAB_XPERMS_IOCTLFUNCTION) {
610 /* if allowing permissions within a driver */
611 security_xperm_set(xperms->drivers.p,
612 node->datum.u.xperms->driver);
613 }
614
615 /* If no ioctl commands are allowed, ignore auditallow and auditdeny */
616 if (node->key.specified & AVTAB_XPERMS_ALLOWED)
617 xperms->len = 1;
618}
619
620/*
621 * Compute access vectors and extended permissions based on a context
622 * structure pair for the permissions in a particular class.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 */
Stephen Smalley19439d02010-01-14 17:28:10 -0500624static void context_struct_compute_av(struct context *scontext,
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -0400625 struct context *tcontext,
626 u16 tclass,
627 struct av_decision *avd,
628 struct extended_perms *xperms)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
630 struct constraint_node *constraint;
631 struct role_allow *ra;
632 struct avtab_key avkey;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700633 struct avtab_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 struct class_datum *tclass_datum;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700635 struct ebitmap *sattr, *tattr;
636 struct ebitmap_node *snode, *tnode;
637 unsigned int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 avd->allowed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 avd->auditallow = 0;
641 avd->auditdeny = 0xffffffff;
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -0400642 if (xperms) {
643 memset(&xperms->drivers, 0, sizeof(xperms->drivers));
644 xperms->len = 0;
645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400647 if (unlikely(!tclass || tclass > policydb.p_classes.nprim)) {
648 if (printk_ratelimit())
649 printk(KERN_WARNING "SELinux: Invalid class %hu\n", tclass);
Stephen Smalley19439d02010-01-14 17:28:10 -0500650 return;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400651 }
Eric Paris3f120702007-09-21 14:37:10 -0400652
653 tclass_datum = policydb.class_val_to_struct[tclass - 1];
654
655 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 * If a specific type enforcement rule was defined for
657 * this permission check, then use it.
658 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 avkey.target_class = tclass;
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -0400660 avkey.specified = AVTAB_AV | AVTAB_XPERMS;
Eric Paris6371dcd2010-07-29 23:02:34 -0400661 sattr = flex_array_get(policydb.type_attr_map_array, scontext->type - 1);
662 BUG_ON(!sattr);
663 tattr = flex_array_get(policydb.type_attr_map_array, tcontext->type - 1);
664 BUG_ON(!tattr);
KaiGai Kohei9fe79ad2007-09-29 02:20:55 +0900665 ebitmap_for_each_positive_bit(sattr, snode, i) {
666 ebitmap_for_each_positive_bit(tattr, tnode, j) {
Stephen Smalley782ebb92005-09-03 15:55:16 -0700667 avkey.source_type = i + 1;
668 avkey.target_type = j + 1;
669 for (node = avtab_search_node(&policydb.te_avtab, &avkey);
Vesa-Matti Karidbc74c62008-08-07 03:18:20 +0300670 node;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700671 node = avtab_search_node_next(node, avkey.specified)) {
672 if (node->key.specified == AVTAB_ALLOWED)
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -0400673 avd->allowed |= node->datum.u.data;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700674 else if (node->key.specified == AVTAB_AUDITALLOW)
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -0400675 avd->auditallow |= node->datum.u.data;
Stephen Smalley782ebb92005-09-03 15:55:16 -0700676 else if (node->key.specified == AVTAB_AUDITDENY)
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -0400677 avd->auditdeny &= node->datum.u.data;
678 else if (xperms && (node->key.specified & AVTAB_XPERMS))
679 services_compute_xperms_drivers(xperms, node);
Stephen Smalley782ebb92005-09-03 15:55:16 -0700680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Stephen Smalley782ebb92005-09-03 15:55:16 -0700682 /* Check conditional av table for additional permissions */
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -0400683 cond_compute_av(&policydb.te_cond_avtab, &avkey,
684 avd, xperms);
Stephen Smalley782ebb92005-09-03 15:55:16 -0700685
686 }
687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 /*
690 * Remove any permissions prohibited by a constraint (this includes
691 * the MLS policy).
692 */
693 constraint = tclass_datum->constraints;
694 while (constraint) {
695 if ((constraint->permissions & (avd->allowed)) &&
696 !constraint_expr_eval(scontext, tcontext, NULL,
697 constraint->expr)) {
KaiGai Koheicaabbdc2009-06-18 17:30:07 +0900698 avd->allowed &= ~(constraint->permissions);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }
700 constraint = constraint->next;
701 }
702
703 /*
704 * If checking process transition permission and the
705 * role is changing, then check the (current_role, new_role)
706 * pair.
707 */
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400708 if (tclass == policydb.process_class &&
709 (avd->allowed & policydb.process_trans_perms) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 scontext->role != tcontext->role) {
711 for (ra = policydb.role_allow; ra; ra = ra->next) {
712 if (scontext->role == ra->role &&
713 tcontext->role == ra->new_role)
714 break;
715 }
716 if (!ra)
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400717 avd->allowed &= ~policydb.process_trans_perms;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 }
719
KaiGai Koheid9250de2008-08-28 16:35:57 +0900720 /*
721 * If the given source and target types have boundary
722 * constraint, lazy checks have to mask any violated
723 * permission and notice it to userspace via audit.
724 */
725 type_attribute_bounds_av(scontext, tcontext,
Stephen Smalley19439d02010-01-14 17:28:10 -0500726 tclass, avd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
728
729static int security_validtrans_handle_fail(struct context *ocontext,
Eric Paris5d55a342008-04-18 17:38:33 -0400730 struct context *ncontext,
731 struct context *tcontext,
732 u16 tclass)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
734 char *o = NULL, *n = NULL, *t = NULL;
735 u32 olen, nlen, tlen;
736
Eric Paris4b02b522010-11-23 11:40:08 -0500737 if (context_struct_to_string(ocontext, &o, &olen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 goto out;
Eric Paris4b02b522010-11-23 11:40:08 -0500739 if (context_struct_to_string(ncontext, &n, &nlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 goto out;
Eric Paris4b02b522010-11-23 11:40:08 -0500741 if (context_struct_to_string(tcontext, &t, &tlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 goto out;
David Woodhouse9ad9ad32005-06-22 15:04:33 +0100743 audit_log(current->audit_context, GFP_ATOMIC, AUDIT_SELINUX_ERR,
Richard Guy Briggs4093a842014-09-18 20:47:48 -0400744 "op=security_validate_transition seresult=denied"
Eric Paris5d55a342008-04-18 17:38:33 -0400745 " oldcontext=%s newcontext=%s taskcontext=%s tclass=%s",
Eric Parisac76c052010-11-29 15:47:09 -0500746 o, n, t, sym_name(&policydb, SYM_CLASSES, tclass-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747out:
748 kfree(o);
749 kfree(n);
750 kfree(t);
751
752 if (!selinux_enforcing)
753 return 0;
754 return -EPERM;
755}
756
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500757static int security_compute_validatetrans(u32 oldsid, u32 newsid, u32 tasksid,
758 u16 orig_tclass, bool user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
760 struct context *ocontext;
761 struct context *ncontext;
762 struct context *tcontext;
763 struct class_datum *tclass_datum;
764 struct constraint_node *constraint;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400765 u16 tclass;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 int rc = 0;
767
768 if (!ss_initialized)
769 return 0;
770
James Morris0804d112008-06-06 18:40:29 +1000771 read_lock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500773 if (!user)
774 tclass = unmap_class(orig_tclass);
775 else
776 tclass = orig_tclass;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (!tclass || tclass > policydb.p_classes.nprim) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 rc = -EINVAL;
780 goto out;
781 }
782 tclass_datum = policydb.class_val_to_struct[tclass - 1];
783
784 ocontext = sidtab_search(&sidtab, oldsid);
785 if (!ocontext) {
Eric Paris744ba352008-04-17 11:52:44 -0400786 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
787 __func__, oldsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 rc = -EINVAL;
789 goto out;
790 }
791
792 ncontext = sidtab_search(&sidtab, newsid);
793 if (!ncontext) {
Eric Paris744ba352008-04-17 11:52:44 -0400794 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
795 __func__, newsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 rc = -EINVAL;
797 goto out;
798 }
799
800 tcontext = sidtab_search(&sidtab, tasksid);
801 if (!tcontext) {
Eric Paris744ba352008-04-17 11:52:44 -0400802 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
803 __func__, tasksid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 rc = -EINVAL;
805 goto out;
806 }
807
808 constraint = tclass_datum->validatetrans;
809 while (constraint) {
810 if (!constraint_expr_eval(ocontext, ncontext, tcontext,
Eric Paris5d55a342008-04-18 17:38:33 -0400811 constraint->expr)) {
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500812 if (user)
813 rc = -EPERM;
814 else
815 rc = security_validtrans_handle_fail(ocontext,
816 ncontext,
817 tcontext,
818 tclass);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 goto out;
820 }
821 constraint = constraint->next;
822 }
823
824out:
James Morris0804d112008-06-06 18:40:29 +1000825 read_unlock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 return rc;
827}
828
Andrew Perepechkof9df6452015-12-24 11:09:41 -0500829int security_validate_transition_user(u32 oldsid, u32 newsid, u32 tasksid,
830 u16 tclass)
831{
832 return security_compute_validatetrans(oldsid, newsid, tasksid,
833 tclass, true);
834}
835
836int security_validate_transition(u32 oldsid, u32 newsid, u32 tasksid,
837 u16 orig_tclass)
838{
839 return security_compute_validatetrans(oldsid, newsid, tasksid,
840 orig_tclass, false);
841}
842
KaiGai Koheid9250de2008-08-28 16:35:57 +0900843/*
844 * security_bounded_transition - check whether the given
845 * transition is directed to bounded, or not.
846 * It returns 0, if @newsid is bounded by @oldsid.
847 * Otherwise, it returns error code.
848 *
849 * @oldsid : current security identifier
850 * @newsid : destinated security identifier
851 */
852int security_bounded_transition(u32 old_sid, u32 new_sid)
853{
854 struct context *old_context, *new_context;
855 struct type_datum *type;
856 int index;
Eric Paris4b02b522010-11-23 11:40:08 -0500857 int rc;
KaiGai Koheid9250de2008-08-28 16:35:57 +0900858
859 read_lock(&policy_rwlock);
860
Eric Paris4b02b522010-11-23 11:40:08 -0500861 rc = -EINVAL;
KaiGai Koheid9250de2008-08-28 16:35:57 +0900862 old_context = sidtab_search(&sidtab, old_sid);
863 if (!old_context) {
864 printk(KERN_ERR "SELinux: %s: unrecognized SID %u\n",
865 __func__, old_sid);
866 goto out;
867 }
868
Eric Paris4b02b522010-11-23 11:40:08 -0500869 rc = -EINVAL;
KaiGai Koheid9250de2008-08-28 16:35:57 +0900870 new_context = sidtab_search(&sidtab, new_sid);
871 if (!new_context) {
872 printk(KERN_ERR "SELinux: %s: unrecognized SID %u\n",
873 __func__, new_sid);
874 goto out;
875 }
876
Eric Paris4b02b522010-11-23 11:40:08 -0500877 rc = 0;
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200878 /* type/domain unchanged */
Eric Paris4b02b522010-11-23 11:40:08 -0500879 if (old_context->type == new_context->type)
KaiGai Koheid9250de2008-08-28 16:35:57 +0900880 goto out;
KaiGai Koheid9250de2008-08-28 16:35:57 +0900881
882 index = new_context->type;
883 while (true) {
Eric Paris23bdecb2010-11-29 15:47:09 -0500884 type = flex_array_get_ptr(policydb.type_val_to_struct_array,
885 index - 1);
KaiGai Koheid9250de2008-08-28 16:35:57 +0900886 BUG_ON(!type);
887
888 /* not bounded anymore */
Eric Paris4b02b522010-11-23 11:40:08 -0500889 rc = -EPERM;
890 if (!type->bounds)
KaiGai Koheid9250de2008-08-28 16:35:57 +0900891 break;
KaiGai Koheid9250de2008-08-28 16:35:57 +0900892
893 /* @newsid is bounded by @oldsid */
Eric Paris4b02b522010-11-23 11:40:08 -0500894 rc = 0;
895 if (type->bounds == old_context->type)
KaiGai Koheid9250de2008-08-28 16:35:57 +0900896 break;
Eric Paris4b02b522010-11-23 11:40:08 -0500897
KaiGai Koheid9250de2008-08-28 16:35:57 +0900898 index = type->bounds;
899 }
KaiGai Kohei44c2d9b2009-06-18 17:26:13 +0900900
901 if (rc) {
902 char *old_name = NULL;
903 char *new_name = NULL;
James Morris2da5d312010-02-16 17:29:06 +1100904 u32 length;
KaiGai Kohei44c2d9b2009-06-18 17:26:13 +0900905
906 if (!context_struct_to_string(old_context,
907 &old_name, &length) &&
908 !context_struct_to_string(new_context,
909 &new_name, &length)) {
910 audit_log(current->audit_context,
911 GFP_ATOMIC, AUDIT_SELINUX_ERR,
912 "op=security_bounded_transition "
Richard Guy Briggs4093a842014-09-18 20:47:48 -0400913 "seresult=denied "
KaiGai Kohei44c2d9b2009-06-18 17:26:13 +0900914 "oldcontext=%s newcontext=%s",
915 old_name, new_name);
916 }
917 kfree(new_name);
918 kfree(old_name);
919 }
KaiGai Koheid9250de2008-08-28 16:35:57 +0900920out:
921 read_unlock(&policy_rwlock);
922
923 return rc;
924}
925
Stephen Smalley19439d02010-01-14 17:28:10 -0500926static void avd_init(struct av_decision *avd)
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400927{
Stephen Smalley19439d02010-01-14 17:28:10 -0500928 avd->allowed = 0;
929 avd->auditallow = 0;
930 avd->auditdeny = 0xffffffff;
931 avd->seqno = latest_granting;
932 avd->flags = 0;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400933}
934
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -0400935void services_compute_xperms_decision(struct extended_perms_decision *xpermd,
936 struct avtab_node *node)
937{
938 unsigned int i;
939
940 if (node->datum.u.xperms->specified == AVTAB_XPERMS_IOCTLFUNCTION) {
941 if (xpermd->driver != node->datum.u.xperms->driver)
942 return;
943 } else if (node->datum.u.xperms->specified == AVTAB_XPERMS_IOCTLDRIVER) {
944 if (!security_xperm_test(node->datum.u.xperms->perms.p,
945 xpermd->driver))
946 return;
947 } else {
948 BUG();
949 }
950
951 if (node->key.specified == AVTAB_XPERMS_ALLOWED) {
952 xpermd->used |= XPERMS_ALLOWED;
953 if (node->datum.u.xperms->specified == AVTAB_XPERMS_IOCTLDRIVER) {
954 memset(xpermd->allowed->p, 0xff,
955 sizeof(xpermd->allowed->p));
956 }
957 if (node->datum.u.xperms->specified == AVTAB_XPERMS_IOCTLFUNCTION) {
958 for (i = 0; i < ARRAY_SIZE(xpermd->allowed->p); i++)
959 xpermd->allowed->p[i] |=
960 node->datum.u.xperms->perms.p[i];
961 }
962 } else if (node->key.specified == AVTAB_XPERMS_AUDITALLOW) {
963 xpermd->used |= XPERMS_AUDITALLOW;
964 if (node->datum.u.xperms->specified == AVTAB_XPERMS_IOCTLDRIVER) {
965 memset(xpermd->auditallow->p, 0xff,
966 sizeof(xpermd->auditallow->p));
967 }
968 if (node->datum.u.xperms->specified == AVTAB_XPERMS_IOCTLFUNCTION) {
969 for (i = 0; i < ARRAY_SIZE(xpermd->auditallow->p); i++)
970 xpermd->auditallow->p[i] |=
971 node->datum.u.xperms->perms.p[i];
972 }
973 } else if (node->key.specified == AVTAB_XPERMS_DONTAUDIT) {
974 xpermd->used |= XPERMS_DONTAUDIT;
975 if (node->datum.u.xperms->specified == AVTAB_XPERMS_IOCTLDRIVER) {
976 memset(xpermd->dontaudit->p, 0xff,
977 sizeof(xpermd->dontaudit->p));
978 }
979 if (node->datum.u.xperms->specified == AVTAB_XPERMS_IOCTLFUNCTION) {
980 for (i = 0; i < ARRAY_SIZE(xpermd->dontaudit->p); i++)
981 xpermd->dontaudit->p[i] |=
982 node->datum.u.xperms->perms.p[i];
983 }
984 } else {
985 BUG();
986 }
987}
988
989void security_compute_xperms_decision(u32 ssid,
990 u32 tsid,
991 u16 orig_tclass,
992 u8 driver,
993 struct extended_perms_decision *xpermd)
994{
995 u16 tclass;
996 struct context *scontext, *tcontext;
997 struct avtab_key avkey;
998 struct avtab_node *node;
999 struct ebitmap *sattr, *tattr;
1000 struct ebitmap_node *snode, *tnode;
1001 unsigned int i, j;
1002
1003 xpermd->driver = driver;
1004 xpermd->used = 0;
1005 memset(xpermd->allowed->p, 0, sizeof(xpermd->allowed->p));
1006 memset(xpermd->auditallow->p, 0, sizeof(xpermd->auditallow->p));
1007 memset(xpermd->dontaudit->p, 0, sizeof(xpermd->dontaudit->p));
1008
1009 read_lock(&policy_rwlock);
1010 if (!ss_initialized)
1011 goto allow;
1012
1013 scontext = sidtab_search(&sidtab, ssid);
1014 if (!scontext) {
1015 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
1016 __func__, ssid);
1017 goto out;
1018 }
1019
1020 tcontext = sidtab_search(&sidtab, tsid);
1021 if (!tcontext) {
1022 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
1023 __func__, tsid);
1024 goto out;
1025 }
1026
1027 tclass = unmap_class(orig_tclass);
1028 if (unlikely(orig_tclass && !tclass)) {
1029 if (policydb.allow_unknown)
1030 goto allow;
1031 goto out;
1032 }
1033
1034
1035 if (unlikely(!tclass || tclass > policydb.p_classes.nprim)) {
1036 pr_warn_ratelimited("SELinux: Invalid class %hu\n", tclass);
1037 goto out;
1038 }
1039
1040 avkey.target_class = tclass;
1041 avkey.specified = AVTAB_XPERMS;
1042 sattr = flex_array_get(policydb.type_attr_map_array,
1043 scontext->type - 1);
1044 BUG_ON(!sattr);
1045 tattr = flex_array_get(policydb.type_attr_map_array,
1046 tcontext->type - 1);
1047 BUG_ON(!tattr);
1048 ebitmap_for_each_positive_bit(sattr, snode, i) {
1049 ebitmap_for_each_positive_bit(tattr, tnode, j) {
1050 avkey.source_type = i + 1;
1051 avkey.target_type = j + 1;
1052 for (node = avtab_search_node(&policydb.te_avtab, &avkey);
1053 node;
1054 node = avtab_search_node_next(node, avkey.specified))
1055 services_compute_xperms_decision(xpermd, node);
1056
1057 cond_compute_xperms(&policydb.te_cond_avtab,
1058 &avkey, xpermd);
1059 }
1060 }
1061out:
1062 read_unlock(&policy_rwlock);
1063 return;
1064allow:
1065 memset(xpermd->allowed->p, 0xff, sizeof(xpermd->allowed->p));
1066 goto out;
1067}
Stephen Smalley19439d02010-01-14 17:28:10 -05001068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069/**
1070 * security_compute_av - Compute access vector decisions.
1071 * @ssid: source security identifier
1072 * @tsid: target security identifier
1073 * @tclass: target security class
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 * @avd: access vector decisions
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -04001075 * @xperms: extended permissions
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 *
1077 * Compute a set of access vector decisions based on the
1078 * SID pair (@ssid, @tsid) for the permissions in @tclass.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 */
Stephen Smalley19439d02010-01-14 17:28:10 -05001080void security_compute_av(u32 ssid,
1081 u32 tsid,
1082 u16 orig_tclass,
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -04001083 struct av_decision *avd,
1084 struct extended_perms *xperms)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001086 u16 tclass;
Stephen Smalley19439d02010-01-14 17:28:10 -05001087 struct context *scontext = NULL, *tcontext = NULL;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001088
Stephen Smalleyb7f30082009-10-19 10:08:50 -04001089 read_lock(&policy_rwlock);
Stephen Smalley19439d02010-01-14 17:28:10 -05001090 avd_init(avd);
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -04001091 xperms->len = 0;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001092 if (!ss_initialized)
1093 goto allow;
1094
Stephen Smalley19439d02010-01-14 17:28:10 -05001095 scontext = sidtab_search(&sidtab, ssid);
1096 if (!scontext) {
1097 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
1098 __func__, ssid);
1099 goto out;
1100 }
1101
1102 /* permissive domain? */
1103 if (ebitmap_get_bit(&policydb.permissive_map, scontext->type))
1104 avd->flags |= AVD_FLAGS_PERMISSIVE;
1105
1106 tcontext = sidtab_search(&sidtab, tsid);
1107 if (!tcontext) {
1108 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
1109 __func__, tsid);
1110 goto out;
1111 }
1112
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001113 tclass = unmap_class(orig_tclass);
1114 if (unlikely(orig_tclass && !tclass)) {
1115 if (policydb.allow_unknown)
1116 goto allow;
Stephen Smalleyb7f30082009-10-19 10:08:50 -04001117 goto out;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001118 }
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -04001119 context_struct_compute_av(scontext, tcontext, tclass, avd, xperms);
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001120 map_decision(orig_tclass, avd, policydb.allow_unknown);
Stephen Smalleyb7f30082009-10-19 10:08:50 -04001121out:
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001122 read_unlock(&policy_rwlock);
Stephen Smalley19439d02010-01-14 17:28:10 -05001123 return;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001124allow:
1125 avd->allowed = 0xffffffff;
Stephen Smalleyb7f30082009-10-19 10:08:50 -04001126 goto out;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001127}
1128
Stephen Smalley19439d02010-01-14 17:28:10 -05001129void security_compute_av_user(u32 ssid,
1130 u32 tsid,
1131 u16 tclass,
1132 struct av_decision *avd)
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001133{
Stephen Smalley19439d02010-01-14 17:28:10 -05001134 struct context *scontext = NULL, *tcontext = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
James Morris0804d112008-06-06 18:40:29 +10001136 read_lock(&policy_rwlock);
Stephen Smalley19439d02010-01-14 17:28:10 -05001137 avd_init(avd);
1138 if (!ss_initialized)
1139 goto allow;
1140
1141 scontext = sidtab_search(&sidtab, ssid);
1142 if (!scontext) {
1143 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
1144 __func__, ssid);
1145 goto out;
1146 }
1147
1148 /* permissive domain? */
1149 if (ebitmap_get_bit(&policydb.permissive_map, scontext->type))
1150 avd->flags |= AVD_FLAGS_PERMISSIVE;
1151
1152 tcontext = sidtab_search(&sidtab, tsid);
1153 if (!tcontext) {
1154 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
1155 __func__, tsid);
1156 goto out;
1157 }
1158
1159 if (unlikely(!tclass)) {
1160 if (policydb.allow_unknown)
1161 goto allow;
1162 goto out;
1163 }
1164
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -04001165 context_struct_compute_av(scontext, tcontext, tclass, avd, NULL);
Stephen Smalley19439d02010-01-14 17:28:10 -05001166 out:
James Morris0804d112008-06-06 18:40:29 +10001167 read_unlock(&policy_rwlock);
Stephen Smalley19439d02010-01-14 17:28:10 -05001168 return;
1169allow:
1170 avd->allowed = 0xffffffff;
1171 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172}
1173
1174/*
1175 * Write the security context string representation of
1176 * the context structure `context' into a dynamically
1177 * allocated string of the correct size. Set `*scontext'
1178 * to point to this string and set `*scontext_len' to
1179 * the length of the string.
1180 */
1181static int context_struct_to_string(struct context *context, char **scontext, u32 *scontext_len)
1182{
1183 char *scontextp;
1184
Eric Parisd5630b92010-10-13 16:24:48 -04001185 if (scontext)
1186 *scontext = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 *scontext_len = 0;
1188
Stephen Smalley12b29f32008-05-07 13:03:20 -04001189 if (context->len) {
1190 *scontext_len = context->len;
Eric Parisbb7081a2012-04-04 13:46:36 -04001191 if (scontext) {
1192 *scontext = kstrdup(context->str, GFP_ATOMIC);
1193 if (!(*scontext))
1194 return -ENOMEM;
1195 }
Stephen Smalley12b29f32008-05-07 13:03:20 -04001196 return 0;
1197 }
1198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 /* Compute the size of the context. */
Eric Parisac76c052010-11-29 15:47:09 -05001200 *scontext_len += strlen(sym_name(&policydb, SYM_USERS, context->user - 1)) + 1;
1201 *scontext_len += strlen(sym_name(&policydb, SYM_ROLES, context->role - 1)) + 1;
1202 *scontext_len += strlen(sym_name(&policydb, SYM_TYPES, context->type - 1)) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 *scontext_len += mls_compute_context_len(context);
1204
Eric Parisd5630b92010-10-13 16:24:48 -04001205 if (!scontext)
1206 return 0;
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 /* Allocate space for the context; caller must free this space. */
1209 scontextp = kmalloc(*scontext_len, GFP_ATOMIC);
Eric Paris5d55a342008-04-18 17:38:33 -04001210 if (!scontextp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 *scontext = scontextp;
1213
1214 /*
1215 * Copy the user name, role name and type name into the context.
1216 */
Rasmus Villemoes9529c782015-10-21 17:44:27 -04001217 scontextp += sprintf(scontextp, "%s:%s:%s",
Eric Parisac76c052010-11-29 15:47:09 -05001218 sym_name(&policydb, SYM_USERS, context->user - 1),
1219 sym_name(&policydb, SYM_ROLES, context->role - 1),
1220 sym_name(&policydb, SYM_TYPES, context->type - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 mls_sid_to_context(context, &scontextp);
1223
1224 *scontextp = 0;
1225
1226 return 0;
1227}
1228
1229#include "initial_sid_to_string.h"
1230
James Carterf0ee2e42007-04-04 10:11:29 -04001231const char *security_get_initial_sid_context(u32 sid)
1232{
1233 if (unlikely(sid > SECINITSID_NUM))
1234 return NULL;
1235 return initial_sid_to_string[sid];
1236}
1237
Stephen Smalley12b29f32008-05-07 13:03:20 -04001238static int security_sid_to_context_core(u32 sid, char **scontext,
1239 u32 *scontext_len, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
1241 struct context *context;
1242 int rc = 0;
1243
Eric Parisd5630b92010-10-13 16:24:48 -04001244 if (scontext)
1245 *scontext = NULL;
Stephen Smalley4f4acf32007-02-26 12:02:34 -05001246 *scontext_len = 0;
1247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 if (!ss_initialized) {
1249 if (sid <= SECINITSID_NUM) {
1250 char *scontextp;
1251
1252 *scontext_len = strlen(initial_sid_to_string[sid]) + 1;
Eric Parisd5630b92010-10-13 16:24:48 -04001253 if (!scontext)
1254 goto out;
Rasmus Villemoesaa736c32015-10-21 17:44:26 -04001255 scontextp = kmemdup(initial_sid_to_string[sid],
1256 *scontext_len, GFP_ATOMIC);
Serge E. Hallyn0cccca062006-05-15 09:43:48 -07001257 if (!scontextp) {
1258 rc = -ENOMEM;
1259 goto out;
1260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 *scontext = scontextp;
1262 goto out;
1263 }
Eric Paris744ba352008-04-17 11:52:44 -04001264 printk(KERN_ERR "SELinux: %s: called before initial "
1265 "load_policy on unknown SID %d\n", __func__, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 rc = -EINVAL;
1267 goto out;
1268 }
James Morris0804d112008-06-06 18:40:29 +10001269 read_lock(&policy_rwlock);
Stephen Smalley12b29f32008-05-07 13:03:20 -04001270 if (force)
1271 context = sidtab_search_force(&sidtab, sid);
1272 else
1273 context = sidtab_search(&sidtab, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 if (!context) {
Eric Paris744ba352008-04-17 11:52:44 -04001275 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
1276 __func__, sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 rc = -EINVAL;
1278 goto out_unlock;
1279 }
1280 rc = context_struct_to_string(context, scontext, scontext_len);
1281out_unlock:
James Morris0804d112008-06-06 18:40:29 +10001282 read_unlock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283out:
1284 return rc;
1285
1286}
1287
Stephen Smalley12b29f32008-05-07 13:03:20 -04001288/**
1289 * security_sid_to_context - Obtain a context for a given SID.
1290 * @sid: security identifier, SID
1291 * @scontext: security context
1292 * @scontext_len: length in bytes
1293 *
1294 * Write the string representation of the context associated with @sid
1295 * into a dynamically allocated string of the correct size. Set @scontext
1296 * to point to this string and set @scontext_len to the length of the string.
1297 */
1298int security_sid_to_context(u32 sid, char **scontext, u32 *scontext_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
Stephen Smalley12b29f32008-05-07 13:03:20 -04001300 return security_sid_to_context_core(sid, scontext, scontext_len, 0);
1301}
1302
1303int security_sid_to_context_force(u32 sid, char **scontext, u32 *scontext_len)
1304{
1305 return security_sid_to_context_core(sid, scontext, scontext_len, 1);
1306}
1307
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001308/*
1309 * Caveat: Mutates scontext.
1310 */
Stephen Smalley12b29f32008-05-07 13:03:20 -04001311static int string_to_context_struct(struct policydb *pol,
1312 struct sidtab *sidtabp,
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001313 char *scontext,
Stephen Smalley12b29f32008-05-07 13:03:20 -04001314 u32 scontext_len,
1315 struct context *ctx,
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001316 u32 def_sid)
Stephen Smalley12b29f32008-05-07 13:03:20 -04001317{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 struct role_datum *role;
1319 struct type_datum *typdatum;
1320 struct user_datum *usrdatum;
1321 char *scontextp, *p, oldc;
1322 int rc = 0;
1323
Stephen Smalley12b29f32008-05-07 13:03:20 -04001324 context_init(ctx);
1325
Stephen Smalley12b29f32008-05-07 13:03:20 -04001326 /* Parse the security context. */
1327
1328 rc = -EINVAL;
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001329 scontextp = (char *) scontext;
Stephen Smalley12b29f32008-05-07 13:03:20 -04001330
1331 /* Extract the user. */
1332 p = scontextp;
1333 while (*p && *p != ':')
1334 p++;
1335
1336 if (*p == 0)
1337 goto out;
1338
1339 *p++ = 0;
1340
1341 usrdatum = hashtab_search(pol->p_users.table, scontextp);
1342 if (!usrdatum)
1343 goto out;
1344
1345 ctx->user = usrdatum->value;
1346
1347 /* Extract role. */
1348 scontextp = p;
1349 while (*p && *p != ':')
1350 p++;
1351
1352 if (*p == 0)
1353 goto out;
1354
1355 *p++ = 0;
1356
1357 role = hashtab_search(pol->p_roles.table, scontextp);
1358 if (!role)
1359 goto out;
1360 ctx->role = role->value;
1361
1362 /* Extract type. */
1363 scontextp = p;
1364 while (*p && *p != ':')
1365 p++;
1366 oldc = *p;
1367 *p++ = 0;
1368
1369 typdatum = hashtab_search(pol->p_types.table, scontextp);
KaiGai Koheid9250de2008-08-28 16:35:57 +09001370 if (!typdatum || typdatum->attribute)
Stephen Smalley12b29f32008-05-07 13:03:20 -04001371 goto out;
1372
1373 ctx->type = typdatum->value;
1374
1375 rc = mls_context_to_sid(pol, oldc, &p, ctx, sidtabp, def_sid);
1376 if (rc)
1377 goto out;
1378
Eric Paris4b02b522010-11-23 11:40:08 -05001379 rc = -EINVAL;
1380 if ((p - scontext) < scontext_len)
Stephen Smalley12b29f32008-05-07 13:03:20 -04001381 goto out;
Stephen Smalley12b29f32008-05-07 13:03:20 -04001382
1383 /* Check the validity of the new context. */
Eric Paris4b02b522010-11-23 11:40:08 -05001384 if (!policydb_context_isvalid(pol, ctx))
Stephen Smalley12b29f32008-05-07 13:03:20 -04001385 goto out;
Stephen Smalley12b29f32008-05-07 13:03:20 -04001386 rc = 0;
1387out:
Eric Paris8e531af2008-09-03 11:49:47 -04001388 if (rc)
1389 context_destroy(ctx);
Stephen Smalley12b29f32008-05-07 13:03:20 -04001390 return rc;
1391}
1392
1393static int security_context_to_sid_core(const char *scontext, u32 scontext_len,
1394 u32 *sid, u32 def_sid, gfp_t gfp_flags,
1395 int force)
1396{
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001397 char *scontext2, *str = NULL;
Stephen Smalley12b29f32008-05-07 13:03:20 -04001398 struct context context;
1399 int rc = 0;
1400
Stephen Smalley2172fa72014-01-30 11:26:59 -05001401 /* An empty security context is never valid. */
1402 if (!scontext_len)
1403 return -EINVAL;
1404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 if (!ss_initialized) {
1406 int i;
1407
1408 for (i = 1; i < SECINITSID_NUM; i++) {
1409 if (!strcmp(initial_sid_to_string[i], scontext)) {
1410 *sid = i;
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001411 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
1413 }
1414 *sid = SECINITSID_KERNEL;
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001415 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
1417 *sid = SECSID_NULL;
1418
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001419 /* Copy the string so that we can modify the copy as we parse it. */
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08001420 scontext2 = kmalloc(scontext_len + 1, gfp_flags);
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001421 if (!scontext2)
1422 return -ENOMEM;
1423 memcpy(scontext2, scontext, scontext_len);
1424 scontext2[scontext_len] = 0;
1425
1426 if (force) {
1427 /* Save another copy for storing in uninterpreted form */
Eric Paris4b02b522010-11-23 11:40:08 -05001428 rc = -ENOMEM;
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001429 str = kstrdup(scontext2, gfp_flags);
Eric Paris4b02b522010-11-23 11:40:08 -05001430 if (!str)
1431 goto out;
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001432 }
1433
James Morris0804d112008-06-06 18:40:29 +10001434 read_lock(&policy_rwlock);
Eric Paris4b02b522010-11-23 11:40:08 -05001435 rc = string_to_context_struct(&policydb, &sidtab, scontext2,
1436 scontext_len, &context, def_sid);
Stephen Smalley12b29f32008-05-07 13:03:20 -04001437 if (rc == -EINVAL && force) {
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001438 context.str = str;
Stephen Smalley12b29f32008-05-07 13:03:20 -04001439 context.len = scontext_len;
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001440 str = NULL;
Stephen Smalley12b29f32008-05-07 13:03:20 -04001441 } else if (rc)
Eric Paris4b02b522010-11-23 11:40:08 -05001442 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 rc = sidtab_context_to_sid(&sidtab, &context, sid);
Eric Paris8e531af2008-09-03 11:49:47 -04001444 context_destroy(&context);
Eric Paris4b02b522010-11-23 11:40:08 -05001445out_unlock:
James Morris0804d112008-06-06 18:40:29 +10001446 read_unlock(&policy_rwlock);
Eric Paris4b02b522010-11-23 11:40:08 -05001447out:
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001448 kfree(scontext2);
1449 kfree(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 return rc;
1451}
1452
James Morrisf5c1d5b2005-07-28 01:07:37 -07001453/**
1454 * security_context_to_sid - Obtain a SID for a given security context.
1455 * @scontext: security context
1456 * @scontext_len: length in bytes
1457 * @sid: security identifier, SID
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001458 * @gfp: context for the allocation
James Morrisf5c1d5b2005-07-28 01:07:37 -07001459 *
1460 * Obtains a SID associated with the security context that
1461 * has the string representation specified by @scontext.
1462 * Returns -%EINVAL if the context is invalid, -%ENOMEM if insufficient
1463 * memory is available, or 0 on success.
1464 */
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001465int security_context_to_sid(const char *scontext, u32 scontext_len, u32 *sid,
1466 gfp_t gfp)
James Morrisf5c1d5b2005-07-28 01:07:37 -07001467{
1468 return security_context_to_sid_core(scontext, scontext_len,
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001469 sid, SECSID_NULL, gfp, 0);
James Morrisf5c1d5b2005-07-28 01:07:37 -07001470}
1471
Rasmus Villemoes44be2f62015-10-21 17:44:25 -04001472int security_context_str_to_sid(const char *scontext, u32 *sid, gfp_t gfp)
1473{
1474 return security_context_to_sid(scontext, strlen(scontext), sid, gfp);
1475}
1476
James Morrisf5c1d5b2005-07-28 01:07:37 -07001477/**
1478 * security_context_to_sid_default - Obtain a SID for a given security context,
1479 * falling back to specified default if needed.
1480 *
1481 * @scontext: security context
1482 * @scontext_len: length in bytes
1483 * @sid: security identifier, SID
Gabriel Craciunescud133a962007-07-31 00:39:19 -07001484 * @def_sid: default SID to assign on error
James Morrisf5c1d5b2005-07-28 01:07:37 -07001485 *
1486 * Obtains a SID associated with the security context that
1487 * has the string representation specified by @scontext.
1488 * The default SID is passed to the MLS layer to be used to allow
1489 * kernel labeling of the MLS field if the MLS field is not present
1490 * (for upgrading to MLS without full relabel).
Stephen Smalley12b29f32008-05-07 13:03:20 -04001491 * Implicitly forces adding of the context even if it cannot be mapped yet.
James Morrisf5c1d5b2005-07-28 01:07:37 -07001492 * Returns -%EINVAL if the context is invalid, -%ENOMEM if insufficient
1493 * memory is available, or 0 on success.
1494 */
David Howells7bf570d2008-04-29 20:52:51 +01001495int security_context_to_sid_default(const char *scontext, u32 scontext_len,
1496 u32 *sid, u32 def_sid, gfp_t gfp_flags)
James Morrisf5c1d5b2005-07-28 01:07:37 -07001497{
1498 return security_context_to_sid_core(scontext, scontext_len,
Stephen Smalley12b29f32008-05-07 13:03:20 -04001499 sid, def_sid, gfp_flags, 1);
1500}
1501
1502int security_context_to_sid_force(const char *scontext, u32 scontext_len,
1503 u32 *sid)
1504{
1505 return security_context_to_sid_core(scontext, scontext_len,
1506 sid, SECSID_NULL, GFP_KERNEL, 1);
James Morrisf5c1d5b2005-07-28 01:07:37 -07001507}
1508
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509static int compute_sid_handle_invalid_context(
1510 struct context *scontext,
1511 struct context *tcontext,
1512 u16 tclass,
1513 struct context *newcontext)
1514{
1515 char *s = NULL, *t = NULL, *n = NULL;
1516 u32 slen, tlen, nlen;
1517
Eric Paris4b02b522010-11-23 11:40:08 -05001518 if (context_struct_to_string(scontext, &s, &slen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 goto out;
Eric Paris4b02b522010-11-23 11:40:08 -05001520 if (context_struct_to_string(tcontext, &t, &tlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 goto out;
Eric Paris4b02b522010-11-23 11:40:08 -05001522 if (context_struct_to_string(newcontext, &n, &nlen))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 goto out;
David Woodhouse9ad9ad32005-06-22 15:04:33 +01001524 audit_log(current->audit_context, GFP_ATOMIC, AUDIT_SELINUX_ERR,
Richard Guy Briggs4093a842014-09-18 20:47:48 -04001525 "op=security_compute_sid invalid_context=%s"
1526 " scontext=%s"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 " tcontext=%s"
1528 " tclass=%s",
Eric Parisac76c052010-11-29 15:47:09 -05001529 n, s, t, sym_name(&policydb, SYM_CLASSES, tclass-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530out:
1531 kfree(s);
1532 kfree(t);
1533 kfree(n);
1534 if (!selinux_enforcing)
1535 return 0;
1536 return -EACCES;
1537}
1538
Eric Paris652bb9b2011-02-01 11:05:40 -05001539static void filename_compute_type(struct policydb *p, struct context *newcontext,
Eric Paris26679912011-04-28 15:11:20 -04001540 u32 stype, u32 ttype, u16 tclass,
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +01001541 const char *objname)
Eric Paris652bb9b2011-02-01 11:05:40 -05001542{
Eric Paris2463c26d2011-04-28 15:11:21 -04001543 struct filename_trans ft;
1544 struct filename_trans_datum *otype;
Eric Paris03a4c012011-04-28 15:11:21 -04001545
1546 /*
1547 * Most filename trans rules are going to live in specific directories
1548 * like /dev or /var/run. This bitmap will quickly skip rule searches
1549 * if the ttype does not contain any rules.
1550 */
1551 if (!ebitmap_get_bit(&p->filename_trans_ttypes, ttype))
1552 return;
1553
Eric Paris2463c26d2011-04-28 15:11:21 -04001554 ft.stype = stype;
1555 ft.ttype = ttype;
1556 ft.tclass = tclass;
1557 ft.name = objname;
1558
1559 otype = hashtab_search(p->filename_trans, &ft);
1560 if (otype)
1561 newcontext->type = otype->otype;
Eric Paris652bb9b2011-02-01 11:05:40 -05001562}
1563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564static int security_compute_sid(u32 ssid,
1565 u32 tsid,
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001566 u16 orig_tclass,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 u32 specified,
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +01001568 const char *objname,
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001569 u32 *out_sid,
1570 bool kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
Eric Parisaa893262012-03-20 14:35:12 -04001572 struct class_datum *cladatum = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 struct context *scontext = NULL, *tcontext = NULL, newcontext;
1574 struct role_trans *roletr = NULL;
1575 struct avtab_key avkey;
1576 struct avtab_datum *avdatum;
1577 struct avtab_node *node;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001578 u16 tclass;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 int rc = 0;
Harry Ciao6f5317e2011-03-02 13:32:33 +08001580 bool sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 if (!ss_initialized) {
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001583 switch (orig_tclass) {
1584 case SECCLASS_PROCESS: /* kernel value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 *out_sid = ssid;
1586 break;
1587 default:
1588 *out_sid = tsid;
1589 break;
1590 }
1591 goto out;
1592 }
1593
Venkat Yekkirala851f8a62006-07-30 03:03:18 -07001594 context_init(&newcontext);
1595
James Morris0804d112008-06-06 18:40:29 +10001596 read_lock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Harry Ciao6f5317e2011-03-02 13:32:33 +08001598 if (kern) {
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001599 tclass = unmap_class(orig_tclass);
Harry Ciao6f5317e2011-03-02 13:32:33 +08001600 sock = security_is_socket_class(orig_tclass);
1601 } else {
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001602 tclass = orig_tclass;
Harry Ciao6f5317e2011-03-02 13:32:33 +08001603 sock = security_is_socket_class(map_class(tclass));
1604 }
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 scontext = sidtab_search(&sidtab, ssid);
1607 if (!scontext) {
Eric Paris744ba352008-04-17 11:52:44 -04001608 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
1609 __func__, ssid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 rc = -EINVAL;
1611 goto out_unlock;
1612 }
1613 tcontext = sidtab_search(&sidtab, tsid);
1614 if (!tcontext) {
Eric Paris744ba352008-04-17 11:52:44 -04001615 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
1616 __func__, tsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 rc = -EINVAL;
1618 goto out_unlock;
1619 }
1620
Eric Parisaa893262012-03-20 14:35:12 -04001621 if (tclass && tclass <= policydb.p_classes.nprim)
1622 cladatum = policydb.class_val_to_struct[tclass - 1];
1623
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 /* Set the user identity. */
1625 switch (specified) {
1626 case AVTAB_TRANSITION:
1627 case AVTAB_CHANGE:
Eric Parisaa893262012-03-20 14:35:12 -04001628 if (cladatum && cladatum->default_user == DEFAULT_TARGET) {
1629 newcontext.user = tcontext->user;
1630 } else {
1631 /* notice this gets both DEFAULT_SOURCE and unset */
1632 /* Use the process user identity. */
1633 newcontext.user = scontext->user;
1634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 break;
1636 case AVTAB_MEMBER:
1637 /* Use the related object owner. */
1638 newcontext.user = tcontext->user;
1639 break;
1640 }
1641
Eric Parisaa893262012-03-20 14:35:12 -04001642 /* Set the role to default values. */
1643 if (cladatum && cladatum->default_role == DEFAULT_SOURCE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 newcontext.role = scontext->role;
Eric Parisaa893262012-03-20 14:35:12 -04001645 } else if (cladatum && cladatum->default_role == DEFAULT_TARGET) {
1646 newcontext.role = tcontext->role;
1647 } else {
1648 if ((tclass == policydb.process_class) || (sock == true))
1649 newcontext.role = scontext->role;
1650 else
1651 newcontext.role = OBJECT_R_VAL;
1652 }
1653
1654 /* Set the type to default values. */
Eric Pariseed77952012-03-20 14:35:12 -04001655 if (cladatum && cladatum->default_type == DEFAULT_SOURCE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 newcontext.type = scontext->type;
Eric Pariseed77952012-03-20 14:35:12 -04001657 } else if (cladatum && cladatum->default_type == DEFAULT_TARGET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 newcontext.type = tcontext->type;
Eric Pariseed77952012-03-20 14:35:12 -04001659 } else {
1660 if ((tclass == policydb.process_class) || (sock == true)) {
1661 /* Use the type of process. */
1662 newcontext.type = scontext->type;
1663 } else {
1664 /* Use the type of the related object. */
1665 newcontext.type = tcontext->type;
1666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 }
1668
1669 /* Look for a type transition/member/change rule. */
1670 avkey.source_type = scontext->type;
1671 avkey.target_type = tcontext->type;
1672 avkey.target_class = tclass;
Stephen Smalley782ebb92005-09-03 15:55:16 -07001673 avkey.specified = specified;
1674 avdatum = avtab_search(&policydb.te_avtab, &avkey);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
1676 /* If no permanent rule, also check for enabled conditional rules */
Eric Paris5d55a342008-04-18 17:38:33 -04001677 if (!avdatum) {
Stephen Smalley782ebb92005-09-03 15:55:16 -07001678 node = avtab_search_node(&policydb.te_cond_avtab, &avkey);
Vesa-Matti Karidbc74c62008-08-07 03:18:20 +03001679 for (; node; node = avtab_search_node_next(node, specified)) {
Stephen Smalley782ebb92005-09-03 15:55:16 -07001680 if (node->key.specified & AVTAB_ENABLED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 avdatum = &node->datum;
1682 break;
1683 }
1684 }
1685 }
1686
Stephen Smalley782ebb92005-09-03 15:55:16 -07001687 if (avdatum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 /* Use the type from the type transition/member/change rule. */
Jeff Vander Stoepfa1aa142015-07-10 17:19:56 -04001689 newcontext.type = avdatum->u.data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 }
1691
Eric Paris47426002011-04-28 15:11:20 -04001692 /* if we have a objname this is a file trans check so check those rules */
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +01001693 if (objname)
Eric Paris652bb9b2011-02-01 11:05:40 -05001694 filename_compute_type(&policydb, &newcontext, scontext->type,
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +01001695 tcontext->type, tclass, objname);
Eric Paris652bb9b2011-02-01 11:05:40 -05001696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 /* Check for class-specific changes. */
Harry Ciao63a312c2011-03-25 13:51:58 +08001698 if (specified & AVTAB_TRANSITION) {
1699 /* Look for a role transition rule. */
1700 for (roletr = policydb.role_tr; roletr; roletr = roletr->next) {
1701 if ((roletr->role == scontext->role) &&
1702 (roletr->type == tcontext->type) &&
1703 (roletr->tclass == tclass)) {
1704 /* Use the role transition rule. */
1705 newcontext.role = roletr->new_role;
1706 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 }
1708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
1710
1711 /* Set the MLS attributes.
1712 This is done last because it may allocate memory. */
Harry Ciao6f5317e2011-03-02 13:32:33 +08001713 rc = mls_compute_sid(scontext, tcontext, tclass, specified,
1714 &newcontext, sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 if (rc)
1716 goto out_unlock;
1717
1718 /* Check the validity of the context. */
1719 if (!policydb_context_isvalid(&policydb, &newcontext)) {
1720 rc = compute_sid_handle_invalid_context(scontext,
1721 tcontext,
1722 tclass,
1723 &newcontext);
1724 if (rc)
1725 goto out_unlock;
1726 }
1727 /* Obtain the sid for the context. */
1728 rc = sidtab_context_to_sid(&sidtab, &newcontext, out_sid);
1729out_unlock:
James Morris0804d112008-06-06 18:40:29 +10001730 read_unlock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 context_destroy(&newcontext);
1732out:
1733 return rc;
1734}
1735
1736/**
1737 * security_transition_sid - Compute the SID for a new subject/object.
1738 * @ssid: source security identifier
1739 * @tsid: target security identifier
1740 * @tclass: target security class
1741 * @out_sid: security identifier for new subject/object
1742 *
1743 * Compute a SID to use for labeling a new subject or object in the
1744 * class @tclass based on a SID pair (@ssid, @tsid).
1745 * Return -%EINVAL if any of the parameters are invalid, -%ENOMEM
1746 * if insufficient memory is available, or %0 if the new SID was
1747 * computed successfully.
1748 */
Eric Paris652bb9b2011-02-01 11:05:40 -05001749int security_transition_sid(u32 ssid, u32 tsid, u16 tclass,
1750 const struct qstr *qstr, u32 *out_sid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751{
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001752 return security_compute_sid(ssid, tsid, tclass, AVTAB_TRANSITION,
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +01001753 qstr ? qstr->name : NULL, out_sid, true);
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001754}
1755
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +01001756int security_transition_sid_user(u32 ssid, u32 tsid, u16 tclass,
1757 const char *objname, u32 *out_sid)
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04001758{
1759 return security_compute_sid(ssid, tsid, tclass, AVTAB_TRANSITION,
Kohei Kaigaif50a3ec2011-04-01 15:39:26 +01001760 objname, out_sid, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761}
1762
1763/**
1764 * security_member_sid - Compute the SID for member selection.
1765 * @ssid: source security identifier
1766 * @tsid: target security identifier
1767 * @tclass: target security class
1768 * @out_sid: security identifier for selected member
1769 *
1770 * Compute a SID to use when selecting a member of a polyinstantiated
1771 * object of class @tclass based on a SID pair (@ssid, @tsid).
1772 * Return -%EINVAL if any of the parameters are invalid, -%ENOMEM
1773 * if insufficient memory is available, or %0 if the SID was
1774 * computed successfully.
1775 */
1776int security_member_sid(u32 ssid,
1777 u32 tsid,
1778 u16 tclass,
1779 u32 *out_sid)
1780{
Eric Paris652bb9b2011-02-01 11:05:40 -05001781 return security_compute_sid(ssid, tsid, tclass, AVTAB_MEMBER, NULL,
1782 out_sid, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783}
1784
1785/**
1786 * security_change_sid - Compute the SID for object relabeling.
1787 * @ssid: source security identifier
1788 * @tsid: target security identifier
1789 * @tclass: target security class
1790 * @out_sid: security identifier for selected member
1791 *
1792 * Compute a SID to use for relabeling an object of class @tclass
1793 * based on a SID pair (@ssid, @tsid).
1794 * Return -%EINVAL if any of the parameters are invalid, -%ENOMEM
1795 * if insufficient memory is available, or %0 if the SID was
1796 * computed successfully.
1797 */
1798int security_change_sid(u32 ssid,
1799 u32 tsid,
1800 u16 tclass,
1801 u32 *out_sid)
1802{
Eric Paris652bb9b2011-02-01 11:05:40 -05001803 return security_compute_sid(ssid, tsid, tclass, AVTAB_CHANGE, NULL,
1804 out_sid, false);
Chad Sellersb94c7e62006-11-06 12:38:18 -05001805}
1806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807/* Clone the SID into the new SID table. */
1808static int clone_sid(u32 sid,
1809 struct context *context,
1810 void *arg)
1811{
1812 struct sidtab *s = arg;
1813
Guido Trentalancia42596ea2010-02-03 17:06:01 +01001814 if (sid > SECINITSID_NUM)
1815 return sidtab_insert(s, sid, context);
1816 else
1817 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818}
1819
1820static inline int convert_context_handle_invalid_context(struct context *context)
1821{
Eric Paris4b02b522010-11-23 11:40:08 -05001822 char *s;
1823 u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
Eric Paris4b02b522010-11-23 11:40:08 -05001825 if (selinux_enforcing)
1826 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Eric Paris4b02b522010-11-23 11:40:08 -05001828 if (!context_struct_to_string(context, &s, &len)) {
1829 printk(KERN_WARNING "SELinux: Context %s would be invalid if enforcing\n", s);
1830 kfree(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 }
Eric Paris4b02b522010-11-23 11:40:08 -05001832 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833}
1834
1835struct convert_context_args {
1836 struct policydb *oldp;
1837 struct policydb *newp;
1838};
1839
1840/*
1841 * Convert the values in the security context
1842 * structure `c' from the values specified
1843 * in the policy `p->oldp' to the values specified
1844 * in the policy `p->newp'. Verify that the
1845 * context is valid under the new policy.
1846 */
1847static int convert_context(u32 key,
1848 struct context *c,
1849 void *p)
1850{
1851 struct convert_context_args *args;
1852 struct context oldc;
Guido Trentalancia0719aaf2010-02-03 16:40:20 +01001853 struct ocontext *oc;
1854 struct mls_range *range;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 struct role_datum *role;
1856 struct type_datum *typdatum;
1857 struct user_datum *usrdatum;
1858 char *s;
1859 u32 len;
Guido Trentalancia42596ea2010-02-03 17:06:01 +01001860 int rc = 0;
1861
1862 if (key <= SECINITSID_NUM)
1863 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
1865 args = p;
1866
Stephen Smalley12b29f32008-05-07 13:03:20 -04001867 if (c->str) {
1868 struct context ctx;
Eric Paris4b02b522010-11-23 11:40:08 -05001869
1870 rc = -ENOMEM;
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001871 s = kstrdup(c->str, GFP_KERNEL);
Eric Paris4b02b522010-11-23 11:40:08 -05001872 if (!s)
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001873 goto out;
Eric Paris4b02b522010-11-23 11:40:08 -05001874
Stephen Smalley9a59daa2008-05-14 10:33:55 -04001875 rc = string_to_context_struct(args->newp, NULL, s,
1876 c->len, &ctx, SECSID_NULL);
1877 kfree(s);
Stephen Smalley12b29f32008-05-07 13:03:20 -04001878 if (!rc) {
Eric Paris4b02b522010-11-23 11:40:08 -05001879 printk(KERN_INFO "SELinux: Context %s became valid (mapped).\n",
Stephen Smalley12b29f32008-05-07 13:03:20 -04001880 c->str);
1881 /* Replace string with mapped representation. */
1882 kfree(c->str);
1883 memcpy(c, &ctx, sizeof(*c));
1884 goto out;
1885 } else if (rc == -EINVAL) {
1886 /* Retain string representation for later mapping. */
1887 rc = 0;
1888 goto out;
1889 } else {
1890 /* Other error condition, e.g. ENOMEM. */
Eric Paris4b02b522010-11-23 11:40:08 -05001891 printk(KERN_ERR "SELinux: Unable to map context %s, rc = %d.\n",
Stephen Smalley12b29f32008-05-07 13:03:20 -04001892 c->str, -rc);
1893 goto out;
1894 }
1895 }
1896
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 rc = context_cpy(&oldc, c);
1898 if (rc)
1899 goto out;
1900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 /* Convert the user. */
Eric Paris4b02b522010-11-23 11:40:08 -05001902 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 usrdatum = hashtab_search(args->newp->p_users.table,
Eric Parisac76c052010-11-29 15:47:09 -05001904 sym_name(args->oldp, SYM_USERS, c->user - 1));
Eric Paris5d55a342008-04-18 17:38:33 -04001905 if (!usrdatum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 c->user = usrdatum->value;
1908
1909 /* Convert the role. */
Eric Paris4b02b522010-11-23 11:40:08 -05001910 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 role = hashtab_search(args->newp->p_roles.table,
Eric Parisac76c052010-11-29 15:47:09 -05001912 sym_name(args->oldp, SYM_ROLES, c->role - 1));
Eric Paris5d55a342008-04-18 17:38:33 -04001913 if (!role)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 c->role = role->value;
1916
1917 /* Convert the type. */
Eric Paris4b02b522010-11-23 11:40:08 -05001918 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 typdatum = hashtab_search(args->newp->p_types.table,
Eric Parisac76c052010-11-29 15:47:09 -05001920 sym_name(args->oldp, SYM_TYPES, c->type - 1));
Eric Paris5d55a342008-04-18 17:38:33 -04001921 if (!typdatum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 c->type = typdatum->value;
1924
Guido Trentalancia0719aaf2010-02-03 16:40:20 +01001925 /* Convert the MLS fields if dealing with MLS policies */
1926 if (args->oldp->mls_enabled && args->newp->mls_enabled) {
1927 rc = mls_convert_context(args->oldp, args->newp, c);
1928 if (rc)
1929 goto bad;
1930 } else if (args->oldp->mls_enabled && !args->newp->mls_enabled) {
1931 /*
1932 * Switching between MLS and non-MLS policy:
1933 * free any storage used by the MLS fields in the
1934 * context for all existing entries in the sidtab.
1935 */
1936 mls_context_destroy(c);
1937 } else if (!args->oldp->mls_enabled && args->newp->mls_enabled) {
1938 /*
1939 * Switching between non-MLS and MLS policy:
1940 * ensure that the MLS fields of the context for all
1941 * existing entries in the sidtab are filled in with a
1942 * suitable default value, likely taken from one of the
1943 * initial SIDs.
1944 */
1945 oc = args->newp->ocontexts[OCON_ISID];
1946 while (oc && oc->sid[0] != SECINITSID_UNLABELED)
1947 oc = oc->next;
Eric Paris4b02b522010-11-23 11:40:08 -05001948 rc = -EINVAL;
Guido Trentalancia0719aaf2010-02-03 16:40:20 +01001949 if (!oc) {
1950 printk(KERN_ERR "SELinux: unable to look up"
1951 " the initial SIDs list\n");
1952 goto bad;
1953 }
1954 range = &oc->context[0].range;
1955 rc = mls_range_set(c, range);
1956 if (rc)
1957 goto bad;
1958 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
1960 /* Check the validity of the new context. */
1961 if (!policydb_context_isvalid(args->newp, c)) {
1962 rc = convert_context_handle_invalid_context(&oldc);
1963 if (rc)
1964 goto bad;
1965 }
1966
1967 context_destroy(&oldc);
Eric Paris4b02b522010-11-23 11:40:08 -05001968
Stephen Smalley12b29f32008-05-07 13:03:20 -04001969 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970out:
1971 return rc;
1972bad:
Stephen Smalley12b29f32008-05-07 13:03:20 -04001973 /* Map old representation to string and save it. */
Eric Paris4b02b522010-11-23 11:40:08 -05001974 rc = context_struct_to_string(&oldc, &s, &len);
1975 if (rc)
1976 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 context_destroy(&oldc);
Stephen Smalley12b29f32008-05-07 13:03:20 -04001978 context_destroy(c);
1979 c->str = s;
1980 c->len = len;
Eric Paris4b02b522010-11-23 11:40:08 -05001981 printk(KERN_INFO "SELinux: Context %s became invalid (unmapped).\n",
Stephen Smalley12b29f32008-05-07 13:03:20 -04001982 c->str);
1983 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 goto out;
1985}
1986
Paul Moore3bb56b22008-01-29 08:38:19 -05001987static void security_load_policycaps(void)
1988{
1989 selinux_policycap_netpeer = ebitmap_get_bit(&policydb.policycaps,
1990 POLICYDB_CAPABILITY_NETPEER);
Eric Parisb0c636b2008-02-28 12:58:40 -05001991 selinux_policycap_openperm = ebitmap_get_bit(&policydb.policycaps,
1992 POLICYDB_CAPABILITY_OPENPERM);
Stephen Smalleyda69a532017-01-09 10:07:30 -05001993 selinux_policycap_extsockclass = ebitmap_get_bit(&policydb.policycaps,
1994 POLICYDB_CAPABILITY_EXTSOCKCLASS);
Chris PeBenito2be4d742013-05-03 09:05:39 -04001995 selinux_policycap_alwaysnetwork = ebitmap_get_bit(&policydb.policycaps,
1996 POLICYDB_CAPABILITY_ALWAYSNETWORK);
Stephen Smalley2651225b2017-02-28 10:35:56 -05001997 selinux_policycap_cgroupseclabel =
1998 ebitmap_get_bit(&policydb.policycaps,
1999 POLICYDB_CAPABILITY_CGROUPSECLABEL);
Paul Moore3bb56b22008-01-29 08:38:19 -05002000}
2001
Stephen Smalleye900a7d2007-04-19 14:16:19 -04002002static int security_preserve_bools(struct policydb *p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
2004/**
2005 * security_load_policy - Load a security policy configuration.
2006 * @data: binary policy data
2007 * @len: length of data in bytes
2008 *
2009 * Load a new set of security policy configuration data,
2010 * validate it and convert the SID table as necessary.
2011 * This function will flush the access vector cache after
2012 * loading the new policy.
2013 */
2014int security_load_policy(void *data, size_t len)
2015{
Tim Gardnerb5495b42013-11-14 15:04:51 -07002016 struct policydb *oldpolicydb, *newpolicydb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 struct sidtab oldsidtab, newsidtab;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04002018 struct selinux_mapping *oldmap, *map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 struct convert_context_args args;
2020 u32 seqno;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04002021 u16 map_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 int rc = 0;
2023 struct policy_file file = { data, len }, *fp = &file;
2024
Tim Gardnerb5495b42013-11-14 15:04:51 -07002025 oldpolicydb = kzalloc(2 * sizeof(*oldpolicydb), GFP_KERNEL);
2026 if (!oldpolicydb) {
2027 rc = -ENOMEM;
2028 goto out;
2029 }
2030 newpolicydb = oldpolicydb + 1;
2031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 if (!ss_initialized) {
2033 avtab_cache_init();
Eric Parisa2000052010-04-20 10:29:42 -04002034 rc = policydb_read(&policydb, fp);
2035 if (rc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 avtab_cache_destroy();
Tim Gardnerb5495b42013-11-14 15:04:51 -07002037 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 }
Eric Parisa2000052010-04-20 10:29:42 -04002039
Eric Pariscee74f42010-10-13 17:50:25 -04002040 policydb.len = len;
Eric Parisa2000052010-04-20 10:29:42 -04002041 rc = selinux_set_mapping(&policydb, secclass_map,
2042 &current_mapping,
2043 &current_mapping_size);
2044 if (rc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 policydb_destroy(&policydb);
2046 avtab_cache_destroy();
Tim Gardnerb5495b42013-11-14 15:04:51 -07002047 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 }
Eric Parisa2000052010-04-20 10:29:42 -04002049
2050 rc = policydb_load_isids(&policydb, &sidtab);
2051 if (rc) {
Chad Sellersb94c7e62006-11-06 12:38:18 -05002052 policydb_destroy(&policydb);
2053 avtab_cache_destroy();
Tim Gardnerb5495b42013-11-14 15:04:51 -07002054 goto out;
Chad Sellersb94c7e62006-11-06 12:38:18 -05002055 }
Eric Parisa2000052010-04-20 10:29:42 -04002056
Paul Moore3bb56b22008-01-29 08:38:19 -05002057 security_load_policycaps();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 ss_initialized = 1;
Stephen Smalley4c443d12005-05-16 21:53:52 -07002059 seqno = ++latest_granting;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 selinux_complete_init();
Stephen Smalley4c443d12005-05-16 21:53:52 -07002061 avc_ss_reset(seqno);
2062 selnl_notify_policyload(seqno);
KaiGai Kohei11904162010-09-14 18:28:39 +09002063 selinux_status_update_policyload(seqno);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07002064 selinux_netlbl_cache_invalidate();
Venkat Yekkirala342a0cf2007-01-26 19:03:48 -08002065 selinux_xfrm_notify_policyload();
Tim Gardnerb5495b42013-11-14 15:04:51 -07002066 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 }
2068
2069#if 0
2070 sidtab_hash_eval(&sidtab, "sids");
2071#endif
2072
Tim Gardnerb5495b42013-11-14 15:04:51 -07002073 rc = policydb_read(newpolicydb, fp);
Eric Parisa2000052010-04-20 10:29:42 -04002074 if (rc)
Tim Gardnerb5495b42013-11-14 15:04:51 -07002075 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Tim Gardnerb5495b42013-11-14 15:04:51 -07002077 newpolicydb->len = len;
Guido Trentalancia0719aaf2010-02-03 16:40:20 +01002078 /* If switching between different policy types, log MLS status */
Tim Gardnerb5495b42013-11-14 15:04:51 -07002079 if (policydb.mls_enabled && !newpolicydb->mls_enabled)
Guido Trentalancia0719aaf2010-02-03 16:40:20 +01002080 printk(KERN_INFO "SELinux: Disabling MLS support...\n");
Tim Gardnerb5495b42013-11-14 15:04:51 -07002081 else if (!policydb.mls_enabled && newpolicydb->mls_enabled)
Guido Trentalancia0719aaf2010-02-03 16:40:20 +01002082 printk(KERN_INFO "SELinux: Enabling MLS support...\n");
2083
Tim Gardnerb5495b42013-11-14 15:04:51 -07002084 rc = policydb_load_isids(newpolicydb, &newsidtab);
Guido Trentalancia42596ea2010-02-03 17:06:01 +01002085 if (rc) {
2086 printk(KERN_ERR "SELinux: unable to load the initial SIDs\n");
Tim Gardnerb5495b42013-11-14 15:04:51 -07002087 policydb_destroy(newpolicydb);
2088 goto out;
Stephen Smalley12b29f32008-05-07 13:03:20 -04002089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Tim Gardnerb5495b42013-11-14 15:04:51 -07002091 rc = selinux_set_mapping(newpolicydb, secclass_map, &map, &map_size);
Eric Parisa2000052010-04-20 10:29:42 -04002092 if (rc)
Chad Sellersb94c7e62006-11-06 12:38:18 -05002093 goto err;
Chad Sellersb94c7e62006-11-06 12:38:18 -05002094
Tim Gardnerb5495b42013-11-14 15:04:51 -07002095 rc = security_preserve_bools(newpolicydb);
Stephen Smalleye900a7d2007-04-19 14:16:19 -04002096 if (rc) {
James Morris454d9722008-02-26 20:42:02 +11002097 printk(KERN_ERR "SELinux: unable to preserve booleans\n");
Stephen Smalleye900a7d2007-04-19 14:16:19 -04002098 goto err;
2099 }
2100
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 /* Clone the SID table. */
2102 sidtab_shutdown(&sidtab);
Eric Parisa2000052010-04-20 10:29:42 -04002103
2104 rc = sidtab_map(&sidtab, clone_sid, &newsidtab);
2105 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Stephen Smalley12b29f32008-05-07 13:03:20 -04002108 /*
2109 * Convert the internal representations of contexts
2110 * in the new SID table.
2111 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 args.oldp = &policydb;
Tim Gardnerb5495b42013-11-14 15:04:51 -07002113 args.newp = newpolicydb;
Stephen Smalley12b29f32008-05-07 13:03:20 -04002114 rc = sidtab_map(&newsidtab, convert_context, &args);
Guido Trentalancia0719aaf2010-02-03 16:40:20 +01002115 if (rc) {
2116 printk(KERN_ERR "SELinux: unable to convert the internal"
2117 " representation of contexts in the new SID"
2118 " table\n");
Stephen Smalley12b29f32008-05-07 13:03:20 -04002119 goto err;
Guido Trentalancia0719aaf2010-02-03 16:40:20 +01002120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122 /* Save the old policydb and SID table to free later. */
Tim Gardnerb5495b42013-11-14 15:04:51 -07002123 memcpy(oldpolicydb, &policydb, sizeof(policydb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 sidtab_set(&oldsidtab, &sidtab);
2125
2126 /* Install the new policydb and SID table. */
James Morris0804d112008-06-06 18:40:29 +10002127 write_lock_irq(&policy_rwlock);
Tim Gardnerb5495b42013-11-14 15:04:51 -07002128 memcpy(&policydb, newpolicydb, sizeof(policydb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 sidtab_set(&sidtab, &newsidtab);
Paul Moore3bb56b22008-01-29 08:38:19 -05002130 security_load_policycaps();
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04002131 oldmap = current_mapping;
2132 current_mapping = map;
2133 current_mapping_size = map_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 seqno = ++latest_granting;
James Morris0804d112008-06-06 18:40:29 +10002135 write_unlock_irq(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
2137 /* Free the old policydb and SID table. */
Tim Gardnerb5495b42013-11-14 15:04:51 -07002138 policydb_destroy(oldpolicydb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 sidtab_destroy(&oldsidtab);
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04002140 kfree(oldmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
2142 avc_ss_reset(seqno);
2143 selnl_notify_policyload(seqno);
KaiGai Kohei11904162010-09-14 18:28:39 +09002144 selinux_status_update_policyload(seqno);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07002145 selinux_netlbl_cache_invalidate();
Venkat Yekkirala342a0cf2007-01-26 19:03:48 -08002146 selinux_xfrm_notify_policyload();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Tim Gardnerb5495b42013-11-14 15:04:51 -07002148 rc = 0;
2149 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
2151err:
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04002152 kfree(map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 sidtab_destroy(&newsidtab);
Tim Gardnerb5495b42013-11-14 15:04:51 -07002154 policydb_destroy(newpolicydb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Tim Gardnerb5495b42013-11-14 15:04:51 -07002156out:
2157 kfree(oldpolicydb);
2158 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159}
2160
Eric Pariscee74f42010-10-13 17:50:25 -04002161size_t security_policydb_len(void)
2162{
2163 size_t len;
2164
2165 read_lock(&policy_rwlock);
2166 len = policydb.len;
2167 read_unlock(&policy_rwlock);
2168
2169 return len;
2170}
2171
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172/**
2173 * security_port_sid - Obtain the SID for a port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 * @protocol: protocol number
2175 * @port: port number
2176 * @out_sid: security identifier
2177 */
Paul Moore3e112172008-04-10 10:48:14 -04002178int security_port_sid(u8 protocol, u16 port, u32 *out_sid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
2180 struct ocontext *c;
2181 int rc = 0;
2182
James Morris0804d112008-06-06 18:40:29 +10002183 read_lock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
2185 c = policydb.ocontexts[OCON_PORT];
2186 while (c) {
2187 if (c->u.port.protocol == protocol &&
2188 c->u.port.low_port <= port &&
2189 c->u.port.high_port >= port)
2190 break;
2191 c = c->next;
2192 }
2193
2194 if (c) {
2195 if (!c->sid[0]) {
2196 rc = sidtab_context_to_sid(&sidtab,
2197 &c->context[0],
2198 &c->sid[0]);
2199 if (rc)
2200 goto out;
2201 }
2202 *out_sid = c->sid[0];
2203 } else {
2204 *out_sid = SECINITSID_PORT;
2205 }
2206
2207out:
James Morris0804d112008-06-06 18:40:29 +10002208 read_unlock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 return rc;
2210}
2211
2212/**
2213 * security_netif_sid - Obtain the SID for a network interface.
2214 * @name: interface name
2215 * @if_sid: interface SID
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 */
Paul Mooree8bfdb92008-01-29 08:38:08 -05002217int security_netif_sid(char *name, u32 *if_sid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218{
2219 int rc = 0;
2220 struct ocontext *c;
2221
James Morris0804d112008-06-06 18:40:29 +10002222 read_lock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
2224 c = policydb.ocontexts[OCON_NETIF];
2225 while (c) {
2226 if (strcmp(name, c->u.name) == 0)
2227 break;
2228 c = c->next;
2229 }
2230
2231 if (c) {
2232 if (!c->sid[0] || !c->sid[1]) {
2233 rc = sidtab_context_to_sid(&sidtab,
2234 &c->context[0],
2235 &c->sid[0]);
2236 if (rc)
2237 goto out;
2238 rc = sidtab_context_to_sid(&sidtab,
2239 &c->context[1],
2240 &c->sid[1]);
2241 if (rc)
2242 goto out;
2243 }
2244 *if_sid = c->sid[0];
Paul Mooree8bfdb92008-01-29 08:38:08 -05002245 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 *if_sid = SECINITSID_NETIF;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
2248out:
James Morris0804d112008-06-06 18:40:29 +10002249 read_unlock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 return rc;
2251}
2252
2253static int match_ipv6_addrmask(u32 *input, u32 *addr, u32 *mask)
2254{
2255 int i, fail = 0;
2256
Eric Paris5d55a342008-04-18 17:38:33 -04002257 for (i = 0; i < 4; i++)
2258 if (addr[i] != (input[i] & mask[i])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 fail = 1;
2260 break;
2261 }
2262
2263 return !fail;
2264}
2265
2266/**
2267 * security_node_sid - Obtain the SID for a node (host).
2268 * @domain: communication domain aka address family
2269 * @addrp: address
2270 * @addrlen: address length in bytes
2271 * @out_sid: security identifier
2272 */
2273int security_node_sid(u16 domain,
2274 void *addrp,
2275 u32 addrlen,
2276 u32 *out_sid)
2277{
Eric Paris4b02b522010-11-23 11:40:08 -05002278 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 struct ocontext *c;
2280
James Morris0804d112008-06-06 18:40:29 +10002281 read_lock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
2283 switch (domain) {
2284 case AF_INET: {
2285 u32 addr;
2286
Eric Paris4b02b522010-11-23 11:40:08 -05002287 rc = -EINVAL;
2288 if (addrlen != sizeof(u32))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
2291 addr = *((u32 *)addrp);
2292
2293 c = policydb.ocontexts[OCON_NODE];
2294 while (c) {
2295 if (c->u.node.addr == (addr & c->u.node.mask))
2296 break;
2297 c = c->next;
2298 }
2299 break;
2300 }
2301
2302 case AF_INET6:
Eric Paris4b02b522010-11-23 11:40:08 -05002303 rc = -EINVAL;
2304 if (addrlen != sizeof(u64) * 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 c = policydb.ocontexts[OCON_NODE6];
2307 while (c) {
2308 if (match_ipv6_addrmask(addrp, c->u.node6.addr,
2309 c->u.node6.mask))
2310 break;
2311 c = c->next;
2312 }
2313 break;
2314
2315 default:
Eric Paris4b02b522010-11-23 11:40:08 -05002316 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 *out_sid = SECINITSID_NODE;
2318 goto out;
2319 }
2320
2321 if (c) {
2322 if (!c->sid[0]) {
2323 rc = sidtab_context_to_sid(&sidtab,
2324 &c->context[0],
2325 &c->sid[0]);
2326 if (rc)
2327 goto out;
2328 }
2329 *out_sid = c->sid[0];
2330 } else {
2331 *out_sid = SECINITSID_NODE;
2332 }
2333
Eric Paris4b02b522010-11-23 11:40:08 -05002334 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335out:
James Morris0804d112008-06-06 18:40:29 +10002336 read_unlock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 return rc;
2338}
2339
2340#define SIDS_NEL 25
2341
2342/**
2343 * security_get_user_sids - Obtain reachable SIDs for a user.
2344 * @fromsid: starting SID
2345 * @username: username
2346 * @sids: array of reachable SIDs for user
2347 * @nel: number of elements in @sids
2348 *
2349 * Generate the set of SIDs for legal security contexts
2350 * for a given user that can be reached by @fromsid.
2351 * Set *@sids to point to a dynamically allocated
2352 * array containing the set of SIDs. Set *@nel to the
2353 * number of elements in the array.
2354 */
2355
2356int security_get_user_sids(u32 fromsid,
Eric Paris5d55a342008-04-18 17:38:33 -04002357 char *username,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 u32 **sids,
2359 u32 *nel)
2360{
2361 struct context *fromcon, usercon;
Stephen Smalley2c3c05d2007-06-07 15:34:10 -04002362 u32 *mysids = NULL, *mysids2, sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 u32 mynel = 0, maxnel = SIDS_NEL;
2364 struct user_datum *user;
2365 struct role_datum *role;
Stephen Smalley782ebb92005-09-03 15:55:16 -07002366 struct ebitmap_node *rnode, *tnode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 int rc = 0, i, j;
2368
Stephen Smalley2c3c05d2007-06-07 15:34:10 -04002369 *sids = NULL;
2370 *nel = 0;
2371
2372 if (!ss_initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
James Morris0804d112008-06-06 18:40:29 +10002375 read_lock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
Stephen Smalley12b29f32008-05-07 13:03:20 -04002377 context_init(&usercon);
2378
Eric Paris4b02b522010-11-23 11:40:08 -05002379 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 fromcon = sidtab_search(&sidtab, fromsid);
Eric Paris4b02b522010-11-23 11:40:08 -05002381 if (!fromcon)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
Eric Paris4b02b522010-11-23 11:40:08 -05002384 rc = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 user = hashtab_search(policydb.p_users.table, username);
Eric Paris4b02b522010-11-23 11:40:08 -05002386 if (!user)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 goto out_unlock;
Eric Paris4b02b522010-11-23 11:40:08 -05002388
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 usercon.user = user->value;
2390
Eric Paris4b02b522010-11-23 11:40:08 -05002391 rc = -ENOMEM;
James Morris89d155e2005-10-30 14:59:21 -08002392 mysids = kcalloc(maxnel, sizeof(*mysids), GFP_ATOMIC);
Eric Paris4b02b522010-11-23 11:40:08 -05002393 if (!mysids)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
KaiGai Kohei9fe79ad2007-09-29 02:20:55 +09002396 ebitmap_for_each_positive_bit(&user->roles, rnode, i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 role = policydb.role_val_to_struct[i];
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08002398 usercon.role = i + 1;
KaiGai Kohei9fe79ad2007-09-29 02:20:55 +09002399 ebitmap_for_each_positive_bit(&role->types, tnode, j) {
wzt.wzt@gmail.comc1a73682010-04-09 19:30:29 +08002400 usercon.type = j + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
2402 if (mls_setup_user_range(fromcon, user, &usercon))
2403 continue;
2404
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 rc = sidtab_context_to_sid(&sidtab, &usercon, &sid);
Stephen Smalley2c3c05d2007-06-07 15:34:10 -04002406 if (rc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 if (mynel < maxnel) {
2409 mysids[mynel++] = sid;
2410 } else {
Eric Paris4b02b522010-11-23 11:40:08 -05002411 rc = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 maxnel += SIDS_NEL;
James Morris89d155e2005-10-30 14:59:21 -08002413 mysids2 = kcalloc(maxnel, sizeof(*mysids2), GFP_ATOMIC);
Eric Paris4b02b522010-11-23 11:40:08 -05002414 if (!mysids2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 memcpy(mysids2, mysids, mynel * sizeof(*mysids2));
2417 kfree(mysids);
2418 mysids = mysids2;
2419 mysids[mynel++] = sid;
2420 }
2421 }
2422 }
Eric Paris4b02b522010-11-23 11:40:08 -05002423 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424out_unlock:
James Morris0804d112008-06-06 18:40:29 +10002425 read_unlock(&policy_rwlock);
Stephen Smalley2c3c05d2007-06-07 15:34:10 -04002426 if (rc || !mynel) {
2427 kfree(mysids);
2428 goto out;
2429 }
2430
Eric Paris4b02b522010-11-23 11:40:08 -05002431 rc = -ENOMEM;
Stephen Smalley2c3c05d2007-06-07 15:34:10 -04002432 mysids2 = kcalloc(mynel, sizeof(*mysids2), GFP_KERNEL);
2433 if (!mysids2) {
Stephen Smalley2c3c05d2007-06-07 15:34:10 -04002434 kfree(mysids);
2435 goto out;
2436 }
2437 for (i = 0, j = 0; i < mynel; i++) {
Linus Torvaldsf01e1af2011-05-24 13:48:51 -07002438 struct av_decision dummy_avd;
Stephen Smalley2c3c05d2007-06-07 15:34:10 -04002439 rc = avc_has_perm_noaudit(fromsid, mysids[i],
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04002440 SECCLASS_PROCESS, /* kernel value */
Stephen Smalley2c3c05d2007-06-07 15:34:10 -04002441 PROCESS__TRANSITION, AVC_STRICT,
Linus Torvaldsf01e1af2011-05-24 13:48:51 -07002442 &dummy_avd);
Stephen Smalley2c3c05d2007-06-07 15:34:10 -04002443 if (!rc)
2444 mysids2[j++] = mysids[i];
2445 cond_resched();
2446 }
2447 rc = 0;
2448 kfree(mysids);
2449 *sids = mysids2;
2450 *nel = j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451out:
2452 return rc;
2453}
2454
2455/**
Waiman Longf31e7992014-06-23 11:28:51 -04002456 * __security_genfs_sid - Helper to obtain a SID for a file in a filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 * @fstype: filesystem type
2458 * @path: path from root of mount
2459 * @sclass: file security class
2460 * @sid: SID for path
2461 *
2462 * Obtain a SID to use for a file in a filesystem that
2463 * cannot support xattr or use a fixed labeling behavior like
2464 * transition SIDs or task SIDs.
Waiman Longf31e7992014-06-23 11:28:51 -04002465 *
2466 * The caller must acquire the policy_rwlock before calling this function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 */
Waiman Longf31e7992014-06-23 11:28:51 -04002468static inline int __security_genfs_sid(const char *fstype,
2469 char *path,
2470 u16 orig_sclass,
2471 u32 *sid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472{
2473 int len;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04002474 u16 sclass;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 struct genfs *genfs;
2476 struct ocontext *c;
Eric Paris4b02b522010-11-23 11:40:08 -05002477 int rc, cmp = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
Stephen Smalleyb1aa5302008-01-25 13:03:42 -05002479 while (path[0] == '/' && path[1] == '/')
2480 path++;
2481
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04002482 sclass = unmap_class(orig_sclass);
Eric Paris4b02b522010-11-23 11:40:08 -05002483 *sid = SECINITSID_UNLABELED;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -04002484
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 for (genfs = policydb.genfs; genfs; genfs = genfs->next) {
2486 cmp = strcmp(fstype, genfs->fstype);
2487 if (cmp <= 0)
2488 break;
2489 }
2490
Eric Paris4b02b522010-11-23 11:40:08 -05002491 rc = -ENOENT;
2492 if (!genfs || cmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
2495 for (c = genfs->head; c; c = c->next) {
2496 len = strlen(c->u.name);
2497 if ((!c->v.sclass || sclass == c->v.sclass) &&
2498 (strncmp(c->u.name, path, len) == 0))
2499 break;
2500 }
2501
Eric Paris4b02b522010-11-23 11:40:08 -05002502 rc = -ENOENT;
2503 if (!c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505
2506 if (!c->sid[0]) {
Eric Paris4b02b522010-11-23 11:40:08 -05002507 rc = sidtab_context_to_sid(&sidtab, &c->context[0], &c->sid[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 if (rc)
2509 goto out;
2510 }
2511
2512 *sid = c->sid[0];
Eric Paris4b02b522010-11-23 11:40:08 -05002513 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 return rc;
2516}
2517
2518/**
Waiman Longf31e7992014-06-23 11:28:51 -04002519 * security_genfs_sid - Obtain a SID for a file in a filesystem
2520 * @fstype: filesystem type
2521 * @path: path from root of mount
2522 * @sclass: file security class
2523 * @sid: SID for path
2524 *
2525 * Acquire policy_rwlock before calling __security_genfs_sid() and release
2526 * it afterward.
2527 */
2528int security_genfs_sid(const char *fstype,
2529 char *path,
2530 u16 orig_sclass,
2531 u32 *sid)
2532{
2533 int retval;
2534
2535 read_lock(&policy_rwlock);
2536 retval = __security_genfs_sid(fstype, path, orig_sclass, sid);
2537 read_unlock(&policy_rwlock);
2538 return retval;
2539}
2540
2541/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 * security_fs_use - Determine how to handle labeling for a filesystem.
Eric Parisa64c54c2012-08-24 15:59:07 -04002543 * @sb: superblock in question
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 */
Eric Parisa64c54c2012-08-24 15:59:07 -04002545int security_fs_use(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546{
2547 int rc = 0;
2548 struct ocontext *c;
Eric Parisa64c54c2012-08-24 15:59:07 -04002549 struct superblock_security_struct *sbsec = sb->s_security;
2550 const char *fstype = sb->s_type->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
James Morris0804d112008-06-06 18:40:29 +10002552 read_lock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
Paul Moore4d546f82013-12-13 14:49:53 -05002554 c = policydb.ocontexts[OCON_FSUSE];
2555 while (c) {
2556 if (strcmp(fstype, c->u.name) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 break;
Paul Moore4d546f82013-12-13 14:49:53 -05002558 c = c->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 }
2560
2561 if (c) {
Eric Parisa64c54c2012-08-24 15:59:07 -04002562 sbsec->behavior = c->v.behavior;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 if (!c->sid[0]) {
Eric Paris4b02b522010-11-23 11:40:08 -05002564 rc = sidtab_context_to_sid(&sidtab, &c->context[0],
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 &c->sid[0]);
2566 if (rc)
2567 goto out;
2568 }
Eric Parisa64c54c2012-08-24 15:59:07 -04002569 sbsec->sid = c->sid[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 } else {
Waiman Longf31e7992014-06-23 11:28:51 -04002571 rc = __security_genfs_sid(fstype, "/", SECCLASS_DIR,
2572 &sbsec->sid);
James Morris089be432008-07-15 18:32:49 +10002573 if (rc) {
Eric Parisa64c54c2012-08-24 15:59:07 -04002574 sbsec->behavior = SECURITY_FS_USE_NONE;
James Morris089be432008-07-15 18:32:49 +10002575 rc = 0;
2576 } else {
Eric Parisa64c54c2012-08-24 15:59:07 -04002577 sbsec->behavior = SECURITY_FS_USE_GENFS;
James Morris089be432008-07-15 18:32:49 +10002578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 }
2580
2581out:
James Morris0804d112008-06-06 18:40:29 +10002582 read_unlock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 return rc;
2584}
2585
2586int security_get_bools(int *len, char ***names, int **values)
2587{
Eric Paris4b02b522010-11-23 11:40:08 -05002588 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589
James Morris0804d112008-06-06 18:40:29 +10002590 read_lock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 *names = NULL;
2592 *values = NULL;
2593
Eric Paris4b02b522010-11-23 11:40:08 -05002594 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 *len = policydb.p_bools.nprim;
Eric Paris4b02b522010-11-23 11:40:08 -05002596 if (!*len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Eric Paris4b02b522010-11-23 11:40:08 -05002599 rc = -ENOMEM;
2600 *names = kcalloc(*len, sizeof(char *), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 if (!*names)
2602 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
Eric Paris4b02b522010-11-23 11:40:08 -05002604 rc = -ENOMEM;
2605 *values = kcalloc(*len, sizeof(int), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 if (!*values)
2607 goto err;
2608
2609 for (i = 0; i < *len; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 (*values)[i] = policydb.bool_val_to_struct[i]->state;
Eric Paris4b02b522010-11-23 11:40:08 -05002611
2612 rc = -ENOMEM;
Rasmus Villemoes21b76f12015-10-21 17:44:26 -04002613 (*names)[i] = kstrdup(sym_name(&policydb, SYM_BOOLS, i), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 if (!(*names)[i])
2615 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 }
2617 rc = 0;
2618out:
James Morris0804d112008-06-06 18:40:29 +10002619 read_unlock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 return rc;
2621err:
2622 if (*names) {
2623 for (i = 0; i < *len; i++)
Jesper Juhl9a5f04b2005-06-25 14:58:51 -07002624 kfree((*names)[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 }
Jesper Juhl9a5f04b2005-06-25 14:58:51 -07002626 kfree(*values);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 goto out;
2628}
2629
2630
2631int security_set_bools(int len, int *values)
2632{
Eric Paris4b02b522010-11-23 11:40:08 -05002633 int i, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 int lenp, seqno = 0;
2635 struct cond_node *cur;
2636
James Morris0804d112008-06-06 18:40:29 +10002637 write_lock_irq(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
Eric Paris4b02b522010-11-23 11:40:08 -05002639 rc = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 lenp = policydb.p_bools.nprim;
Eric Paris4b02b522010-11-23 11:40:08 -05002641 if (len != lenp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 for (i = 0; i < len; i++) {
Steve Grubbaf601e42006-01-04 14:08:39 +00002645 if (!!values[i] != policydb.bool_val_to_struct[i]->state) {
2646 audit_log(current->audit_context, GFP_ATOMIC,
2647 AUDIT_MAC_CONFIG_CHANGE,
Eric Paris4746ec52008-01-08 10:06:53 -05002648 "bool=%s val=%d old_val=%d auid=%u ses=%u",
Eric Parisac76c052010-11-29 15:47:09 -05002649 sym_name(&policydb, SYM_BOOLS, i),
Steve Grubbaf601e42006-01-04 14:08:39 +00002650 !!values[i],
2651 policydb.bool_val_to_struct[i]->state,
Eric W. Biederman581abc02012-08-20 00:09:36 -07002652 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Eric Paris4746ec52008-01-08 10:06:53 -05002653 audit_get_sessionid(current));
Steve Grubbaf601e42006-01-04 14:08:39 +00002654 }
Eric Paris5d55a342008-04-18 17:38:33 -04002655 if (values[i])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 policydb.bool_val_to_struct[i]->state = 1;
Eric Paris5d55a342008-04-18 17:38:33 -04002657 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 policydb.bool_val_to_struct[i]->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660
Vesa-Matti Karidbc74c62008-08-07 03:18:20 +03002661 for (cur = policydb.cond_list; cur; cur = cur->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 rc = evaluate_cond_node(&policydb, cur);
2663 if (rc)
2664 goto out;
2665 }
2666
2667 seqno = ++latest_granting;
Eric Paris4b02b522010-11-23 11:40:08 -05002668 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669out:
James Morris0804d112008-06-06 18:40:29 +10002670 write_unlock_irq(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 if (!rc) {
2672 avc_ss_reset(seqno);
2673 selnl_notify_policyload(seqno);
KaiGai Kohei11904162010-09-14 18:28:39 +09002674 selinux_status_update_policyload(seqno);
Venkat Yekkirala342a0cf2007-01-26 19:03:48 -08002675 selinux_xfrm_notify_policyload();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 }
2677 return rc;
2678}
2679
Prarit Bhargava0fd71a62016-04-14 10:40:57 -04002680int security_get_bool_value(int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681{
Eric Paris4b02b522010-11-23 11:40:08 -05002682 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 int len;
2684
James Morris0804d112008-06-06 18:40:29 +10002685 read_lock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686
Eric Paris4b02b522010-11-23 11:40:08 -05002687 rc = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 len = policydb.p_bools.nprim;
Prarit Bhargava0fd71a62016-04-14 10:40:57 -04002689 if (index >= len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691
Prarit Bhargava0fd71a62016-04-14 10:40:57 -04002692 rc = policydb.bool_val_to_struct[index]->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693out:
James Morris0804d112008-06-06 18:40:29 +10002694 read_unlock(&policy_rwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 return rc;
2696}
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06002697
Stephen Smalleye900a7d2007-04-19 14:16:19 -04002698static int security_preserve_bools(struct policydb *p)
2699{
2700 int rc, nbools = 0, *bvalues = NULL, i;
2701 char **bnames = NULL;
2702 struct cond_bool_datum *booldatum;
2703 struct cond_node *cur;
2704
2705 rc = security_get_bools(&nbools, &bnames, &bvalues);
2706 if (rc)
2707 goto out;
2708 for (i = 0; i < nbools; i++) {
2709 booldatum = hashtab_search(p->p_bools.table, bnames[i]);
2710 if (booldatum)
2711 booldatum->state = bvalues[i];
2712 }
Vesa-Matti Karidbc74c62008-08-07 03:18:20 +03002713 for (cur = p->cond_list; cur; cur = cur->next) {
Stephen Smalleye900a7d2007-04-19 14:16:19 -04002714 rc = evaluate_cond_node(p, cur);
2715 if (rc)
2716 goto out;
2717 }
2718
2719out:
2720 if (bnames) {
2721 for (i = 0; i < nbools; i++)
2722 kfree(bnames[i]);
2723 }
2724 kfree(bnames);
2725 kfree(bvalues);
2726 return rc;
2727}
2728
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002729/*
2730 * security_sid_mls_copy() - computes a new sid based on the given
2731 * sid and the mls portion of mls_sid.
2732 */
2733int security_sid_mls_copy(u32 sid, u32 mls_sid, u32 *new_sid)
2734{
2735 struct context *context1;
2736 struct context *context2;
2737 struct context newcon;
2738 char *s;
2739 u32 len;
Eric Paris4b02b522010-11-23 11:40:08 -05002740 int rc;
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002741
Eric Paris4b02b522010-11-23 11:40:08 -05002742 rc = 0;
Guido Trentalancia0719aaf2010-02-03 16:40:20 +01002743 if (!ss_initialized || !policydb.mls_enabled) {
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002744 *new_sid = sid;
2745 goto out;
2746 }
2747
2748 context_init(&newcon);
2749
James Morris0804d112008-06-06 18:40:29 +10002750 read_lock(&policy_rwlock);
Eric Paris4b02b522010-11-23 11:40:08 -05002751
2752 rc = -EINVAL;
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002753 context1 = sidtab_search(&sidtab, sid);
2754 if (!context1) {
Eric Paris744ba352008-04-17 11:52:44 -04002755 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
2756 __func__, sid);
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002757 goto out_unlock;
2758 }
2759
Eric Paris4b02b522010-11-23 11:40:08 -05002760 rc = -EINVAL;
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002761 context2 = sidtab_search(&sidtab, mls_sid);
2762 if (!context2) {
Eric Paris744ba352008-04-17 11:52:44 -04002763 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
2764 __func__, mls_sid);
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002765 goto out_unlock;
2766 }
2767
2768 newcon.user = context1->user;
2769 newcon.role = context1->role;
2770 newcon.type = context1->type;
Venkat Yekkirala0efc61e2006-12-12 13:02:41 -06002771 rc = mls_context_cpy(&newcon, context2);
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002772 if (rc)
2773 goto out_unlock;
2774
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002775 /* Check the validity of the new context. */
2776 if (!policydb_context_isvalid(&policydb, &newcon)) {
2777 rc = convert_context_handle_invalid_context(&newcon);
Eric Paris4b02b522010-11-23 11:40:08 -05002778 if (rc) {
2779 if (!context_struct_to_string(&newcon, &s, &len)) {
Richard Guy Briggs4093a842014-09-18 20:47:48 -04002780 audit_log(current->audit_context,
2781 GFP_ATOMIC, AUDIT_SELINUX_ERR,
2782 "op=security_sid_mls_copy "
2783 "invalid_context=%s", s);
Eric Paris4b02b522010-11-23 11:40:08 -05002784 kfree(s);
2785 }
2786 goto out_unlock;
2787 }
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002788 }
2789
2790 rc = sidtab_context_to_sid(&sidtab, &newcon, new_sid);
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002791out_unlock:
James Morris0804d112008-06-06 18:40:29 +10002792 read_unlock(&policy_rwlock);
Venkat Yekkirala08554d62006-07-24 23:27:16 -07002793 context_destroy(&newcon);
2794out:
2795 return rc;
2796}
2797
Paul Moore220deb92008-01-29 08:38:23 -05002798/**
2799 * security_net_peersid_resolve - Compare and resolve two network peer SIDs
2800 * @nlbl_sid: NetLabel SID
2801 * @nlbl_type: NetLabel labeling protocol type
2802 * @xfrm_sid: XFRM SID
2803 *
2804 * Description:
2805 * Compare the @nlbl_sid and @xfrm_sid values and if the two SIDs can be
2806 * resolved into a single SID it is returned via @peer_sid and the function
2807 * returns zero. Otherwise @peer_sid is set to SECSID_NULL and the function
2808 * returns a negative value. A table summarizing the behavior is below:
2809 *
2810 * | function return | @sid
2811 * ------------------------------+-----------------+-----------------
2812 * no peer labels | 0 | SECSID_NULL
2813 * single peer label | 0 | <peer_label>
2814 * multiple, consistent labels | 0 | <peer_label>
2815 * multiple, inconsistent labels | -<errno> | SECSID_NULL
2816 *
2817 */
2818int security_net_peersid_resolve(u32 nlbl_sid, u32 nlbl_type,
2819 u32 xfrm_sid,
2820 u32 *peer_sid)
2821{
2822 int rc;
2823 struct context *nlbl_ctx;
2824 struct context *xfrm_ctx;
2825
Eric Paris4b02b522010-11-23 11:40:08 -05002826 *peer_sid = SECSID_NULL;
2827
Paul Moore220deb92008-01-29 08:38:23 -05002828 /* handle the common (which also happens to be the set of easy) cases
2829 * right away, these two if statements catch everything involving a
2830 * single or absent peer SID/label */
2831 if (xfrm_sid == SECSID_NULL) {
2832 *peer_sid = nlbl_sid;
2833 return 0;
2834 }
2835 /* NOTE: an nlbl_type == NETLBL_NLTYPE_UNLABELED is a "fallback" label
2836 * and is treated as if nlbl_sid == SECSID_NULL when a XFRM SID/label
2837 * is present */
2838 if (nlbl_sid == SECSID_NULL || nlbl_type == NETLBL_NLTYPE_UNLABELED) {
2839 *peer_sid = xfrm_sid;
2840 return 0;
2841 }
2842
2843 /* we don't need to check ss_initialized here since the only way both
2844 * nlbl_sid and xfrm_sid are not equal to SECSID_NULL would be if the
2845 * security server was initialized and ss_initialized was true */
Eric Paris4b02b522010-11-23 11:40:08 -05002846 if (!policydb.mls_enabled)
Paul Moore220deb92008-01-29 08:38:23 -05002847 return 0;
Paul Moore220deb92008-01-29 08:38:23 -05002848
James Morris0804d112008-06-06 18:40:29 +10002849 read_lock(&policy_rwlock);
Paul Moore220deb92008-01-29 08:38:23 -05002850
Eric Paris4b02b522010-11-23 11:40:08 -05002851 rc = -EINVAL;
Paul Moore220deb92008-01-29 08:38:23 -05002852 nlbl_ctx = sidtab_search(&sidtab, nlbl_sid);
2853 if (!nlbl_ctx) {
Eric Paris744ba352008-04-17 11:52:44 -04002854 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
2855 __func__, nlbl_sid);
Eric Paris4b02b522010-11-23 11:40:08 -05002856 goto out;
Paul Moore220deb92008-01-29 08:38:23 -05002857 }
Eric Paris4b02b522010-11-23 11:40:08 -05002858 rc = -EINVAL;
Paul Moore220deb92008-01-29 08:38:23 -05002859 xfrm_ctx = sidtab_search(&sidtab, xfrm_sid);
2860 if (!xfrm_ctx) {
Eric Paris744ba352008-04-17 11:52:44 -04002861 printk(KERN_ERR "SELinux: %s: unrecognized SID %d\n",
2862 __func__, xfrm_sid);
Eric Paris4b02b522010-11-23 11:40:08 -05002863 goto out;
Paul Moore220deb92008-01-29 08:38:23 -05002864 }
2865 rc = (mls_context_cmp(nlbl_ctx, xfrm_ctx) ? 0 : -EACCES);
Eric Paris4b02b522010-11-23 11:40:08 -05002866 if (rc)
2867 goto out;
Paul Moore220deb92008-01-29 08:38:23 -05002868
Eric Paris4b02b522010-11-23 11:40:08 -05002869 /* at present NetLabel SIDs/labels really only carry MLS
2870 * information so if the MLS portion of the NetLabel SID
2871 * matches the MLS portion of the labeled XFRM SID/label
2872 * then pass along the XFRM SID as it is the most
2873 * expressive */
2874 *peer_sid = xfrm_sid;
2875out:
James Morris0804d112008-06-06 18:40:29 +10002876 read_unlock(&policy_rwlock);
Paul Moore220deb92008-01-29 08:38:23 -05002877 return rc;
2878}
2879
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002880static int get_classes_callback(void *k, void *d, void *args)
2881{
2882 struct class_datum *datum = d;
2883 char *name = k, **classes = args;
2884 int value = datum->value - 1;
2885
2886 classes[value] = kstrdup(name, GFP_ATOMIC);
2887 if (!classes[value])
2888 return -ENOMEM;
2889
2890 return 0;
2891}
2892
2893int security_get_classes(char ***classes, int *nclasses)
2894{
Eric Paris4b02b522010-11-23 11:40:08 -05002895 int rc;
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002896
James Morris0804d112008-06-06 18:40:29 +10002897 read_lock(&policy_rwlock);
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002898
Eric Paris4b02b522010-11-23 11:40:08 -05002899 rc = -ENOMEM;
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002900 *nclasses = policydb.p_classes.nprim;
Julia Lawall9f59f902009-12-06 10:16:51 +01002901 *classes = kcalloc(*nclasses, sizeof(**classes), GFP_ATOMIC);
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002902 if (!*classes)
2903 goto out;
2904
2905 rc = hashtab_map(policydb.p_classes.table, get_classes_callback,
2906 *classes);
Eric Paris4b02b522010-11-23 11:40:08 -05002907 if (rc) {
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002908 int i;
2909 for (i = 0; i < *nclasses; i++)
2910 kfree((*classes)[i]);
2911 kfree(*classes);
2912 }
2913
2914out:
James Morris0804d112008-06-06 18:40:29 +10002915 read_unlock(&policy_rwlock);
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002916 return rc;
2917}
2918
2919static int get_permissions_callback(void *k, void *d, void *args)
2920{
2921 struct perm_datum *datum = d;
2922 char *name = k, **perms = args;
2923 int value = datum->value - 1;
2924
2925 perms[value] = kstrdup(name, GFP_ATOMIC);
2926 if (!perms[value])
2927 return -ENOMEM;
2928
2929 return 0;
2930}
2931
2932int security_get_permissions(char *class, char ***perms, int *nperms)
2933{
Eric Paris4b02b522010-11-23 11:40:08 -05002934 int rc, i;
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002935 struct class_datum *match;
2936
James Morris0804d112008-06-06 18:40:29 +10002937 read_lock(&policy_rwlock);
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002938
Eric Paris4b02b522010-11-23 11:40:08 -05002939 rc = -EINVAL;
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002940 match = hashtab_search(policydb.p_classes.table, class);
2941 if (!match) {
Eric Paris744ba352008-04-17 11:52:44 -04002942 printk(KERN_ERR "SELinux: %s: unrecognized class %s\n",
Harvey Harrisondd6f9532008-03-06 10:03:59 +11002943 __func__, class);
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002944 goto out;
2945 }
2946
Eric Paris4b02b522010-11-23 11:40:08 -05002947 rc = -ENOMEM;
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002948 *nperms = match->permissions.nprim;
Julia Lawall9f59f902009-12-06 10:16:51 +01002949 *perms = kcalloc(*nperms, sizeof(**perms), GFP_ATOMIC);
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002950 if (!*perms)
2951 goto out;
2952
2953 if (match->comdatum) {
2954 rc = hashtab_map(match->comdatum->permissions.table,
2955 get_permissions_callback, *perms);
Eric Paris4b02b522010-11-23 11:40:08 -05002956 if (rc)
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002957 goto err;
2958 }
2959
2960 rc = hashtab_map(match->permissions.table, get_permissions_callback,
2961 *perms);
Eric Paris4b02b522010-11-23 11:40:08 -05002962 if (rc)
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002963 goto err;
2964
2965out:
James Morris0804d112008-06-06 18:40:29 +10002966 read_unlock(&policy_rwlock);
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002967 return rc;
2968
2969err:
James Morris0804d112008-06-06 18:40:29 +10002970 read_unlock(&policy_rwlock);
Christopher J. PeBenito55fcf092007-05-23 09:12:06 -04002971 for (i = 0; i < *nperms; i++)
2972 kfree((*perms)[i]);
2973 kfree(*perms);
2974 return rc;
2975}
2976
Eric Paris3f120702007-09-21 14:37:10 -04002977int security_get_reject_unknown(void)
2978{
2979 return policydb.reject_unknown;
2980}
2981
2982int security_get_allow_unknown(void)
2983{
2984 return policydb.allow_unknown;
2985}
2986
Paul Moore3bb56b22008-01-29 08:38:19 -05002987/**
Paul Moore3bb56b22008-01-29 08:38:19 -05002988 * security_policycap_supported - Check for a specific policy capability
2989 * @req_cap: capability
2990 *
2991 * Description:
2992 * This function queries the currently loaded policy to see if it supports the
2993 * capability specified by @req_cap. Returns true (1) if the capability is
2994 * supported, false (0) if it isn't supported.
2995 *
2996 */
2997int security_policycap_supported(unsigned int req_cap)
2998{
2999 int rc;
3000
James Morris0804d112008-06-06 18:40:29 +10003001 read_lock(&policy_rwlock);
Paul Moore3bb56b22008-01-29 08:38:19 -05003002 rc = ebitmap_get_bit(&policydb.policycaps, req_cap);
James Morris0804d112008-06-06 18:40:29 +10003003 read_unlock(&policy_rwlock);
Paul Moore3bb56b22008-01-29 08:38:19 -05003004
3005 return rc;
3006}
3007
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003008struct selinux_audit_rule {
3009 u32 au_seqno;
3010 struct context au_ctxt;
3011};
3012
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +02003013void selinux_audit_rule_free(void *vrule)
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003014{
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +02003015 struct selinux_audit_rule *rule = vrule;
3016
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003017 if (rule) {
3018 context_destroy(&rule->au_ctxt);
3019 kfree(rule);
3020 }
3021}
3022
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +02003023int selinux_audit_rule_init(u32 field, u32 op, char *rulestr, void **vrule)
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003024{
3025 struct selinux_audit_rule *tmprule;
3026 struct role_datum *roledatum;
3027 struct type_datum *typedatum;
3028 struct user_datum *userdatum;
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +02003029 struct selinux_audit_rule **rule = (struct selinux_audit_rule **)vrule;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003030 int rc = 0;
3031
3032 *rule = NULL;
3033
3034 if (!ss_initialized)
Steve G3ad40d62007-08-14 12:50:46 -07003035 return -EOPNOTSUPP;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003036
3037 switch (field) {
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05003038 case AUDIT_SUBJ_USER:
3039 case AUDIT_SUBJ_ROLE:
3040 case AUDIT_SUBJ_TYPE:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05003041 case AUDIT_OBJ_USER:
3042 case AUDIT_OBJ_ROLE:
3043 case AUDIT_OBJ_TYPE:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003044 /* only 'equals' and 'not equals' fit user, role, and type */
Al Viro5af75d82008-12-16 05:59:26 -05003045 if (op != Audit_equal && op != Audit_not_equal)
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003046 return -EINVAL;
3047 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05003048 case AUDIT_SUBJ_SEN:
3049 case AUDIT_SUBJ_CLR:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05003050 case AUDIT_OBJ_LEV_LOW:
3051 case AUDIT_OBJ_LEV_HIGH:
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003052 /* we do not allow a range, indicated by the presence of '-' */
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003053 if (strchr(rulestr, '-'))
3054 return -EINVAL;
3055 break;
3056 default:
3057 /* only the above fields are valid */
3058 return -EINVAL;
3059 }
3060
3061 tmprule = kzalloc(sizeof(struct selinux_audit_rule), GFP_KERNEL);
3062 if (!tmprule)
3063 return -ENOMEM;
3064
3065 context_init(&tmprule->au_ctxt);
3066
James Morris0804d112008-06-06 18:40:29 +10003067 read_lock(&policy_rwlock);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003068
3069 tmprule->au_seqno = latest_granting;
3070
3071 switch (field) {
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05003072 case AUDIT_SUBJ_USER:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05003073 case AUDIT_OBJ_USER:
Eric Paris4b02b522010-11-23 11:40:08 -05003074 rc = -EINVAL;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003075 userdatum = hashtab_search(policydb.p_users.table, rulestr);
3076 if (!userdatum)
Eric Paris4b02b522010-11-23 11:40:08 -05003077 goto out;
3078 tmprule->au_ctxt.user = userdatum->value;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003079 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05003080 case AUDIT_SUBJ_ROLE:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05003081 case AUDIT_OBJ_ROLE:
Eric Paris4b02b522010-11-23 11:40:08 -05003082 rc = -EINVAL;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003083 roledatum = hashtab_search(policydb.p_roles.table, rulestr);
3084 if (!roledatum)
Eric Paris4b02b522010-11-23 11:40:08 -05003085 goto out;
3086 tmprule->au_ctxt.role = roledatum->value;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003087 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05003088 case AUDIT_SUBJ_TYPE:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05003089 case AUDIT_OBJ_TYPE:
Eric Paris4b02b522010-11-23 11:40:08 -05003090 rc = -EINVAL;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003091 typedatum = hashtab_search(policydb.p_types.table, rulestr);
3092 if (!typedatum)
Eric Paris4b02b522010-11-23 11:40:08 -05003093 goto out;
3094 tmprule->au_ctxt.type = typedatum->value;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003095 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05003096 case AUDIT_SUBJ_SEN:
3097 case AUDIT_SUBJ_CLR:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05003098 case AUDIT_OBJ_LEV_LOW:
3099 case AUDIT_OBJ_LEV_HIGH:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003100 rc = mls_from_string(rulestr, &tmprule->au_ctxt, GFP_ATOMIC);
Eric Paris4b02b522010-11-23 11:40:08 -05003101 if (rc)
3102 goto out;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003103 break;
3104 }
Eric Paris4b02b522010-11-23 11:40:08 -05003105 rc = 0;
3106out:
James Morris0804d112008-06-06 18:40:29 +10003107 read_unlock(&policy_rwlock);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003108
3109 if (rc) {
3110 selinux_audit_rule_free(tmprule);
3111 tmprule = NULL;
3112 }
3113
3114 *rule = tmprule;
3115
3116 return rc;
3117}
3118
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +02003119/* Check to see if the rule contains any selinux fields */
3120int selinux_audit_rule_known(struct audit_krule *rule)
3121{
3122 int i;
3123
3124 for (i = 0; i < rule->field_count; i++) {
3125 struct audit_field *f = &rule->fields[i];
3126 switch (f->type) {
3127 case AUDIT_SUBJ_USER:
3128 case AUDIT_SUBJ_ROLE:
3129 case AUDIT_SUBJ_TYPE:
3130 case AUDIT_SUBJ_SEN:
3131 case AUDIT_SUBJ_CLR:
3132 case AUDIT_OBJ_USER:
3133 case AUDIT_OBJ_ROLE:
3134 case AUDIT_OBJ_TYPE:
3135 case AUDIT_OBJ_LEV_LOW:
3136 case AUDIT_OBJ_LEV_HIGH:
3137 return 1;
3138 }
3139 }
3140
3141 return 0;
3142}
3143
3144int selinux_audit_rule_match(u32 sid, u32 field, u32 op, void *vrule,
Eric Parisf5269712008-05-14 11:27:45 -04003145 struct audit_context *actx)
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003146{
3147 struct context *ctxt;
3148 struct mls_level *level;
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +02003149 struct selinux_audit_rule *rule = vrule;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003150 int match = 0;
3151
Richard Guy Briggs9ad42a72013-11-21 13:31:40 -05003152 if (unlikely(!rule)) {
3153 WARN_ONCE(1, "selinux_audit_rule_match: missing rule\n");
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003154 return -ENOENT;
3155 }
3156
James Morris0804d112008-06-06 18:40:29 +10003157 read_lock(&policy_rwlock);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003158
3159 if (rule->au_seqno < latest_granting) {
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003160 match = -ESTALE;
3161 goto out;
3162 }
3163
Stephen Smalley9a2f44f2006-09-25 23:31:58 -07003164 ctxt = sidtab_search(&sidtab, sid);
Richard Guy Briggs9ad42a72013-11-21 13:31:40 -05003165 if (unlikely(!ctxt)) {
3166 WARN_ONCE(1, "selinux_audit_rule_match: unrecognized SID %d\n",
Eric Paris5d55a342008-04-18 17:38:33 -04003167 sid);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003168 match = -ENOENT;
3169 goto out;
3170 }
3171
3172 /* a field/op pair that is not caught here will simply fall through
3173 without a match */
3174 switch (field) {
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05003175 case AUDIT_SUBJ_USER:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05003176 case AUDIT_OBJ_USER:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003177 switch (op) {
Al Viro5af75d82008-12-16 05:59:26 -05003178 case Audit_equal:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003179 match = (ctxt->user == rule->au_ctxt.user);
3180 break;
Al Viro5af75d82008-12-16 05:59:26 -05003181 case Audit_not_equal:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003182 match = (ctxt->user != rule->au_ctxt.user);
3183 break;
3184 }
3185 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05003186 case AUDIT_SUBJ_ROLE:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05003187 case AUDIT_OBJ_ROLE:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003188 switch (op) {
Al Viro5af75d82008-12-16 05:59:26 -05003189 case Audit_equal:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003190 match = (ctxt->role == rule->au_ctxt.role);
3191 break;
Al Viro5af75d82008-12-16 05:59:26 -05003192 case Audit_not_equal:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003193 match = (ctxt->role != rule->au_ctxt.role);
3194 break;
3195 }
3196 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05003197 case AUDIT_SUBJ_TYPE:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05003198 case AUDIT_OBJ_TYPE:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003199 switch (op) {
Al Viro5af75d82008-12-16 05:59:26 -05003200 case Audit_equal:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003201 match = (ctxt->type == rule->au_ctxt.type);
3202 break;
Al Viro5af75d82008-12-16 05:59:26 -05003203 case Audit_not_equal:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003204 match = (ctxt->type != rule->au_ctxt.type);
3205 break;
3206 }
3207 break;
Darrel Goeddel3a6b9f82006-06-29 16:56:39 -05003208 case AUDIT_SUBJ_SEN:
3209 case AUDIT_SUBJ_CLR:
Darrel Goeddel6e5a2d12006-06-29 16:57:08 -05003210 case AUDIT_OBJ_LEV_LOW:
3211 case AUDIT_OBJ_LEV_HIGH:
3212 level = ((field == AUDIT_SUBJ_SEN ||
Eric Paris5d55a342008-04-18 17:38:33 -04003213 field == AUDIT_OBJ_LEV_LOW) ?
3214 &ctxt->range.level[0] : &ctxt->range.level[1]);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003215 switch (op) {
Al Viro5af75d82008-12-16 05:59:26 -05003216 case Audit_equal:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003217 match = mls_level_eq(&rule->au_ctxt.range.level[0],
Eric Paris5d55a342008-04-18 17:38:33 -04003218 level);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003219 break;
Al Viro5af75d82008-12-16 05:59:26 -05003220 case Audit_not_equal:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003221 match = !mls_level_eq(&rule->au_ctxt.range.level[0],
Eric Paris5d55a342008-04-18 17:38:33 -04003222 level);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003223 break;
Al Viro5af75d82008-12-16 05:59:26 -05003224 case Audit_lt:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003225 match = (mls_level_dom(&rule->au_ctxt.range.level[0],
Eric Paris5d55a342008-04-18 17:38:33 -04003226 level) &&
3227 !mls_level_eq(&rule->au_ctxt.range.level[0],
3228 level));
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003229 break;
Al Viro5af75d82008-12-16 05:59:26 -05003230 case Audit_le:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003231 match = mls_level_dom(&rule->au_ctxt.range.level[0],
Eric Paris5d55a342008-04-18 17:38:33 -04003232 level);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003233 break;
Al Viro5af75d82008-12-16 05:59:26 -05003234 case Audit_gt:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003235 match = (mls_level_dom(level,
Eric Paris5d55a342008-04-18 17:38:33 -04003236 &rule->au_ctxt.range.level[0]) &&
3237 !mls_level_eq(level,
3238 &rule->au_ctxt.range.level[0]));
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003239 break;
Al Viro5af75d82008-12-16 05:59:26 -05003240 case Audit_ge:
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003241 match = mls_level_dom(level,
Eric Paris5d55a342008-04-18 17:38:33 -04003242 &rule->au_ctxt.range.level[0]);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003243 break;
3244 }
3245 }
3246
3247out:
James Morris0804d112008-06-06 18:40:29 +10003248 read_unlock(&policy_rwlock);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003249 return match;
3250}
3251
Ahmed S. Darwish9d57a7f2008-03-01 22:03:14 +02003252static int (*aurule_callback)(void) = audit_update_lsm_rules;
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003253
Wanlong Gao562c99f2012-03-07 22:17:14 +08003254static int aurule_avc_callback(u32 event)
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003255{
3256 int err = 0;
3257
3258 if (event == AVC_CALLBACK_RESET && aurule_callback)
3259 err = aurule_callback();
3260 return err;
3261}
3262
3263static int __init aurule_init(void)
3264{
3265 int err;
3266
Wanlong Gao562c99f2012-03-07 22:17:14 +08003267 err = avc_add_callback(aurule_avc_callback, AVC_CALLBACK_RESET);
Darrel Goeddel376bd9c2006-02-24 15:44:05 -06003268 if (err)
3269 panic("avc_add_callback() failed, error %d\n", err);
3270
3271 return err;
3272}
3273__initcall(aurule_init);
3274
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003275#ifdef CONFIG_NETLABEL
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003276/**
Paul Moore5778eab2007-02-28 15:14:22 -05003277 * security_netlbl_cache_add - Add an entry to the NetLabel cache
3278 * @secattr: the NetLabel packet security attributes
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003279 * @sid: the SELinux SID
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003280 *
3281 * Description:
3282 * Attempt to cache the context in @ctx, which was derived from the packet in
Paul Moore5778eab2007-02-28 15:14:22 -05003283 * @skb, in the NetLabel subsystem cache. This function assumes @secattr has
3284 * already been initialized.
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003285 *
3286 */
Paul Moore5778eab2007-02-28 15:14:22 -05003287static void security_netlbl_cache_add(struct netlbl_lsm_secattr *secattr,
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003288 u32 sid)
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003289{
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003290 u32 *sid_cache;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003291
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003292 sid_cache = kmalloc(sizeof(*sid_cache), GFP_ATOMIC);
3293 if (sid_cache == NULL)
3294 return;
Paul Moore5778eab2007-02-28 15:14:22 -05003295 secattr->cache = netlbl_secattr_cache_alloc(GFP_ATOMIC);
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003296 if (secattr->cache == NULL) {
3297 kfree(sid_cache);
Paul Moore5778eab2007-02-28 15:14:22 -05003298 return;
Jesper Juhl0ec8abd2007-07-21 00:12:44 +02003299 }
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003300
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003301 *sid_cache = sid;
3302 secattr->cache->free = kfree;
3303 secattr->cache->data = sid_cache;
Paul Moore5778eab2007-02-28 15:14:22 -05003304 secattr->flags |= NETLBL_SECATTR_CACHE;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003305}
3306
3307/**
Paul Moore5778eab2007-02-28 15:14:22 -05003308 * security_netlbl_secattr_to_sid - Convert a NetLabel secattr to a SELinux SID
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003309 * @secattr: the NetLabel packet security attributes
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003310 * @sid: the SELinux SID
3311 *
3312 * Description:
Paul Moore5778eab2007-02-28 15:14:22 -05003313 * Convert the given NetLabel security attributes in @secattr into a
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003314 * SELinux SID. If the @secattr field does not contain a full SELinux
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003315 * SID/context then use SECINITSID_NETMSG as the foundation. If possible the
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003316 * 'cache' field of @secattr is set and the CACHE flag is set; this is to
3317 * allow the @secattr to be used by NetLabel to cache the secattr to SID
3318 * conversion for future lookups. Returns zero on success, negative values on
3319 * failure.
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003320 *
3321 */
Paul Moore5778eab2007-02-28 15:14:22 -05003322int security_netlbl_secattr_to_sid(struct netlbl_lsm_secattr *secattr,
Paul Moore5778eab2007-02-28 15:14:22 -05003323 u32 *sid)
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003324{
Eric Paris7ae9f232010-11-23 11:40:09 -05003325 int rc;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003326 struct context *ctx;
3327 struct context ctx_new;
Paul Moore5778eab2007-02-28 15:14:22 -05003328
3329 if (!ss_initialized) {
3330 *sid = SECSID_NULL;
3331 return 0;
3332 }
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003333
James Morris0804d112008-06-06 18:40:29 +10003334 read_lock(&policy_rwlock);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003335
Eric Paris7ae9f232010-11-23 11:40:09 -05003336 if (secattr->flags & NETLBL_SECATTR_CACHE)
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003337 *sid = *(u32 *)secattr->cache->data;
Eric Paris7ae9f232010-11-23 11:40:09 -05003338 else if (secattr->flags & NETLBL_SECATTR_SECID)
Paul Moore16efd452008-01-29 08:37:59 -05003339 *sid = secattr->attr.secid;
Eric Paris7ae9f232010-11-23 11:40:09 -05003340 else if (secattr->flags & NETLBL_SECATTR_MLS_LVL) {
3341 rc = -EIDRM;
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003342 ctx = sidtab_search(&sidtab, SECINITSID_NETMSG);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003343 if (ctx == NULL)
Eric Paris7ae9f232010-11-23 11:40:09 -05003344 goto out;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003345
Paul Moore81990fb2008-10-03 10:51:15 -04003346 context_init(&ctx_new);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003347 ctx_new.user = ctx->user;
3348 ctx_new.role = ctx->role;
3349 ctx_new.type = ctx->type;
Paul Moore02752762006-11-29 13:18:18 -05003350 mls_import_netlbl_lvl(&ctx_new, secattr);
Paul Moore701a90b2006-11-17 17:38:46 -05003351 if (secattr->flags & NETLBL_SECATTR_MLS_CAT) {
Paul Mooreda8026f2015-02-17 15:30:23 -05003352 rc = mls_import_netlbl_cat(&ctx_new, secattr);
Eric Paris7ae9f232010-11-23 11:40:09 -05003353 if (rc)
3354 goto out;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003355 }
Eric Paris7ae9f232010-11-23 11:40:09 -05003356 rc = -EIDRM;
3357 if (!mls_context_isvalid(&policydb, &ctx_new))
3358 goto out_free;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003359
3360 rc = sidtab_context_to_sid(&sidtab, &ctx_new, sid);
Eric Paris7ae9f232010-11-23 11:40:09 -05003361 if (rc)
3362 goto out_free;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003363
Paul Moore5dbe1eb2008-01-29 08:44:18 -05003364 security_netlbl_cache_add(secattr, *sid);
Paul Moore5778eab2007-02-28 15:14:22 -05003365
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003366 ebitmap_destroy(&ctx_new.range.level[0].cat);
Eric Paris7ae9f232010-11-23 11:40:09 -05003367 } else
paul.moore@hp.com388b2402006-10-05 18:28:24 -04003368 *sid = SECSID_NULL;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003369
Eric Paris7ae9f232010-11-23 11:40:09 -05003370 read_unlock(&policy_rwlock);
3371 return 0;
3372out_free:
3373 ebitmap_destroy(&ctx_new.range.level[0].cat);
3374out:
James Morris0804d112008-06-06 18:40:29 +10003375 read_unlock(&policy_rwlock);
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003376 return rc;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003377}
3378
3379/**
Paul Moore5778eab2007-02-28 15:14:22 -05003380 * security_netlbl_sid_to_secattr - Convert a SELinux SID to a NetLabel secattr
3381 * @sid: the SELinux SID
3382 * @secattr: the NetLabel packet security attributes
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003383 *
3384 * Description:
Paul Moore5778eab2007-02-28 15:14:22 -05003385 * Convert the given SELinux SID in @sid into a NetLabel security attribute.
3386 * Returns zero on success, negative values on failure.
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003387 *
3388 */
Paul Moore5778eab2007-02-28 15:14:22 -05003389int security_netlbl_sid_to_secattr(u32 sid, struct netlbl_lsm_secattr *secattr)
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003390{
Paul Moore99d854d2008-10-10 10:16:30 -04003391 int rc;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003392 struct context *ctx;
3393
3394 if (!ss_initialized)
3395 return 0;
3396
James Morris0804d112008-06-06 18:40:29 +10003397 read_lock(&policy_rwlock);
Eric Paris4b02b522010-11-23 11:40:08 -05003398
3399 rc = -ENOENT;
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003400 ctx = sidtab_search(&sidtab, sid);
Eric Paris4b02b522010-11-23 11:40:08 -05003401 if (ctx == NULL)
3402 goto out;
3403
3404 rc = -ENOMEM;
Eric Parisac76c052010-11-29 15:47:09 -05003405 secattr->domain = kstrdup(sym_name(&policydb, SYM_TYPES, ctx->type - 1),
Paul Moore5778eab2007-02-28 15:14:22 -05003406 GFP_ATOMIC);
Eric Paris4b02b522010-11-23 11:40:08 -05003407 if (secattr->domain == NULL)
3408 goto out;
3409
Paul Moore8d758992008-10-10 10:16:33 -04003410 secattr->attr.secid = sid;
3411 secattr->flags |= NETLBL_SECATTR_DOMAIN_CPY | NETLBL_SECATTR_SECID;
Paul Moore5778eab2007-02-28 15:14:22 -05003412 mls_export_netlbl_lvl(ctx, secattr);
3413 rc = mls_export_netlbl_cat(ctx, secattr);
Eric Paris4b02b522010-11-23 11:40:08 -05003414out:
James Morris0804d112008-06-06 18:40:29 +10003415 read_unlock(&policy_rwlock);
Paul Mooref8687af2006-10-30 15:22:15 -08003416 return rc;
3417}
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07003418#endif /* CONFIG_NETLABEL */
Eric Pariscee74f42010-10-13 17:50:25 -04003419
3420/**
3421 * security_read_policy - read the policy.
3422 * @data: binary policy data
3423 * @len: length of data in bytes
3424 *
3425 */
Eric Paris6b697322011-04-20 10:21:28 -04003426int security_read_policy(void **data, size_t *len)
Eric Pariscee74f42010-10-13 17:50:25 -04003427{
3428 int rc;
3429 struct policy_file fp;
3430
3431 if (!ss_initialized)
3432 return -EINVAL;
3433
3434 *len = security_policydb_len();
3435
Eric Paris845ca302010-10-13 17:50:31 -04003436 *data = vmalloc_user(*len);
Eric Pariscee74f42010-10-13 17:50:25 -04003437 if (!*data)
3438 return -ENOMEM;
3439
3440 fp.data = *data;
3441 fp.len = *len;
3442
3443 read_lock(&policy_rwlock);
3444 rc = policydb_write(&policydb, &fp);
3445 read_unlock(&policy_rwlock);
3446
3447 if (rc)
3448 return rc;
3449
3450 *len = (unsigned long)fp.data - (unsigned long)*data;
3451 return 0;
3452
3453}