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