1 // SPDX-License-Identifier: GPL-2.0-only
3 * AppArmor security module
5 * This file contains AppArmor task related definitions and mediation
7 * Copyright 2017 Canonical Ltd.
10 * If a task uses change_hat it currently does not return to the old
11 * cred or task context but instead creates a new one. Ideally the task
12 * should return to the previous cred if it has not been modified.
15 #include <linux/gfp.h>
16 #include <linux/ptrace.h>
18 #include "include/audit.h"
19 #include "include/cred.h"
20 #include "include/policy.h"
21 #include "include/task.h"
24 * aa_get_task_label - Get another task's label
25 * @task: task to query (NOT NULL)
27 * Returns: counted reference to @task's label
29 struct aa_label *aa_get_task_label(struct task_struct *task)
34 p = aa_get_newest_label(__aa_task_raw_label(task));
41 * aa_replace_current_label - replace the current tasks label
42 * @label: new label (NOT NULL)
44 * Returns: 0 or error on failure
46 int aa_replace_current_label(struct aa_label *label)
48 struct aa_label *old = aa_current_raw_label();
49 struct aa_task_ctx *ctx = task_ctx(current);
57 if (current_cred() != current_real_cred())
60 new = prepare_creds();
64 if (ctx->nnp && label_is_stale(ctx->nnp)) {
65 struct aa_label *tmp = ctx->nnp;
67 ctx->nnp = aa_get_newest_label(tmp);
70 if (unconfined(label) || (labels_ns(old) != labels_ns(label)))
72 * if switching to unconfined or a different label namespace
73 * clear out context state
75 aa_clear_task_ctx_trans(task_ctx(current));
78 * be careful switching cred label, when racing replacement it
79 * is possible that the cred labels's->proxy->label is the reference
80 * keeping @label valid, so make sure to get its reference before
81 * dropping the reference on the cred's label
84 aa_put_label(cred_label(new));
85 set_cred_label(new, label);
93 * aa_set_current_onexec - set the tasks change_profile to happen onexec
94 * @label: system label to set at exec (MAYBE NULL to clear value)
95 * @stack: whether stacking should be done
96 * Returns: 0 or error on failure
98 int aa_set_current_onexec(struct aa_label *label, bool stack)
100 struct aa_task_ctx *ctx = task_ctx(current);
103 aa_put_label(ctx->onexec);
111 * aa_set_current_hat - set the current tasks hat
112 * @label: label to set as the current hat (NOT NULL)
113 * @token: token value that must be specified to change from the hat
115 * Do switch of tasks hat. If the task is currently in a hat
116 * validate the token to match.
118 * Returns: 0 or error on failure
120 int aa_set_current_hat(struct aa_label *label, u64 token)
122 struct aa_task_ctx *ctx = task_ctx(current);
125 new = prepare_creds();
130 if (!ctx->previous) {
131 /* transfer refcount */
132 ctx->previous = cred_label(new);
134 } else if (ctx->token == token) {
135 aa_put_label(cred_label(new));
137 /* previous_profile && ctx->token != token */
142 set_cred_label(new, aa_get_newest_label(label));
143 /* clear exec on switching context */
144 aa_put_label(ctx->onexec);
152 * aa_restore_previous_label - exit from hat context restoring previous label
153 * @token: the token that must be matched to exit hat context
155 * Attempt to return out of a hat to the previous label. The token
156 * must match the stored token value.
158 * Returns: 0 or error of failure
160 int aa_restore_previous_label(u64 token)
162 struct aa_task_ctx *ctx = task_ctx(current);
165 if (ctx->token != token)
167 /* ignore restores when there is no saved label */
171 new = prepare_creds();
175 aa_put_label(cred_label(new));
176 set_cred_label(new, aa_get_newest_label(ctx->previous));
177 AA_BUG(!cred_label(new));
178 /* clear exec && prev information when restoring to previous context */
179 aa_clear_task_ctx_trans(ctx);
187 * audit_ptrace_mask - convert mask to permission string
188 * @mask: permission mask to convert
190 * Returns: pointer to static string
192 static const char *audit_ptrace_mask(u32 mask)
201 case AA_MAY_BE_TRACED:
207 /* call back to audit ptrace fields */
208 static void audit_ptrace_cb(struct audit_buffer *ab, void *va)
210 struct common_audit_data *sa = va;
212 if (aad(sa)->request & AA_PTRACE_PERM_MASK) {
213 audit_log_format(ab, " requested_mask=\"%s\"",
214 audit_ptrace_mask(aad(sa)->request));
216 if (aad(sa)->denied & AA_PTRACE_PERM_MASK) {
217 audit_log_format(ab, " denied_mask=\"%s\"",
218 audit_ptrace_mask(aad(sa)->denied));
221 audit_log_format(ab, " peer=");
222 aa_label_xaudit(ab, labels_ns(aad(sa)->label), aad(sa)->peer,
223 FLAGS_NONE, GFP_ATOMIC);
226 /* assumes check for PROFILE_MEDIATES is already done */
227 /* TODO: conditionals */
228 static int profile_ptrace_perm(struct aa_profile *profile,
229 struct aa_label *peer, u32 request,
230 struct common_audit_data *sa)
232 struct aa_perms perms = { };
234 aad(sa)->peer = peer;
235 aa_profile_match_label(profile, peer, AA_CLASS_PTRACE, request,
237 aa_apply_modes_to_perms(profile, &perms);
238 return aa_check_perms(profile, &perms, request, sa, audit_ptrace_cb);
241 static int profile_tracee_perm(struct aa_profile *tracee,
242 struct aa_label *tracer, u32 request,
243 struct common_audit_data *sa)
245 if (profile_unconfined(tracee) || unconfined(tracer) ||
246 !PROFILE_MEDIATES(tracee, AA_CLASS_PTRACE))
249 return profile_ptrace_perm(tracee, tracer, request, sa);
252 static int profile_tracer_perm(struct aa_profile *tracer,
253 struct aa_label *tracee, u32 request,
254 struct common_audit_data *sa)
256 if (profile_unconfined(tracer))
259 if (PROFILE_MEDIATES(tracer, AA_CLASS_PTRACE))
260 return profile_ptrace_perm(tracer, tracee, request, sa);
262 /* profile uses the old style capability check for ptrace */
263 if (&tracer->label == tracee)
266 aad(sa)->label = &tracer->label;
267 aad(sa)->peer = tracee;
268 aad(sa)->request = 0;
269 aad(sa)->error = aa_capable(&tracer->label, CAP_SYS_PTRACE,
272 return aa_audit(AUDIT_APPARMOR_AUTO, tracer, sa, audit_ptrace_cb);
276 * aa_may_ptrace - test if tracer task can trace the tracee
277 * @tracer: label of the task doing the tracing (NOT NULL)
278 * @tracee: task label to be traced
279 * @request: permission request
281 * Returns: %0 else error code if permission denied or error
283 int aa_may_ptrace(struct aa_label *tracer, struct aa_label *tracee,
286 struct aa_profile *profile;
287 u32 xrequest = request << PTRACE_PERM_SHIFT;
288 DEFINE_AUDIT_DATA(sa, LSM_AUDIT_DATA_NONE, OP_PTRACE);
290 return xcheck_labels(tracer, tracee, profile,
291 profile_tracer_perm(profile, tracee, request, &sa),
292 profile_tracee_perm(profile, tracer, xrequest, &sa));