xref: /openbmc/linux/security/apparmor/domain.c (revision 08b7cf13)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * AppArmor security module
4  *
5  * This file contains AppArmor policy attachment and domain transitions
6  *
7  * Copyright (C) 2002-2008 Novell/SUSE
8  * Copyright 2009-2010 Canonical Ltd.
9  */
10 
11 #include <linux/errno.h>
12 #include <linux/fdtable.h>
13 #include <linux/fs.h>
14 #include <linux/file.h>
15 #include <linux/mount.h>
16 #include <linux/syscalls.h>
17 #include <linux/personality.h>
18 #include <linux/xattr.h>
19 #include <linux/user_namespace.h>
20 
21 #include "include/audit.h"
22 #include "include/apparmorfs.h"
23 #include "include/cred.h"
24 #include "include/domain.h"
25 #include "include/file.h"
26 #include "include/ipc.h"
27 #include "include/match.h"
28 #include "include/path.h"
29 #include "include/policy.h"
30 #include "include/policy_ns.h"
31 
32 /**
33  * aa_free_domain_entries - free entries in a domain table
34  * @domain: the domain table to free  (MAYBE NULL)
35  */
36 void aa_free_domain_entries(struct aa_domain *domain)
37 {
38 	int i;
39 	if (domain) {
40 		if (!domain->table)
41 			return;
42 
43 		for (i = 0; i < domain->size; i++)
44 			kfree_sensitive(domain->table[i]);
45 		kfree_sensitive(domain->table);
46 		domain->table = NULL;
47 	}
48 }
49 
50 /**
51  * may_change_ptraced_domain - check if can change profile on ptraced task
52  * @to_label: profile to change to  (NOT NULL)
53  * @info: message if there is an error
54  *
55  * Check if current is ptraced and if so if the tracing task is allowed
56  * to trace the new domain
57  *
58  * Returns: %0 or error if change not allowed
59  */
60 static int may_change_ptraced_domain(struct aa_label *to_label,
61 				     const char **info)
62 {
63 	struct task_struct *tracer;
64 	struct aa_label *tracerl = NULL;
65 	int error = 0;
66 
67 	rcu_read_lock();
68 	tracer = ptrace_parent(current);
69 	if (tracer)
70 		/* released below */
71 		tracerl = aa_get_task_label(tracer);
72 
73 	/* not ptraced */
74 	if (!tracer || unconfined(tracerl))
75 		goto out;
76 
77 	error = aa_may_ptrace(tracerl, to_label, PTRACE_MODE_ATTACH);
78 
79 out:
80 	rcu_read_unlock();
81 	aa_put_label(tracerl);
82 
83 	if (error)
84 		*info = "ptrace prevents transition";
85 	return error;
86 }
87 
88 /**** TODO: dedup to aa_label_match - needs perm and dfa, merging
89  * specifically this is an exact copy of aa_label_match except
90  * aa_compute_perms is replaced with aa_compute_fperms
91  * and policy.dfa with file.dfa
92  ****/
93 /* match a profile and its associated ns component if needed
94  * Assumes visibility test has already been done.
95  * If a subns profile is not to be matched should be prescreened with
96  * visibility test.
97  */
98 static inline unsigned int match_component(struct aa_profile *profile,
99 					   struct aa_profile *tp,
100 					   bool stack, unsigned int state)
101 {
102 	const char *ns_name;
103 
104 	if (stack)
105 		state = aa_dfa_match(profile->file.dfa, state, "&");
106 	if (profile->ns == tp->ns)
107 		return aa_dfa_match(profile->file.dfa, state, tp->base.hname);
108 
109 	/* try matching with namespace name and then profile */
110 	ns_name = aa_ns_name(profile->ns, tp->ns, true);
111 	state = aa_dfa_match_len(profile->file.dfa, state, ":", 1);
112 	state = aa_dfa_match(profile->file.dfa, state, ns_name);
113 	state = aa_dfa_match_len(profile->file.dfa, state, ":", 1);
114 	return aa_dfa_match(profile->file.dfa, state, tp->base.hname);
115 }
116 
117 /**
118  * label_compound_match - find perms for full compound label
119  * @profile: profile to find perms for
120  * @label: label to check access permissions for
121  * @stack: whether this is a stacking request
122  * @start: state to start match in
123  * @subns: whether to do permission checks on components in a subns
124  * @request: permissions to request
125  * @perms: perms struct to set
126  *
127  * Returns: 0 on success else ERROR
128  *
129  * For the label A//&B//&C this does the perm match for A//&B//&C
130  * @perms should be preinitialized with allperms OR a previous permission
131  *        check to be stacked.
132  */
133 static int label_compound_match(struct aa_profile *profile,
134 				struct aa_label *label, bool stack,
135 				unsigned int state, bool subns, u32 request,
136 				struct aa_perms *perms)
137 {
138 	struct aa_profile *tp;
139 	struct label_it i;
140 	struct path_cond cond = { };
141 
142 	/* find first subcomponent that is visible */
143 	label_for_each(i, label, tp) {
144 		if (!aa_ns_visible(profile->ns, tp->ns, subns))
145 			continue;
146 		state = match_component(profile, tp, stack, state);
147 		if (!state)
148 			goto fail;
149 		goto next;
150 	}
151 
152 	/* no component visible */
153 	*perms = allperms;
154 	return 0;
155 
156 next:
157 	label_for_each_cont(i, label, tp) {
158 		if (!aa_ns_visible(profile->ns, tp->ns, subns))
159 			continue;
160 		state = aa_dfa_match(profile->file.dfa, state, "//&");
161 		state = match_component(profile, tp, false, state);
162 		if (!state)
163 			goto fail;
164 	}
165 	*perms = aa_compute_fperms(profile->file.dfa, state, &cond);
166 	aa_apply_modes_to_perms(profile, perms);
167 	if ((perms->allow & request) != request)
168 		return -EACCES;
169 
170 	return 0;
171 
172 fail:
173 	*perms = nullperms;
174 	return -EACCES;
175 }
176 
177 /**
178  * label_components_match - find perms for all subcomponents of a label
179  * @profile: profile to find perms for
180  * @label: label to check access permissions for
181  * @stack: whether this is a stacking request
182  * @start: state to start match in
183  * @subns: whether to do permission checks on components in a subns
184  * @request: permissions to request
185  * @perms: an initialized perms struct to add accumulation to
186  *
187  * Returns: 0 on success else ERROR
188  *
189  * For the label A//&B//&C this does the perm match for each of A and B and C
190  * @perms should be preinitialized with allperms OR a previous permission
191  *        check to be stacked.
192  */
193 static int label_components_match(struct aa_profile *profile,
194 				  struct aa_label *label, bool stack,
195 				  unsigned int start, bool subns, u32 request,
196 				  struct aa_perms *perms)
197 {
198 	struct aa_profile *tp;
199 	struct label_it i;
200 	struct aa_perms tmp;
201 	struct path_cond cond = { };
202 	unsigned int state = 0;
203 
204 	/* find first subcomponent to test */
205 	label_for_each(i, label, tp) {
206 		if (!aa_ns_visible(profile->ns, tp->ns, subns))
207 			continue;
208 		state = match_component(profile, tp, stack, start);
209 		if (!state)
210 			goto fail;
211 		goto next;
212 	}
213 
214 	/* no subcomponents visible - no change in perms */
215 	return 0;
216 
217 next:
218 	tmp = aa_compute_fperms(profile->file.dfa, state, &cond);
219 	aa_apply_modes_to_perms(profile, &tmp);
220 	aa_perms_accum(perms, &tmp);
221 	label_for_each_cont(i, label, tp) {
222 		if (!aa_ns_visible(profile->ns, tp->ns, subns))
223 			continue;
224 		state = match_component(profile, tp, stack, start);
225 		if (!state)
226 			goto fail;
227 		tmp = aa_compute_fperms(profile->file.dfa, state, &cond);
228 		aa_apply_modes_to_perms(profile, &tmp);
229 		aa_perms_accum(perms, &tmp);
230 	}
231 
232 	if ((perms->allow & request) != request)
233 		return -EACCES;
234 
235 	return 0;
236 
237 fail:
238 	*perms = nullperms;
239 	return -EACCES;
240 }
241 
242 /**
243  * label_match - do a multi-component label match
244  * @profile: profile to match against (NOT NULL)
245  * @label: label to match (NOT NULL)
246  * @stack: whether this is a stacking request
247  * @state: state to start in
248  * @subns: whether to match subns components
249  * @request: permission request
250  * @perms: Returns computed perms (NOT NULL)
251  *
252  * Returns: the state the match finished in, may be the none matching state
253  */
254 static int label_match(struct aa_profile *profile, struct aa_label *label,
255 		       bool stack, unsigned int state, bool subns, u32 request,
256 		       struct aa_perms *perms)
257 {
258 	int error;
259 
260 	*perms = nullperms;
261 	error = label_compound_match(profile, label, stack, state, subns,
262 				     request, perms);
263 	if (!error)
264 		return error;
265 
266 	*perms = allperms;
267 	return label_components_match(profile, label, stack, state, subns,
268 				      request, perms);
269 }
270 
271 /******* end TODO: dedup *****/
272 
273 /**
274  * change_profile_perms - find permissions for change_profile
275  * @profile: the current profile  (NOT NULL)
276  * @target: label to transition to (NOT NULL)
277  * @stack: whether this is a stacking request
278  * @request: requested perms
279  * @start: state to start matching in
280  *
281  *
282  * Returns: permission set
283  *
284  * currently only matches full label A//&B//&C or individual components A, B, C
285  * not arbitrary combinations. Eg. A//&B, C
286  */
287 static int change_profile_perms(struct aa_profile *profile,
288 				struct aa_label *target, bool stack,
289 				u32 request, unsigned int start,
290 				struct aa_perms *perms)
291 {
292 	if (profile_unconfined(profile)) {
293 		perms->allow = AA_MAY_CHANGE_PROFILE | AA_MAY_ONEXEC;
294 		perms->audit = perms->quiet = perms->kill = 0;
295 		return 0;
296 	}
297 
298 	/* TODO: add profile in ns screening */
299 	return label_match(profile, target, stack, start, true, request, perms);
300 }
301 
302 /**
303  * aa_xattrs_match - check whether a file matches the xattrs defined in profile
304  * @bprm: binprm struct for the process to validate
305  * @profile: profile to match against (NOT NULL)
306  * @state: state to start match in
307  *
308  * Returns: number of extended attributes that matched, or < 0 on error
309  */
310 static int aa_xattrs_match(const struct linux_binprm *bprm,
311 			   struct aa_profile *profile, unsigned int state)
312 {
313 	int i;
314 	ssize_t size;
315 	struct dentry *d;
316 	char *value = NULL;
317 	int value_size = 0, ret = profile->xattr_count;
318 
319 	if (!bprm || !profile->xattr_count)
320 		return 0;
321 	might_sleep();
322 
323 	/* transition from exec match to xattr set */
324 	state = aa_dfa_outofband_transition(profile->xmatch, state);
325 	d = bprm->file->f_path.dentry;
326 
327 	for (i = 0; i < profile->xattr_count; i++) {
328 		size = vfs_getxattr_alloc(&init_user_ns, d, profile->xattrs[i],
329 					  &value, value_size, GFP_KERNEL);
330 		if (size >= 0) {
331 			u32 perm;
332 
333 			/*
334 			 * Check the xattr presence before value. This ensure
335 			 * that not present xattr can be distinguished from a 0
336 			 * length value or rule that matches any value
337 			 */
338 			state = aa_dfa_null_transition(profile->xmatch, state);
339 			/* Check xattr value */
340 			state = aa_dfa_match_len(profile->xmatch, state, value,
341 						 size);
342 			perm = dfa_user_allow(profile->xmatch, state);
343 			if (!(perm & MAY_EXEC)) {
344 				ret = -EINVAL;
345 				goto out;
346 			}
347 		}
348 		/* transition to next element */
349 		state = aa_dfa_outofband_transition(profile->xmatch, state);
350 		if (size < 0) {
351 			/*
352 			 * No xattr match, so verify if transition to
353 			 * next element was valid. IFF so the xattr
354 			 * was optional.
355 			 */
356 			if (!state) {
357 				ret = -EINVAL;
358 				goto out;
359 			}
360 			/* don't count missing optional xattr as matched */
361 			ret--;
362 		}
363 	}
364 
365 out:
366 	kfree(value);
367 	return ret;
368 }
369 
370 /**
371  * find_attach - do attachment search for unconfined processes
372  * @bprm - binprm structure of transitioning task
373  * @ns: the current namespace  (NOT NULL)
374  * @head - profile list to walk  (NOT NULL)
375  * @name - to match against  (NOT NULL)
376  * @info - info message if there was an error (NOT NULL)
377  *
378  * Do a linear search on the profiles in the list.  There is a matching
379  * preference where an exact match is preferred over a name which uses
380  * expressions to match, and matching expressions with the greatest
381  * xmatch_len are preferred.
382  *
383  * Requires: @head not be shared or have appropriate locks held
384  *
385  * Returns: label or NULL if no match found
386  */
387 static struct aa_label *find_attach(const struct linux_binprm *bprm,
388 				    struct aa_ns *ns, struct list_head *head,
389 				    const char *name, const char **info)
390 {
391 	int candidate_len = 0, candidate_xattrs = 0;
392 	bool conflict = false;
393 	struct aa_profile *profile, *candidate = NULL;
394 
395 	AA_BUG(!name);
396 	AA_BUG(!head);
397 
398 	rcu_read_lock();
399 restart:
400 	list_for_each_entry_rcu(profile, head, base.list) {
401 		if (profile->label.flags & FLAG_NULL &&
402 		    &profile->label == ns_unconfined(profile->ns))
403 			continue;
404 
405 		/* Find the "best" matching profile. Profiles must
406 		 * match the path and extended attributes (if any)
407 		 * associated with the file. A more specific path
408 		 * match will be preferred over a less specific one,
409 		 * and a match with more matching extended attributes
410 		 * will be preferred over one with fewer. If the best
411 		 * match has both the same level of path specificity
412 		 * and the same number of matching extended attributes
413 		 * as another profile, signal a conflict and refuse to
414 		 * match.
415 		 */
416 		if (profile->xmatch) {
417 			unsigned int state, count;
418 			u32 perm;
419 
420 			state = aa_dfa_leftmatch(profile->xmatch, DFA_START,
421 						 name, &count);
422 			perm = dfa_user_allow(profile->xmatch, state);
423 			/* any accepting state means a valid match. */
424 			if (perm & MAY_EXEC) {
425 				int ret = 0;
426 
427 				if (count < candidate_len)
428 					continue;
429 
430 				if (bprm && profile->xattr_count) {
431 					long rev = READ_ONCE(ns->revision);
432 
433 					if (!aa_get_profile_not0(profile))
434 						goto restart;
435 					rcu_read_unlock();
436 					ret = aa_xattrs_match(bprm, profile,
437 							      state);
438 					rcu_read_lock();
439 					aa_put_profile(profile);
440 					if (rev !=
441 					    READ_ONCE(ns->revision))
442 						/* policy changed */
443 						goto restart;
444 					/*
445 					 * Fail matching if the xattrs don't
446 					 * match
447 					 */
448 					if (ret < 0)
449 						continue;
450 				}
451 				/*
452 				 * TODO: allow for more flexible best match
453 				 *
454 				 * The new match isn't more specific
455 				 * than the current best match
456 				 */
457 				if (count == candidate_len &&
458 				    ret <= candidate_xattrs) {
459 					/* Match is equivalent, so conflict */
460 					if (ret == candidate_xattrs)
461 						conflict = true;
462 					continue;
463 				}
464 
465 				/* Either the same length with more matching
466 				 * xattrs, or a longer match
467 				 */
468 				candidate = profile;
469 				candidate_len = profile->xmatch_len;
470 				candidate_xattrs = ret;
471 				conflict = false;
472 			}
473 		} else if (!strcmp(profile->base.name, name)) {
474 			/*
475 			 * old exact non-re match, without conditionals such
476 			 * as xattrs. no more searching required
477 			 */
478 			candidate = profile;
479 			goto out;
480 		}
481 	}
482 
483 	if (!candidate || conflict) {
484 		if (conflict)
485 			*info = "conflicting profile attachments";
486 		rcu_read_unlock();
487 		return NULL;
488 	}
489 
490 out:
491 	candidate = aa_get_newest_profile(candidate);
492 	rcu_read_unlock();
493 
494 	return &candidate->label;
495 }
496 
497 static const char *next_name(int xtype, const char *name)
498 {
499 	return NULL;
500 }
501 
502 /**
503  * x_table_lookup - lookup an x transition name via transition table
504  * @profile: current profile (NOT NULL)
505  * @xindex: index into x transition table
506  * @name: returns: name tested to find label (NOT NULL)
507  *
508  * Returns: refcounted label, or NULL on failure (MAYBE NULL)
509  */
510 struct aa_label *x_table_lookup(struct aa_profile *profile, u32 xindex,
511 				const char **name)
512 {
513 	struct aa_label *label = NULL;
514 	u32 xtype = xindex & AA_X_TYPE_MASK;
515 	int index = xindex & AA_X_INDEX_MASK;
516 
517 	AA_BUG(!name);
518 
519 	/* index is guaranteed to be in range, validated at load time */
520 	/* TODO: move lookup parsing to unpack time so this is a straight
521 	 *       index into the resultant label
522 	 */
523 	for (*name = profile->file.trans.table[index]; !label && *name;
524 	     *name = next_name(xtype, *name)) {
525 		if (xindex & AA_X_CHILD) {
526 			struct aa_profile *new_profile;
527 			/* release by caller */
528 			new_profile = aa_find_child(profile, *name);
529 			if (new_profile)
530 				label = &new_profile->label;
531 			continue;
532 		}
533 		label = aa_label_parse(&profile->label, *name, GFP_KERNEL,
534 				       true, false);
535 		if (IS_ERR(label))
536 			label = NULL;
537 	}
538 
539 	/* released by caller */
540 
541 	return label;
542 }
543 
544 /**
545  * x_to_label - get target label for a given xindex
546  * @profile: current profile  (NOT NULL)
547  * @bprm: binprm structure of transitioning task
548  * @name: name to lookup (NOT NULL)
549  * @xindex: index into x transition table
550  * @lookupname: returns: name used in lookup if one was specified (NOT NULL)
551  *
552  * find label for a transition index
553  *
554  * Returns: refcounted label or NULL if not found available
555  */
556 static struct aa_label *x_to_label(struct aa_profile *profile,
557 				   const struct linux_binprm *bprm,
558 				   const char *name, u32 xindex,
559 				   const char **lookupname,
560 				   const char **info)
561 {
562 	struct aa_label *new = NULL;
563 	struct aa_ns *ns = profile->ns;
564 	u32 xtype = xindex & AA_X_TYPE_MASK;
565 	const char *stack = NULL;
566 
567 	switch (xtype) {
568 	case AA_X_NONE:
569 		/* fail exec unless ix || ux fallback - handled by caller */
570 		*lookupname = NULL;
571 		break;
572 	case AA_X_TABLE:
573 		/* TODO: fix when perm mapping done at unload */
574 		stack = profile->file.trans.table[xindex & AA_X_INDEX_MASK];
575 		if (*stack != '&') {
576 			/* released by caller */
577 			new = x_table_lookup(profile, xindex, lookupname);
578 			stack = NULL;
579 			break;
580 		}
581 		fallthrough;	/* to X_NAME */
582 	case AA_X_NAME:
583 		if (xindex & AA_X_CHILD)
584 			/* released by caller */
585 			new = find_attach(bprm, ns, &profile->base.profiles,
586 					  name, info);
587 		else
588 			/* released by caller */
589 			new = find_attach(bprm, ns, &ns->base.profiles,
590 					  name, info);
591 		*lookupname = name;
592 		break;
593 	}
594 
595 	if (!new) {
596 		if (xindex & AA_X_INHERIT) {
597 			/* (p|c|n)ix - don't change profile but do
598 			 * use the newest version
599 			 */
600 			*info = "ix fallback";
601 			/* no profile && no error */
602 			new = aa_get_newest_label(&profile->label);
603 		} else if (xindex & AA_X_UNCONFINED) {
604 			new = aa_get_newest_label(ns_unconfined(profile->ns));
605 			*info = "ux fallback";
606 		}
607 	}
608 
609 	if (new && stack) {
610 		/* base the stack on post domain transition */
611 		struct aa_label *base = new;
612 
613 		new = aa_label_parse(base, stack, GFP_KERNEL, true, false);
614 		if (IS_ERR(new))
615 			new = NULL;
616 		aa_put_label(base);
617 	}
618 
619 	/* released by caller */
620 	return new;
621 }
622 
623 static struct aa_label *profile_transition(struct aa_profile *profile,
624 					   const struct linux_binprm *bprm,
625 					   char *buffer, struct path_cond *cond,
626 					   bool *secure_exec)
627 {
628 	struct aa_label *new = NULL;
629 	const char *info = NULL, *name = NULL, *target = NULL;
630 	unsigned int state = profile->file.start;
631 	struct aa_perms perms = {};
632 	bool nonewprivs = false;
633 	int error = 0;
634 
635 	AA_BUG(!profile);
636 	AA_BUG(!bprm);
637 	AA_BUG(!buffer);
638 
639 	error = aa_path_name(&bprm->file->f_path, profile->path_flags, buffer,
640 			     &name, &info, profile->disconnected);
641 	if (error) {
642 		if (profile_unconfined(profile) ||
643 		    (profile->label.flags & FLAG_IX_ON_NAME_ERROR)) {
644 			AA_DEBUG("name lookup ix on error");
645 			error = 0;
646 			new = aa_get_newest_label(&profile->label);
647 		}
648 		name = bprm->filename;
649 		goto audit;
650 	}
651 
652 	if (profile_unconfined(profile)) {
653 		new = find_attach(bprm, profile->ns,
654 				  &profile->ns->base.profiles, name, &info);
655 		if (new) {
656 			AA_DEBUG("unconfined attached to new label");
657 			return new;
658 		}
659 		AA_DEBUG("unconfined exec no attachment");
660 		return aa_get_newest_label(&profile->label);
661 	}
662 
663 	/* find exec permissions for name */
664 	state = aa_str_perms(profile->file.dfa, state, name, cond, &perms);
665 	if (perms.allow & MAY_EXEC) {
666 		/* exec permission determine how to transition */
667 		new = x_to_label(profile, bprm, name, perms.xindex, &target,
668 				 &info);
669 		if (new && new->proxy == profile->label.proxy && info) {
670 			/* hack ix fallback - improve how this is detected */
671 			goto audit;
672 		} else if (!new) {
673 			error = -EACCES;
674 			info = "profile transition not found";
675 			/* remove MAY_EXEC to audit as failure */
676 			perms.allow &= ~MAY_EXEC;
677 		}
678 	} else if (COMPLAIN_MODE(profile)) {
679 		/* no exec permission - learning mode */
680 		struct aa_profile *new_profile = NULL;
681 
682 		new_profile = aa_new_null_profile(profile, false, name,
683 						  GFP_KERNEL);
684 		if (!new_profile) {
685 			error = -ENOMEM;
686 			info = "could not create null profile";
687 		} else {
688 			error = -EACCES;
689 			new = &new_profile->label;
690 		}
691 		perms.xindex |= AA_X_UNSAFE;
692 	} else
693 		/* fail exec */
694 		error = -EACCES;
695 
696 	if (!new)
697 		goto audit;
698 
699 
700 	if (!(perms.xindex & AA_X_UNSAFE)) {
701 		if (DEBUG_ON) {
702 			dbg_printk("apparmor: scrubbing environment variables"
703 				   " for %s profile=", name);
704 			aa_label_printk(new, GFP_KERNEL);
705 			dbg_printk("\n");
706 		}
707 		*secure_exec = true;
708 	}
709 
710 audit:
711 	aa_audit_file(profile, &perms, OP_EXEC, MAY_EXEC, name, target, new,
712 		      cond->uid, info, error);
713 	if (!new || nonewprivs) {
714 		aa_put_label(new);
715 		return ERR_PTR(error);
716 	}
717 
718 	return new;
719 }
720 
721 static int profile_onexec(struct aa_profile *profile, struct aa_label *onexec,
722 			  bool stack, const struct linux_binprm *bprm,
723 			  char *buffer, struct path_cond *cond,
724 			  bool *secure_exec)
725 {
726 	unsigned int state = profile->file.start;
727 	struct aa_perms perms = {};
728 	const char *xname = NULL, *info = "change_profile onexec";
729 	int error = -EACCES;
730 
731 	AA_BUG(!profile);
732 	AA_BUG(!onexec);
733 	AA_BUG(!bprm);
734 	AA_BUG(!buffer);
735 
736 	if (profile_unconfined(profile)) {
737 		/* change_profile on exec already granted */
738 		/*
739 		 * NOTE: Domain transitions from unconfined are allowed
740 		 * even when no_new_privs is set because this aways results
741 		 * in a further reduction of permissions.
742 		 */
743 		return 0;
744 	}
745 
746 	error = aa_path_name(&bprm->file->f_path, profile->path_flags, buffer,
747 			     &xname, &info, profile->disconnected);
748 	if (error) {
749 		if (profile_unconfined(profile) ||
750 		    (profile->label.flags & FLAG_IX_ON_NAME_ERROR)) {
751 			AA_DEBUG("name lookup ix on error");
752 			error = 0;
753 		}
754 		xname = bprm->filename;
755 		goto audit;
756 	}
757 
758 	/* find exec permissions for name */
759 	state = aa_str_perms(profile->file.dfa, state, xname, cond, &perms);
760 	if (!(perms.allow & AA_MAY_ONEXEC)) {
761 		info = "no change_onexec valid for executable";
762 		goto audit;
763 	}
764 	/* test if this exec can be paired with change_profile onexec.
765 	 * onexec permission is linked to exec with a standard pairing
766 	 * exec\0change_profile
767 	 */
768 	state = aa_dfa_null_transition(profile->file.dfa, state);
769 	error = change_profile_perms(profile, onexec, stack, AA_MAY_ONEXEC,
770 				     state, &perms);
771 	if (error) {
772 		perms.allow &= ~AA_MAY_ONEXEC;
773 		goto audit;
774 	}
775 
776 	if (!(perms.xindex & AA_X_UNSAFE)) {
777 		if (DEBUG_ON) {
778 			dbg_printk("apparmor: scrubbing environment "
779 				   "variables for %s label=", xname);
780 			aa_label_printk(onexec, GFP_KERNEL);
781 			dbg_printk("\n");
782 		}
783 		*secure_exec = true;
784 	}
785 
786 audit:
787 	return aa_audit_file(profile, &perms, OP_EXEC, AA_MAY_ONEXEC, xname,
788 			     NULL, onexec, cond->uid, info, error);
789 }
790 
791 /* ensure none ns domain transitions are correctly applied with onexec */
792 
793 static struct aa_label *handle_onexec(struct aa_label *label,
794 				      struct aa_label *onexec, bool stack,
795 				      const struct linux_binprm *bprm,
796 				      char *buffer, struct path_cond *cond,
797 				      bool *unsafe)
798 {
799 	struct aa_profile *profile;
800 	struct aa_label *new;
801 	int error;
802 
803 	AA_BUG(!label);
804 	AA_BUG(!onexec);
805 	AA_BUG(!bprm);
806 	AA_BUG(!buffer);
807 
808 	if (!stack) {
809 		error = fn_for_each_in_ns(label, profile,
810 				profile_onexec(profile, onexec, stack,
811 					       bprm, buffer, cond, unsafe));
812 		if (error)
813 			return ERR_PTR(error);
814 		new = fn_label_build_in_ns(label, profile, GFP_KERNEL,
815 				aa_get_newest_label(onexec),
816 				profile_transition(profile, bprm, buffer,
817 						   cond, unsafe));
818 
819 	} else {
820 		/* TODO: determine how much we want to loosen this */
821 		error = fn_for_each_in_ns(label, profile,
822 				profile_onexec(profile, onexec, stack, bprm,
823 					       buffer, cond, unsafe));
824 		if (error)
825 			return ERR_PTR(error);
826 		new = fn_label_build_in_ns(label, profile, GFP_KERNEL,
827 				aa_label_merge(&profile->label, onexec,
828 					       GFP_KERNEL),
829 				profile_transition(profile, bprm, buffer,
830 						   cond, unsafe));
831 	}
832 
833 	if (new)
834 		return new;
835 
836 	/* TODO: get rid of GLOBAL_ROOT_UID */
837 	error = fn_for_each_in_ns(label, profile,
838 			aa_audit_file(profile, &nullperms, OP_CHANGE_ONEXEC,
839 				      AA_MAY_ONEXEC, bprm->filename, NULL,
840 				      onexec, GLOBAL_ROOT_UID,
841 				      "failed to build target label", -ENOMEM));
842 	return ERR_PTR(error);
843 }
844 
845 /**
846  * apparmor_bprm_creds_for_exec - Update the new creds on the bprm struct
847  * @bprm: binprm for the exec  (NOT NULL)
848  *
849  * Returns: %0 or error on failure
850  *
851  * TODO: once the other paths are done see if we can't refactor into a fn
852  */
853 int apparmor_bprm_creds_for_exec(struct linux_binprm *bprm)
854 {
855 	struct aa_task_ctx *ctx;
856 	struct aa_label *label, *new = NULL;
857 	struct aa_profile *profile;
858 	char *buffer = NULL;
859 	const char *info = NULL;
860 	int error = 0;
861 	bool unsafe = false;
862 	kuid_t i_uid = i_uid_into_mnt(file_mnt_user_ns(bprm->file),
863 				      file_inode(bprm->file));
864 	struct path_cond cond = {
865 		i_uid,
866 		file_inode(bprm->file)->i_mode
867 	};
868 
869 	ctx = task_ctx(current);
870 	AA_BUG(!cred_label(bprm->cred));
871 	AA_BUG(!ctx);
872 
873 	label = aa_get_newest_label(cred_label(bprm->cred));
874 
875 	/*
876 	 * Detect no new privs being set, and store the label it
877 	 * occurred under. Ideally this would happen when nnp
878 	 * is set but there isn't a good way to do that yet.
879 	 *
880 	 * Testing for unconfined must be done before the subset test
881 	 */
882 	if ((bprm->unsafe & LSM_UNSAFE_NO_NEW_PRIVS) && !unconfined(label) &&
883 	    !ctx->nnp)
884 		ctx->nnp = aa_get_label(label);
885 
886 	/* buffer freed below, name is pointer into buffer */
887 	buffer = aa_get_buffer(false);
888 	if (!buffer) {
889 		error = -ENOMEM;
890 		goto done;
891 	}
892 
893 	/* Test for onexec first as onexec override other x transitions. */
894 	if (ctx->onexec)
895 		new = handle_onexec(label, ctx->onexec, ctx->token,
896 				    bprm, buffer, &cond, &unsafe);
897 	else
898 		new = fn_label_build(label, profile, GFP_KERNEL,
899 				profile_transition(profile, bprm, buffer,
900 						   &cond, &unsafe));
901 
902 	AA_BUG(!new);
903 	if (IS_ERR(new)) {
904 		error = PTR_ERR(new);
905 		goto done;
906 	} else if (!new) {
907 		error = -ENOMEM;
908 		goto done;
909 	}
910 
911 	/* Policy has specified a domain transitions. If no_new_privs and
912 	 * confined ensure the transition is to confinement that is subset
913 	 * of the confinement when the task entered no new privs.
914 	 *
915 	 * NOTE: Domain transitions from unconfined and to stacked
916 	 * subsets are allowed even when no_new_privs is set because this
917 	 * aways results in a further reduction of permissions.
918 	 */
919 	if ((bprm->unsafe & LSM_UNSAFE_NO_NEW_PRIVS) &&
920 	    !unconfined(label) &&
921 	    !aa_label_is_unconfined_subset(new, ctx->nnp)) {
922 		error = -EPERM;
923 		info = "no new privs";
924 		goto audit;
925 	}
926 
927 	if (bprm->unsafe & LSM_UNSAFE_SHARE) {
928 		/* FIXME: currently don't mediate shared state */
929 		;
930 	}
931 
932 	if (bprm->unsafe & (LSM_UNSAFE_PTRACE)) {
933 		/* TODO: test needs to be profile of label to new */
934 		error = may_change_ptraced_domain(new, &info);
935 		if (error)
936 			goto audit;
937 	}
938 
939 	if (unsafe) {
940 		if (DEBUG_ON) {
941 			dbg_printk("scrubbing environment variables for %s "
942 				   "label=", bprm->filename);
943 			aa_label_printk(new, GFP_KERNEL);
944 			dbg_printk("\n");
945 		}
946 		bprm->secureexec = 1;
947 	}
948 
949 	if (label->proxy != new->proxy) {
950 		/* when transitioning clear unsafe personality bits */
951 		if (DEBUG_ON) {
952 			dbg_printk("apparmor: clearing unsafe personality "
953 				   "bits. %s label=", bprm->filename);
954 			aa_label_printk(new, GFP_KERNEL);
955 			dbg_printk("\n");
956 		}
957 		bprm->per_clear |= PER_CLEAR_ON_SETID;
958 	}
959 	aa_put_label(cred_label(bprm->cred));
960 	/* transfer reference, released when cred is freed */
961 	set_cred_label(bprm->cred, new);
962 
963 done:
964 	aa_put_label(label);
965 	aa_put_buffer(buffer);
966 
967 	return error;
968 
969 audit:
970 	error = fn_for_each(label, profile,
971 			aa_audit_file(profile, &nullperms, OP_EXEC, MAY_EXEC,
972 				      bprm->filename, NULL, new,
973 				      i_uid, info, error));
974 	aa_put_label(new);
975 	goto done;
976 }
977 
978 /*
979  * Functions for self directed profile change
980  */
981 
982 
983 /* helper fn for change_hat
984  *
985  * Returns: label for hat transition OR ERR_PTR.  Does NOT return NULL
986  */
987 static struct aa_label *build_change_hat(struct aa_profile *profile,
988 					 const char *name, bool sibling)
989 {
990 	struct aa_profile *root, *hat = NULL;
991 	const char *info = NULL;
992 	int error = 0;
993 
994 	if (sibling && PROFILE_IS_HAT(profile)) {
995 		root = aa_get_profile_rcu(&profile->parent);
996 	} else if (!sibling && !PROFILE_IS_HAT(profile)) {
997 		root = aa_get_profile(profile);
998 	} else {
999 		info = "conflicting target types";
1000 		error = -EPERM;
1001 		goto audit;
1002 	}
1003 
1004 	hat = aa_find_child(root, name);
1005 	if (!hat) {
1006 		error = -ENOENT;
1007 		if (COMPLAIN_MODE(profile)) {
1008 			hat = aa_new_null_profile(profile, true, name,
1009 						  GFP_KERNEL);
1010 			if (!hat) {
1011 				info = "failed null profile create";
1012 				error = -ENOMEM;
1013 			}
1014 		}
1015 	}
1016 	aa_put_profile(root);
1017 
1018 audit:
1019 	aa_audit_file(profile, &nullperms, OP_CHANGE_HAT, AA_MAY_CHANGEHAT,
1020 		      name, hat ? hat->base.hname : NULL,
1021 		      hat ? &hat->label : NULL, GLOBAL_ROOT_UID, info,
1022 		      error);
1023 	if (!hat || (error && error != -ENOENT))
1024 		return ERR_PTR(error);
1025 	/* if hat && error - complain mode, already audited and we adjust for
1026 	 * complain mode allow by returning hat->label
1027 	 */
1028 	return &hat->label;
1029 }
1030 
1031 /* helper fn for changing into a hat
1032  *
1033  * Returns: label for hat transition or ERR_PTR. Does not return NULL
1034  */
1035 static struct aa_label *change_hat(struct aa_label *label, const char *hats[],
1036 				   int count, int flags)
1037 {
1038 	struct aa_profile *profile, *root, *hat = NULL;
1039 	struct aa_label *new;
1040 	struct label_it it;
1041 	bool sibling = false;
1042 	const char *name, *info = NULL;
1043 	int i, error;
1044 
1045 	AA_BUG(!label);
1046 	AA_BUG(!hats);
1047 	AA_BUG(count < 1);
1048 
1049 	if (PROFILE_IS_HAT(labels_profile(label)))
1050 		sibling = true;
1051 
1052 	/*find first matching hat */
1053 	for (i = 0; i < count && !hat; i++) {
1054 		name = hats[i];
1055 		label_for_each_in_ns(it, labels_ns(label), label, profile) {
1056 			if (sibling && PROFILE_IS_HAT(profile)) {
1057 				root = aa_get_profile_rcu(&profile->parent);
1058 			} else if (!sibling && !PROFILE_IS_HAT(profile)) {
1059 				root = aa_get_profile(profile);
1060 			} else {	/* conflicting change type */
1061 				info = "conflicting targets types";
1062 				error = -EPERM;
1063 				goto fail;
1064 			}
1065 			hat = aa_find_child(root, name);
1066 			aa_put_profile(root);
1067 			if (!hat) {
1068 				if (!COMPLAIN_MODE(profile))
1069 					goto outer_continue;
1070 				/* complain mode succeed as if hat */
1071 			} else if (!PROFILE_IS_HAT(hat)) {
1072 				info = "target not hat";
1073 				error = -EPERM;
1074 				aa_put_profile(hat);
1075 				goto fail;
1076 			}
1077 			aa_put_profile(hat);
1078 		}
1079 		/* found a hat for all profiles in ns */
1080 		goto build;
1081 outer_continue:
1082 	;
1083 	}
1084 	/* no hats that match, find appropriate error
1085 	 *
1086 	 * In complain mode audit of the failure is based off of the first
1087 	 * hat supplied.  This is done due how userspace interacts with
1088 	 * change_hat.
1089 	 */
1090 	name = NULL;
1091 	label_for_each_in_ns(it, labels_ns(label), label, profile) {
1092 		if (!list_empty(&profile->base.profiles)) {
1093 			info = "hat not found";
1094 			error = -ENOENT;
1095 			goto fail;
1096 		}
1097 	}
1098 	info = "no hats defined";
1099 	error = -ECHILD;
1100 
1101 fail:
1102 	label_for_each_in_ns(it, labels_ns(label), label, profile) {
1103 		/*
1104 		 * no target as it has failed to be found or built
1105 		 *
1106 		 * change_hat uses probing and should not log failures
1107 		 * related to missing hats
1108 		 */
1109 		/* TODO: get rid of GLOBAL_ROOT_UID */
1110 		if (count > 1 || COMPLAIN_MODE(profile)) {
1111 			aa_audit_file(profile, &nullperms, OP_CHANGE_HAT,
1112 				      AA_MAY_CHANGEHAT, name, NULL, NULL,
1113 				      GLOBAL_ROOT_UID, info, error);
1114 		}
1115 	}
1116 	return ERR_PTR(error);
1117 
1118 build:
1119 	new = fn_label_build_in_ns(label, profile, GFP_KERNEL,
1120 				   build_change_hat(profile, name, sibling),
1121 				   aa_get_label(&profile->label));
1122 	if (!new) {
1123 		info = "label build failed";
1124 		error = -ENOMEM;
1125 		goto fail;
1126 	} /* else if (IS_ERR) build_change_hat has logged error so return new */
1127 
1128 	return new;
1129 }
1130 
1131 /**
1132  * aa_change_hat - change hat to/from subprofile
1133  * @hats: vector of hat names to try changing into (MAYBE NULL if @count == 0)
1134  * @count: number of hat names in @hats
1135  * @token: magic value to validate the hat change
1136  * @flags: flags affecting behavior of the change
1137  *
1138  * Returns %0 on success, error otherwise.
1139  *
1140  * Change to the first profile specified in @hats that exists, and store
1141  * the @hat_magic in the current task context.  If the count == 0 and the
1142  * @token matches that stored in the current task context, return to the
1143  * top level profile.
1144  *
1145  * change_hat only applies to profiles in the current ns, and each profile
1146  * in the ns must make the same transition otherwise change_hat will fail.
1147  */
1148 int aa_change_hat(const char *hats[], int count, u64 token, int flags)
1149 {
1150 	const struct cred *cred;
1151 	struct aa_task_ctx *ctx = task_ctx(current);
1152 	struct aa_label *label, *previous, *new = NULL, *target = NULL;
1153 	struct aa_profile *profile;
1154 	struct aa_perms perms = {};
1155 	const char *info = NULL;
1156 	int error = 0;
1157 
1158 	/* released below */
1159 	cred = get_current_cred();
1160 	label = aa_get_newest_cred_label(cred);
1161 	previous = aa_get_newest_label(ctx->previous);
1162 
1163 	/*
1164 	 * Detect no new privs being set, and store the label it
1165 	 * occurred under. Ideally this would happen when nnp
1166 	 * is set but there isn't a good way to do that yet.
1167 	 *
1168 	 * Testing for unconfined must be done before the subset test
1169 	 */
1170 	if (task_no_new_privs(current) && !unconfined(label) && !ctx->nnp)
1171 		ctx->nnp = aa_get_label(label);
1172 
1173 	if (unconfined(label)) {
1174 		info = "unconfined can not change_hat";
1175 		error = -EPERM;
1176 		goto fail;
1177 	}
1178 
1179 	if (count) {
1180 		new = change_hat(label, hats, count, flags);
1181 		AA_BUG(!new);
1182 		if (IS_ERR(new)) {
1183 			error = PTR_ERR(new);
1184 			new = NULL;
1185 			/* already audited */
1186 			goto out;
1187 		}
1188 
1189 		error = may_change_ptraced_domain(new, &info);
1190 		if (error)
1191 			goto fail;
1192 
1193 		/*
1194 		 * no new privs prevents domain transitions that would
1195 		 * reduce restrictions.
1196 		 */
1197 		if (task_no_new_privs(current) && !unconfined(label) &&
1198 		    !aa_label_is_unconfined_subset(new, ctx->nnp)) {
1199 			/* not an apparmor denial per se, so don't log it */
1200 			AA_DEBUG("no_new_privs - change_hat denied");
1201 			error = -EPERM;
1202 			goto out;
1203 		}
1204 
1205 		if (flags & AA_CHANGE_TEST)
1206 			goto out;
1207 
1208 		target = new;
1209 		error = aa_set_current_hat(new, token);
1210 		if (error == -EACCES)
1211 			/* kill task in case of brute force attacks */
1212 			goto kill;
1213 	} else if (previous && !(flags & AA_CHANGE_TEST)) {
1214 		/*
1215 		 * no new privs prevents domain transitions that would
1216 		 * reduce restrictions.
1217 		 */
1218 		if (task_no_new_privs(current) && !unconfined(label) &&
1219 		    !aa_label_is_unconfined_subset(previous, ctx->nnp)) {
1220 			/* not an apparmor denial per se, so don't log it */
1221 			AA_DEBUG("no_new_privs - change_hat denied");
1222 			error = -EPERM;
1223 			goto out;
1224 		}
1225 
1226 		/* Return to saved label.  Kill task if restore fails
1227 		 * to avoid brute force attacks
1228 		 */
1229 		target = previous;
1230 		error = aa_restore_previous_label(token);
1231 		if (error) {
1232 			if (error == -EACCES)
1233 				goto kill;
1234 			goto fail;
1235 		}
1236 	} /* else ignore @flags && restores when there is no saved profile */
1237 
1238 out:
1239 	aa_put_label(new);
1240 	aa_put_label(previous);
1241 	aa_put_label(label);
1242 	put_cred(cred);
1243 
1244 	return error;
1245 
1246 kill:
1247 	info = "failed token match";
1248 	perms.kill = AA_MAY_CHANGEHAT;
1249 
1250 fail:
1251 	fn_for_each_in_ns(label, profile,
1252 		aa_audit_file(profile, &perms, OP_CHANGE_HAT,
1253 			      AA_MAY_CHANGEHAT, NULL, NULL, target,
1254 			      GLOBAL_ROOT_UID, info, error));
1255 
1256 	goto out;
1257 }
1258 
1259 
1260 static int change_profile_perms_wrapper(const char *op, const char *name,
1261 					struct aa_profile *profile,
1262 					struct aa_label *target, bool stack,
1263 					u32 request, struct aa_perms *perms)
1264 {
1265 	const char *info = NULL;
1266 	int error = 0;
1267 
1268 	if (!error)
1269 		error = change_profile_perms(profile, target, stack, request,
1270 					     profile->file.start, perms);
1271 	if (error)
1272 		error = aa_audit_file(profile, perms, op, request, name,
1273 				      NULL, target, GLOBAL_ROOT_UID, info,
1274 				      error);
1275 
1276 	return error;
1277 }
1278 
1279 /**
1280  * aa_change_profile - perform a one-way profile transition
1281  * @fqname: name of profile may include namespace (NOT NULL)
1282  * @onexec: whether this transition is to take place immediately or at exec
1283  * @flags: flags affecting change behavior
1284  *
1285  * Change to new profile @name.  Unlike with hats, there is no way
1286  * to change back.  If @name isn't specified the current profile name is
1287  * used.
1288  * If @onexec then the transition is delayed until
1289  * the next exec.
1290  *
1291  * Returns %0 on success, error otherwise.
1292  */
1293 int aa_change_profile(const char *fqname, int flags)
1294 {
1295 	struct aa_label *label, *new = NULL, *target = NULL;
1296 	struct aa_profile *profile;
1297 	struct aa_perms perms = {};
1298 	const char *info = NULL;
1299 	const char *auditname = fqname;		/* retain leading & if stack */
1300 	bool stack = flags & AA_CHANGE_STACK;
1301 	struct aa_task_ctx *ctx = task_ctx(current);
1302 	int error = 0;
1303 	char *op;
1304 	u32 request;
1305 
1306 	label = aa_get_current_label();
1307 
1308 	/*
1309 	 * Detect no new privs being set, and store the label it
1310 	 * occurred under. Ideally this would happen when nnp
1311 	 * is set but there isn't a good way to do that yet.
1312 	 *
1313 	 * Testing for unconfined must be done before the subset test
1314 	 */
1315 	if (task_no_new_privs(current) && !unconfined(label) && !ctx->nnp)
1316 		ctx->nnp = aa_get_label(label);
1317 
1318 	if (!fqname || !*fqname) {
1319 		aa_put_label(label);
1320 		AA_DEBUG("no profile name");
1321 		return -EINVAL;
1322 	}
1323 
1324 	if (flags & AA_CHANGE_ONEXEC) {
1325 		request = AA_MAY_ONEXEC;
1326 		if (stack)
1327 			op = OP_STACK_ONEXEC;
1328 		else
1329 			op = OP_CHANGE_ONEXEC;
1330 	} else {
1331 		request = AA_MAY_CHANGE_PROFILE;
1332 		if (stack)
1333 			op = OP_STACK;
1334 		else
1335 			op = OP_CHANGE_PROFILE;
1336 	}
1337 
1338 	if (*fqname == '&') {
1339 		stack = true;
1340 		/* don't have label_parse() do stacking */
1341 		fqname++;
1342 	}
1343 	target = aa_label_parse(label, fqname, GFP_KERNEL, true, false);
1344 	if (IS_ERR(target)) {
1345 		struct aa_profile *tprofile;
1346 
1347 		info = "label not found";
1348 		error = PTR_ERR(target);
1349 		target = NULL;
1350 		/*
1351 		 * TODO: fixme using labels_profile is not right - do profile
1352 		 * per complain profile
1353 		 */
1354 		if ((flags & AA_CHANGE_TEST) ||
1355 		    !COMPLAIN_MODE(labels_profile(label)))
1356 			goto audit;
1357 		/* released below */
1358 		tprofile = aa_new_null_profile(labels_profile(label), false,
1359 					       fqname, GFP_KERNEL);
1360 		if (!tprofile) {
1361 			info = "failed null profile create";
1362 			error = -ENOMEM;
1363 			goto audit;
1364 		}
1365 		target = &tprofile->label;
1366 		goto check;
1367 	}
1368 
1369 	/*
1370 	 * self directed transitions only apply to current policy ns
1371 	 * TODO: currently requiring perms for stacking and straight change
1372 	 *       stacking doesn't strictly need this. Determine how much
1373 	 *       we want to loosen this restriction for stacking
1374 	 *
1375 	 * if (!stack) {
1376 	 */
1377 	error = fn_for_each_in_ns(label, profile,
1378 			change_profile_perms_wrapper(op, auditname,
1379 						     profile, target, stack,
1380 						     request, &perms));
1381 	if (error)
1382 		/* auditing done in change_profile_perms_wrapper */
1383 		goto out;
1384 
1385 	/* } */
1386 
1387 check:
1388 	/* check if tracing task is allowed to trace target domain */
1389 	error = may_change_ptraced_domain(target, &info);
1390 	if (error && !fn_for_each_in_ns(label, profile,
1391 					COMPLAIN_MODE(profile)))
1392 		goto audit;
1393 
1394 	/* TODO: add permission check to allow this
1395 	 * if ((flags & AA_CHANGE_ONEXEC) && !current_is_single_threaded()) {
1396 	 *      info = "not a single threaded task";
1397 	 *      error = -EACCES;
1398 	 *      goto audit;
1399 	 * }
1400 	 */
1401 	if (flags & AA_CHANGE_TEST)
1402 		goto out;
1403 
1404 	/* stacking is always a subset, so only check the nonstack case */
1405 	if (!stack) {
1406 		new = fn_label_build_in_ns(label, profile, GFP_KERNEL,
1407 					   aa_get_label(target),
1408 					   aa_get_label(&profile->label));
1409 		/*
1410 		 * no new privs prevents domain transitions that would
1411 		 * reduce restrictions.
1412 		 */
1413 		if (task_no_new_privs(current) && !unconfined(label) &&
1414 		    !aa_label_is_unconfined_subset(new, ctx->nnp)) {
1415 			/* not an apparmor denial per se, so don't log it */
1416 			AA_DEBUG("no_new_privs - change_hat denied");
1417 			error = -EPERM;
1418 			goto out;
1419 		}
1420 	}
1421 
1422 	if (!(flags & AA_CHANGE_ONEXEC)) {
1423 		/* only transition profiles in the current ns */
1424 		if (stack)
1425 			new = aa_label_merge(label, target, GFP_KERNEL);
1426 		if (IS_ERR_OR_NULL(new)) {
1427 			info = "failed to build target label";
1428 			if (!new)
1429 				error = -ENOMEM;
1430 			else
1431 				error = PTR_ERR(new);
1432 			new = NULL;
1433 			perms.allow = 0;
1434 			goto audit;
1435 		}
1436 		error = aa_replace_current_label(new);
1437 	} else {
1438 		if (new) {
1439 			aa_put_label(new);
1440 			new = NULL;
1441 		}
1442 
1443 		/* full transition will be built in exec path */
1444 		error = aa_set_current_onexec(target, stack);
1445 	}
1446 
1447 audit:
1448 	error = fn_for_each_in_ns(label, profile,
1449 			aa_audit_file(profile, &perms, op, request, auditname,
1450 				      NULL, new ? new : target,
1451 				      GLOBAL_ROOT_UID, info, error));
1452 
1453 out:
1454 	aa_put_label(new);
1455 	aa_put_label(target);
1456 	aa_put_label(label);
1457 
1458 	return error;
1459 }
1460