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