aboutsummaryrefslogtreecommitdiffstats
path: root/security/apparmor/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'security/apparmor/file.c')
-rw-r--r--security/apparmor/file.c517
1 files changed, 370 insertions, 147 deletions
diff --git a/security/apparmor/file.c b/security/apparmor/file.c
index 750564c3ab71..3382518b87fa 100644
--- a/security/apparmor/file.c
+++ b/security/apparmor/file.c
@@ -12,15 +12,30 @@
12 * License. 12 * License.
13 */ 13 */
14 14
15#include <linux/tty.h>
16#include <linux/fdtable.h>
17#include <linux/file.h>
18
15#include "include/apparmor.h" 19#include "include/apparmor.h"
16#include "include/audit.h" 20#include "include/audit.h"
21#include "include/context.h"
17#include "include/file.h" 22#include "include/file.h"
18#include "include/match.h" 23#include "include/match.h"
19#include "include/path.h" 24#include "include/path.h"
20#include "include/policy.h" 25#include "include/policy.h"
26#include "include/label.h"
21 27
22struct file_perms nullperms; 28static u32 map_mask_to_chr_mask(u32 mask)
29{
30 u32 m = mask & PERMS_CHRS_MASK;
23 31
32 if (mask & AA_MAY_GETATTR)
33 m |= MAY_READ;
34 if (mask & (AA_MAY_SETATTR | AA_MAY_CHMOD | AA_MAY_CHOWN))
35 m |= MAY_WRITE;
36
37 return m;
38}
24 39
25/** 40/**
26 * audit_file_mask - convert mask to permission string 41 * audit_file_mask - convert mask to permission string
@@ -31,29 +46,7 @@ static void audit_file_mask(struct audit_buffer *ab, u32 mask)
31{ 46{
32 char str[10]; 47 char str[10];
33 48
34 char *m = str; 49 aa_perm_mask_to_str(str, aa_file_perm_chrs, map_mask_to_chr_mask(mask));
35
36 if (mask & AA_EXEC_MMAP)
37 *m++ = 'm';
38 if (mask & (MAY_READ | AA_MAY_META_READ))
39 *m++ = 'r';
40 if (mask & (MAY_WRITE | AA_MAY_META_WRITE | AA_MAY_CHMOD |
41 AA_MAY_CHOWN))
42 *m++ = 'w';
43 else if (mask & MAY_APPEND)
44 *m++ = 'a';
45 if (mask & AA_MAY_CREATE)
46 *m++ = 'c';
47 if (mask & AA_MAY_DELETE)
48 *m++ = 'd';
49 if (mask & AA_MAY_LINK)
50 *m++ = 'l';
51 if (mask & AA_MAY_LOCK)
52 *m++ = 'k';
53 if (mask & MAY_EXEC)
54 *m++ = 'x';
55 *m = '\0';
56
57 audit_log_string(ab, str); 50 audit_log_string(ab, str);
58} 51}
59 52
@@ -67,22 +60,26 @@ static void file_audit_cb(struct audit_buffer *ab, void *va)
67 struct common_audit_data *sa = va; 60 struct common_audit_data *sa = va;
68 kuid_t fsuid = current_fsuid(); 61 kuid_t fsuid = current_fsuid();
69 62
70 if (aad(sa)->fs.request & AA_AUDIT_FILE_MASK) { 63 if (aad(sa)->request & AA_AUDIT_FILE_MASK) {
71 audit_log_format(ab, " requested_mask="); 64 audit_log_format(ab, " requested_mask=");
72 audit_file_mask(ab, aad(sa)->fs.request); 65 audit_file_mask(ab, aad(sa)->request);
73 } 66 }
74 if (aad(sa)->fs.denied & AA_AUDIT_FILE_MASK) { 67 if (aad(sa)->denied & AA_AUDIT_FILE_MASK) {
75 audit_log_format(ab, " denied_mask="); 68 audit_log_format(ab, " denied_mask=");
76 audit_file_mask(ab, aad(sa)->fs.denied); 69 audit_file_mask(ab, aad(sa)->denied);
77 } 70 }
78 if (aad(sa)->fs.request & AA_AUDIT_FILE_MASK) { 71 if (aad(sa)->request & AA_AUDIT_FILE_MASK) {
79 audit_log_format(ab, " fsuid=%d", 72 audit_log_format(ab, " fsuid=%d",
80 from_kuid(&init_user_ns, fsuid)); 73 from_kuid(&init_user_ns, fsuid));
81 audit_log_format(ab, " ouid=%d", 74 audit_log_format(ab, " ouid=%d",
82 from_kuid(&init_user_ns, aad(sa)->fs.ouid)); 75 from_kuid(&init_user_ns, aad(sa)->fs.ouid));
83 } 76 }
84 77
85 if (aad(sa)->fs.target) { 78 if (aad(sa)->peer) {
79 audit_log_format(ab, " target=");
80 aa_label_xaudit(ab, labels_ns(aad(sa)->label), aad(sa)->peer,
81 FLAG_VIEW_SUBNS, GFP_ATOMIC);
82 } else if (aad(sa)->fs.target) {
86 audit_log_format(ab, " target="); 83 audit_log_format(ab, " target=");
87 audit_log_untrustedstring(ab, aad(sa)->fs.target); 84 audit_log_untrustedstring(ab, aad(sa)->fs.target);
88 } 85 }
@@ -92,28 +89,30 @@ static void file_audit_cb(struct audit_buffer *ab, void *va)
92 * aa_audit_file - handle the auditing of file operations 89 * aa_audit_file - handle the auditing of file operations
93 * @profile: the profile being enforced (NOT NULL) 90 * @profile: the profile being enforced (NOT NULL)
94 * @perms: the permissions computed for the request (NOT NULL) 91 * @perms: the permissions computed for the request (NOT NULL)
95 * @gfp: allocation flags
96 * @op: operation being mediated 92 * @op: operation being mediated
97 * @request: permissions requested 93 * @request: permissions requested
98 * @name: name of object being mediated (MAYBE NULL) 94 * @name: name of object being mediated (MAYBE NULL)
99 * @target: name of target (MAYBE NULL) 95 * @target: name of target (MAYBE NULL)
96 * @tlabel: target label (MAY BE NULL)
100 * @ouid: object uid 97 * @ouid: object uid
101 * @info: extra information message (MAYBE NULL) 98 * @info: extra information message (MAYBE NULL)
102 * @error: 0 if operation allowed else failure error code 99 * @error: 0 if operation allowed else failure error code
103 * 100 *
104 * Returns: %0 or error on failure 101 * Returns: %0 or error on failure
105 */ 102 */
106int aa_audit_file(struct aa_profile *profile, struct file_perms *perms, 103int aa_audit_file(struct aa_profile *profile, struct aa_perms *perms,
107 const char *op, u32 request, const char *name, 104 const char *op, u32 request, const char *name,
108 const char *target, kuid_t ouid, const char *info, int error) 105 const char *target, struct aa_label *tlabel,
106 kuid_t ouid, const char *info, int error)
109{ 107{
110 int type = AUDIT_APPARMOR_AUTO; 108 int type = AUDIT_APPARMOR_AUTO;
111 DEFINE_AUDIT_DATA(sa, LSM_AUDIT_DATA_TASK, op); 109 DEFINE_AUDIT_DATA(sa, LSM_AUDIT_DATA_TASK, op);
112 110
113 sa.u.tsk = NULL; 111 sa.u.tsk = NULL;
114 aad(&sa)->fs.request = request; 112 aad(&sa)->request = request;
115 aad(&sa)->name = name; 113 aad(&sa)->name = name;
116 aad(&sa)->fs.target = target; 114 aad(&sa)->fs.target = target;
115 aad(&sa)->peer = tlabel;
117 aad(&sa)->fs.ouid = ouid; 116 aad(&sa)->fs.ouid = ouid;
118 aad(&sa)->info = info; 117 aad(&sa)->info = info;
119 aad(&sa)->error = error; 118 aad(&sa)->error = error;
@@ -126,34 +125,67 @@ int aa_audit_file(struct aa_profile *profile, struct file_perms *perms,
126 mask = 0xffff; 125 mask = 0xffff;
127 126
128 /* mask off perms that are not being force audited */ 127 /* mask off perms that are not being force audited */
129 aad(&sa)->fs.request &= mask; 128 aad(&sa)->request &= mask;
130 129
131 if (likely(!aad(&sa)->fs.request)) 130 if (likely(!aad(&sa)->request))
132 return 0; 131 return 0;
133 type = AUDIT_APPARMOR_AUDIT; 132 type = AUDIT_APPARMOR_AUDIT;
134 } else { 133 } else {
135 /* only report permissions that were denied */ 134 /* only report permissions that were denied */
136 aad(&sa)->fs.request = aad(&sa)->fs.request & ~perms->allow; 135 aad(&sa)->request = aad(&sa)->request & ~perms->allow;
137 AA_BUG(!aad(&sa)->fs.request); 136 AA_BUG(!aad(&sa)->request);
138 137
139 if (aad(&sa)->fs.request & perms->kill) 138 if (aad(&sa)->request & perms->kill)
140 type = AUDIT_APPARMOR_KILL; 139 type = AUDIT_APPARMOR_KILL;
141 140
142 /* quiet known rejects, assumes quiet and kill do not overlap */ 141 /* quiet known rejects, assumes quiet and kill do not overlap */
143 if ((aad(&sa)->fs.request & perms->quiet) && 142 if ((aad(&sa)->request & perms->quiet) &&
144 AUDIT_MODE(profile) != AUDIT_NOQUIET && 143 AUDIT_MODE(profile) != AUDIT_NOQUIET &&
145 AUDIT_MODE(profile) != AUDIT_ALL) 144 AUDIT_MODE(profile) != AUDIT_ALL)
146 aad(&sa)->fs.request &= ~perms->quiet; 145 aad(&sa)->request &= ~perms->quiet;
147 146
148 if (!aad(&sa)->fs.request) 147 if (!aad(&sa)->request)
149 return COMPLAIN_MODE(profile) ? 0 : aad(&sa)->error; 148 return aad(&sa)->error;
150 } 149 }
151 150
152 aad(&sa)->fs.denied = aad(&sa)->fs.request & ~perms->allow; 151 aad(&sa)->denied = aad(&sa)->request & ~perms->allow;
153 return aa_audit(type, profile, &sa, file_audit_cb); 152 return aa_audit(type, profile, &sa, file_audit_cb);
154} 153}
155 154
156/** 155/**
156 * is_deleted - test if a file has been completely unlinked
157 * @dentry: dentry of file to test for deletion (NOT NULL)
158 *
159 * Returns: %1 if deleted else %0
160 */
161static inline bool is_deleted(struct dentry *dentry)
162{
163 if (d_unlinked(dentry) && d_backing_inode(dentry)->i_nlink == 0)
164 return 1;
165 return 0;
166}
167
168static int path_name(const char *op, struct aa_label *label,
169 const struct path *path, int flags, char *buffer,
170 const char **name, struct path_cond *cond, u32 request)
171{
172 struct aa_profile *profile;
173 const char *info = NULL;
174 int error;
175
176 error = aa_path_name(path, flags, buffer, name, &info,
177 labels_profile(label)->disconnected);
178 if (error) {
179 fn_for_each_confined(label, profile,
180 aa_audit_file(profile, &nullperms, op, request, *name,
181 NULL, NULL, cond->uid, info, error));
182 return error;
183 }
184
185 return 0;
186}
187
188/**
157 * map_old_perms - map old file perms layout to the new layout 189 * map_old_perms - map old file perms layout to the new layout
158 * @old: permission set in old mapping 190 * @old: permission set in old mapping
159 * 191 *
@@ -163,10 +195,10 @@ static u32 map_old_perms(u32 old)
163{ 195{
164 u32 new = old & 0xf; 196 u32 new = old & 0xf;
165 if (old & MAY_READ) 197 if (old & MAY_READ)
166 new |= AA_MAY_META_READ; 198 new |= AA_MAY_GETATTR | AA_MAY_OPEN;
167 if (old & MAY_WRITE) 199 if (old & MAY_WRITE)
168 new |= AA_MAY_META_WRITE | AA_MAY_CREATE | AA_MAY_DELETE | 200 new |= AA_MAY_SETATTR | AA_MAY_CREATE | AA_MAY_DELETE |
169 AA_MAY_CHMOD | AA_MAY_CHOWN; 201 AA_MAY_CHMOD | AA_MAY_CHOWN | AA_MAY_OPEN;
170 if (old & 0x10) 202 if (old & 0x10)
171 new |= AA_MAY_LINK; 203 new |= AA_MAY_LINK;
172 /* the old mapping lock and link_subset flags where overlaid 204 /* the old mapping lock and link_subset flags where overlaid
@@ -181,7 +213,7 @@ static u32 map_old_perms(u32 old)
181} 213}
182 214
183/** 215/**
184 * compute_perms - convert dfa compressed perms to internal perms 216 * aa_compute_fperms - convert dfa compressed perms to internal perms
185 * @dfa: dfa to compute perms for (NOT NULL) 217 * @dfa: dfa to compute perms for (NOT NULL)
186 * @state: state in dfa 218 * @state: state in dfa
187 * @cond: conditions to consider (NOT NULL) 219 * @cond: conditions to consider (NOT NULL)
@@ -191,17 +223,21 @@ static u32 map_old_perms(u32 old)
191 * 223 *
192 * Returns: computed permission set 224 * Returns: computed permission set
193 */ 225 */
194static struct file_perms compute_perms(struct aa_dfa *dfa, unsigned int state, 226struct aa_perms aa_compute_fperms(struct aa_dfa *dfa, unsigned int state,
195 struct path_cond *cond) 227 struct path_cond *cond)
196{ 228{
197 struct file_perms perms; 229 struct aa_perms perms;
198 230
199 /* FIXME: change over to new dfa format 231 /* FIXME: change over to new dfa format
200 * currently file perms are encoded in the dfa, new format 232 * currently file perms are encoded in the dfa, new format
201 * splits the permissions from the dfa. This mapping can be 233 * splits the permissions from the dfa. This mapping can be
202 * done at profile load 234 * done at profile load
203 */ 235 */
204 perms.kill = 0; 236 perms.deny = 0;
237 perms.kill = perms.stop = 0;
238 perms.complain = perms.cond = 0;
239 perms.hide = 0;
240 perms.prompt = 0;
205 241
206 if (uid_eq(current_fsuid(), cond->uid)) { 242 if (uid_eq(current_fsuid(), cond->uid)) {
207 perms.allow = map_old_perms(dfa_user_allow(dfa, state)); 243 perms.allow = map_old_perms(dfa_user_allow(dfa, state));
@@ -214,7 +250,7 @@ static struct file_perms compute_perms(struct aa_dfa *dfa, unsigned int state,
214 perms.quiet = map_old_perms(dfa_other_quiet(dfa, state)); 250 perms.quiet = map_old_perms(dfa_other_quiet(dfa, state));
215 perms.xindex = dfa_other_xindex(dfa, state); 251 perms.xindex = dfa_other_xindex(dfa, state);
216 } 252 }
217 perms.allow |= AA_MAY_META_READ; 253 perms.allow |= AA_MAY_GETATTR;
218 254
219 /* change_profile wasn't determined by ownership in old mapping */ 255 /* change_profile wasn't determined by ownership in old mapping */
220 if (ACCEPT_TABLE(dfa)[state] & 0x80000000) 256 if (ACCEPT_TABLE(dfa)[state] & 0x80000000)
@@ -237,37 +273,55 @@ static struct file_perms compute_perms(struct aa_dfa *dfa, unsigned int state,
237 */ 273 */
238unsigned int aa_str_perms(struct aa_dfa *dfa, unsigned int start, 274unsigned int aa_str_perms(struct aa_dfa *dfa, unsigned int start,
239 const char *name, struct path_cond *cond, 275 const char *name, struct path_cond *cond,
240 struct file_perms *perms) 276 struct aa_perms *perms)
241{ 277{
242 unsigned int state; 278 unsigned int state;
243 if (!dfa) {
244 *perms = nullperms;
245 return DFA_NOMATCH;
246 }
247
248 state = aa_dfa_match(dfa, start, name); 279 state = aa_dfa_match(dfa, start, name);
249 *perms = compute_perms(dfa, state, cond); 280 *perms = aa_compute_fperms(dfa, state, cond);
250 281
251 return state; 282 return state;
252} 283}
253 284
254/** 285int __aa_path_perm(const char *op, struct aa_profile *profile, const char *name,
255 * is_deleted - test if a file has been completely unlinked 286 u32 request, struct path_cond *cond, int flags,
256 * @dentry: dentry of file to test for deletion (NOT NULL) 287 struct aa_perms *perms)
257 *
258 * Returns: %1 if deleted else %0
259 */
260static inline bool is_deleted(struct dentry *dentry)
261{ 288{
262 if (d_unlinked(dentry) && d_backing_inode(dentry)->i_nlink == 0) 289 int e = 0;
263 return 1; 290
264 return 0; 291 if (profile_unconfined(profile))
292 return 0;
293 aa_str_perms(profile->file.dfa, profile->file.start, name, cond, perms);
294 if (request & ~perms->allow)
295 e = -EACCES;
296 return aa_audit_file(profile, perms, op, request, name, NULL, NULL,
297 cond->uid, NULL, e);
298}
299
300
301static int profile_path_perm(const char *op, struct aa_profile *profile,
302 const struct path *path, char *buffer, u32 request,
303 struct path_cond *cond, int flags,
304 struct aa_perms *perms)
305{
306 const char *name;
307 int error;
308
309 if (profile_unconfined(profile))
310 return 0;
311
312 error = path_name(op, &profile->label, path,
313 flags | profile->path_flags, buffer, &name, cond,
314 request);
315 if (error)
316 return error;
317 return __aa_path_perm(op, profile, name, request, cond, flags,
318 perms);
265} 319}
266 320
267/** 321/**
268 * aa_path_perm - do permissions check & audit for @path 322 * aa_path_perm - do permissions check & audit for @path
269 * @op: operation being checked 323 * @op: operation being checked
270 * @profile: profile being enforced (NOT NULL) 324 * @label: profile being enforced (NOT NULL)
271 * @path: path to check permissions of (NOT NULL) 325 * @path: path to check permissions of (NOT NULL)
272 * @flags: any additional path flags beyond what the profile specifies 326 * @flags: any additional path flags beyond what the profile specifies
273 * @request: requested permissions 327 * @request: requested permissions
@@ -275,35 +329,23 @@ static inline bool is_deleted(struct dentry *dentry)
275 * 329 *
276 * Returns: %0 else error if access denied or other error 330 * Returns: %0 else error if access denied or other error
277 */ 331 */
278int aa_path_perm(const char *op, struct aa_profile *profile, 332int aa_path_perm(const char *op, struct aa_label *label,
279 const struct path *path, int flags, u32 request, 333 const struct path *path, int flags, u32 request,
280 struct path_cond *cond) 334 struct path_cond *cond)
281{ 335{
336 struct aa_perms perms = {};
337 struct aa_profile *profile;
282 char *buffer = NULL; 338 char *buffer = NULL;
283 struct file_perms perms = {};
284 const char *name, *info = NULL;
285 int error; 339 int error;
286 340
287 flags |= profile->path_flags | (S_ISDIR(cond->mode) ? PATH_IS_DIR : 0); 341 flags |= PATH_DELEGATE_DELETED | (S_ISDIR(cond->mode) ? PATH_IS_DIR :
288 error = aa_path_name(path, flags, &buffer, &name, &info); 342 0);
289 if (error) { 343 get_buffers(buffer);
290 if (error == -ENOENT && is_deleted(path->dentry)) { 344 error = fn_for_each_confined(label, profile,
291 /* Access to open files that are deleted are 345 profile_path_perm(op, profile, path, buffer, request,
292 * give a pass (implicit delegation) 346 cond, flags, &perms));
293 */ 347
294 error = 0; 348 put_buffers(buffer);
295 info = NULL;
296 perms.allow = request;
297 }
298 } else {
299 aa_str_perms(profile->file.dfa, profile->file.start, name, cond,
300 &perms);
301 if (request & ~perms.allow)
302 error = -EACCES;
303 }
304 error = aa_audit_file(profile, &perms, op, request, name, NULL,
305 cond->uid, info, error);
306 kfree(buffer);
307 349
308 return error; 350 return error;
309} 351}
@@ -328,65 +370,40 @@ static inline bool xindex_is_subset(u32 link, u32 target)
328 return 1; 370 return 1;
329} 371}
330 372
331/** 373static int profile_path_link(struct aa_profile *profile,
332 * aa_path_link - Handle hard link permission check 374 const struct path *link, char *buffer,
333 * @profile: the profile being enforced (NOT NULL) 375 const struct path *target, char *buffer2,
334 * @old_dentry: the target dentry (NOT NULL) 376 struct path_cond *cond)
335 * @new_dir: directory the new link will be created in (NOT NULL)
336 * @new_dentry: the link being created (NOT NULL)
337 *
338 * Handle the permission test for a link & target pair. Permission
339 * is encoded as a pair where the link permission is determined
340 * first, and if allowed, the target is tested. The target test
341 * is done from the point of the link match (not start of DFA)
342 * making the target permission dependent on the link permission match.
343 *
344 * The subset test if required forces that permissions granted
345 * on link are a subset of the permission granted to target.
346 *
347 * Returns: %0 if allowed else error
348 */
349int aa_path_link(struct aa_profile *profile, struct dentry *old_dentry,
350 const struct path *new_dir, struct dentry *new_dentry)
351{ 377{
352 struct path link = { .mnt = new_dir->mnt, .dentry = new_dentry }; 378 const char *lname, *tname = NULL;
353 struct path target = { .mnt = new_dir->mnt, .dentry = old_dentry }; 379 struct aa_perms lperms = {}, perms;
354 struct path_cond cond = { 380 const char *info = NULL;
355 d_backing_inode(old_dentry)->i_uid,
356 d_backing_inode(old_dentry)->i_mode
357 };
358 char *buffer = NULL, *buffer2 = NULL;
359 const char *lname, *tname = NULL, *info = NULL;
360 struct file_perms lperms, perms;
361 u32 request = AA_MAY_LINK; 381 u32 request = AA_MAY_LINK;
362 unsigned int state; 382 unsigned int state;
363 int error; 383 int error;
364 384
365 lperms = nullperms; 385 error = path_name(OP_LINK, &profile->label, link, profile->path_flags,
366 386 buffer, &lname, cond, AA_MAY_LINK);
367 /* buffer freed below, lname is pointer in buffer */
368 error = aa_path_name(&link, profile->path_flags, &buffer, &lname,
369 &info);
370 if (error) 387 if (error)
371 goto audit; 388 goto audit;
372 389
373 /* buffer2 freed below, tname is pointer in buffer2 */ 390 /* buffer2 freed below, tname is pointer in buffer2 */
374 error = aa_path_name(&target, profile->path_flags, &buffer2, &tname, 391 error = path_name(OP_LINK, &profile->label, target, profile->path_flags,
375 &info); 392 buffer2, &tname, cond, AA_MAY_LINK);
376 if (error) 393 if (error)
377 goto audit; 394 goto audit;
378 395
379 error = -EACCES; 396 error = -EACCES;
380 /* aa_str_perms - handles the case of the dfa being NULL */ 397 /* aa_str_perms - handles the case of the dfa being NULL */
381 state = aa_str_perms(profile->file.dfa, profile->file.start, lname, 398 state = aa_str_perms(profile->file.dfa, profile->file.start, lname,
382 &cond, &lperms); 399 cond, &lperms);
383 400
384 if (!(lperms.allow & AA_MAY_LINK)) 401 if (!(lperms.allow & AA_MAY_LINK))
385 goto audit; 402 goto audit;
386 403
387 /* test to see if target can be paired with link */ 404 /* test to see if target can be paired with link */
388 state = aa_dfa_null_transition(profile->file.dfa, state); 405 state = aa_dfa_null_transition(profile->file.dfa, state);
389 aa_str_perms(profile->file.dfa, state, tname, &cond, &perms); 406 aa_str_perms(profile->file.dfa, state, tname, cond, &perms);
390 407
391 /* force audit/quiet masks for link are stored in the second entry 408 /* force audit/quiet masks for link are stored in the second entry
392 * in the link pair. 409 * in the link pair.
@@ -397,6 +414,7 @@ int aa_path_link(struct aa_profile *profile, struct dentry *old_dentry,
397 414
398 if (!(perms.allow & AA_MAY_LINK)) { 415 if (!(perms.allow & AA_MAY_LINK)) {
399 info = "target restricted"; 416 info = "target restricted";
417 lperms = perms;
400 goto audit; 418 goto audit;
401 } 419 }
402 420
@@ -404,10 +422,10 @@ int aa_path_link(struct aa_profile *profile, struct dentry *old_dentry,
404 if (!(perms.allow & AA_LINK_SUBSET)) 422 if (!(perms.allow & AA_LINK_SUBSET))
405 goto done_tests; 423 goto done_tests;
406 424
407 /* Do link perm subset test requiring allowed permission on link are a 425 /* Do link perm subset test requiring allowed permission on link are
408 * subset of the allowed permissions on target. 426 * a subset of the allowed permissions on target.
409 */ 427 */
410 aa_str_perms(profile->file.dfa, profile->file.start, tname, &cond, 428 aa_str_perms(profile->file.dfa, profile->file.start, tname, cond,
411 &perms); 429 &perms);
412 430
413 /* AA_MAY_LINK is not considered in the subset test */ 431 /* AA_MAY_LINK is not considered in the subset test */
@@ -429,10 +447,121 @@ done_tests:
429 error = 0; 447 error = 0;
430 448
431audit: 449audit:
432 error = aa_audit_file(profile, &lperms, OP_LINK, request, 450 return aa_audit_file(profile, &lperms, OP_LINK, request, lname, tname,
433 lname, tname, cond.uid, info, error); 451 NULL, cond->uid, info, error);
434 kfree(buffer); 452}
435 kfree(buffer2); 453
454/**
455 * aa_path_link - Handle hard link permission check
456 * @label: the label being enforced (NOT NULL)
457 * @old_dentry: the target dentry (NOT NULL)
458 * @new_dir: directory the new link will be created in (NOT NULL)
459 * @new_dentry: the link being created (NOT NULL)
460 *
461 * Handle the permission test for a link & target pair. Permission
462 * is encoded as a pair where the link permission is determined
463 * first, and if allowed, the target is tested. The target test
464 * is done from the point of the link match (not start of DFA)
465 * making the target permission dependent on the link permission match.
466 *
467 * The subset test if required forces that permissions granted
468 * on link are a subset of the permission granted to target.
469 *
470 * Returns: %0 if allowed else error
471 */
472int aa_path_link(struct aa_label *label, struct dentry *old_dentry,
473 const struct path *new_dir, struct dentry *new_dentry)
474{
475 struct path link = { .mnt = new_dir->mnt, .dentry = new_dentry };
476 struct path target = { .mnt = new_dir->mnt, .dentry = old_dentry };
477 struct path_cond cond = {
478 d_backing_inode(old_dentry)->i_uid,
479 d_backing_inode(old_dentry)->i_mode
480 };
481 char *buffer = NULL, *buffer2 = NULL;
482 struct aa_profile *profile;
483 int error;
484
485 /* buffer freed below, lname is pointer in buffer */
486 get_buffers(buffer, buffer2);
487 error = fn_for_each_confined(label, profile,
488 profile_path_link(profile, &link, buffer, &target,
489 buffer2, &cond));
490 put_buffers(buffer, buffer2);
491
492 return error;
493}
494
495static void update_file_ctx(struct aa_file_ctx *fctx, struct aa_label *label,
496 u32 request)
497{
498 struct aa_label *l, *old;
499
500 /* update caching of label on file_ctx */
501 spin_lock(&fctx->lock);
502 old = rcu_dereference_protected(fctx->label,
503 spin_is_locked(&fctx->lock));
504 l = aa_label_merge(old, label, GFP_ATOMIC);
505 if (l) {
506 if (l != old) {
507 rcu_assign_pointer(fctx->label, l);
508 aa_put_label(old);
509 } else
510 aa_put_label(l);
511 fctx->allow |= request;
512 }
513 spin_unlock(&fctx->lock);
514}
515
516static int __file_path_perm(const char *op, struct aa_label *label,
517 struct aa_label *flabel, struct file *file,
518 u32 request, u32 denied)
519{
520 struct aa_profile *profile;
521 struct aa_perms perms = {};
522 struct path_cond cond = {
523 .uid = file_inode(file)->i_uid,
524 .mode = file_inode(file)->i_mode
525 };
526 char *buffer;
527 int flags, error;
528
529 /* revalidation due to label out of date. No revocation at this time */
530 if (!denied && aa_label_is_subset(flabel, label))
531 /* TODO: check for revocation on stale profiles */
532 return 0;
533
534 flags = PATH_DELEGATE_DELETED | (S_ISDIR(cond.mode) ? PATH_IS_DIR : 0);
535 get_buffers(buffer);
536
537 /* check every profile in task label not in current cache */
538 error = fn_for_each_not_in_set(flabel, label, profile,
539 profile_path_perm(op, profile, &file->f_path, buffer,
540 request, &cond, flags, &perms));
541 if (denied && !error) {
542 /*
543 * check every profile in file label that was not tested
544 * in the initial check above.
545 *
546 * TODO: cache full perms so this only happens because of
547 * conditionals
548 * TODO: don't audit here
549 */
550 if (label == flabel)
551 error = fn_for_each(label, profile,
552 profile_path_perm(op, profile, &file->f_path,
553 buffer, request, &cond, flags,
554 &perms));
555 else
556 error = fn_for_each_not_in_set(label, flabel, profile,
557 profile_path_perm(op, profile, &file->f_path,
558 buffer, request, &cond, flags,
559 &perms));
560 }
561 if (!error)
562 update_file_ctx(file_ctx(file), label, request);
563
564 put_buffers(buffer);
436 565
437 return error; 566 return error;
438} 567}
@@ -440,20 +569,114 @@ audit:
440/** 569/**
441 * aa_file_perm - do permission revalidation check & audit for @file 570 * aa_file_perm - do permission revalidation check & audit for @file
442 * @op: operation being checked 571 * @op: operation being checked
443 * @profile: profile being enforced (NOT NULL) 572 * @label: label being enforced (NOT NULL)
444 * @file: file to revalidate access permissions on (NOT NULL) 573 * @file: file to revalidate access permissions on (NOT NULL)
445 * @request: requested permissions 574 * @request: requested permissions
446 * 575 *
447 * Returns: %0 if access allowed else error 576 * Returns: %0 if access allowed else error
448 */ 577 */
449int aa_file_perm(const char *op, struct aa_profile *profile, struct file *file, 578int aa_file_perm(const char *op, struct aa_label *label, struct file *file,
450 u32 request) 579 u32 request)
451{ 580{
452 struct path_cond cond = { 581 struct aa_file_ctx *fctx;
453 .uid = file_inode(file)->i_uid, 582 struct aa_label *flabel;
454 .mode = file_inode(file)->i_mode 583 u32 denied;
455 }; 584 int error = 0;
585
586 AA_BUG(!label);
587 AA_BUG(!file);
588
589 fctx = file_ctx(file);
590
591 rcu_read_lock();
592 flabel = rcu_dereference(fctx->label);
593 AA_BUG(!flabel);
594
595 /* revalidate access, if task is unconfined, or the cached cred
596 * doesn't match or if the request is for more permissions than
597 * was granted.
598 *
599 * Note: the test for !unconfined(flabel) is to handle file
600 * delegation from unconfined tasks
601 */
602 denied = request & ~fctx->allow;
603 if (unconfined(label) || unconfined(flabel) ||
604 (!denied && aa_label_is_subset(flabel, label)))
605 goto done;
606
607 /* TODO: label cross check */
608
609 if (file->f_path.mnt && path_mediated_fs(file->f_path.dentry))
610 error = __file_path_perm(op, label, flabel, file, request,
611 denied);
612
613done:
614 rcu_read_unlock();
615
616 return error;
617}
618
619static void revalidate_tty(struct aa_label *label)
620{
621 struct tty_struct *tty;
622 int drop_tty = 0;
623
624 tty = get_current_tty();
625 if (!tty)
626 return;
627
628 spin_lock(&tty->files_lock);
629 if (!list_empty(&tty->tty_files)) {
630 struct tty_file_private *file_priv;
631 struct file *file;
632 /* TODO: Revalidate access to controlling tty. */
633 file_priv = list_first_entry(&tty->tty_files,
634 struct tty_file_private, list);
635 file = file_priv->file;
636
637 if (aa_file_perm(OP_INHERIT, label, file, MAY_READ | MAY_WRITE))
638 drop_tty = 1;
639 }
640 spin_unlock(&tty->files_lock);
641 tty_kref_put(tty);
456 642
457 return aa_path_perm(op, profile, &file->f_path, PATH_DELEGATE_DELETED, 643 if (drop_tty)
458 request, &cond); 644 no_tty();
645}
646
647static int match_file(const void *p, struct file *file, unsigned int fd)
648{
649 struct aa_label *label = (struct aa_label *)p;
650
651 if (aa_file_perm(OP_INHERIT, label, file, aa_map_file_to_perms(file)))
652 return fd + 1;
653 return 0;
654}
655
656
657/* based on selinux's flush_unauthorized_files */
658void aa_inherit_files(const struct cred *cred, struct files_struct *files)
659{
660 struct aa_label *label = aa_get_newest_cred_label(cred);
661 struct file *devnull = NULL;
662 unsigned int n;
663
664 revalidate_tty(label);
665
666 /* Revalidate access to inherited open files. */
667 n = iterate_fd(files, 0, match_file, label);
668 if (!n) /* none found? */
669 goto out;
670
671 devnull = dentry_open(&aa_null, O_RDWR, cred);
672 if (IS_ERR(devnull))
673 devnull = NULL;
674 /* replace all the matching ones with this */
675 do {
676 replace_fd(n - 1, devnull, 0);
677 } while ((n = iterate_fd(files, n, match_file, label)) != 0);
678 if (devnull)
679 fput(devnull);
680out:
681 aa_put_label(label);
459} 682}