1 // SPDX-License-Identifier: GPL-2.0-only
3 * AppArmor security module
5 * This file contains AppArmor policy attachment and domain transitions
7 * Copyright (C) 2002-2008 Novell/SUSE
8 * Copyright 2009-2010 Canonical Ltd.
11 #include <linux/errno.h>
12 #include <linux/fdtable.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>
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"
33 * aa_free_domain_entries - free entries in a domain table
34 * @domain: the domain table to free (MAYBE NULL)
36 void aa_free_domain_entries(struct aa_domain *domain)
43 for (i = 0; i < domain->size; i++)
44 kfree_sensitive(domain->table[i]);
45 kfree_sensitive(domain->table);
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
55 * Check if current is ptraced and if so if the tracing task is allowed
56 * to trace the new domain
58 * Returns: %0 or error if change not allowed
60 static int may_change_ptraced_domain(struct aa_label *to_label,
63 struct task_struct *tracer;
64 struct aa_label *tracerl = NULL;
68 tracer = ptrace_parent(current);
71 tracerl = aa_get_task_label(tracer);
74 if (!tracer || unconfined(tracerl))
77 error = aa_may_ptrace(tracerl, to_label, PTRACE_MODE_ATTACH);
81 aa_put_label(tracerl);
84 *info = "ptrace prevents transition";
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
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
98 static inline unsigned int match_component(struct aa_profile *profile,
99 struct aa_profile *tp,
100 bool stack, unsigned int state)
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);
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);
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 * @state: 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
127 * Returns: 0 on success else ERROR
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.
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)
138 struct aa_profile *tp;
140 struct path_cond cond = { };
142 /* find first subcomponent that is visible */
143 label_for_each(i, label, tp) {
144 if (!aa_ns_visible(profile->ns, tp->ns, subns))
146 state = match_component(profile, tp, stack, state);
152 /* no component visible */
157 label_for_each_cont(i, label, tp) {
158 if (!aa_ns_visible(profile->ns, tp->ns, subns))
160 state = aa_dfa_match(profile->file.dfa, state, "//&");
161 state = match_component(profile, tp, false, state);
165 *perms = aa_compute_fperms(profile->file.dfa, state, &cond);
166 aa_apply_modes_to_perms(profile, perms);
167 if ((perms->allow & request) != request)
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
187 * Returns: 0 on success else ERROR
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.
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)
198 struct aa_profile *tp;
201 struct path_cond cond = { };
202 unsigned int state = 0;
204 /* find first subcomponent to test */
205 label_for_each(i, label, tp) {
206 if (!aa_ns_visible(profile->ns, tp->ns, subns))
208 state = match_component(profile, tp, stack, start);
214 /* no subcomponents visible - no change in perms */
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))
224 state = match_component(profile, tp, stack, start);
227 tmp = aa_compute_fperms(profile->file.dfa, state, &cond);
228 aa_apply_modes_to_perms(profile, &tmp);
229 aa_perms_accum(perms, &tmp);
232 if ((perms->allow & request) != request)
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)
252 * Returns: the state the match finished in, may be the none matching state
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)
261 error = label_compound_match(profile, label, stack, state, subns,
267 return label_components_match(profile, label, stack, state, subns,
271 /******* end TODO: dedup *****/
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
282 * Returns: permission set
284 * currently only matches full label A//&B//&C or individual components A, B, C
285 * not arbitrary combinations. Eg. A//&B, C
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)
292 if (profile_unconfined(profile)) {
293 perms->allow = AA_MAY_CHANGE_PROFILE | AA_MAY_ONEXEC;
294 perms->audit = perms->quiet = perms->kill = 0;
298 /* TODO: add profile in ns screening */
299 return label_match(profile, target, stack, start, true, request, perms);
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
308 * Returns: number of extended attributes that matched, or < 0 on error
310 static int aa_xattrs_match(const struct linux_binprm *bprm,
311 struct aa_profile *profile, unsigned int state)
317 int value_size = 0, ret = profile->xattr_count;
319 if (!bprm || !profile->xattr_count)
323 /* transition from exec match to xattr set */
324 state = aa_dfa_outofband_transition(profile->xmatch, state);
325 d = bprm->file->f_path.dentry;
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);
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
338 state = aa_dfa_null_transition(profile->xmatch, state);
339 /* Check xattr value */
340 state = aa_dfa_match_len(profile->xmatch, state, value,
342 perm = dfa_user_allow(profile->xmatch, state);
343 if (!(perm & MAY_EXEC)) {
348 /* transition to next element */
349 state = aa_dfa_outofband_transition(profile->xmatch, state);
352 * No xattr match, so verify if transition to
353 * next element was valid. IFF so the xattr
360 /* don't count missing optional xattr as matched */
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)
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.
383 * Requires: @head not be shared or have appropriate locks held
385 * Returns: label or NULL if no match found
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)
391 int candidate_len = 0, candidate_xattrs = 0;
392 bool conflict = false;
393 struct aa_profile *profile, *candidate = NULL;
400 list_for_each_entry_rcu(profile, head, base.list) {
401 if (profile->label.flags & FLAG_NULL &&
402 &profile->label == ns_unconfined(profile->ns))
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
416 if (profile->xmatch) {
417 unsigned int state, count;
420 state = aa_dfa_leftmatch(profile->xmatch, DFA_START,
422 perm = dfa_user_allow(profile->xmatch, state);
423 /* any accepting state means a valid match. */
424 if (perm & MAY_EXEC) {
427 if (count < candidate_len)
430 if (bprm && profile->xattr_count) {
431 long rev = READ_ONCE(ns->revision);
433 if (!aa_get_profile_not0(profile))
436 ret = aa_xattrs_match(bprm, profile,
439 aa_put_profile(profile);
441 READ_ONCE(ns->revision))
445 * Fail matching if the xattrs don't
452 * TODO: allow for more flexible best match
454 * The new match isn't more specific
455 * than the current best match
457 if (count == candidate_len &&
458 ret <= candidate_xattrs) {
459 /* Match is equivalent, so conflict */
460 if (ret == candidate_xattrs)
465 /* Either the same length with more matching
466 * xattrs, or a longer match
469 candidate_len = max(count, profile->xmatch_len);
470 candidate_xattrs = ret;
473 } else if (!strcmp(profile->base.name, name)) {
475 * old exact non-re match, without conditionals such
476 * as xattrs. no more searching required
483 if (!candidate || conflict) {
485 *info = "conflicting profile attachments";
491 candidate = aa_get_newest_profile(candidate);
494 return &candidate->label;
497 static const char *next_name(int xtype, const char *name)
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)
508 * Returns: refcounted label, or NULL on failure (MAYBE NULL)
510 struct aa_label *x_table_lookup(struct aa_profile *profile, u32 xindex,
513 struct aa_label *label = NULL;
514 u32 xtype = xindex & AA_X_TYPE_MASK;
515 int index = xindex & AA_X_INDEX_MASK;
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
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);
530 label = &new_profile->label;
533 label = aa_label_parse(&profile->label, *name, GFP_KERNEL,
539 /* released by caller */
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)
552 * find label for a transition index
554 * Returns: refcounted label or NULL if not found available
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,
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;
569 /* fail exec unless ix || ux fallback - handled by caller */
573 /* TODO: fix when perm mapping done at unload */
574 stack = profile->file.trans.table[xindex & AA_X_INDEX_MASK];
576 /* released by caller */
577 new = x_table_lookup(profile, xindex, lookupname);
581 fallthrough; /* to X_NAME */
583 if (xindex & AA_X_CHILD)
584 /* released by caller */
585 new = find_attach(bprm, ns, &profile->base.profiles,
588 /* released by caller */
589 new = find_attach(bprm, ns, &ns->base.profiles,
596 if (xindex & AA_X_INHERIT) {
597 /* (p|c|n)ix - don't change profile but do
598 * use the newest version
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";
610 /* base the stack on post domain transition */
611 struct aa_label *base = new;
613 new = aa_label_parse(base, stack, GFP_KERNEL, true, false);
619 /* released by caller */
623 static struct aa_label *profile_transition(struct aa_profile *profile,
624 const struct linux_binprm *bprm,
625 char *buffer, struct path_cond *cond,
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;
639 error = aa_path_name(&bprm->file->f_path, profile->path_flags, buffer,
640 &name, &info, profile->disconnected);
642 if (profile_unconfined(profile) ||
643 (profile->label.flags & FLAG_IX_ON_NAME_ERROR)) {
644 AA_DEBUG("name lookup ix on error");
646 new = aa_get_newest_label(&profile->label);
648 name = bprm->filename;
652 if (profile_unconfined(profile)) {
653 new = find_attach(bprm, profile->ns,
654 &profile->ns->base.profiles, name, &info);
656 AA_DEBUG("unconfined attached to new label");
659 AA_DEBUG("unconfined exec no attachment");
660 return aa_get_newest_label(&profile->label);
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,
669 if (new && new->proxy == profile->label.proxy && info) {
670 /* hack ix fallback - improve how this is detected */
674 info = "profile transition not found";
675 /* remove MAY_EXEC to audit as failure */
676 perms.allow &= ~MAY_EXEC;
678 } else if (COMPLAIN_MODE(profile)) {
679 /* no exec permission - learning mode */
680 struct aa_profile *new_profile = NULL;
682 new_profile = aa_new_null_profile(profile, false, name,
686 info = "could not create null profile";
689 new = &new_profile->label;
691 perms.xindex |= AA_X_UNSAFE;
700 if (!(perms.xindex & AA_X_UNSAFE)) {
702 dbg_printk("apparmor: scrubbing environment variables"
703 " for %s profile=", name);
704 aa_label_printk(new, GFP_KERNEL);
711 aa_audit_file(profile, &perms, OP_EXEC, MAY_EXEC, name, target, new,
712 cond->uid, info, error);
713 if (!new || nonewprivs) {
715 return ERR_PTR(error);
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,
726 unsigned int state = profile->file.start;
727 struct aa_perms perms = {};
728 const char *xname = NULL, *info = "change_profile onexec";
736 if (profile_unconfined(profile)) {
737 /* change_profile on exec already granted */
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.
746 error = aa_path_name(&bprm->file->f_path, profile->path_flags, buffer,
747 &xname, &info, profile->disconnected);
749 if (profile_unconfined(profile) ||
750 (profile->label.flags & FLAG_IX_ON_NAME_ERROR)) {
751 AA_DEBUG("name lookup ix on error");
754 xname = bprm->filename;
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";
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
768 state = aa_dfa_null_transition(profile->file.dfa, state);
769 error = change_profile_perms(profile, onexec, stack, AA_MAY_ONEXEC,
772 perms.allow &= ~AA_MAY_ONEXEC;
776 if (!(perms.xindex & AA_X_UNSAFE)) {
778 dbg_printk("apparmor: scrubbing environment "
779 "variables for %s label=", xname);
780 aa_label_printk(onexec, GFP_KERNEL);
787 return aa_audit_file(profile, &perms, OP_EXEC, AA_MAY_ONEXEC, xname,
788 NULL, onexec, cond->uid, info, error);
791 /* ensure none ns domain transitions are correctly applied with onexec */
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,
799 struct aa_profile *profile;
800 struct aa_label *new;
809 error = fn_for_each_in_ns(label, profile,
810 profile_onexec(profile, onexec, stack,
811 bprm, buffer, cond, unsafe));
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,
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));
825 return ERR_PTR(error);
826 new = fn_label_build_in_ns(label, profile, GFP_KERNEL,
827 aa_label_merge(&profile->label, onexec,
829 profile_transition(profile, bprm, buffer,
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);
846 * apparmor_bprm_creds_for_exec - Update the new creds on the bprm struct
847 * @bprm: binprm for the exec (NOT NULL)
849 * Returns: %0 or error on failure
851 * TODO: once the other paths are done see if we can't refactor into a fn
853 int apparmor_bprm_creds_for_exec(struct linux_binprm *bprm)
855 struct aa_task_ctx *ctx;
856 struct aa_label *label, *new = NULL;
857 struct aa_profile *profile;
859 const char *info = NULL;
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 = {
866 file_inode(bprm->file)->i_mode
869 ctx = task_ctx(current);
870 AA_BUG(!cred_label(bprm->cred));
873 label = aa_get_newest_label(cred_label(bprm->cred));
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.
880 * Testing for unconfined must be done before the subset test
882 if ((bprm->unsafe & LSM_UNSAFE_NO_NEW_PRIVS) && !unconfined(label) &&
884 ctx->nnp = aa_get_label(label);
886 /* buffer freed below, name is pointer into buffer */
887 buffer = aa_get_buffer(false);
893 /* Test for onexec first as onexec override other x transitions. */
895 new = handle_onexec(label, ctx->onexec, ctx->token,
896 bprm, buffer, &cond, &unsafe);
898 new = fn_label_build(label, profile, GFP_KERNEL,
899 profile_transition(profile, bprm, buffer,
904 error = PTR_ERR(new);
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.
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.
919 if ((bprm->unsafe & LSM_UNSAFE_NO_NEW_PRIVS) &&
920 !unconfined(label) &&
921 !aa_label_is_unconfined_subset(new, ctx->nnp)) {
923 info = "no new privs";
927 if (bprm->unsafe & LSM_UNSAFE_SHARE) {
928 /* FIXME: currently don't mediate shared state */
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);
941 dbg_printk("scrubbing environment variables for %s "
942 "label=", bprm->filename);
943 aa_label_printk(new, GFP_KERNEL);
946 bprm->secureexec = 1;
949 if (label->proxy != new->proxy) {
950 /* when transitioning clear unsafe personality bits */
952 dbg_printk("apparmor: clearing unsafe personality "
953 "bits. %s label=", bprm->filename);
954 aa_label_printk(new, GFP_KERNEL);
957 bprm->per_clear |= PER_CLEAR_ON_SETID;
959 aa_put_label(cred_label(bprm->cred));
960 /* transfer reference, released when cred is freed */
961 set_cred_label(bprm->cred, new);
965 aa_put_buffer(buffer);
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));
979 * Functions for self directed profile change
983 /* helper fn for change_hat
985 * Returns: label for hat transition OR ERR_PTR. Does NOT return NULL
987 static struct aa_label *build_change_hat(struct aa_profile *profile,
988 const char *name, bool sibling)
990 struct aa_profile *root, *hat = NULL;
991 const char *info = NULL;
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);
999 info = "conflicting target types";
1004 hat = aa_find_child(root, name);
1007 if (COMPLAIN_MODE(profile)) {
1008 hat = aa_new_null_profile(profile, true, name,
1011 info = "failed null profile create";
1016 aa_put_profile(root);
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,
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
1031 /* helper fn for changing into a hat
1033 * Returns: label for hat transition or ERR_PTR. Does not return NULL
1035 static struct aa_label *change_hat(struct aa_label *label, const char *hats[],
1036 int count, int flags)
1038 struct aa_profile *profile, *root, *hat = NULL;
1039 struct aa_label *new;
1041 bool sibling = false;
1042 const char *name, *info = NULL;
1049 if (PROFILE_IS_HAT(labels_profile(label)))
1052 /*find first matching hat */
1053 for (i = 0; i < count && !hat; 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";
1065 hat = aa_find_child(root, name);
1066 aa_put_profile(root);
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";
1074 aa_put_profile(hat);
1077 aa_put_profile(hat);
1079 /* found a hat for all profiles in ns */
1084 /* no hats that match, find appropriate error
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
1091 label_for_each_in_ns(it, labels_ns(label), label, profile) {
1092 if (!list_empty(&profile->base.profiles)) {
1093 info = "hat not found";
1098 info = "no hats defined";
1102 label_for_each_in_ns(it, labels_ns(label), label, profile) {
1104 * no target as it has failed to be found or built
1106 * change_hat uses probing and should not log failures
1107 * related to missing hats
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);
1116 return ERR_PTR(error);
1119 new = fn_label_build_in_ns(label, profile, GFP_KERNEL,
1120 build_change_hat(profile, name, sibling),
1121 aa_get_label(&profile->label));
1123 info = "label build failed";
1126 } /* else if (IS_ERR) build_change_hat has logged error so return new */
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
1138 * Returns %0 on success, error otherwise.
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.
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.
1148 int aa_change_hat(const char *hats[], int count, u64 token, int flags)
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;
1158 /* released below */
1159 cred = get_current_cred();
1160 label = aa_get_newest_cred_label(cred);
1161 previous = aa_get_newest_label(ctx->previous);
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.
1168 * Testing for unconfined must be done before the subset test
1170 if (task_no_new_privs(current) && !unconfined(label) && !ctx->nnp)
1171 ctx->nnp = aa_get_label(label);
1173 if (unconfined(label)) {
1174 info = "unconfined can not change_hat";
1180 new = change_hat(label, hats, count, flags);
1183 error = PTR_ERR(new);
1185 /* already audited */
1189 error = may_change_ptraced_domain(new, &info);
1194 * no new privs prevents domain transitions that would
1195 * reduce restrictions.
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");
1205 if (flags & AA_CHANGE_TEST)
1209 error = aa_set_current_hat(new, token);
1210 if (error == -EACCES)
1211 /* kill task in case of brute force attacks */
1213 } else if (previous && !(flags & AA_CHANGE_TEST)) {
1215 * no new privs prevents domain transitions that would
1216 * reduce restrictions.
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");
1226 /* Return to saved label. Kill task if restore fails
1227 * to avoid brute force attacks
1230 error = aa_restore_previous_label(token);
1232 if (error == -EACCES)
1236 } /* else ignore @flags && restores when there is no saved profile */
1240 aa_put_label(previous);
1241 aa_put_label(label);
1247 info = "failed token match";
1248 perms.kill = AA_MAY_CHANGEHAT;
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));
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)
1265 const char *info = NULL;
1269 error = change_profile_perms(profile, target, stack, request,
1270 profile->file.start, perms);
1272 error = aa_audit_file(profile, perms, op, request, name,
1273 NULL, target, GLOBAL_ROOT_UID, info,
1280 * aa_change_profile - perform a one-way profile transition
1281 * @fqname: name of profile may include namespace (NOT NULL)
1282 * @flags: flags affecting change behavior
1284 * Change to new profile @name. Unlike with hats, there is no way
1285 * to change back. If @name isn't specified the current profile name is
1287 * If @onexec then the transition is delayed until
1290 * Returns %0 on success, error otherwise.
1292 int aa_change_profile(const char *fqname, int flags)
1294 struct aa_label *label, *new = NULL, *target = NULL;
1295 struct aa_profile *profile;
1296 struct aa_perms perms = {};
1297 const char *info = NULL;
1298 const char *auditname = fqname; /* retain leading & if stack */
1299 bool stack = flags & AA_CHANGE_STACK;
1300 struct aa_task_ctx *ctx = task_ctx(current);
1305 label = aa_get_current_label();
1308 * Detect no new privs being set, and store the label it
1309 * occurred under. Ideally this would happen when nnp
1310 * is set but there isn't a good way to do that yet.
1312 * Testing for unconfined must be done before the subset test
1314 if (task_no_new_privs(current) && !unconfined(label) && !ctx->nnp)
1315 ctx->nnp = aa_get_label(label);
1317 if (!fqname || !*fqname) {
1318 aa_put_label(label);
1319 AA_DEBUG("no profile name");
1323 if (flags & AA_CHANGE_ONEXEC) {
1324 request = AA_MAY_ONEXEC;
1326 op = OP_STACK_ONEXEC;
1328 op = OP_CHANGE_ONEXEC;
1330 request = AA_MAY_CHANGE_PROFILE;
1334 op = OP_CHANGE_PROFILE;
1337 if (*fqname == '&') {
1339 /* don't have label_parse() do stacking */
1342 target = aa_label_parse(label, fqname, GFP_KERNEL, true, false);
1343 if (IS_ERR(target)) {
1344 struct aa_profile *tprofile;
1346 info = "label not found";
1347 error = PTR_ERR(target);
1350 * TODO: fixme using labels_profile is not right - do profile
1351 * per complain profile
1353 if ((flags & AA_CHANGE_TEST) ||
1354 !COMPLAIN_MODE(labels_profile(label)))
1356 /* released below */
1357 tprofile = aa_new_null_profile(labels_profile(label), false,
1358 fqname, GFP_KERNEL);
1360 info = "failed null profile create";
1364 target = &tprofile->label;
1369 * self directed transitions only apply to current policy ns
1370 * TODO: currently requiring perms for stacking and straight change
1371 * stacking doesn't strictly need this. Determine how much
1372 * we want to loosen this restriction for stacking
1376 error = fn_for_each_in_ns(label, profile,
1377 change_profile_perms_wrapper(op, auditname,
1378 profile, target, stack,
1381 /* auditing done in change_profile_perms_wrapper */
1387 /* check if tracing task is allowed to trace target domain */
1388 error = may_change_ptraced_domain(target, &info);
1389 if (error && !fn_for_each_in_ns(label, profile,
1390 COMPLAIN_MODE(profile)))
1393 /* TODO: add permission check to allow this
1394 * if ((flags & AA_CHANGE_ONEXEC) && !current_is_single_threaded()) {
1395 * info = "not a single threaded task";
1400 if (flags & AA_CHANGE_TEST)
1403 /* stacking is always a subset, so only check the nonstack case */
1405 new = fn_label_build_in_ns(label, profile, GFP_KERNEL,
1406 aa_get_label(target),
1407 aa_get_label(&profile->label));
1409 * no new privs prevents domain transitions that would
1410 * reduce restrictions.
1412 if (task_no_new_privs(current) && !unconfined(label) &&
1413 !aa_label_is_unconfined_subset(new, ctx->nnp)) {
1414 /* not an apparmor denial per se, so don't log it */
1415 AA_DEBUG("no_new_privs - change_hat denied");
1421 if (!(flags & AA_CHANGE_ONEXEC)) {
1422 /* only transition profiles in the current ns */
1424 new = aa_label_merge(label, target, GFP_KERNEL);
1425 if (IS_ERR_OR_NULL(new)) {
1426 info = "failed to build target label";
1430 error = PTR_ERR(new);
1435 error = aa_replace_current_label(new);
1442 /* full transition will be built in exec path */
1443 error = aa_set_current_onexec(target, stack);
1447 error = fn_for_each_in_ns(label, profile,
1448 aa_audit_file(profile, &perms, op, request, auditname,
1449 NULL, new ? new : target,
1450 GLOBAL_ROOT_UID, info, error));
1454 aa_put_label(target);
1455 aa_put_label(label);