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