blob: 611e6ce70b03a83c0e7e9b3172985eb52795edea [file] [log] [blame]
John Johansenc75afcd2010-07-29 14:47:59 -07001/*
2 * AppArmor security module
3 *
4 * This file contains AppArmor functions used to manipulate object security
5 * contexts.
6 *
7 * Copyright (C) 1998-2008 Novell/SUSE
8 * Copyright 2009-2010 Canonical Ltd.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation, version 2 of the
13 * License.
14 *
15 *
16 * AppArmor sets confinement on every task, via the the aa_task_cxt and
17 * the aa_task_cxt.profile, both of which are required and are not allowed
18 * to be NULL. The aa_task_cxt is not reference counted and is unique
19 * to each cred (which is reference count). The profile pointed to by
20 * the task_cxt is reference counted.
21 *
22 * TODO
23 * If a task uses change_hat it currently does not return to the old
24 * cred or task context but instead creates a new one. Ideally the task
25 * should return to the previous cred if it has not been modified.
26 *
27 */
28
29#include "include/context.h"
30#include "include/policy.h"
31
32/**
33 * aa_alloc_task_context - allocate a new task_cxt
34 * @flags: gfp flags for allocation
35 *
36 * Returns: allocated buffer or NULL on failure
37 */
38struct aa_task_cxt *aa_alloc_task_context(gfp_t flags)
39{
40 return kzalloc(sizeof(struct aa_task_cxt), flags);
41}
42
43/**
44 * aa_free_task_context - free a task_cxt
45 * @cxt: task_cxt to free (MAYBE NULL)
46 */
47void aa_free_task_context(struct aa_task_cxt *cxt)
48{
49 if (cxt) {
50 aa_put_profile(cxt->profile);
51 aa_put_profile(cxt->previous);
52 aa_put_profile(cxt->onexec);
53
54 kzfree(cxt);
55 }
56}
57
58/**
59 * aa_dup_task_context - duplicate a task context, incrementing reference counts
60 * @new: a blank task context (NOT NULL)
61 * @old: the task context to copy (NOT NULL)
62 */
63void aa_dup_task_context(struct aa_task_cxt *new, const struct aa_task_cxt *old)
64{
65 *new = *old;
66 aa_get_profile(new->profile);
67 aa_get_profile(new->previous);
68 aa_get_profile(new->onexec);
69}
70
71/**
John Johansen3cfcc192013-02-18 16:03:34 -080072 * aa_get_task_profile - Get another task's profile
73 * @task: task to query (NOT NULL)
74 *
75 * Returns: counted reference to @task's profile
76 */
77struct aa_profile *aa_get_task_profile(struct task_struct *task)
78{
79 struct aa_profile *p;
80
81 rcu_read_lock();
82 p = aa_get_profile(__aa_task_profile(task));
83 rcu_read_unlock();
84
85 return p;
86}
87
88/**
John Johansenc75afcd2010-07-29 14:47:59 -070089 * aa_replace_current_profile - replace the current tasks profiles
90 * @profile: new profile (NOT NULL)
91 *
92 * Returns: 0 or error on failure
93 */
94int aa_replace_current_profile(struct aa_profile *profile)
95{
96 struct aa_task_cxt *cxt = current_cred()->security;
97 struct cred *new;
98 BUG_ON(!profile);
99
100 if (cxt->profile == profile)
101 return 0;
102
103 new = prepare_creds();
104 if (!new)
105 return -ENOMEM;
106
107 cxt = new->security;
108 if (unconfined(profile) || (cxt->profile->ns != profile->ns)) {
109 /* if switching to unconfined or a different profile namespace
110 * clear out context state
111 */
112 aa_put_profile(cxt->previous);
113 aa_put_profile(cxt->onexec);
114 cxt->previous = NULL;
115 cxt->onexec = NULL;
116 cxt->token = 0;
117 }
118 /* be careful switching cxt->profile, when racing replacement it
119 * is possible that cxt->profile->replacedby is the reference keeping
120 * @profile valid, so make sure to get its reference before dropping
121 * the reference on cxt->profile */
122 aa_get_profile(profile);
123 aa_put_profile(cxt->profile);
124 cxt->profile = profile;
125
126 commit_creds(new);
127 return 0;
128}
129
130/**
131 * aa_set_current_onexec - set the tasks change_profile to happen onexec
132 * @profile: system profile to set at exec (MAYBE NULL to clear value)
133 *
134 * Returns: 0 or error on failure
135 */
136int aa_set_current_onexec(struct aa_profile *profile)
137{
138 struct aa_task_cxt *cxt;
139 struct cred *new = prepare_creds();
140 if (!new)
141 return -ENOMEM;
142
143 cxt = new->security;
144 aa_get_profile(profile);
145 aa_put_profile(cxt->onexec);
146 cxt->onexec = profile;
147
148 commit_creds(new);
149 return 0;
150}
151
152/**
153 * aa_set_current_hat - set the current tasks hat
154 * @profile: profile to set as the current hat (NOT NULL)
155 * @token: token value that must be specified to change from the hat
156 *
157 * Do switch of tasks hat. If the task is currently in a hat
158 * validate the token to match.
159 *
160 * Returns: 0 or error on failure
161 */
162int aa_set_current_hat(struct aa_profile *profile, u64 token)
163{
164 struct aa_task_cxt *cxt;
165 struct cred *new = prepare_creds();
166 if (!new)
167 return -ENOMEM;
168 BUG_ON(!profile);
169
170 cxt = new->security;
171 if (!cxt->previous) {
172 /* transfer refcount */
173 cxt->previous = cxt->profile;
174 cxt->token = token;
175 } else if (cxt->token == token) {
176 aa_put_profile(cxt->profile);
177 } else {
178 /* previous_profile && cxt->token != token */
179 abort_creds(new);
180 return -EACCES;
181 }
182 cxt->profile = aa_get_profile(aa_newest_version(profile));
183 /* clear exec on switching context */
184 aa_put_profile(cxt->onexec);
185 cxt->onexec = NULL;
186
187 commit_creds(new);
188 return 0;
189}
190
191/**
192 * aa_restore_previous_profile - exit from hat context restoring the profile
193 * @token: the token that must be matched to exit hat context
194 *
195 * Attempt to return out of a hat to the previous profile. The token
196 * must match the stored token value.
197 *
198 * Returns: 0 or error of failure
199 */
200int aa_restore_previous_profile(u64 token)
201{
202 struct aa_task_cxt *cxt;
203 struct cred *new = prepare_creds();
204 if (!new)
205 return -ENOMEM;
206
207 cxt = new->security;
208 if (cxt->token != token) {
209 abort_creds(new);
210 return -EACCES;
211 }
212 /* ignore restores when there is no saved profile */
213 if (!cxt->previous) {
214 abort_creds(new);
215 return 0;
216 }
217
218 aa_put_profile(cxt->profile);
219 cxt->profile = aa_newest_version(cxt->previous);
220 BUG_ON(!cxt->profile);
221 if (unlikely(cxt->profile != cxt->previous)) {
222 aa_get_profile(cxt->profile);
223 aa_put_profile(cxt->previous);
224 }
225 /* clear exec && prev information when restoring to previous context */
226 cxt->previous = NULL;
227 cxt->token = 0;
228 aa_put_profile(cxt->onexec);
229 cxt->onexec = NULL;
230
231 commit_creds(new);
232 return 0;
233}