apparmor: Enable tuning of policy paranoid load for embedded systems
[linux-block.git] / security / apparmor / apparmorfs.c
CommitLineData
b886d83c 1// SPDX-License-Identifier: GPL-2.0-only
63e2b423
JJ
2/*
3 * AppArmor security module
4 *
5 * This file contains AppArmor /sys/kernel/security/apparmor interface functions
6 *
7 * Copyright (C) 1998-2008 Novell/SUSE
8 * Copyright 2009-2010 Canonical Ltd.
63e2b423
JJ
9 */
10
0d259f04 11#include <linux/ctype.h>
63e2b423
JJ
12#include <linux/security.h>
13#include <linux/vmalloc.h>
876979c9 14#include <linux/init.h>
63e2b423
JJ
15#include <linux/seq_file.h>
16#include <linux/uaccess.h>
a71ada30 17#include <linux/mount.h>
63e2b423 18#include <linux/namei.h>
e74abcf3 19#include <linux/capability.h>
29b3822f 20#include <linux/rcupdate.h>
a71ada30 21#include <linux/fs.h>
b0ecc9da 22#include <linux/fs_context.h>
d9bf2c26 23#include <linux/poll.h>
63c16c3a 24#include <linux/zlib.h>
a481f4d9
JJ
25#include <uapi/linux/major.h>
26#include <uapi/linux/magic.h>
63e2b423
JJ
27
28#include "include/apparmor.h"
29#include "include/apparmorfs.h"
30#include "include/audit.h"
d8889d49 31#include "include/cred.h"
f8eb8a13 32#include "include/crypto.h"
cd1dbf76 33#include "include/ipc.h"
317d9a05 34#include "include/label.h"
63e2b423 35#include "include/policy.h"
cff281f6 36#include "include/policy_ns.h"
d384b0a1 37#include "include/resource.h"
5ac8c355 38#include "include/policy_unpack.h"
63e2b423 39
c97204ba
JJ
40/*
41 * The apparmor filesystem interface used for policy load and introspection
42 * The interface is split into two main components based on their function
43 * a securityfs component:
44 * used for static files that are always available, and which allows
45 * userspace to specificy the location of the security filesystem.
46 *
47 * fns and data are prefixed with
48 * aa_sfs_
49 *
50 * an apparmorfs component:
51 * used loaded policy content and introspection. It is not part of a
52 * regular mounted filesystem and is available only through the magic
53 * policy symlink in the root of the securityfs apparmor/ directory.
54 * Tasks queries will be magically redirected to the correct portion
55 * of the policy tree based on their confinement.
56 *
57 * fns and data are prefixed with
58 * aafs_
59 *
60 * The aa_fs_ prefix is used to indicate the fn is used by both the
61 * securityfs and apparmorfs filesystems.
62 */
63
64
65/*
66 * support fns
67 */
68
63c16c3a
CC
69struct rawdata_f_data {
70 struct aa_loaddata *loaddata;
71};
72
d61c57fd 73#ifdef CONFIG_SECURITY_APPARMOR_EXPORT_BINARY
63c16c3a
CC
74#define RAWDATA_F_DATA_BUF(p) (char *)(p + 1)
75
76static void rawdata_f_data_free(struct rawdata_f_data *private)
77{
78 if (!private)
79 return;
80
81 aa_put_loaddata(private->loaddata);
82 kvfree(private);
83}
84
85static struct rawdata_f_data *rawdata_f_data_alloc(size_t size)
86{
87 struct rawdata_f_data *ret;
88
89 if (size > SIZE_MAX - sizeof(*ret))
90 return ERR_PTR(-EINVAL);
91
92 ret = kvzalloc(sizeof(*ret) + size, GFP_KERNEL);
93 if (!ret)
94 return ERR_PTR(-ENOMEM);
95
96 return ret;
97}
d61c57fd 98#endif
63c16c3a 99
0d259f04
JJ
100/**
101 * aa_mangle_name - mangle a profile name to std profile layout form
102 * @name: profile name to mangle (NOT NULL)
103 * @target: buffer to store mangled name, same length as @name (MAYBE NULL)
104 *
105 * Returns: length of mangled name
106 */
bbe4a7c8 107static int mangle_name(const char *name, char *target)
0d259f04
JJ
108{
109 char *t = target;
110
111 while (*name == '/' || *name == '.')
112 name++;
113
114 if (target) {
115 for (; *name; name++) {
116 if (*name == '/')
117 *(t)++ = '.';
118 else if (isspace(*name))
119 *(t)++ = '_';
120 else if (isalnum(*name) || strchr("._-", *name))
121 *(t)++ = *name;
122 }
123
124 *t = 0;
125 } else {
126 int len = 0;
127 for (; *name; name++) {
128 if (isalnum(*name) || isspace(*name) ||
129 strchr("/._-", *name))
130 len++;
131 }
132
133 return len;
134 }
135
136 return t - target;
137}
138
a481f4d9
JJ
139
140/*
141 * aafs - core fns and data for the policy tree
142 */
143
144#define AAFS_NAME "apparmorfs"
145static struct vfsmount *aafs_mnt;
146static int aafs_count;
147
148
149static int aafs_show_path(struct seq_file *seq, struct dentry *dentry)
150{
a0781209 151 seq_printf(seq, "%s:[%lu]", AAFS_NAME, d_inode(dentry)->i_ino);
a481f4d9
JJ
152 return 0;
153}
154
27afa27d 155static void aafs_free_inode(struct inode *inode)
a481f4d9 156{
a481f4d9
JJ
157 if (S_ISLNK(inode->i_mode))
158 kfree(inode->i_link);
f51dcd0f
AV
159 free_inode_nonrcu(inode);
160}
161
a481f4d9
JJ
162static const struct super_operations aafs_super_ops = {
163 .statfs = simple_statfs,
27afa27d 164 .free_inode = aafs_free_inode,
a481f4d9
JJ
165 .show_path = aafs_show_path,
166};
167
b0ecc9da 168static int apparmorfs_fill_super(struct super_block *sb, struct fs_context *fc)
a481f4d9
JJ
169{
170 static struct tree_descr files[] = { {""} };
171 int error;
172
173 error = simple_fill_super(sb, AAFS_MAGIC, files);
174 if (error)
175 return error;
176 sb->s_op = &aafs_super_ops;
177
178 return 0;
179}
180
b0ecc9da 181static int apparmorfs_get_tree(struct fs_context *fc)
a481f4d9 182{
b0ecc9da
DH
183 return get_tree_single(fc, apparmorfs_fill_super);
184}
185
186static const struct fs_context_operations apparmorfs_context_ops = {
187 .get_tree = apparmorfs_get_tree,
188};
189
190static int apparmorfs_init_fs_context(struct fs_context *fc)
191{
192 fc->ops = &apparmorfs_context_ops;
193 return 0;
a481f4d9
JJ
194}
195
196static struct file_system_type aafs_ops = {
197 .owner = THIS_MODULE,
198 .name = AAFS_NAME,
b0ecc9da 199 .init_fs_context = apparmorfs_init_fs_context,
a481f4d9
JJ
200 .kill_sb = kill_anon_super,
201};
202
203/**
204 * __aafs_setup_d_inode - basic inode setup for apparmorfs
205 * @dir: parent directory for the dentry
206 * @dentry: dentry we are seting the inode up for
207 * @mode: permissions the file should have
208 * @data: data to store on inode.i_private, available in open()
209 * @link: if symlink, symlink target string
210 * @fops: struct file_operations that should be used
211 * @iops: struct of inode_operations that should be used
212 */
213static int __aafs_setup_d_inode(struct inode *dir, struct dentry *dentry,
214 umode_t mode, void *data, char *link,
215 const struct file_operations *fops,
216 const struct inode_operations *iops)
217{
218 struct inode *inode = new_inode(dir->i_sb);
219
220 AA_BUG(!dir);
221 AA_BUG(!dentry);
222
223 if (!inode)
224 return -ENOMEM;
225
226 inode->i_ino = get_next_ino();
227 inode->i_mode = mode;
228 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
229 inode->i_private = data;
230 if (S_ISDIR(mode)) {
231 inode->i_op = iops ? iops : &simple_dir_inode_operations;
232 inode->i_fop = &simple_dir_operations;
233 inc_nlink(inode);
234 inc_nlink(dir);
235 } else if (S_ISLNK(mode)) {
236 inode->i_op = iops ? iops : &simple_symlink_inode_operations;
237 inode->i_link = link;
238 } else {
239 inode->i_fop = fops;
240 }
241 d_instantiate(dentry, inode);
242 dget(dentry);
243
244 return 0;
245}
246
247/**
248 * aafs_create - create a dentry in the apparmorfs filesystem
249 *
250 * @name: name of dentry to create
251 * @mode: permissions the file should have
252 * @parent: parent directory for this dentry
253 * @data: data to store on inode.i_private, available in open()
254 * @link: if symlink, symlink target string
255 * @fops: struct file_operations that should be used for
256 * @iops: struct of inode_operations that should be used
257 *
258 * This is the basic "create a xxx" function for apparmorfs.
259 *
260 * Returns a pointer to a dentry if it succeeds, that must be free with
261 * aafs_remove(). Will return ERR_PTR on failure.
262 */
263static struct dentry *aafs_create(const char *name, umode_t mode,
264 struct dentry *parent, void *data, void *link,
265 const struct file_operations *fops,
266 const struct inode_operations *iops)
267{
268 struct dentry *dentry;
269 struct inode *dir;
270 int error;
271
272 AA_BUG(!name);
273 AA_BUG(!parent);
274
275 if (!(mode & S_IFMT))
276 mode = (mode & S_IALLUGO) | S_IFREG;
277
278 error = simple_pin_fs(&aafs_ops, &aafs_mnt, &aafs_count);
279 if (error)
280 return ERR_PTR(error);
281
282 dir = d_inode(parent);
283
284 inode_lock(dir);
285 dentry = lookup_one_len(name, parent, strlen(name));
5d314a81
DC
286 if (IS_ERR(dentry)) {
287 error = PTR_ERR(dentry);
a481f4d9 288 goto fail_lock;
5d314a81 289 }
a481f4d9
JJ
290
291 if (d_really_is_positive(dentry)) {
292 error = -EEXIST;
293 goto fail_dentry;
294 }
295
296 error = __aafs_setup_d_inode(dir, dentry, mode, data, link, fops, iops);
297 if (error)
298 goto fail_dentry;
299 inode_unlock(dir);
300
301 return dentry;
302
303fail_dentry:
304 dput(dentry);
305
306fail_lock:
307 inode_unlock(dir);
308 simple_release_fs(&aafs_mnt, &aafs_count);
309
310 return ERR_PTR(error);
311}
312
313/**
314 * aafs_create_file - create a file in the apparmorfs filesystem
315 *
316 * @name: name of dentry to create
317 * @mode: permissions the file should have
318 * @parent: parent directory for this dentry
319 * @data: data to store on inode.i_private, available in open()
320 * @fops: struct file_operations that should be used for
321 *
322 * see aafs_create
323 */
324static struct dentry *aafs_create_file(const char *name, umode_t mode,
325 struct dentry *parent, void *data,
326 const struct file_operations *fops)
327{
328 return aafs_create(name, mode, parent, data, NULL, fops, NULL);
329}
330
331/**
332 * aafs_create_dir - create a directory in the apparmorfs filesystem
333 *
334 * @name: name of dentry to create
335 * @parent: parent directory for this dentry
336 *
337 * see aafs_create
338 */
339static struct dentry *aafs_create_dir(const char *name, struct dentry *parent)
340{
341 return aafs_create(name, S_IFDIR | 0755, parent, NULL, NULL, NULL,
342 NULL);
343}
344
a481f4d9
JJ
345/**
346 * aafs_remove - removes a file or directory from the apparmorfs filesystem
347 *
348 * @dentry: dentry of the file/directory/symlink to removed.
349 */
350static void aafs_remove(struct dentry *dentry)
351{
352 struct inode *dir;
353
354 if (!dentry || IS_ERR(dentry))
355 return;
356
357 dir = d_inode(dentry->d_parent);
358 inode_lock(dir);
359 if (simple_positive(dentry)) {
360 if (d_is_dir(dentry))
361 simple_rmdir(dir, dentry);
362 else
363 simple_unlink(dir, dentry);
201218e4 364 d_delete(dentry);
a481f4d9
JJ
365 dput(dentry);
366 }
367 inode_unlock(dir);
368 simple_release_fs(&aafs_mnt, &aafs_count);
369}
370
371
372/*
373 * aa_fs - policy load/replace/remove
374 */
375
63e2b423
JJ
376/**
377 * aa_simple_write_to_buffer - common routine for getting policy from user
63e2b423 378 * @userbuf: user buffer to copy data from (NOT NULL)
3ed02ada 379 * @alloc_size: size of user buffer (REQUIRES: @alloc_size >= @copy_size)
63e2b423
JJ
380 * @copy_size: size of data to copy from user buffer
381 * @pos: position write is at in the file (NOT NULL)
382 *
383 * Returns: kernel buffer containing copy of user buffer data or an
384 * ERR_PTR on failure.
385 */
5ef50d01 386static struct aa_loaddata *aa_simple_write_to_buffer(const char __user *userbuf,
5ac8c355
JJ
387 size_t alloc_size,
388 size_t copy_size,
389 loff_t *pos)
63e2b423 390{
5ac8c355 391 struct aa_loaddata *data;
63e2b423 392
e6bfa25d 393 AA_BUG(copy_size > alloc_size);
3ed02ada 394
63e2b423
JJ
395 if (*pos != 0)
396 /* only writes from pos 0, that is complete writes */
397 return ERR_PTR(-ESPIPE);
398
63e2b423 399 /* freed by caller to simple_write_to_buffer */
5d5182ca
JJ
400 data = aa_loaddata_alloc(alloc_size);
401 if (IS_ERR(data))
402 return data;
63e2b423 403
5d5182ca 404 data->size = copy_size;
5ac8c355 405 if (copy_from_user(data->data, userbuf, copy_size)) {
63e2b423
JJ
406 kvfree(data);
407 return ERR_PTR(-EFAULT);
408 }
409
410 return data;
411}
412
18e99f19 413static ssize_t policy_update(u32 mask, const char __user *buf, size_t size,
b7fd2c03 414 loff_t *pos, struct aa_ns *ns)
63e2b423 415{
5ac8c355 416 struct aa_loaddata *data;
637f688d
JJ
417 struct aa_label *label;
418 ssize_t error;
cf797c0e 419
637f688d 420 label = begin_current_label_crit_section();
cf797c0e 421
5ac8c355
JJ
422 /* high level check about policy management - fine grained in
423 * below after unpack
424 */
637f688d 425 error = aa_may_manage_policy(label, ns, mask);
5ac8c355 426 if (error)
c6b39f07 427 goto end_section;
63e2b423 428
5ef50d01 429 data = aa_simple_write_to_buffer(buf, size, size, pos);
63e2b423
JJ
430 error = PTR_ERR(data);
431 if (!IS_ERR(data)) {
637f688d 432 error = aa_replace_profiles(ns, label, mask, data);
5ac8c355 433 aa_put_loaddata(data);
63e2b423 434 }
c6b39f07 435end_section:
637f688d 436 end_current_label_crit_section(label);
63e2b423
JJ
437
438 return error;
439}
440
b7fd2c03 441/* .load file hook fn to load policy */
5ac8c355
JJ
442static ssize_t profile_load(struct file *f, const char __user *buf, size_t size,
443 loff_t *pos)
444{
b7fd2c03 445 struct aa_ns *ns = aa_get_ns(f->f_inode->i_private);
18e99f19 446 int error = policy_update(AA_MAY_LOAD_POLICY, buf, size, pos, ns);
b7fd2c03
JJ
447
448 aa_put_ns(ns);
5ac8c355
JJ
449
450 return error;
451}
452
63e2b423 453static const struct file_operations aa_fs_profile_load = {
6038f373
AB
454 .write = profile_load,
455 .llseek = default_llseek,
63e2b423
JJ
456};
457
458/* .replace file hook fn to load and/or replace policy */
459static ssize_t profile_replace(struct file *f, const char __user *buf,
460 size_t size, loff_t *pos)
461{
b7fd2c03 462 struct aa_ns *ns = aa_get_ns(f->f_inode->i_private);
18e99f19
JJ
463 int error = policy_update(AA_MAY_LOAD_POLICY | AA_MAY_REPLACE_POLICY,
464 buf, size, pos, ns);
b7fd2c03 465 aa_put_ns(ns);
63e2b423
JJ
466
467 return error;
468}
469
470static const struct file_operations aa_fs_profile_replace = {
6038f373
AB
471 .write = profile_replace,
472 .llseek = default_llseek,
63e2b423
JJ
473};
474
b7fd2c03 475/* .remove file hook fn to remove loaded policy */
63e2b423
JJ
476static ssize_t profile_remove(struct file *f, const char __user *buf,
477 size_t size, loff_t *pos)
478{
5ac8c355 479 struct aa_loaddata *data;
637f688d 480 struct aa_label *label;
63e2b423 481 ssize_t error;
b7fd2c03 482 struct aa_ns *ns = aa_get_ns(f->f_inode->i_private);
63e2b423 483
637f688d 484 label = begin_current_label_crit_section();
5ac8c355
JJ
485 /* high level check about policy management - fine grained in
486 * below after unpack
487 */
637f688d 488 error = aa_may_manage_policy(label, ns, AA_MAY_REMOVE_POLICY);
5ac8c355
JJ
489 if (error)
490 goto out;
491
63e2b423
JJ
492 /*
493 * aa_remove_profile needs a null terminated string so 1 extra
494 * byte is allocated and the copied data is null terminated.
495 */
5ef50d01 496 data = aa_simple_write_to_buffer(buf, size + 1, size, pos);
63e2b423
JJ
497
498 error = PTR_ERR(data);
499 if (!IS_ERR(data)) {
5ac8c355 500 data->data[size] = 0;
637f688d 501 error = aa_remove_profiles(ns, label, data->data, size);
5ac8c355 502 aa_put_loaddata(data);
63e2b423 503 }
5ac8c355 504 out:
637f688d 505 end_current_label_crit_section(label);
b7fd2c03 506 aa_put_ns(ns);
63e2b423
JJ
507 return error;
508}
509
510static const struct file_operations aa_fs_profile_remove = {
6038f373
AB
511 .write = profile_remove,
512 .llseek = default_llseek,
63e2b423
JJ
513};
514
d9bf2c26
JJ
515struct aa_revision {
516 struct aa_ns *ns;
517 long last_read;
518};
519
520/* revision file hook fn for policy loads */
521static int ns_revision_release(struct inode *inode, struct file *file)
522{
523 struct aa_revision *rev = file->private_data;
524
525 if (rev) {
526 aa_put_ns(rev->ns);
527 kfree(rev);
528 }
529
530 return 0;
531}
532
533static ssize_t ns_revision_read(struct file *file, char __user *buf,
534 size_t size, loff_t *ppos)
535{
536 struct aa_revision *rev = file->private_data;
537 char buffer[32];
538 long last_read;
539 int avail;
540
feb3c766 541 mutex_lock_nested(&rev->ns->lock, rev->ns->level);
d9bf2c26
JJ
542 last_read = rev->last_read;
543 if (last_read == rev->ns->revision) {
544 mutex_unlock(&rev->ns->lock);
545 if (file->f_flags & O_NONBLOCK)
546 return -EAGAIN;
547 if (wait_event_interruptible(rev->ns->wait,
548 last_read !=
549 READ_ONCE(rev->ns->revision)))
550 return -ERESTARTSYS;
feb3c766 551 mutex_lock_nested(&rev->ns->lock, rev->ns->level);
d9bf2c26
JJ
552 }
553
554 avail = sprintf(buffer, "%ld\n", rev->ns->revision);
555 if (*ppos + size > avail) {
556 rev->last_read = rev->ns->revision;
557 *ppos = 0;
558 }
559 mutex_unlock(&rev->ns->lock);
560
561 return simple_read_from_buffer(buf, size, ppos, buffer, avail);
562}
563
564static int ns_revision_open(struct inode *inode, struct file *file)
565{
566 struct aa_revision *rev = kzalloc(sizeof(*rev), GFP_KERNEL);
567
568 if (!rev)
569 return -ENOMEM;
570
571 rev->ns = aa_get_ns(inode->i_private);
572 if (!rev->ns)
573 rev->ns = aa_get_current_ns();
574 file->private_data = rev;
575
576 return 0;
577}
578
e6c5a7d9 579static __poll_t ns_revision_poll(struct file *file, poll_table *pt)
d9bf2c26
JJ
580{
581 struct aa_revision *rev = file->private_data;
e6c5a7d9 582 __poll_t mask = 0;
d9bf2c26
JJ
583
584 if (rev) {
feb3c766 585 mutex_lock_nested(&rev->ns->lock, rev->ns->level);
d9bf2c26
JJ
586 poll_wait(file, &rev->ns->wait, pt);
587 if (rev->last_read < rev->ns->revision)
a9a08845 588 mask |= EPOLLIN | EPOLLRDNORM;
d9bf2c26
JJ
589 mutex_unlock(&rev->ns->lock);
590 }
591
592 return mask;
593}
594
5d5182ca
JJ
595void __aa_bump_ns_revision(struct aa_ns *ns)
596{
0df34a64 597 WRITE_ONCE(ns->revision, READ_ONCE(ns->revision) + 1);
d9bf2c26 598 wake_up_interruptible(&ns->wait);
5d5182ca
JJ
599}
600
d9bf2c26
JJ
601static const struct file_operations aa_fs_ns_revision_fops = {
602 .owner = THIS_MODULE,
603 .open = ns_revision_open,
604 .poll = ns_revision_poll,
605 .read = ns_revision_read,
606 .llseek = generic_file_llseek,
607 .release = ns_revision_release,
608};
609
4f3b3f2d
JJ
610static void profile_query_cb(struct aa_profile *profile, struct aa_perms *perms,
611 const char *match_str, size_t match_len)
612{
f4585bc2 613 struct aa_perms tmp = { };
4f3b3f2d
JJ
614 struct aa_dfa *dfa;
615 unsigned int state = 0;
616
637f688d 617 if (profile_unconfined(profile))
4f3b3f2d
JJ
618 return;
619 if (profile->file.dfa && *match_str == AA_CLASS_FILE) {
620 dfa = profile->file.dfa;
621 state = aa_dfa_match_len(dfa, profile->file.start,
622 match_str + 1, match_len - 1);
4f3b3f2d
JJ
623 if (state) {
624 struct path_cond cond = { };
625
626 tmp = aa_compute_fperms(dfa, state, &cond);
627 }
628 } else if (profile->policy.dfa) {
b9590ad4 629 if (!PROFILE_MEDIATES(profile, *match_str))
4f3b3f2d
JJ
630 return; /* no change to current perms */
631 dfa = profile->policy.dfa;
632 state = aa_dfa_match_len(dfa, profile->policy.start[0],
633 match_str, match_len);
634 if (state)
635 aa_compute_perms(dfa, state, &tmp);
4f3b3f2d
JJ
636 }
637 aa_apply_modes_to_perms(profile, &tmp);
317d9a05 638 aa_perms_accum_raw(perms, &tmp);
4f3b3f2d
JJ
639}
640
641
e025be0f
WH
642/**
643 * query_data - queries a policy and writes its data to buf
644 * @buf: the resulting data is stored here (NOT NULL)
645 * @buf_len: size of buf
646 * @query: query string used to retrieve data
647 * @query_len: size of query including second NUL byte
648 *
649 * The buffers pointed to by buf and query may overlap. The query buffer is
650 * parsed before buf is written to.
651 *
652 * The query should look like "<LABEL>\0<KEY>\0", where <LABEL> is the name of
653 * the security confinement context and <KEY> is the name of the data to
654 * retrieve. <LABEL> and <KEY> must not be NUL-terminated.
655 *
656 * Don't expect the contents of buf to be preserved on failure.
657 *
658 * Returns: number of characters written to buf or -errno on failure
659 */
660static ssize_t query_data(char *buf, size_t buf_len,
661 char *query, size_t query_len)
662{
663 char *out;
664 const char *key;
317d9a05 665 struct label_it i;
637f688d 666 struct aa_label *label, *curr;
317d9a05 667 struct aa_profile *profile;
e025be0f
WH
668 struct aa_data *data;
669 u32 bytes, blocks;
670 __le32 outle32;
671
672 if (!query_len)
673 return -EINVAL; /* need a query */
674
675 key = query + strnlen(query, query_len) + 1;
676 if (key + 1 >= query + query_len)
677 return -EINVAL; /* not enough space for a non-empty key */
678 if (key + strnlen(key, query + query_len - key) >= query + query_len)
679 return -EINVAL; /* must end with NUL */
680
681 if (buf_len < sizeof(bytes) + sizeof(blocks))
682 return -EINVAL; /* not enough space */
683
637f688d
JJ
684 curr = begin_current_label_crit_section();
685 label = aa_label_parse(curr, query, GFP_KERNEL, false, false);
686 end_current_label_crit_section(curr);
687 if (IS_ERR(label))
688 return PTR_ERR(label);
e025be0f
WH
689
690 /* We are going to leave space for two numbers. The first is the total
691 * number of bytes we are writing after the first number. This is so
692 * users can read the full output without reallocation.
693 *
694 * The second number is the number of data blocks we're writing. An
695 * application might be confined by multiple policies having data in
696 * the same key.
697 */
698 memset(buf, 0, sizeof(bytes) + sizeof(blocks));
699 out = buf + sizeof(bytes) + sizeof(blocks);
700
701 blocks = 0;
317d9a05
JJ
702 label_for_each_confined(i, label, profile) {
703 if (!profile->data)
704 continue;
705
706 data = rhashtable_lookup_fast(profile->data, &key,
707 profile->data->p);
e025be0f
WH
708
709 if (data) {
317d9a05
JJ
710 if (out + sizeof(outle32) + data->size > buf +
711 buf_len) {
637f688d 712 aa_put_label(label);
e025be0f 713 return -EINVAL; /* not enough space */
637f688d 714 }
e025be0f
WH
715 outle32 = __cpu_to_le32(data->size);
716 memcpy(out, &outle32, sizeof(outle32));
717 out += sizeof(outle32);
718 memcpy(out, data->data, data->size);
719 out += data->size;
720 blocks++;
721 }
722 }
637f688d 723 aa_put_label(label);
e025be0f
WH
724
725 outle32 = __cpu_to_le32(out - buf - sizeof(bytes));
726 memcpy(buf, &outle32, sizeof(outle32));
727 outle32 = __cpu_to_le32(blocks);
728 memcpy(buf + sizeof(bytes), &outle32, sizeof(outle32));
729
730 return out - buf;
731}
732
4f3b3f2d
JJ
733/**
734 * query_label - queries a label and writes permissions to buf
735 * @buf: the resulting permissions string is stored here (NOT NULL)
736 * @buf_len: size of buf
737 * @query: binary query string to match against the dfa
738 * @query_len: size of query
739 * @view_only: only compute for querier's view
740 *
741 * The buffers pointed to by buf and query may overlap. The query buffer is
742 * parsed before buf is written to.
743 *
744 * The query should look like "LABEL_NAME\0DFA_STRING" where LABEL_NAME is
745 * the name of the label, in the current namespace, that is to be queried and
746 * DFA_STRING is a binary string to match against the label(s)'s DFA.
747 *
748 * LABEL_NAME must be NUL terminated. DFA_STRING may contain NUL characters
749 * but must *not* be NUL terminated.
750 *
751 * Returns: number of characters written to buf or -errno on failure
752 */
753static ssize_t query_label(char *buf, size_t buf_len,
754 char *query, size_t query_len, bool view_only)
755{
317d9a05 756 struct aa_profile *profile;
637f688d 757 struct aa_label *label, *curr;
4f3b3f2d
JJ
758 char *label_name, *match_str;
759 size_t label_name_len, match_len;
760 struct aa_perms perms;
317d9a05 761 struct label_it i;
4f3b3f2d
JJ
762
763 if (!query_len)
764 return -EINVAL;
765
766 label_name = query;
767 label_name_len = strnlen(query, query_len);
768 if (!label_name_len || label_name_len == query_len)
769 return -EINVAL;
770
771 /**
772 * The extra byte is to account for the null byte between the
773 * profile name and dfa string. profile_name_len is greater
774 * than zero and less than query_len, so a byte can be safely
775 * added or subtracted.
776 */
777 match_str = label_name + label_name_len + 1;
778 match_len = query_len - label_name_len - 1;
779
637f688d
JJ
780 curr = begin_current_label_crit_section();
781 label = aa_label_parse(curr, label_name, GFP_KERNEL, false, false);
782 end_current_label_crit_section(curr);
783 if (IS_ERR(label))
784 return PTR_ERR(label);
4f3b3f2d
JJ
785
786 perms = allperms;
317d9a05
JJ
787 if (view_only) {
788 label_for_each_in_ns(i, labels_ns(label), label, profile) {
789 profile_query_cb(profile, &perms, match_str, match_len);
790 }
791 } else {
792 label_for_each(i, label, profile) {
793 profile_query_cb(profile, &perms, match_str, match_len);
794 }
795 }
796 aa_put_label(label);
4f3b3f2d
JJ
797
798 return scnprintf(buf, buf_len,
799 "allow 0x%08x\ndeny 0x%08x\naudit 0x%08x\nquiet 0x%08x\n",
800 perms.allow, perms.deny, perms.audit, perms.quiet);
801}
802
1dea3b41
JJ
803/*
804 * Transaction based IO.
805 * The file expects a write which triggers the transaction, and then
806 * possibly a read(s) which collects the result - which is stored in a
807 * file-local buffer. Once a new write is performed, a new set of results
808 * are stored in the file-local buffer.
809 */
810struct multi_transaction {
811 struct kref count;
812 ssize_t size;
fe9fd23e 813 char data[];
1dea3b41
JJ
814};
815
816#define MULTI_TRANSACTION_LIMIT (PAGE_SIZE - sizeof(struct multi_transaction))
1dea3b41
JJ
817
818static void multi_transaction_kref(struct kref *kref)
819{
820 struct multi_transaction *t;
821
822 t = container_of(kref, struct multi_transaction, count);
823 free_page((unsigned long) t);
824}
825
826static struct multi_transaction *
827get_multi_transaction(struct multi_transaction *t)
828{
829 if (t)
830 kref_get(&(t->count));
831
832 return t;
833}
834
835static void put_multi_transaction(struct multi_transaction *t)
836{
837 if (t)
838 kref_put(&(t->count), multi_transaction_kref);
839}
840
841/* does not increment @new's count */
842static void multi_transaction_set(struct file *file,
843 struct multi_transaction *new, size_t n)
844{
845 struct multi_transaction *old;
846
847 AA_BUG(n > MULTI_TRANSACTION_LIMIT);
848
849 new->size = n;
d0d845a7 850 spin_lock(&file->f_lock);
1dea3b41
JJ
851 old = (struct multi_transaction *) file->private_data;
852 file->private_data = new;
d0d845a7 853 spin_unlock(&file->f_lock);
1dea3b41
JJ
854 put_multi_transaction(old);
855}
856
857static struct multi_transaction *multi_transaction_new(struct file *file,
858 const char __user *buf,
859 size_t size)
860{
861 struct multi_transaction *t;
862
863 if (size > MULTI_TRANSACTION_LIMIT - 1)
864 return ERR_PTR(-EFBIG);
865
866 t = (struct multi_transaction *)get_zeroed_page(GFP_KERNEL);
867 if (!t)
868 return ERR_PTR(-ENOMEM);
869 kref_init(&t->count);
870 if (copy_from_user(t->data, buf, size))
871 return ERR_PTR(-EFAULT);
872
873 return t;
874}
875
876static ssize_t multi_transaction_read(struct file *file, char __user *buf,
877 size_t size, loff_t *pos)
878{
879 struct multi_transaction *t;
880 ssize_t ret;
881
d0d845a7 882 spin_lock(&file->f_lock);
1dea3b41 883 t = get_multi_transaction(file->private_data);
d0d845a7
HM
884 spin_unlock(&file->f_lock);
885
1dea3b41
JJ
886 if (!t)
887 return 0;
888
889 ret = simple_read_from_buffer(buf, size, pos, t->data, t->size);
890 put_multi_transaction(t);
891
892 return ret;
893}
894
895static int multi_transaction_release(struct inode *inode, struct file *file)
896{
897 put_multi_transaction(file->private_data);
898
899 return 0;
900}
901
317d9a05
JJ
902#define QUERY_CMD_LABEL "label\0"
903#define QUERY_CMD_LABEL_LEN 6
4f3b3f2d
JJ
904#define QUERY_CMD_PROFILE "profile\0"
905#define QUERY_CMD_PROFILE_LEN 8
317d9a05
JJ
906#define QUERY_CMD_LABELALL "labelall\0"
907#define QUERY_CMD_LABELALL_LEN 9
e025be0f
WH
908#define QUERY_CMD_DATA "data\0"
909#define QUERY_CMD_DATA_LEN 5
910
911/**
912 * aa_write_access - generic permissions and data query
913 * @file: pointer to open apparmorfs/access file
914 * @ubuf: user buffer containing the complete query string (NOT NULL)
915 * @count: size of ubuf
916 * @ppos: position in the file (MUST BE ZERO)
917 *
918 * Allows for one permissions or data query per open(), write(), and read()
919 * sequence. The only queries currently supported are label-based queries for
920 * permissions or data.
921 *
922 * For permissions queries, ubuf must begin with "label\0", followed by the
923 * profile query specific format described in the query_label() function
924 * documentation.
925 *
926 * For data queries, ubuf must have the form "data\0<LABEL>\0<KEY>\0", where
927 * <LABEL> is the name of the security confinement context and <KEY> is the
928 * name of the data to retrieve.
929 *
930 * Returns: number of bytes written or -errno on failure
931 */
932static ssize_t aa_write_access(struct file *file, const char __user *ubuf,
933 size_t count, loff_t *ppos)
934{
1dea3b41 935 struct multi_transaction *t;
e025be0f
WH
936 ssize_t len;
937
938 if (*ppos)
939 return -ESPIPE;
940
1dea3b41
JJ
941 t = multi_transaction_new(file, ubuf, count);
942 if (IS_ERR(t))
943 return PTR_ERR(t);
e025be0f 944
4f3b3f2d
JJ
945 if (count > QUERY_CMD_PROFILE_LEN &&
946 !memcmp(t->data, QUERY_CMD_PROFILE, QUERY_CMD_PROFILE_LEN)) {
947 len = query_label(t->data, MULTI_TRANSACTION_LIMIT,
948 t->data + QUERY_CMD_PROFILE_LEN,
949 count - QUERY_CMD_PROFILE_LEN, true);
317d9a05
JJ
950 } else if (count > QUERY_CMD_LABEL_LEN &&
951 !memcmp(t->data, QUERY_CMD_LABEL, QUERY_CMD_LABEL_LEN)) {
952 len = query_label(t->data, MULTI_TRANSACTION_LIMIT,
953 t->data + QUERY_CMD_LABEL_LEN,
954 count - QUERY_CMD_LABEL_LEN, true);
955 } else if (count > QUERY_CMD_LABELALL_LEN &&
956 !memcmp(t->data, QUERY_CMD_LABELALL,
957 QUERY_CMD_LABELALL_LEN)) {
958 len = query_label(t->data, MULTI_TRANSACTION_LIMIT,
959 t->data + QUERY_CMD_LABELALL_LEN,
960 count - QUERY_CMD_LABELALL_LEN, false);
4f3b3f2d 961 } else if (count > QUERY_CMD_DATA_LEN &&
1dea3b41
JJ
962 !memcmp(t->data, QUERY_CMD_DATA, QUERY_CMD_DATA_LEN)) {
963 len = query_data(t->data, MULTI_TRANSACTION_LIMIT,
964 t->data + QUERY_CMD_DATA_LEN,
e025be0f
WH
965 count - QUERY_CMD_DATA_LEN);
966 } else
967 len = -EINVAL;
968
1dea3b41
JJ
969 if (len < 0) {
970 put_multi_transaction(t);
e025be0f 971 return len;
1dea3b41 972 }
e025be0f 973
1dea3b41 974 multi_transaction_set(file, t, len);
e025be0f
WH
975
976 return count;
977}
978
c97204ba 979static const struct file_operations aa_sfs_access = {
e025be0f 980 .write = aa_write_access,
1dea3b41
JJ
981 .read = multi_transaction_read,
982 .release = multi_transaction_release,
e025be0f
WH
983 .llseek = generic_file_llseek,
984};
985
c97204ba 986static int aa_sfs_seq_show(struct seq_file *seq, void *v)
e74abcf3 987{
c97204ba 988 struct aa_sfs_entry *fs_file = seq->private;
e74abcf3
KC
989
990 if (!fs_file)
991 return 0;
992
993 switch (fs_file->v_type) {
c97204ba 994 case AA_SFS_TYPE_BOOLEAN:
e74abcf3
KC
995 seq_printf(seq, "%s\n", fs_file->v.boolean ? "yes" : "no");
996 break;
c97204ba 997 case AA_SFS_TYPE_STRING:
a9bf8e9f
KC
998 seq_printf(seq, "%s\n", fs_file->v.string);
999 break;
c97204ba 1000 case AA_SFS_TYPE_U64:
e74abcf3
KC
1001 seq_printf(seq, "%#08lx\n", fs_file->v.u64);
1002 break;
1003 default:
1004 /* Ignore unpritable entry types. */
1005 break;
1006 }
1007
1008 return 0;
1009}
1010
c97204ba 1011static int aa_sfs_seq_open(struct inode *inode, struct file *file)
e74abcf3 1012{
c97204ba 1013 return single_open(file, aa_sfs_seq_show, inode->i_private);
e74abcf3
KC
1014}
1015
c97204ba 1016const struct file_operations aa_sfs_seq_file_ops = {
e74abcf3 1017 .owner = THIS_MODULE,
c97204ba 1018 .open = aa_sfs_seq_open,
e74abcf3
KC
1019 .read = seq_read,
1020 .llseek = seq_lseek,
1021 .release = single_release,
1022};
1023
52b97de3
JJ
1024/*
1025 * profile based file operations
1026 * policy/profiles/XXXX/profiles/ *
1027 */
1028
1029#define SEQ_PROFILE_FOPS(NAME) \
1030static int seq_profile_ ##NAME ##_open(struct inode *inode, struct file *file)\
1031{ \
1032 return seq_profile_open(inode, file, seq_profile_ ##NAME ##_show); \
1033} \
1034 \
1035static const struct file_operations seq_profile_ ##NAME ##_fops = { \
1036 .owner = THIS_MODULE, \
1037 .open = seq_profile_ ##NAME ##_open, \
1038 .read = seq_read, \
1039 .llseek = seq_lseek, \
1040 .release = seq_profile_release, \
1041} \
1042
1043static int seq_profile_open(struct inode *inode, struct file *file,
1044 int (*show)(struct seq_file *, void *))
0d259f04 1045{
8399588a
JJ
1046 struct aa_proxy *proxy = aa_get_proxy(inode->i_private);
1047 int error = single_open(file, show, proxy);
0d259f04
JJ
1048
1049 if (error) {
1050 file->private_data = NULL;
8399588a 1051 aa_put_proxy(proxy);
0d259f04
JJ
1052 }
1053
1054 return error;
1055}
1056
52b97de3 1057static int seq_profile_release(struct inode *inode, struct file *file)
0d259f04
JJ
1058{
1059 struct seq_file *seq = (struct seq_file *) file->private_data;
1060 if (seq)
8399588a 1061 aa_put_proxy(seq->private);
0d259f04
JJ
1062 return single_release(inode, file);
1063}
1064
52b97de3 1065static int seq_profile_name_show(struct seq_file *seq, void *v)
0d259f04 1066{
8399588a 1067 struct aa_proxy *proxy = seq->private;
637f688d
JJ
1068 struct aa_label *label = aa_get_label_rcu(&proxy->label);
1069 struct aa_profile *profile = labels_profile(label);
0d259f04 1070 seq_printf(seq, "%s\n", profile->base.name);
637f688d 1071 aa_put_label(label);
0d259f04
JJ
1072
1073 return 0;
1074}
1075
52b97de3 1076static int seq_profile_mode_show(struct seq_file *seq, void *v)
0d259f04 1077{
8399588a 1078 struct aa_proxy *proxy = seq->private;
637f688d
JJ
1079 struct aa_label *label = aa_get_label_rcu(&proxy->label);
1080 struct aa_profile *profile = labels_profile(label);
0d259f04 1081 seq_printf(seq, "%s\n", aa_profile_mode_names[profile->mode]);
637f688d 1082 aa_put_label(label);
0d259f04
JJ
1083
1084 return 0;
1085}
1086
52b97de3 1087static int seq_profile_attach_show(struct seq_file *seq, void *v)
556d0be7 1088{
8399588a 1089 struct aa_proxy *proxy = seq->private;
637f688d
JJ
1090 struct aa_label *label = aa_get_label_rcu(&proxy->label);
1091 struct aa_profile *profile = labels_profile(label);
556d0be7
JJ
1092 if (profile->attach)
1093 seq_printf(seq, "%s\n", profile->attach);
1094 else if (profile->xmatch)
1095 seq_puts(seq, "<unknown>\n");
1096 else
1097 seq_printf(seq, "%s\n", profile->base.name);
637f688d 1098 aa_put_label(label);
556d0be7
JJ
1099
1100 return 0;
1101}
1102
52b97de3 1103static int seq_profile_hash_show(struct seq_file *seq, void *v)
f8eb8a13 1104{
8399588a 1105 struct aa_proxy *proxy = seq->private;
637f688d
JJ
1106 struct aa_label *label = aa_get_label_rcu(&proxy->label);
1107 struct aa_profile *profile = labels_profile(label);
f8eb8a13
JJ
1108 unsigned int i, size = aa_hash_size();
1109
1110 if (profile->hash) {
1111 for (i = 0; i < size; i++)
1112 seq_printf(seq, "%.2x", profile->hash[i]);
47dbd1cd 1113 seq_putc(seq, '\n');
f8eb8a13 1114 }
637f688d 1115 aa_put_label(label);
f8eb8a13
JJ
1116
1117 return 0;
1118}
1119
52b97de3
JJ
1120SEQ_PROFILE_FOPS(name);
1121SEQ_PROFILE_FOPS(mode);
1122SEQ_PROFILE_FOPS(attach);
1123SEQ_PROFILE_FOPS(hash);
f8eb8a13 1124
64c86970
JJ
1125/*
1126 * namespace based files
1127 * several root files and
1128 * policy/ *
1129 */
f8eb8a13 1130
64c86970
JJ
1131#define SEQ_NS_FOPS(NAME) \
1132static int seq_ns_ ##NAME ##_open(struct inode *inode, struct file *file) \
1133{ \
1134 return single_open(file, seq_ns_ ##NAME ##_show, inode->i_private); \
1135} \
1136 \
1137static const struct file_operations seq_ns_ ##NAME ##_fops = { \
1138 .owner = THIS_MODULE, \
1139 .open = seq_ns_ ##NAME ##_open, \
1140 .read = seq_read, \
1141 .llseek = seq_lseek, \
1142 .release = single_release, \
1143} \
3e3e5695 1144
40cde7fc
JJ
1145static int seq_ns_stacked_show(struct seq_file *seq, void *v)
1146{
1147 struct aa_label *label;
1148
1149 label = begin_current_label_crit_section();
1150 seq_printf(seq, "%s\n", label->size > 1 ? "yes" : "no");
1151 end_current_label_crit_section(label);
1152
1153 return 0;
1154}
1155
1156static int seq_ns_nsstacked_show(struct seq_file *seq, void *v)
1157{
1158 struct aa_label *label;
1159 struct aa_profile *profile;
1160 struct label_it it;
1161 int count = 1;
1162
1163 label = begin_current_label_crit_section();
1164
1165 if (label->size > 1) {
1166 label_for_each(it, label, profile)
1167 if (profile->ns != labels_ns(label)) {
1168 count++;
1169 break;
1170 }
1171 }
1172
1173 seq_printf(seq, "%s\n", count > 1 ? "yes" : "no");
1174 end_current_label_crit_section(label);
1175
1176 return 0;
1177}
1178
64c86970 1179static int seq_ns_level_show(struct seq_file *seq, void *v)
a71ada30 1180{
637f688d 1181 struct aa_label *label;
a71ada30 1182
637f688d
JJ
1183 label = begin_current_label_crit_section();
1184 seq_printf(seq, "%d\n", labels_ns(label)->level);
1185 end_current_label_crit_section(label);
a71ada30
JJ
1186
1187 return 0;
1188}
1189
64c86970 1190static int seq_ns_name_show(struct seq_file *seq, void *v)
3e3e5695 1191{
637f688d 1192 struct aa_label *label = begin_current_label_crit_section();
040d9e2b 1193 seq_printf(seq, "%s\n", labels_ns(label)->base.name);
637f688d 1194 end_current_label_crit_section(label);
3e3e5695
JJ
1195
1196 return 0;
1197}
1198
40cde7fc
JJ
1199SEQ_NS_FOPS(stacked);
1200SEQ_NS_FOPS(nsstacked);
64c86970
JJ
1201SEQ_NS_FOPS(level);
1202SEQ_NS_FOPS(name);
3e3e5695 1203
5d5182ca
JJ
1204
1205/* policy/raw_data/ * file ops */
d61c57fd 1206#ifdef CONFIG_SECURITY_APPARMOR_EXPORT_BINARY
5d5182ca
JJ
1207#define SEQ_RAWDATA_FOPS(NAME) \
1208static int seq_rawdata_ ##NAME ##_open(struct inode *inode, struct file *file)\
1209{ \
1210 return seq_rawdata_open(inode, file, seq_rawdata_ ##NAME ##_show); \
1211} \
1212 \
1213static const struct file_operations seq_rawdata_ ##NAME ##_fops = { \
1214 .owner = THIS_MODULE, \
1215 .open = seq_rawdata_ ##NAME ##_open, \
1216 .read = seq_read, \
1217 .llseek = seq_lseek, \
1218 .release = seq_rawdata_release, \
1219} \
1220
1221static int seq_rawdata_open(struct inode *inode, struct file *file,
1222 int (*show)(struct seq_file *, void *))
5ac8c355 1223{
5d5182ca
JJ
1224 struct aa_loaddata *data = __aa_get_loaddata(inode->i_private);
1225 int error;
5ac8c355 1226
5d5182ca
JJ
1227 if (!data)
1228 /* lost race this ent is being reaped */
1229 return -ENOENT;
1230
1231 error = single_open(file, show, data);
1232 if (error) {
1233 AA_BUG(file->private_data &&
1234 ((struct seq_file *)file->private_data)->private);
1235 aa_put_loaddata(data);
1236 }
1237
1238 return error;
5ac8c355
JJ
1239}
1240
5d5182ca 1241static int seq_rawdata_release(struct inode *inode, struct file *file)
5ac8c355 1242{
5d5182ca 1243 struct seq_file *seq = (struct seq_file *) file->private_data;
5ac8c355 1244
5d5182ca
JJ
1245 if (seq)
1246 aa_put_loaddata(seq->private);
0ff3d97f 1247
5d5182ca
JJ
1248 return single_release(inode, file);
1249}
1250
1251static int seq_rawdata_abi_show(struct seq_file *seq, void *v)
1252{
1253 struct aa_loaddata *data = seq->private;
1254
1255 seq_printf(seq, "v%d\n", data->abi);
5ac8c355
JJ
1256
1257 return 0;
1258}
1259
5d5182ca 1260static int seq_rawdata_revision_show(struct seq_file *seq, void *v)
5ac8c355 1261{
5d5182ca 1262 struct aa_loaddata *data = seq->private;
5ac8c355 1263
5d5182ca
JJ
1264 seq_printf(seq, "%ld\n", data->revision);
1265
1266 return 0;
1267}
5ac8c355 1268
5d5182ca 1269static int seq_rawdata_hash_show(struct seq_file *seq, void *v)
5ac8c355 1270{
5d5182ca 1271 struct aa_loaddata *data = seq->private;
5ac8c355
JJ
1272 unsigned int i, size = aa_hash_size();
1273
5d5182ca 1274 if (data->hash) {
5ac8c355 1275 for (i = 0; i < size; i++)
5d5182ca 1276 seq_printf(seq, "%.2x", data->hash[i]);
47dbd1cd 1277 seq_putc(seq, '\n');
5ac8c355 1278 }
5ac8c355
JJ
1279
1280 return 0;
1281}
1282
63c16c3a
CC
1283static int seq_rawdata_compressed_size_show(struct seq_file *seq, void *v)
1284{
1285 struct aa_loaddata *data = seq->private;
1286
1287 seq_printf(seq, "%zu\n", data->compressed_size);
1288
1289 return 0;
1290}
1291
5d5182ca
JJ
1292SEQ_RAWDATA_FOPS(abi);
1293SEQ_RAWDATA_FOPS(revision);
1294SEQ_RAWDATA_FOPS(hash);
63c16c3a
CC
1295SEQ_RAWDATA_FOPS(compressed_size);
1296
1297static int deflate_decompress(char *src, size_t slen, char *dst, size_t dlen)
1298{
1299 int error;
1300 struct z_stream_s strm;
1301
1302 if (aa_g_rawdata_compression_level == 0) {
1303 if (dlen < slen)
1304 return -EINVAL;
1305 memcpy(dst, src, slen);
1306 return 0;
1307 }
1308
1309 memset(&strm, 0, sizeof(strm));
1310
1311 strm.workspace = kvzalloc(zlib_inflate_workspacesize(), GFP_KERNEL);
1312 if (!strm.workspace)
1313 return -ENOMEM;
1314
1315 strm.next_in = src;
1316 strm.avail_in = slen;
1317
1318 error = zlib_inflateInit(&strm);
1319 if (error != Z_OK) {
1320 error = -ENOMEM;
1321 goto fail_inflate_init;
1322 }
1323
1324 strm.next_out = dst;
1325 strm.avail_out = dlen;
1326
1327 error = zlib_inflate(&strm, Z_FINISH);
1328 if (error != Z_STREAM_END)
1329 error = -EINVAL;
1330 else
1331 error = 0;
1332
1333 zlib_inflateEnd(&strm);
1334fail_inflate_init:
1335 kvfree(strm.workspace);
1336 return error;
1337}
5ac8c355
JJ
1338
1339static ssize_t rawdata_read(struct file *file, char __user *buf, size_t size,
1340 loff_t *ppos)
1341{
63c16c3a 1342 struct rawdata_f_data *private = file->private_data;
5ac8c355 1343
63c16c3a
CC
1344 return simple_read_from_buffer(buf, size, ppos,
1345 RAWDATA_F_DATA_BUF(private),
1346 private->loaddata->size);
5ac8c355
JJ
1347}
1348
5d5182ca 1349static int rawdata_release(struct inode *inode, struct file *file)
5ac8c355 1350{
63c16c3a 1351 rawdata_f_data_free(file->private_data);
5d5182ca
JJ
1352
1353 return 0;
1354}
5ac8c355 1355
5d5182ca
JJ
1356static int rawdata_open(struct inode *inode, struct file *file)
1357{
63c16c3a
CC
1358 int error;
1359 struct aa_loaddata *loaddata;
1360 struct rawdata_f_data *private;
1361
92de220a 1362 if (!aa_current_policy_view_capable(NULL))
5ac8c355 1363 return -EACCES;
63c16c3a
CC
1364
1365 loaddata = __aa_get_loaddata(inode->i_private);
1366 if (!loaddata)
5d5182ca
JJ
1367 /* lost race: this entry is being reaped */
1368 return -ENOENT;
5ac8c355 1369
63c16c3a
CC
1370 private = rawdata_f_data_alloc(loaddata->size);
1371 if (IS_ERR(private)) {
1372 error = PTR_ERR(private);
1373 goto fail_private_alloc;
1374 }
1375
1376 private->loaddata = loaddata;
1377
1378 error = deflate_decompress(loaddata->data, loaddata->compressed_size,
1379 RAWDATA_F_DATA_BUF(private),
1380 loaddata->size);
1381 if (error)
1382 goto fail_decompress;
1383
1384 file->private_data = private;
5ac8c355 1385 return 0;
63c16c3a
CC
1386
1387fail_decompress:
1388 rawdata_f_data_free(private);
1389 return error;
1390
1391fail_private_alloc:
1392 aa_put_loaddata(loaddata);
1393 return error;
5ac8c355
JJ
1394}
1395
5d5182ca 1396static const struct file_operations rawdata_fops = {
5ac8c355
JJ
1397 .open = rawdata_open,
1398 .read = rawdata_read,
1399 .llseek = generic_file_llseek,
1400 .release = rawdata_release,
1401};
1402
5d5182ca
JJ
1403static void remove_rawdata_dents(struct aa_loaddata *rawdata)
1404{
1405 int i;
1406
1407 for (i = 0; i < AAFS_LOADDATA_NDENTS; i++) {
1408 if (!IS_ERR_OR_NULL(rawdata->dents[i])) {
1409 /* no refcounts on i_private */
c961ee5f 1410 aafs_remove(rawdata->dents[i]);
5d5182ca
JJ
1411 rawdata->dents[i] = NULL;
1412 }
1413 }
1414}
1415
1416void __aa_fs_remove_rawdata(struct aa_loaddata *rawdata)
1417{
1418 AA_BUG(rawdata->ns && !mutex_is_locked(&rawdata->ns->lock));
1419
1420 if (rawdata->ns) {
1421 remove_rawdata_dents(rawdata);
1422 list_del_init(&rawdata->list);
1423 aa_put_ns(rawdata->ns);
1424 rawdata->ns = NULL;
1425 }
1426}
1427
1428int __aa_fs_create_rawdata(struct aa_ns *ns, struct aa_loaddata *rawdata)
1429{
1430 struct dentry *dent, *dir;
1431
1432 AA_BUG(!ns);
1433 AA_BUG(!rawdata);
1434 AA_BUG(!mutex_is_locked(&ns->lock));
1435 AA_BUG(!ns_subdata_dir(ns));
1436
1437 /*
1438 * just use ns revision dir was originally created at. This is
1439 * under ns->lock and if load is successful revision will be
1440 * bumped and is guaranteed to be unique
1441 */
1442 rawdata->name = kasprintf(GFP_KERNEL, "%ld", ns->revision);
1443 if (!rawdata->name)
1444 return -ENOMEM;
1445
c961ee5f 1446 dir = aafs_create_dir(rawdata->name, ns_subdata_dir(ns));
5d5182ca
JJ
1447 if (IS_ERR(dir))
1448 /* ->name freed when rawdata freed */
1449 return PTR_ERR(dir);
1450 rawdata->dents[AAFS_LOADDATA_DIR] = dir;
1451
c961ee5f 1452 dent = aafs_create_file("abi", S_IFREG | 0444, dir, rawdata,
5d5182ca
JJ
1453 &seq_rawdata_abi_fops);
1454 if (IS_ERR(dent))
1455 goto fail;
1456 rawdata->dents[AAFS_LOADDATA_ABI] = dent;
1457
c961ee5f 1458 dent = aafs_create_file("revision", S_IFREG | 0444, dir, rawdata,
5d5182ca
JJ
1459 &seq_rawdata_revision_fops);
1460 if (IS_ERR(dent))
1461 goto fail;
1462 rawdata->dents[AAFS_LOADDATA_REVISION] = dent;
1463
1464 if (aa_g_hash_policy) {
c961ee5f 1465 dent = aafs_create_file("sha1", S_IFREG | 0444, dir,
5d5182ca
JJ
1466 rawdata, &seq_rawdata_hash_fops);
1467 if (IS_ERR(dent))
1468 goto fail;
1469 rawdata->dents[AAFS_LOADDATA_HASH] = dent;
1470 }
1471
63c16c3a
CC
1472 dent = aafs_create_file("compressed_size", S_IFREG | 0444, dir,
1473 rawdata,
1474 &seq_rawdata_compressed_size_fops);
1475 if (IS_ERR(dent))
1476 goto fail;
1477 rawdata->dents[AAFS_LOADDATA_COMPRESSED_SIZE] = dent;
1478
c961ee5f 1479 dent = aafs_create_file("raw_data", S_IFREG | 0444,
5d5182ca
JJ
1480 dir, rawdata, &rawdata_fops);
1481 if (IS_ERR(dent))
1482 goto fail;
1483 rawdata->dents[AAFS_LOADDATA_DATA] = dent;
1484 d_inode(dent)->i_size = rawdata->size;
1485
1486 rawdata->ns = aa_get_ns(ns);
1487 list_add(&rawdata->list, &ns->rawdata_list);
1488 /* no refcount on inode rawdata */
1489
1490 return 0;
1491
1492fail:
1493 remove_rawdata_dents(rawdata);
1494
1495 return PTR_ERR(dent);
1496}
d61c57fd
JJ
1497#endif /* CONFIG_SECURITY_APPARMOR_EXPORT_BINARY */
1498
5d5182ca 1499
0d259f04 1500/** fns to setup dynamic per profile/namespace files **/
c97204ba
JJ
1501
1502/**
1503 *
1504 * Requires: @profile->ns->lock held
1505 */
1506void __aafs_profile_rmdir(struct aa_profile *profile)
0d259f04
JJ
1507{
1508 struct aa_profile *child;
1509 int i;
1510
1511 if (!profile)
1512 return;
1513
1514 list_for_each_entry(child, &profile->base.profiles, base.list)
c97204ba 1515 __aafs_profile_rmdir(child);
0d259f04
JJ
1516
1517 for (i = AAFS_PROF_SIZEOF - 1; i >= 0; --i) {
8399588a 1518 struct aa_proxy *proxy;
0d259f04
JJ
1519 if (!profile->dents[i])
1520 continue;
1521
8399588a 1522 proxy = d_inode(profile->dents[i])->i_private;
c961ee5f 1523 aafs_remove(profile->dents[i]);
8399588a 1524 aa_put_proxy(proxy);
0d259f04
JJ
1525 profile->dents[i] = NULL;
1526 }
1527}
1528
c97204ba
JJ
1529/**
1530 *
1531 * Requires: @old->ns->lock held
1532 */
1533void __aafs_profile_migrate_dents(struct aa_profile *old,
1534 struct aa_profile *new)
0d259f04
JJ
1535{
1536 int i;
1537
cbf2d0e1
JJ
1538 AA_BUG(!old);
1539 AA_BUG(!new);
1540 AA_BUG(!mutex_is_locked(&profiles_ns(old)->lock));
1541
0d259f04
JJ
1542 for (i = 0; i < AAFS_PROF_SIZEOF; i++) {
1543 new->dents[i] = old->dents[i];
d671e890 1544 if (new->dents[i])
078cd827 1545 new->dents[i]->d_inode->i_mtime = current_time(new->dents[i]->d_inode);
0d259f04
JJ
1546 old->dents[i] = NULL;
1547 }
1548}
1549
1550static struct dentry *create_profile_file(struct dentry *dir, const char *name,
1551 struct aa_profile *profile,
1552 const struct file_operations *fops)
1553{
637f688d 1554 struct aa_proxy *proxy = aa_get_proxy(profile->label.proxy);
0d259f04
JJ
1555 struct dentry *dent;
1556
c961ee5f 1557 dent = aafs_create_file(name, S_IFREG | 0444, dir, proxy, fops);
0d259f04 1558 if (IS_ERR(dent))
8399588a 1559 aa_put_proxy(proxy);
0d259f04
JJ
1560
1561 return dent;
1562}
1563
d61c57fd 1564#ifdef CONFIG_SECURITY_APPARMOR_EXPORT_BINARY
5d5182ca
JJ
1565static int profile_depth(struct aa_profile *profile)
1566{
1567 int depth = 0;
1568
1569 rcu_read_lock();
1570 for (depth = 0; profile; profile = rcu_access_pointer(profile->parent))
1571 depth++;
1572 rcu_read_unlock();
1573
1574 return depth;
1575}
1576
1180b4c7 1577static char *gen_symlink_name(int depth, const char *dirname, const char *fname)
5d5182ca 1578{
1180b4c7 1579 char *buffer, *s;
5d5182ca 1580 int error;
1180b4c7
JJ
1581 int size = depth * 6 + strlen(dirname) + strlen(fname) + 11;
1582
1583 s = buffer = kmalloc(size, GFP_KERNEL);
1584 if (!buffer)
1585 return ERR_PTR(-ENOMEM);
5d5182ca
JJ
1586
1587 for (; depth > 0; depth--) {
1180b4c7
JJ
1588 strcpy(s, "../../");
1589 s += 6;
1590 size -= 6;
5d5182ca
JJ
1591 }
1592
1180b4c7 1593 error = snprintf(s, size, "raw_data/%s/%s", dirname, fname);
588558eb
CIK
1594 if (error >= size || error < 0) {
1595 kfree(buffer);
1180b4c7 1596 return ERR_PTR(-ENAMETOOLONG);
588558eb 1597 }
5d5182ca 1598
1180b4c7
JJ
1599 return buffer;
1600}
1601
1602static void rawdata_link_cb(void *arg)
1603{
1604 kfree(arg);
1605}
1606
1607static const char *rawdata_get_link_base(struct dentry *dentry,
1608 struct inode *inode,
1609 struct delayed_call *done,
1610 const char *name)
1611{
1612 struct aa_proxy *proxy = inode->i_private;
1613 struct aa_label *label;
1614 struct aa_profile *profile;
1615 char *target;
1616 int depth;
1617
1618 if (!dentry)
1619 return ERR_PTR(-ECHILD);
1620
1621 label = aa_get_label_rcu(&proxy->label);
1622 profile = labels_profile(label);
1623 depth = profile_depth(profile);
1624 target = gen_symlink_name(depth, profile->rawdata->name, name);
1625 aa_put_label(label);
1626
1627 if (IS_ERR(target))
1628 return target;
1629
1630 set_delayed_call(done, rawdata_link_cb, target);
1631
1632 return target;
1633}
1634
1635static const char *rawdata_get_link_sha1(struct dentry *dentry,
1636 struct inode *inode,
1637 struct delayed_call *done)
1638{
1639 return rawdata_get_link_base(dentry, inode, done, "sha1");
1640}
1641
1642static const char *rawdata_get_link_abi(struct dentry *dentry,
1643 struct inode *inode,
1644 struct delayed_call *done)
1645{
1646 return rawdata_get_link_base(dentry, inode, done, "abi");
5d5182ca
JJ
1647}
1648
1180b4c7
JJ
1649static const char *rawdata_get_link_data(struct dentry *dentry,
1650 struct inode *inode,
1651 struct delayed_call *done)
1652{
1653 return rawdata_get_link_base(dentry, inode, done, "raw_data");
5d5182ca
JJ
1654}
1655
1180b4c7
JJ
1656static const struct inode_operations rawdata_link_sha1_iops = {
1657 .get_link = rawdata_get_link_sha1,
1658};
1659
1660static const struct inode_operations rawdata_link_abi_iops = {
1661 .get_link = rawdata_get_link_abi,
1662};
1663static const struct inode_operations rawdata_link_data_iops = {
1664 .get_link = rawdata_get_link_data,
1665};
d61c57fd 1666#endif /* CONFIG_SECURITY_APPARMOR_EXPORT_BINARY */
1180b4c7 1667
5d5182ca
JJ
1668/*
1669 * Requires: @profile->ns->lock held
1670 */
c97204ba 1671int __aafs_profile_mkdir(struct aa_profile *profile, struct dentry *parent)
0d259f04
JJ
1672{
1673 struct aa_profile *child;
1674 struct dentry *dent = NULL, *dir;
1675 int error;
1676
cbf2d0e1
JJ
1677 AA_BUG(!profile);
1678 AA_BUG(!mutex_is_locked(&profiles_ns(profile)->lock));
1679
0d259f04
JJ
1680 if (!parent) {
1681 struct aa_profile *p;
1682 p = aa_deref_parent(profile);
1683 dent = prof_dir(p);
1684 /* adding to parent that previously didn't have children */
c961ee5f 1685 dent = aafs_create_dir("profiles", dent);
0d259f04
JJ
1686 if (IS_ERR(dent))
1687 goto fail;
1688 prof_child_dir(p) = parent = dent;
1689 }
1690
1691 if (!profile->dirname) {
1692 int len, id_len;
1693 len = mangle_name(profile->base.name, NULL);
1694 id_len = snprintf(NULL, 0, ".%ld", profile->ns->uniq_id);
1695
1696 profile->dirname = kmalloc(len + id_len + 1, GFP_KERNEL);
ffac1de6
DC
1697 if (!profile->dirname) {
1698 error = -ENOMEM;
1699 goto fail2;
1700 }
0d259f04
JJ
1701
1702 mangle_name(profile->base.name, profile->dirname);
1703 sprintf(profile->dirname + len, ".%ld", profile->ns->uniq_id++);
1704 }
1705
c961ee5f 1706 dent = aafs_create_dir(profile->dirname, parent);
0d259f04
JJ
1707 if (IS_ERR(dent))
1708 goto fail;
1709 prof_dir(profile) = dir = dent;
1710
52b97de3
JJ
1711 dent = create_profile_file(dir, "name", profile,
1712 &seq_profile_name_fops);
0d259f04
JJ
1713 if (IS_ERR(dent))
1714 goto fail;
1715 profile->dents[AAFS_PROF_NAME] = dent;
1716
52b97de3
JJ
1717 dent = create_profile_file(dir, "mode", profile,
1718 &seq_profile_mode_fops);
0d259f04
JJ
1719 if (IS_ERR(dent))
1720 goto fail;
1721 profile->dents[AAFS_PROF_MODE] = dent;
1722
556d0be7 1723 dent = create_profile_file(dir, "attach", profile,
52b97de3 1724 &seq_profile_attach_fops);
556d0be7
JJ
1725 if (IS_ERR(dent))
1726 goto fail;
1727 profile->dents[AAFS_PROF_ATTACH] = dent;
1728
f8eb8a13
JJ
1729 if (profile->hash) {
1730 dent = create_profile_file(dir, "sha1", profile,
52b97de3 1731 &seq_profile_hash_fops);
f8eb8a13
JJ
1732 if (IS_ERR(dent))
1733 goto fail;
1734 profile->dents[AAFS_PROF_HASH] = dent;
1735 }
1736
d61c57fd 1737#ifdef CONFIG_SECURITY_APPARMOR_EXPORT_BINARY
5ac8c355 1738 if (profile->rawdata) {
a68d59ff
JJ
1739 dent = aafs_create("raw_sha1", S_IFLNK | 0444, dir,
1740 profile->label.proxy, NULL, NULL,
1741 &rawdata_link_sha1_iops);
5ac8c355
JJ
1742 if (IS_ERR(dent))
1743 goto fail;
1180b4c7 1744 aa_get_proxy(profile->label.proxy);
5ac8c355
JJ
1745 profile->dents[AAFS_PROF_RAW_HASH] = dent;
1746
a68d59ff
JJ
1747 dent = aafs_create("raw_abi", S_IFLNK | 0444, dir,
1748 profile->label.proxy, NULL, NULL,
1749 &rawdata_link_abi_iops);
5ac8c355
JJ
1750 if (IS_ERR(dent))
1751 goto fail;
1180b4c7 1752 aa_get_proxy(profile->label.proxy);
5ac8c355
JJ
1753 profile->dents[AAFS_PROF_RAW_ABI] = dent;
1754
a68d59ff
JJ
1755 dent = aafs_create("raw_data", S_IFLNK | 0444, dir,
1756 profile->label.proxy, NULL, NULL,
1757 &rawdata_link_data_iops);
5ac8c355
JJ
1758 if (IS_ERR(dent))
1759 goto fail;
1180b4c7 1760 aa_get_proxy(profile->label.proxy);
5ac8c355 1761 profile->dents[AAFS_PROF_RAW_DATA] = dent;
5ac8c355 1762 }
d61c57fd 1763#endif /*CONFIG_SECURITY_APPARMOR_EXPORT_BINARY */
5ac8c355 1764
0d259f04 1765 list_for_each_entry(child, &profile->base.profiles, base.list) {
c97204ba 1766 error = __aafs_profile_mkdir(child, prof_child_dir(profile));
0d259f04
JJ
1767 if (error)
1768 goto fail2;
1769 }
1770
1771 return 0;
1772
1773fail:
1774 error = PTR_ERR(dent);
1775
1776fail2:
c97204ba 1777 __aafs_profile_rmdir(profile);
0d259f04
JJ
1778
1779 return error;
1780}
1781
549c7297
CB
1782static int ns_mkdir_op(struct user_namespace *mnt_userns, struct inode *dir,
1783 struct dentry *dentry, umode_t mode)
4ae47f33
JJ
1784{
1785 struct aa_ns *ns, *parent;
1786 /* TODO: improve permission check */
637f688d
JJ
1787 struct aa_label *label;
1788 int error;
1789
1790 label = begin_current_label_crit_section();
1791 error = aa_may_manage_policy(label, NULL, AA_MAY_LOAD_POLICY);
1792 end_current_label_crit_section(label);
4ae47f33
JJ
1793 if (error)
1794 return error;
1795
1796 parent = aa_get_ns(dir->i_private);
1797 AA_BUG(d_inode(ns_subns_dir(parent)) != dir);
1798
1799 /* we have to unlock and then relock to get locking order right
1800 * for pin_fs
1801 */
1802 inode_unlock(dir);
1803 error = simple_pin_fs(&aafs_ops, &aafs_mnt, &aafs_count);
feb3c766 1804 mutex_lock_nested(&parent->lock, parent->level);
4ae47f33
JJ
1805 inode_lock_nested(dir, I_MUTEX_PARENT);
1806 if (error)
1807 goto out;
1808
1809 error = __aafs_setup_d_inode(dir, dentry, mode | S_IFDIR, NULL,
1810 NULL, NULL, NULL);
1811 if (error)
1812 goto out_pin;
1813
1814 ns = __aa_find_or_create_ns(parent, READ_ONCE(dentry->d_name.name),
1815 dentry);
1816 if (IS_ERR(ns)) {
1817 error = PTR_ERR(ns);
1818 ns = NULL;
1819 }
1820
1821 aa_put_ns(ns); /* list ref remains */
1822out_pin:
1823 if (error)
1824 simple_release_fs(&aafs_mnt, &aafs_count);
1825out:
1826 mutex_unlock(&parent->lock);
1827 aa_put_ns(parent);
1828
1829 return error;
1830}
1831
1832static int ns_rmdir_op(struct inode *dir, struct dentry *dentry)
1833{
1834 struct aa_ns *ns, *parent;
1835 /* TODO: improve permission check */
637f688d
JJ
1836 struct aa_label *label;
1837 int error;
1838
1839 label = begin_current_label_crit_section();
1840 error = aa_may_manage_policy(label, NULL, AA_MAY_LOAD_POLICY);
1841 end_current_label_crit_section(label);
4ae47f33
JJ
1842 if (error)
1843 return error;
1844
566f52ec 1845 parent = aa_get_ns(dir->i_private);
4ae47f33
JJ
1846 /* rmdir calls the generic securityfs functions to remove files
1847 * from the apparmor dir. It is up to the apparmor ns locking
1848 * to avoid races.
1849 */
1850 inode_unlock(dir);
1851 inode_unlock(dentry->d_inode);
1852
feb3c766 1853 mutex_lock_nested(&parent->lock, parent->level);
4ae47f33
JJ
1854 ns = aa_get_ns(__aa_findn_ns(&parent->sub_ns, dentry->d_name.name,
1855 dentry->d_name.len));
1856 if (!ns) {
1857 error = -ENOENT;
1858 goto out;
1859 }
1860 AA_BUG(ns_dir(ns) != dentry);
1861
1862 __aa_remove_ns(ns);
1863 aa_put_ns(ns);
1864
1865out:
1866 mutex_unlock(&parent->lock);
1867 inode_lock_nested(dir, I_MUTEX_PARENT);
1868 inode_lock(dentry->d_inode);
1869 aa_put_ns(parent);
1870
1871 return error;
1872}
1873
1874static const struct inode_operations ns_dir_inode_operations = {
1875 .lookup = simple_lookup,
1876 .mkdir = ns_mkdir_op,
1877 .rmdir = ns_rmdir_op,
1878};
1879
5d5182ca
JJ
1880static void __aa_fs_list_remove_rawdata(struct aa_ns *ns)
1881{
1882 struct aa_loaddata *ent, *tmp;
1883
1884 AA_BUG(!mutex_is_locked(&ns->lock));
1885
1886 list_for_each_entry_safe(ent, tmp, &ns->rawdata_list, list)
1887 __aa_fs_remove_rawdata(ent);
1888}
1889
c97204ba
JJ
1890/**
1891 *
1892 * Requires: @ns->lock held
1893 */
1894void __aafs_ns_rmdir(struct aa_ns *ns)
0d259f04 1895{
98849dff 1896 struct aa_ns *sub;
0d259f04
JJ
1897 struct aa_profile *child;
1898 int i;
1899
1900 if (!ns)
1901 return;
cbf2d0e1 1902 AA_BUG(!mutex_is_locked(&ns->lock));
0d259f04
JJ
1903
1904 list_for_each_entry(child, &ns->base.profiles, base.list)
c97204ba 1905 __aafs_profile_rmdir(child);
0d259f04
JJ
1906
1907 list_for_each_entry(sub, &ns->sub_ns, base.list) {
feb3c766 1908 mutex_lock_nested(&sub->lock, sub->level);
c97204ba 1909 __aafs_ns_rmdir(sub);
0d259f04
JJ
1910 mutex_unlock(&sub->lock);
1911 }
1912
5d5182ca
JJ
1913 __aa_fs_list_remove_rawdata(ns);
1914
b7fd2c03
JJ
1915 if (ns_subns_dir(ns)) {
1916 sub = d_inode(ns_subns_dir(ns))->i_private;
1917 aa_put_ns(sub);
1918 }
1919 if (ns_subload(ns)) {
1920 sub = d_inode(ns_subload(ns))->i_private;
1921 aa_put_ns(sub);
1922 }
1923 if (ns_subreplace(ns)) {
1924 sub = d_inode(ns_subreplace(ns))->i_private;
1925 aa_put_ns(sub);
1926 }
1927 if (ns_subremove(ns)) {
1928 sub = d_inode(ns_subremove(ns))->i_private;
1929 aa_put_ns(sub);
1930 }
d9bf2c26
JJ
1931 if (ns_subrevision(ns)) {
1932 sub = d_inode(ns_subrevision(ns))->i_private;
1933 aa_put_ns(sub);
1934 }
b7fd2c03 1935
0d259f04 1936 for (i = AAFS_NS_SIZEOF - 1; i >= 0; --i) {
c961ee5f 1937 aafs_remove(ns->dents[i]);
0d259f04
JJ
1938 ns->dents[i] = NULL;
1939 }
1940}
1941
b7fd2c03 1942/* assumes cleanup in caller */
c97204ba 1943static int __aafs_ns_mkdir_entries(struct aa_ns *ns, struct dentry *dir)
b7fd2c03
JJ
1944{
1945 struct dentry *dent;
1946
1947 AA_BUG(!ns);
1948 AA_BUG(!dir);
1949
c961ee5f 1950 dent = aafs_create_dir("profiles", dir);
b7fd2c03
JJ
1951 if (IS_ERR(dent))
1952 return PTR_ERR(dent);
1953 ns_subprofs_dir(ns) = dent;
1954
c961ee5f 1955 dent = aafs_create_dir("raw_data", dir);
b7fd2c03
JJ
1956 if (IS_ERR(dent))
1957 return PTR_ERR(dent);
1958 ns_subdata_dir(ns) = dent;
1959
d9bf2c26
JJ
1960 dent = aafs_create_file("revision", 0444, dir, ns,
1961 &aa_fs_ns_revision_fops);
1962 if (IS_ERR(dent))
1963 return PTR_ERR(dent);
1964 aa_get_ns(ns);
1965 ns_subrevision(ns) = dent;
1966
c961ee5f 1967 dent = aafs_create_file(".load", 0640, dir, ns,
b7fd2c03
JJ
1968 &aa_fs_profile_load);
1969 if (IS_ERR(dent))
1970 return PTR_ERR(dent);
1971 aa_get_ns(ns);
1972 ns_subload(ns) = dent;
1973
c961ee5f 1974 dent = aafs_create_file(".replace", 0640, dir, ns,
b7fd2c03
JJ
1975 &aa_fs_profile_replace);
1976 if (IS_ERR(dent))
1977 return PTR_ERR(dent);
1978 aa_get_ns(ns);
1979 ns_subreplace(ns) = dent;
1980
c961ee5f 1981 dent = aafs_create_file(".remove", 0640, dir, ns,
b7fd2c03
JJ
1982 &aa_fs_profile_remove);
1983 if (IS_ERR(dent))
1984 return PTR_ERR(dent);
1985 aa_get_ns(ns);
1986 ns_subremove(ns) = dent;
1987
4ae47f33
JJ
1988 /* use create_dentry so we can supply private data */
1989 dent = aafs_create("namespaces", S_IFDIR | 0755, dir, ns, NULL, NULL,
1990 &ns_dir_inode_operations);
b7fd2c03
JJ
1991 if (IS_ERR(dent))
1992 return PTR_ERR(dent);
1993 aa_get_ns(ns);
1994 ns_subns_dir(ns) = dent;
1995
1996 return 0;
1997}
1998
c97204ba
JJ
1999/*
2000 * Requires: @ns->lock held
2001 */
98407f0a
JJ
2002int __aafs_ns_mkdir(struct aa_ns *ns, struct dentry *parent, const char *name,
2003 struct dentry *dent)
0d259f04 2004{
98849dff 2005 struct aa_ns *sub;
0d259f04 2006 struct aa_profile *child;
98407f0a 2007 struct dentry *dir;
0d259f04
JJ
2008 int error;
2009
b7fd2c03
JJ
2010 AA_BUG(!ns);
2011 AA_BUG(!parent);
2012 AA_BUG(!mutex_is_locked(&ns->lock));
2013
0d259f04
JJ
2014 if (!name)
2015 name = ns->base.name;
2016
c961ee5f
JJ
2017 if (!dent) {
2018 /* create ns dir if it doesn't already exist */
2019 dent = aafs_create_dir(name, parent);
2020 if (IS_ERR(dent))
2021 goto fail;
2022 } else
2023 dget(dent);
b7fd2c03 2024 ns_dir(ns) = dir = dent;
c97204ba 2025 error = __aafs_ns_mkdir_entries(ns, dir);
b7fd2c03
JJ
2026 if (error)
2027 goto fail2;
0d259f04 2028
b7fd2c03 2029 /* profiles */
0d259f04 2030 list_for_each_entry(child, &ns->base.profiles, base.list) {
c97204ba 2031 error = __aafs_profile_mkdir(child, ns_subprofs_dir(ns));
0d259f04
JJ
2032 if (error)
2033 goto fail2;
2034 }
2035
b7fd2c03 2036 /* subnamespaces */
0d259f04 2037 list_for_each_entry(sub, &ns->sub_ns, base.list) {
feb3c766 2038 mutex_lock_nested(&sub->lock, sub->level);
98407f0a 2039 error = __aafs_ns_mkdir(sub, ns_subns_dir(ns), NULL, NULL);
0d259f04
JJ
2040 mutex_unlock(&sub->lock);
2041 if (error)
2042 goto fail2;
2043 }
2044
2045 return 0;
2046
2047fail:
2048 error = PTR_ERR(dent);
2049
2050fail2:
c97204ba 2051 __aafs_ns_rmdir(ns);
0d259f04
JJ
2052
2053 return error;
2054}
2055
29b3822f 2056/**
98849dff 2057 * __next_ns - find the next namespace to list
29b3822f
JJ
2058 * @root: root namespace to stop search at (NOT NULL)
2059 * @ns: current ns position (NOT NULL)
2060 *
2061 * Find the next namespace from @ns under @root and handle all locking needed
2062 * while switching current namespace.
2063 *
2064 * Returns: next namespace or NULL if at last namespace under @root
2065 * Requires: ns->parent->lock to be held
2066 * NOTE: will not unlock root->lock
2067 */
98849dff 2068static struct aa_ns *__next_ns(struct aa_ns *root, struct aa_ns *ns)
29b3822f 2069{
98849dff 2070 struct aa_ns *parent, *next;
29b3822f 2071
cbf2d0e1
JJ
2072 AA_BUG(!root);
2073 AA_BUG(!ns);
2074 AA_BUG(ns != root && !mutex_is_locked(&ns->parent->lock));
2075
29b3822f
JJ
2076 /* is next namespace a child */
2077 if (!list_empty(&ns->sub_ns)) {
2078 next = list_first_entry(&ns->sub_ns, typeof(*ns), base.list);
feb3c766 2079 mutex_lock_nested(&next->lock, next->level);
29b3822f
JJ
2080 return next;
2081 }
2082
2083 /* check if the next ns is a sibling, parent, gp, .. */
2084 parent = ns->parent;
ed2c7da3 2085 while (ns != root) {
29b3822f 2086 mutex_unlock(&ns->lock);
38dbd7d8 2087 next = list_next_entry(ns, base.list);
29b3822f 2088 if (!list_entry_is_head(next, &parent->sub_ns, base.list)) {
feb3c766 2089 mutex_lock_nested(&next->lock, next->level);
29b3822f
JJ
2090 return next;
2091 }
29b3822f
JJ
2092 ns = parent;
2093 parent = parent->parent;
2094 }
2095
2096 return NULL;
2097}
2098
2099/**
2100 * __first_profile - find the first profile in a namespace
2101 * @root: namespace that is root of profiles being displayed (NOT NULL)
2102 * @ns: namespace to start in (NOT NULL)
2103 *
2104 * Returns: unrefcounted profile or NULL if no profile
2105 * Requires: profile->ns.lock to be held
2106 */
98849dff
JJ
2107static struct aa_profile *__first_profile(struct aa_ns *root,
2108 struct aa_ns *ns)
29b3822f 2109{
cbf2d0e1
JJ
2110 AA_BUG(!root);
2111 AA_BUG(ns && !mutex_is_locked(&ns->lock));
2112
98849dff 2113 for (; ns; ns = __next_ns(root, ns)) {
29b3822f
JJ
2114 if (!list_empty(&ns->base.profiles))
2115 return list_first_entry(&ns->base.profiles,
2116 struct aa_profile, base.list);
2117 }
2118 return NULL;
2119}
2120
2121/**
2122 * __next_profile - step to the next profile in a profile tree
aa4ceed7 2123 * @p: current profile in tree (NOT NULL)
29b3822f
JJ
2124 *
2125 * Perform a depth first traversal on the profile tree in a namespace
2126 *
2127 * Returns: next profile or NULL if done
2128 * Requires: profile->ns.lock to be held
2129 */
2130static struct aa_profile *__next_profile(struct aa_profile *p)
2131{
2132 struct aa_profile *parent;
98849dff 2133 struct aa_ns *ns = p->ns;
29b3822f 2134
cbf2d0e1
JJ
2135 AA_BUG(!mutex_is_locked(&profiles_ns(p)->lock));
2136
29b3822f
JJ
2137 /* is next profile a child */
2138 if (!list_empty(&p->base.profiles))
2139 return list_first_entry(&p->base.profiles, typeof(*p),
2140 base.list);
2141
2142 /* is next profile a sibling, parent sibling, gp, sibling, .. */
2143 parent = rcu_dereference_protected(p->parent,
2144 mutex_is_locked(&p->ns->lock));
2145 while (parent) {
38dbd7d8 2146 p = list_next_entry(p, base.list);
29b3822f
JJ
2147 if (!list_entry_is_head(p, &parent->base.profiles, base.list))
2148 return p;
2149 p = parent;
2150 parent = rcu_dereference_protected(parent->parent,
2151 mutex_is_locked(&parent->ns->lock));
2152 }
2153
2154 /* is next another profile in the namespace */
38dbd7d8 2155 p = list_next_entry(p, base.list);
29b3822f
JJ
2156 if (!list_entry_is_head(p, &ns->base.profiles, base.list))
2157 return p;
2158
2159 return NULL;
2160}
2161
2162/**
2163 * next_profile - step to the next profile in where ever it may be
2164 * @root: root namespace (NOT NULL)
2165 * @profile: current profile (NOT NULL)
2166 *
2167 * Returns: next profile or NULL if there isn't one
2168 */
98849dff 2169static struct aa_profile *next_profile(struct aa_ns *root,
29b3822f
JJ
2170 struct aa_profile *profile)
2171{
2172 struct aa_profile *next = __next_profile(profile);
2173 if (next)
2174 return next;
2175
2176 /* finished all profiles in namespace move to next namespace */
98849dff 2177 return __first_profile(root, __next_ns(root, profile->ns));
29b3822f
JJ
2178}
2179
2180/**
2181 * p_start - start a depth first traversal of profile tree
2182 * @f: seq_file to fill
2183 * @pos: current position
2184 *
2185 * Returns: first profile under current namespace or NULL if none found
2186 *
2187 * acquires first ns->lock
2188 */
2189static void *p_start(struct seq_file *f, loff_t *pos)
2190{
2191 struct aa_profile *profile = NULL;
cf797c0e 2192 struct aa_ns *root = aa_get_current_ns();
29b3822f 2193 loff_t l = *pos;
cf797c0e 2194 f->private = root;
29b3822f
JJ
2195
2196 /* find the first profile */
feb3c766 2197 mutex_lock_nested(&root->lock, root->level);
29b3822f
JJ
2198 profile = __first_profile(root, root);
2199
2200 /* skip to position */
2201 for (; profile && l > 0; l--)
2202 profile = next_profile(root, profile);
2203
2204 return profile;
2205}
2206
2207/**
2208 * p_next - read the next profile entry
2209 * @f: seq_file to fill
2210 * @p: profile previously returned
2211 * @pos: current position
2212 *
2213 * Returns: next profile after @p or NULL if none
2214 *
2215 * may acquire/release locks in namespace tree as necessary
2216 */
2217static void *p_next(struct seq_file *f, void *p, loff_t *pos)
2218{
2219 struct aa_profile *profile = p;
98849dff 2220 struct aa_ns *ns = f->private;
29b3822f
JJ
2221 (*pos)++;
2222
2223 return next_profile(ns, profile);
2224}
2225
2226/**
2227 * p_stop - stop depth first traversal
2228 * @f: seq_file we are filling
2229 * @p: the last profile writen
2230 *
2231 * Release all locking done by p_start/p_next on namespace tree
2232 */
2233static void p_stop(struct seq_file *f, void *p)
2234{
2235 struct aa_profile *profile = p;
98849dff 2236 struct aa_ns *root = f->private, *ns;
29b3822f
JJ
2237
2238 if (profile) {
2239 for (ns = profile->ns; ns && ns != root; ns = ns->parent)
2240 mutex_unlock(&ns->lock);
2241 }
2242 mutex_unlock(&root->lock);
98849dff 2243 aa_put_ns(root);
29b3822f
JJ
2244}
2245
2246/**
2247 * seq_show_profile - show a profile entry
2248 * @f: seq_file to file
2249 * @p: current position (profile) (NOT NULL)
2250 *
2251 * Returns: error on failure
2252 */
2253static int seq_show_profile(struct seq_file *f, void *p)
2254{
2255 struct aa_profile *profile = (struct aa_profile *)p;
98849dff 2256 struct aa_ns *root = f->private;
29b3822f 2257
637f688d
JJ
2258 aa_label_seq_xprint(f, root, &profile->label,
2259 FLAG_SHOW_MODE | FLAG_VIEW_SUBNS, GFP_KERNEL);
2260 seq_putc(f, '\n');
29b3822f
JJ
2261
2262 return 0;
2263}
2264
c97204ba 2265static const struct seq_operations aa_sfs_profiles_op = {
29b3822f
JJ
2266 .start = p_start,
2267 .next = p_next,
2268 .stop = p_stop,
2269 .show = seq_show_profile,
2270};
2271
2272static int profiles_open(struct inode *inode, struct file *file)
2273{
92de220a 2274 if (!aa_current_policy_view_capable(NULL))
5ac8c355
JJ
2275 return -EACCES;
2276
c97204ba 2277 return seq_open(file, &aa_sfs_profiles_op);
29b3822f
JJ
2278}
2279
2280static int profiles_release(struct inode *inode, struct file *file)
2281{
2282 return seq_release(inode, file);
2283}
2284
c97204ba 2285static const struct file_operations aa_sfs_profiles_fops = {
29b3822f
JJ
2286 .open = profiles_open,
2287 .read = seq_read,
2288 .llseek = seq_lseek,
2289 .release = profiles_release,
2290};
2291
2292
0d259f04 2293/** Base file system setup **/
c97204ba
JJ
2294static struct aa_sfs_entry aa_sfs_entry_file[] = {
2295 AA_SFS_FILE_STRING("mask",
2296 "create read write exec append mmap_exec link lock"),
a9bf8e9f
KC
2297 { }
2298};
2299
290f458a
JJ
2300static struct aa_sfs_entry aa_sfs_entry_ptrace[] = {
2301 AA_SFS_FILE_STRING("mask", "read trace"),
2302 { }
2303};
2304
cd1dbf76
JJ
2305static struct aa_sfs_entry aa_sfs_entry_signal[] = {
2306 AA_SFS_FILE_STRING("mask", AA_SFS_SIG_MASK),
2307 { }
2308};
2309
73f488cd
JJ
2310static struct aa_sfs_entry aa_sfs_entry_attach[] = {
2311 AA_SFS_FILE_BOOLEAN("xattr", 1),
2312 { }
2313};
c97204ba
JJ
2314static struct aa_sfs_entry aa_sfs_entry_domain[] = {
2315 AA_SFS_FILE_BOOLEAN("change_hat", 1),
2316 AA_SFS_FILE_BOOLEAN("change_hatv", 1),
2317 AA_SFS_FILE_BOOLEAN("change_onexec", 1),
2318 AA_SFS_FILE_BOOLEAN("change_profile", 1),
6c5fc8f1 2319 AA_SFS_FILE_BOOLEAN("stack", 1),
c97204ba 2320 AA_SFS_FILE_BOOLEAN("fix_binfmt_elf_mmap", 1),
9fcf78cc 2321 AA_SFS_FILE_BOOLEAN("post_nnp_subset", 1),
21f60661 2322 AA_SFS_FILE_BOOLEAN("computed_longest_left", 1),
73f488cd 2323 AA_SFS_DIR("attach_conditions", aa_sfs_entry_attach),
c97204ba 2324 AA_SFS_FILE_STRING("version", "1.2"),
e74abcf3
KC
2325 { }
2326};
2327
c97204ba
JJ
2328static struct aa_sfs_entry aa_sfs_entry_versions[] = {
2329 AA_SFS_FILE_BOOLEAN("v5", 1),
5379a331
JJ
2330 AA_SFS_FILE_BOOLEAN("v6", 1),
2331 AA_SFS_FILE_BOOLEAN("v7", 1),
56974a6f 2332 AA_SFS_FILE_BOOLEAN("v8", 1),
474d6b75
JJ
2333 { }
2334};
2335
c97204ba
JJ
2336static struct aa_sfs_entry aa_sfs_entry_policy[] = {
2337 AA_SFS_DIR("versions", aa_sfs_entry_versions),
2338 AA_SFS_FILE_BOOLEAN("set_load", 1),
0df34a64
JJ
2339 /* number of out of band transitions supported */
2340 AA_SFS_FILE_U64("outofband", MAX_OOB_SUPPORTED),
474d6b75 2341 { }
9d910a3b
JJ
2342};
2343
2ea3ffb7
JJ
2344static struct aa_sfs_entry aa_sfs_entry_mount[] = {
2345 AA_SFS_FILE_STRING("mask", "mount umount pivot_root"),
2346 { }
2347};
2348
33f2eada
JJ
2349static struct aa_sfs_entry aa_sfs_entry_ns[] = {
2350 AA_SFS_FILE_BOOLEAN("profile", 1),
2ea3ffb7 2351 AA_SFS_FILE_BOOLEAN("pivot_root", 0),
33f2eada
JJ
2352 { }
2353};
2354
a83bd86e 2355static struct aa_sfs_entry aa_sfs_entry_query_label[] = {
4f3b3f2d 2356 AA_SFS_FILE_STRING("perms", "allow deny audit quiet"),
a83bd86e 2357 AA_SFS_FILE_BOOLEAN("data", 1),
1dea3b41 2358 AA_SFS_FILE_BOOLEAN("multi_transaction", 1),
a83bd86e
JJ
2359 { }
2360};
2361
2362static struct aa_sfs_entry aa_sfs_entry_query[] = {
2363 AA_SFS_DIR("label", aa_sfs_entry_query_label),
2364 { }
2365};
c97204ba
JJ
2366static struct aa_sfs_entry aa_sfs_entry_features[] = {
2367 AA_SFS_DIR("policy", aa_sfs_entry_policy),
2368 AA_SFS_DIR("domain", aa_sfs_entry_domain),
2369 AA_SFS_DIR("file", aa_sfs_entry_file),
56974a6f 2370 AA_SFS_DIR("network_v8", aa_sfs_entry_network),
2ea3ffb7 2371 AA_SFS_DIR("mount", aa_sfs_entry_mount),
33f2eada 2372 AA_SFS_DIR("namespaces", aa_sfs_entry_ns),
c97204ba
JJ
2373 AA_SFS_FILE_U64("capability", VFS_CAP_FLAGS_MASK),
2374 AA_SFS_DIR("rlimit", aa_sfs_entry_rlimit),
2375 AA_SFS_DIR("caps", aa_sfs_entry_caps),
290f458a 2376 AA_SFS_DIR("ptrace", aa_sfs_entry_ptrace),
cd1dbf76 2377 AA_SFS_DIR("signal", aa_sfs_entry_signal),
a83bd86e 2378 AA_SFS_DIR("query", aa_sfs_entry_query),
e74abcf3
KC
2379 { }
2380};
2381
c97204ba 2382static struct aa_sfs_entry aa_sfs_entry_apparmor[] = {
bf81100f 2383 AA_SFS_FILE_FOPS(".access", 0666, &aa_sfs_access),
6c5fc8f1
JJ
2384 AA_SFS_FILE_FOPS(".stacked", 0444, &seq_ns_stacked_fops),
2385 AA_SFS_FILE_FOPS(".ns_stacked", 0444, &seq_ns_nsstacked_fops),
bf81100f
JJ
2386 AA_SFS_FILE_FOPS(".ns_level", 0444, &seq_ns_level_fops),
2387 AA_SFS_FILE_FOPS(".ns_name", 0444, &seq_ns_name_fops),
2388 AA_SFS_FILE_FOPS("profiles", 0444, &aa_sfs_profiles_fops),
c97204ba 2389 AA_SFS_DIR("features", aa_sfs_entry_features),
9acd494b
KC
2390 { }
2391};
63e2b423 2392
c97204ba
JJ
2393static struct aa_sfs_entry aa_sfs_entry =
2394 AA_SFS_DIR("apparmor", aa_sfs_entry_apparmor);
63e2b423 2395
9acd494b 2396/**
a481f4d9 2397 * entry_create_file - create a file entry in the apparmor securityfs
c97204ba 2398 * @fs_file: aa_sfs_entry to build an entry for (NOT NULL)
9acd494b
KC
2399 * @parent: the parent dentry in the securityfs
2400 *
a481f4d9 2401 * Use entry_remove_file to remove entries created with this fn.
9acd494b 2402 */
c97204ba 2403static int __init entry_create_file(struct aa_sfs_entry *fs_file,
a481f4d9 2404 struct dentry *parent)
9acd494b
KC
2405{
2406 int error = 0;
2407
2408 fs_file->dentry = securityfs_create_file(fs_file->name,
2409 S_IFREG | fs_file->mode,
2410 parent, fs_file,
2411 fs_file->file_ops);
2412 if (IS_ERR(fs_file->dentry)) {
2413 error = PTR_ERR(fs_file->dentry);
2414 fs_file->dentry = NULL;
63e2b423 2415 }
9acd494b 2416 return error;
63e2b423
JJ
2417}
2418
c97204ba 2419static void __init entry_remove_dir(struct aa_sfs_entry *fs_dir);
63e2b423 2420/**
a481f4d9 2421 * entry_create_dir - recursively create a directory entry in the securityfs
c97204ba 2422 * @fs_dir: aa_sfs_entry (and all child entries) to build (NOT NULL)
9acd494b 2423 * @parent: the parent dentry in the securityfs
63e2b423 2424 *
a481f4d9 2425 * Use entry_remove_dir to remove entries created with this fn.
63e2b423 2426 */
c97204ba
JJ
2427static int __init entry_create_dir(struct aa_sfs_entry *fs_dir,
2428 struct dentry *parent)
63e2b423 2429{
c97204ba 2430 struct aa_sfs_entry *fs_file;
0d259f04
JJ
2431 struct dentry *dir;
2432 int error;
63e2b423 2433
0d259f04
JJ
2434 dir = securityfs_create_dir(fs_dir->name, parent);
2435 if (IS_ERR(dir))
2436 return PTR_ERR(dir);
2437 fs_dir->dentry = dir;
63e2b423 2438
0d259f04 2439 for (fs_file = fs_dir->v.files; fs_file && fs_file->name; ++fs_file) {
c97204ba 2440 if (fs_file->v_type == AA_SFS_TYPE_DIR)
a481f4d9 2441 error = entry_create_dir(fs_file, fs_dir->dentry);
9acd494b 2442 else
a481f4d9 2443 error = entry_create_file(fs_file, fs_dir->dentry);
9acd494b
KC
2444 if (error)
2445 goto failed;
2446 }
2447
2448 return 0;
2449
2450failed:
a481f4d9 2451 entry_remove_dir(fs_dir);
0d259f04 2452
9acd494b
KC
2453 return error;
2454}
2455
2456/**
c97204ba
JJ
2457 * entry_remove_file - drop a single file entry in the apparmor securityfs
2458 * @fs_file: aa_sfs_entry to detach from the securityfs (NOT NULL)
9acd494b 2459 */
c97204ba 2460static void __init entry_remove_file(struct aa_sfs_entry *fs_file)
9acd494b
KC
2461{
2462 if (!fs_file->dentry)
2463 return;
2464
2465 securityfs_remove(fs_file->dentry);
2466 fs_file->dentry = NULL;
2467}
2468
2469/**
a481f4d9 2470 * entry_remove_dir - recursively drop a directory entry from the securityfs
c97204ba 2471 * @fs_dir: aa_sfs_entry (and all child entries) to detach (NOT NULL)
9acd494b 2472 */
c97204ba 2473static void __init entry_remove_dir(struct aa_sfs_entry *fs_dir)
9acd494b 2474{
c97204ba 2475 struct aa_sfs_entry *fs_file;
9acd494b 2476
0d259f04 2477 for (fs_file = fs_dir->v.files; fs_file && fs_file->name; ++fs_file) {
c97204ba 2478 if (fs_file->v_type == AA_SFS_TYPE_DIR)
a481f4d9 2479 entry_remove_dir(fs_file);
9acd494b 2480 else
c97204ba 2481 entry_remove_file(fs_file);
9acd494b
KC
2482 }
2483
c97204ba 2484 entry_remove_file(fs_dir);
63e2b423
JJ
2485}
2486
2487/**
2488 * aa_destroy_aafs - cleanup and free aafs
2489 *
2490 * releases dentries allocated by aa_create_aafs
2491 */
2492void __init aa_destroy_aafs(void)
2493{
c97204ba 2494 entry_remove_dir(&aa_sfs_entry);
63e2b423
JJ
2495}
2496
a71ada30
JJ
2497
2498#define NULL_FILE_NAME ".null"
2499struct path aa_null;
2500
2501static int aa_mk_null_file(struct dentry *parent)
2502{
2503 struct vfsmount *mount = NULL;
2504 struct dentry *dentry;
2505 struct inode *inode;
2506 int count = 0;
2507 int error = simple_pin_fs(parent->d_sb->s_type, &mount, &count);
2508
2509 if (error)
2510 return error;
2511
2512 inode_lock(d_inode(parent));
2513 dentry = lookup_one_len(NULL_FILE_NAME, parent, strlen(NULL_FILE_NAME));
2514 if (IS_ERR(dentry)) {
2515 error = PTR_ERR(dentry);
2516 goto out;
2517 }
2518 inode = new_inode(parent->d_inode->i_sb);
2519 if (!inode) {
2520 error = -ENOMEM;
2521 goto out1;
2522 }
2523
2524 inode->i_ino = get_next_ino();
2525 inode->i_mode = S_IFCHR | S_IRUGO | S_IWUGO;
24d0d03c 2526 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
a71ada30
JJ
2527 init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO,
2528 MKDEV(MEM_MAJOR, 3));
2529 d_instantiate(dentry, inode);
2530 aa_null.dentry = dget(dentry);
2531 aa_null.mnt = mntget(mount);
2532
2533 error = 0;
2534
2535out1:
2536 dput(dentry);
2537out:
2538 inode_unlock(d_inode(parent));
2539 simple_release_fs(&mount, &count);
2540 return error;
2541}
2542
a481f4d9
JJ
2543
2544
2545static const char *policy_get_link(struct dentry *dentry,
2546 struct inode *inode,
2547 struct delayed_call *done)
2548{
2549 struct aa_ns *ns;
2550 struct path path;
1bc82070 2551 int error;
a481f4d9
JJ
2552
2553 if (!dentry)
2554 return ERR_PTR(-ECHILD);
1bc82070 2555
a481f4d9
JJ
2556 ns = aa_get_current_ns();
2557 path.mnt = mntget(aafs_mnt);
2558 path.dentry = dget(ns_dir(ns));
1bc82070 2559 error = nd_jump_link(&path);
a481f4d9
JJ
2560 aa_put_ns(ns);
2561
1bc82070 2562 return ERR_PTR(error);
a481f4d9
JJ
2563}
2564
a481f4d9
JJ
2565static int policy_readlink(struct dentry *dentry, char __user *buffer,
2566 int buflen)
2567{
a481f4d9
JJ
2568 char name[32];
2569 int res;
2570
a0781209
JJ
2571 res = snprintf(name, sizeof(name), "%s:[%lu]", AAFS_NAME,
2572 d_inode(dentry)->i_ino);
2573 if (res > 0 && res < sizeof(name))
a481f4d9 2574 res = readlink_copy(buffer, buflen, name);
a0781209
JJ
2575 else
2576 res = -ENOENT;
a481f4d9
JJ
2577
2578 return res;
2579}
2580
2581static const struct inode_operations policy_link_iops = {
2582 .readlink = policy_readlink,
2583 .get_link = policy_get_link,
2584};
2585
2586
63e2b423
JJ
2587/**
2588 * aa_create_aafs - create the apparmor security filesystem
2589 *
2590 * dentries created here are released by aa_destroy_aafs
2591 *
2592 * Returns: error on failure
2593 */
3417d8d5 2594static int __init aa_create_aafs(void)
63e2b423 2595{
b7fd2c03 2596 struct dentry *dent;
63e2b423
JJ
2597 int error;
2598
2599 if (!apparmor_initialized)
2600 return 0;
2601
c97204ba 2602 if (aa_sfs_entry.dentry) {
63e2b423
JJ
2603 AA_ERROR("%s: AppArmor securityfs already exists\n", __func__);
2604 return -EEXIST;
2605 }
2606
a481f4d9
JJ
2607 /* setup apparmorfs used to virtualize policy/ */
2608 aafs_mnt = kern_mount(&aafs_ops);
2609 if (IS_ERR(aafs_mnt))
2610 panic("can't set apparmorfs up\n");
1751e8a6 2611 aafs_mnt->mnt_sb->s_flags &= ~SB_NOUSER;
a481f4d9 2612
9acd494b 2613 /* Populate fs tree. */
c97204ba 2614 error = entry_create_dir(&aa_sfs_entry, NULL);
63e2b423
JJ
2615 if (error)
2616 goto error;
2617
c97204ba 2618 dent = securityfs_create_file(".load", 0666, aa_sfs_entry.dentry,
b7fd2c03 2619 NULL, &aa_fs_profile_load);
cf916000
JJ
2620 if (IS_ERR(dent))
2621 goto dent_error;
b7fd2c03
JJ
2622 ns_subload(root_ns) = dent;
2623
c97204ba 2624 dent = securityfs_create_file(".replace", 0666, aa_sfs_entry.dentry,
b7fd2c03 2625 NULL, &aa_fs_profile_replace);
cf916000
JJ
2626 if (IS_ERR(dent))
2627 goto dent_error;
b7fd2c03
JJ
2628 ns_subreplace(root_ns) = dent;
2629
c97204ba 2630 dent = securityfs_create_file(".remove", 0666, aa_sfs_entry.dentry,
b7fd2c03 2631 NULL, &aa_fs_profile_remove);
cf916000
JJ
2632 if (IS_ERR(dent))
2633 goto dent_error;
b7fd2c03
JJ
2634 ns_subremove(root_ns) = dent;
2635
d9bf2c26
JJ
2636 dent = securityfs_create_file("revision", 0444, aa_sfs_entry.dentry,
2637 NULL, &aa_fs_ns_revision_fops);
cf916000
JJ
2638 if (IS_ERR(dent))
2639 goto dent_error;
d9bf2c26
JJ
2640 ns_subrevision(root_ns) = dent;
2641
2642 /* policy tree referenced by magic policy symlink */
feb3c766 2643 mutex_lock_nested(&root_ns->lock, root_ns->level);
c961ee5f
JJ
2644 error = __aafs_ns_mkdir(root_ns, aafs_mnt->mnt_root, ".policy",
2645 aafs_mnt->mnt_root);
b7fd2c03 2646 mutex_unlock(&root_ns->lock);
0d259f04
JJ
2647 if (error)
2648 goto error;
2649
c961ee5f
JJ
2650 /* magic symlink similar to nsfs redirects based on task policy */
2651 dent = securityfs_create_symlink("policy", aa_sfs_entry.dentry,
2652 NULL, &policy_link_iops);
cf916000
JJ
2653 if (IS_ERR(dent))
2654 goto dent_error;
c961ee5f 2655
c97204ba 2656 error = aa_mk_null_file(aa_sfs_entry.dentry);
a71ada30
JJ
2657 if (error)
2658 goto error;
2659
2660 /* TODO: add default profile to apparmorfs */
63e2b423
JJ
2661
2662 /* Report that AppArmor fs is enabled */
2663 aa_info_message("AppArmor Filesystem Enabled");
2664 return 0;
2665
cf916000
JJ
2666dent_error:
2667 error = PTR_ERR(dent);
63e2b423
JJ
2668error:
2669 aa_destroy_aafs();
2670 AA_ERROR("Error creating AppArmor securityfs\n");
2671 return error;
2672}
2673
2674fs_initcall(aa_create_aafs);