GNU Linux-libre 4.14.332-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                 put_multi_transaction(t);
879                 return ERR_PTR(-EFAULT);
880         }
881
882         return t;
883 }
884
885 static ssize_t multi_transaction_read(struct file *file, char __user *buf,
886                                        size_t size, loff_t *pos)
887 {
888         struct multi_transaction *t;
889         ssize_t ret;
890
891         spin_lock(&multi_transaction_lock);
892         t = get_multi_transaction(file->private_data);
893         spin_unlock(&multi_transaction_lock);
894         if (!t)
895                 return 0;
896
897         ret = simple_read_from_buffer(buf, size, pos, t->data, t->size);
898         put_multi_transaction(t);
899
900         return ret;
901 }
902
903 static int multi_transaction_release(struct inode *inode, struct file *file)
904 {
905         put_multi_transaction(file->private_data);
906
907         return 0;
908 }
909
910 #define QUERY_CMD_LABEL         "label\0"
911 #define QUERY_CMD_LABEL_LEN     6
912 #define QUERY_CMD_PROFILE       "profile\0"
913 #define QUERY_CMD_PROFILE_LEN   8
914 #define QUERY_CMD_LABELALL      "labelall\0"
915 #define QUERY_CMD_LABELALL_LEN  9
916 #define QUERY_CMD_DATA          "data\0"
917 #define QUERY_CMD_DATA_LEN      5
918
919 /**
920  * aa_write_access - generic permissions and data query
921  * @file: pointer to open apparmorfs/access file
922  * @ubuf: user buffer containing the complete query string (NOT NULL)
923  * @count: size of ubuf
924  * @ppos: position in the file (MUST BE ZERO)
925  *
926  * Allows for one permissions or data query per open(), write(), and read()
927  * sequence. The only queries currently supported are label-based queries for
928  * permissions or data.
929  *
930  * For permissions queries, ubuf must begin with "label\0", followed by the
931  * profile query specific format described in the query_label() function
932  * documentation.
933  *
934  * For data queries, ubuf must have the form "data\0<LABEL>\0<KEY>\0", where
935  * <LABEL> is the name of the security confinement context and <KEY> is the
936  * name of the data to retrieve.
937  *
938  * Returns: number of bytes written or -errno on failure
939  */
940 static ssize_t aa_write_access(struct file *file, const char __user *ubuf,
941                                size_t count, loff_t *ppos)
942 {
943         struct multi_transaction *t;
944         ssize_t len;
945
946         if (*ppos)
947                 return -ESPIPE;
948
949         t = multi_transaction_new(file, ubuf, count);
950         if (IS_ERR(t))
951                 return PTR_ERR(t);
952
953         if (count > QUERY_CMD_PROFILE_LEN &&
954             !memcmp(t->data, QUERY_CMD_PROFILE, QUERY_CMD_PROFILE_LEN)) {
955                 len = query_label(t->data, MULTI_TRANSACTION_LIMIT,
956                                   t->data + QUERY_CMD_PROFILE_LEN,
957                                   count - QUERY_CMD_PROFILE_LEN, true);
958         } else if (count > QUERY_CMD_LABEL_LEN &&
959                    !memcmp(t->data, QUERY_CMD_LABEL, QUERY_CMD_LABEL_LEN)) {
960                 len = query_label(t->data, MULTI_TRANSACTION_LIMIT,
961                                   t->data + QUERY_CMD_LABEL_LEN,
962                                   count - QUERY_CMD_LABEL_LEN, true);
963         } else if (count > QUERY_CMD_LABELALL_LEN &&
964                    !memcmp(t->data, QUERY_CMD_LABELALL,
965                            QUERY_CMD_LABELALL_LEN)) {
966                 len = query_label(t->data, MULTI_TRANSACTION_LIMIT,
967                                   t->data + QUERY_CMD_LABELALL_LEN,
968                                   count - QUERY_CMD_LABELALL_LEN, false);
969         } else if (count > QUERY_CMD_DATA_LEN &&
970                    !memcmp(t->data, QUERY_CMD_DATA, QUERY_CMD_DATA_LEN)) {
971                 len = query_data(t->data, MULTI_TRANSACTION_LIMIT,
972                                  t->data + QUERY_CMD_DATA_LEN,
973                                  count - QUERY_CMD_DATA_LEN);
974         } else
975                 len = -EINVAL;
976
977         if (len < 0) {
978                 put_multi_transaction(t);
979                 return len;
980         }
981
982         multi_transaction_set(file, t, len);
983
984         return count;
985 }
986
987 static const struct file_operations aa_sfs_access = {
988         .write          = aa_write_access,
989         .read           = multi_transaction_read,
990         .release        = multi_transaction_release,
991         .llseek         = generic_file_llseek,
992 };
993
994 static int aa_sfs_seq_show(struct seq_file *seq, void *v)
995 {
996         struct aa_sfs_entry *fs_file = seq->private;
997
998         if (!fs_file)
999                 return 0;
1000
1001         switch (fs_file->v_type) {
1002         case AA_SFS_TYPE_BOOLEAN:
1003                 seq_printf(seq, "%s\n", fs_file->v.boolean ? "yes" : "no");
1004                 break;
1005         case AA_SFS_TYPE_STRING:
1006                 seq_printf(seq, "%s\n", fs_file->v.string);
1007                 break;
1008         case AA_SFS_TYPE_U64:
1009                 seq_printf(seq, "%#08lx\n", fs_file->v.u64);
1010                 break;
1011         default:
1012                 /* Ignore unpritable entry types. */
1013                 break;
1014         }
1015
1016         return 0;
1017 }
1018
1019 static int aa_sfs_seq_open(struct inode *inode, struct file *file)
1020 {
1021         return single_open(file, aa_sfs_seq_show, inode->i_private);
1022 }
1023
1024 const struct file_operations aa_sfs_seq_file_ops = {
1025         .owner          = THIS_MODULE,
1026         .open           = aa_sfs_seq_open,
1027         .read           = seq_read,
1028         .llseek         = seq_lseek,
1029         .release        = single_release,
1030 };
1031
1032 /*
1033  * profile based file operations
1034  *     policy/profiles/XXXX/profiles/ *
1035  */
1036
1037 #define SEQ_PROFILE_FOPS(NAME)                                                \
1038 static int seq_profile_ ##NAME ##_open(struct inode *inode, struct file *file)\
1039 {                                                                             \
1040         return seq_profile_open(inode, file, seq_profile_ ##NAME ##_show);    \
1041 }                                                                             \
1042                                                                               \
1043 static const struct file_operations seq_profile_ ##NAME ##_fops = {           \
1044         .owner          = THIS_MODULE,                                        \
1045         .open           = seq_profile_ ##NAME ##_open,                        \
1046         .read           = seq_read,                                           \
1047         .llseek         = seq_lseek,                                          \
1048         .release        = seq_profile_release,                                \
1049 }                                                                             \
1050
1051 static int seq_profile_open(struct inode *inode, struct file *file,
1052                             int (*show)(struct seq_file *, void *))
1053 {
1054         struct aa_proxy *proxy = aa_get_proxy(inode->i_private);
1055         int error = single_open(file, show, proxy);
1056
1057         if (error) {
1058                 file->private_data = NULL;
1059                 aa_put_proxy(proxy);
1060         }
1061
1062         return error;
1063 }
1064
1065 static int seq_profile_release(struct inode *inode, struct file *file)
1066 {
1067         struct seq_file *seq = (struct seq_file *) file->private_data;
1068         if (seq)
1069                 aa_put_proxy(seq->private);
1070         return single_release(inode, file);
1071 }
1072
1073 static int seq_profile_name_show(struct seq_file *seq, void *v)
1074 {
1075         struct aa_proxy *proxy = seq->private;
1076         struct aa_label *label = aa_get_label_rcu(&proxy->label);
1077         struct aa_profile *profile = labels_profile(label);
1078         seq_printf(seq, "%s\n", profile->base.name);
1079         aa_put_label(label);
1080
1081         return 0;
1082 }
1083
1084 static int seq_profile_mode_show(struct seq_file *seq, void *v)
1085 {
1086         struct aa_proxy *proxy = seq->private;
1087         struct aa_label *label = aa_get_label_rcu(&proxy->label);
1088         struct aa_profile *profile = labels_profile(label);
1089         seq_printf(seq, "%s\n", aa_profile_mode_names[profile->mode]);
1090         aa_put_label(label);
1091
1092         return 0;
1093 }
1094
1095 static int seq_profile_attach_show(struct seq_file *seq, void *v)
1096 {
1097         struct aa_proxy *proxy = seq->private;
1098         struct aa_label *label = aa_get_label_rcu(&proxy->label);
1099         struct aa_profile *profile = labels_profile(label);
1100         if (profile->attach)
1101                 seq_printf(seq, "%s\n", profile->attach);
1102         else if (profile->xmatch)
1103                 seq_puts(seq, "<unknown>\n");
1104         else
1105                 seq_printf(seq, "%s\n", profile->base.name);
1106         aa_put_label(label);
1107
1108         return 0;
1109 }
1110
1111 static int seq_profile_hash_show(struct seq_file *seq, void *v)
1112 {
1113         struct aa_proxy *proxy = seq->private;
1114         struct aa_label *label = aa_get_label_rcu(&proxy->label);
1115         struct aa_profile *profile = labels_profile(label);
1116         unsigned int i, size = aa_hash_size();
1117
1118         if (profile->hash) {
1119                 for (i = 0; i < size; i++)
1120                         seq_printf(seq, "%.2x", profile->hash[i]);
1121                 seq_putc(seq, '\n');
1122         }
1123         aa_put_label(label);
1124
1125         return 0;
1126 }
1127
1128 SEQ_PROFILE_FOPS(name);
1129 SEQ_PROFILE_FOPS(mode);
1130 SEQ_PROFILE_FOPS(attach);
1131 SEQ_PROFILE_FOPS(hash);
1132
1133 /*
1134  * namespace based files
1135  *     several root files and
1136  *     policy/ *
1137  */
1138
1139 #define SEQ_NS_FOPS(NAME)                                                     \
1140 static int seq_ns_ ##NAME ##_open(struct inode *inode, struct file *file)     \
1141 {                                                                             \
1142         return single_open(file, seq_ns_ ##NAME ##_show, inode->i_private);   \
1143 }                                                                             \
1144                                                                               \
1145 static const struct file_operations seq_ns_ ##NAME ##_fops = {        \
1146         .owner          = THIS_MODULE,                                        \
1147         .open           = seq_ns_ ##NAME ##_open,                             \
1148         .read           = seq_read,                                           \
1149         .llseek         = seq_lseek,                                          \
1150         .release        = single_release,                                     \
1151 }                                                                             \
1152
1153 static int seq_ns_stacked_show(struct seq_file *seq, void *v)
1154 {
1155         struct aa_label *label;
1156
1157         label = begin_current_label_crit_section();
1158         seq_printf(seq, "%s\n", label->size > 1 ? "yes" : "no");
1159         end_current_label_crit_section(label);
1160
1161         return 0;
1162 }
1163
1164 static int seq_ns_nsstacked_show(struct seq_file *seq, void *v)
1165 {
1166         struct aa_label *label;
1167         struct aa_profile *profile;
1168         struct label_it it;
1169         int count = 1;
1170
1171         label = begin_current_label_crit_section();
1172
1173         if (label->size > 1) {
1174                 label_for_each(it, label, profile)
1175                         if (profile->ns != labels_ns(label)) {
1176                                 count++;
1177                                 break;
1178                         }
1179         }
1180
1181         seq_printf(seq, "%s\n", count > 1 ? "yes" : "no");
1182         end_current_label_crit_section(label);
1183
1184         return 0;
1185 }
1186
1187 static int seq_ns_level_show(struct seq_file *seq, void *v)
1188 {
1189         struct aa_label *label;
1190
1191         label = begin_current_label_crit_section();
1192         seq_printf(seq, "%d\n", labels_ns(label)->level);
1193         end_current_label_crit_section(label);
1194
1195         return 0;
1196 }
1197
1198 static int seq_ns_name_show(struct seq_file *seq, void *v)
1199 {
1200         struct aa_label *label = begin_current_label_crit_section();
1201         seq_printf(seq, "%s\n", labels_ns(label)->base.name);
1202         end_current_label_crit_section(label);
1203
1204         return 0;
1205 }
1206
1207 SEQ_NS_FOPS(stacked);
1208 SEQ_NS_FOPS(nsstacked);
1209 SEQ_NS_FOPS(level);
1210 SEQ_NS_FOPS(name);
1211
1212
1213 /* policy/raw_data/ * file ops */
1214
1215 #define SEQ_RAWDATA_FOPS(NAME)                                                \
1216 static int seq_rawdata_ ##NAME ##_open(struct inode *inode, struct file *file)\
1217 {                                                                             \
1218         return seq_rawdata_open(inode, file, seq_rawdata_ ##NAME ##_show);    \
1219 }                                                                             \
1220                                                                               \
1221 static const struct file_operations seq_rawdata_ ##NAME ##_fops = {           \
1222         .owner          = THIS_MODULE,                                        \
1223         .open           = seq_rawdata_ ##NAME ##_open,                        \
1224         .read           = seq_read,                                           \
1225         .llseek         = seq_lseek,                                          \
1226         .release        = seq_rawdata_release,                                \
1227 }                                                                             \
1228
1229 static int seq_rawdata_open(struct inode *inode, struct file *file,
1230                             int (*show)(struct seq_file *, void *))
1231 {
1232         struct aa_loaddata *data = __aa_get_loaddata(inode->i_private);
1233         int error;
1234
1235         if (!data)
1236                 /* lost race this ent is being reaped */
1237                 return -ENOENT;
1238
1239         error = single_open(file, show, data);
1240         if (error) {
1241                 AA_BUG(file->private_data &&
1242                        ((struct seq_file *)file->private_data)->private);
1243                 aa_put_loaddata(data);
1244         }
1245
1246         return error;
1247 }
1248
1249 static int seq_rawdata_release(struct inode *inode, struct file *file)
1250 {
1251         struct seq_file *seq = (struct seq_file *) file->private_data;
1252
1253         if (seq)
1254                 aa_put_loaddata(seq->private);
1255
1256         return single_release(inode, file);
1257 }
1258
1259 static int seq_rawdata_abi_show(struct seq_file *seq, void *v)
1260 {
1261         struct aa_loaddata *data = seq->private;
1262
1263         seq_printf(seq, "v%d\n", data->abi);
1264
1265         return 0;
1266 }
1267
1268 static int seq_rawdata_revision_show(struct seq_file *seq, void *v)
1269 {
1270         struct aa_loaddata *data = seq->private;
1271
1272         seq_printf(seq, "%ld\n", data->revision);
1273
1274         return 0;
1275 }
1276
1277 static int seq_rawdata_hash_show(struct seq_file *seq, void *v)
1278 {
1279         struct aa_loaddata *data = seq->private;
1280         unsigned int i, size = aa_hash_size();
1281
1282         if (data->hash) {
1283                 for (i = 0; i < size; i++)
1284                         seq_printf(seq, "%.2x", data->hash[i]);
1285                 seq_putc(seq, '\n');
1286         }
1287
1288         return 0;
1289 }
1290
1291 SEQ_RAWDATA_FOPS(abi);
1292 SEQ_RAWDATA_FOPS(revision);
1293 SEQ_RAWDATA_FOPS(hash);
1294
1295 static ssize_t rawdata_read(struct file *file, char __user *buf, size_t size,
1296                             loff_t *ppos)
1297 {
1298         struct aa_loaddata *rawdata = file->private_data;
1299
1300         return simple_read_from_buffer(buf, size, ppos, rawdata->data,
1301                                        rawdata->size);
1302 }
1303
1304 static int rawdata_release(struct inode *inode, struct file *file)
1305 {
1306         aa_put_loaddata(file->private_data);
1307
1308         return 0;
1309 }
1310
1311 static int rawdata_open(struct inode *inode, struct file *file)
1312 {
1313         if (!policy_view_capable(NULL))
1314                 return -EACCES;
1315         file->private_data = __aa_get_loaddata(inode->i_private);
1316         if (!file->private_data)
1317                 /* lost race: this entry is being reaped */
1318                 return -ENOENT;
1319
1320         return 0;
1321 }
1322
1323 static const struct file_operations rawdata_fops = {
1324         .open = rawdata_open,
1325         .read = rawdata_read,
1326         .llseek = generic_file_llseek,
1327         .release = rawdata_release,
1328 };
1329
1330 static void remove_rawdata_dents(struct aa_loaddata *rawdata)
1331 {
1332         int i;
1333
1334         for (i = 0; i < AAFS_LOADDATA_NDENTS; i++) {
1335                 if (!IS_ERR_OR_NULL(rawdata->dents[i])) {
1336                         /* no refcounts on i_private */
1337                         aafs_remove(rawdata->dents[i]);
1338                         rawdata->dents[i] = NULL;
1339                 }
1340         }
1341 }
1342
1343 void __aa_fs_remove_rawdata(struct aa_loaddata *rawdata)
1344 {
1345         AA_BUG(rawdata->ns && !mutex_is_locked(&rawdata->ns->lock));
1346
1347         if (rawdata->ns) {
1348                 remove_rawdata_dents(rawdata);
1349                 list_del_init(&rawdata->list);
1350                 aa_put_ns(rawdata->ns);
1351                 rawdata->ns = NULL;
1352         }
1353 }
1354
1355 int __aa_fs_create_rawdata(struct aa_ns *ns, struct aa_loaddata *rawdata)
1356 {
1357         struct dentry *dent, *dir;
1358
1359         AA_BUG(!ns);
1360         AA_BUG(!rawdata);
1361         AA_BUG(!mutex_is_locked(&ns->lock));
1362         AA_BUG(!ns_subdata_dir(ns));
1363
1364         /*
1365          * just use ns revision dir was originally created at. This is
1366          * under ns->lock and if load is successful revision will be
1367          * bumped and is guaranteed to be unique
1368          */
1369         rawdata->name = kasprintf(GFP_KERNEL, "%ld", ns->revision);
1370         if (!rawdata->name)
1371                 return -ENOMEM;
1372
1373         dir = aafs_create_dir(rawdata->name, ns_subdata_dir(ns));
1374         if (IS_ERR(dir))
1375                 /* ->name freed when rawdata freed */
1376                 return PTR_ERR(dir);
1377         rawdata->dents[AAFS_LOADDATA_DIR] = dir;
1378
1379         dent = aafs_create_file("abi", S_IFREG | 0444, dir, rawdata,
1380                                       &seq_rawdata_abi_fops);
1381         if (IS_ERR(dent))
1382                 goto fail;
1383         rawdata->dents[AAFS_LOADDATA_ABI] = dent;
1384
1385         dent = aafs_create_file("revision", S_IFREG | 0444, dir, rawdata,
1386                                       &seq_rawdata_revision_fops);
1387         if (IS_ERR(dent))
1388                 goto fail;
1389         rawdata->dents[AAFS_LOADDATA_REVISION] = dent;
1390
1391         if (aa_g_hash_policy) {
1392                 dent = aafs_create_file("sha1", S_IFREG | 0444, dir,
1393                                               rawdata, &seq_rawdata_hash_fops);
1394                 if (IS_ERR(dent))
1395                         goto fail;
1396                 rawdata->dents[AAFS_LOADDATA_HASH] = dent;
1397         }
1398
1399         dent = aafs_create_file("raw_data", S_IFREG | 0444,
1400                                       dir, rawdata, &rawdata_fops);
1401         if (IS_ERR(dent))
1402                 goto fail;
1403         rawdata->dents[AAFS_LOADDATA_DATA] = dent;
1404         d_inode(dent)->i_size = rawdata->size;
1405
1406         rawdata->ns = aa_get_ns(ns);
1407         list_add(&rawdata->list, &ns->rawdata_list);
1408         /* no refcount on inode rawdata */
1409
1410         return 0;
1411
1412 fail:
1413         remove_rawdata_dents(rawdata);
1414
1415         return PTR_ERR(dent);
1416 }
1417
1418 /** fns to setup dynamic per profile/namespace files **/
1419
1420 /**
1421  *
1422  * Requires: @profile->ns->lock held
1423  */
1424 void __aafs_profile_rmdir(struct aa_profile *profile)
1425 {
1426         struct aa_profile *child;
1427         int i;
1428
1429         if (!profile)
1430                 return;
1431
1432         list_for_each_entry(child, &profile->base.profiles, base.list)
1433                 __aafs_profile_rmdir(child);
1434
1435         for (i = AAFS_PROF_SIZEOF - 1; i >= 0; --i) {
1436                 struct aa_proxy *proxy;
1437                 if (!profile->dents[i])
1438                         continue;
1439
1440                 proxy = d_inode(profile->dents[i])->i_private;
1441                 aafs_remove(profile->dents[i]);
1442                 aa_put_proxy(proxy);
1443                 profile->dents[i] = NULL;
1444         }
1445 }
1446
1447 /**
1448  *
1449  * Requires: @old->ns->lock held
1450  */
1451 void __aafs_profile_migrate_dents(struct aa_profile *old,
1452                                   struct aa_profile *new)
1453 {
1454         int i;
1455
1456         AA_BUG(!old);
1457         AA_BUG(!new);
1458         AA_BUG(!mutex_is_locked(&profiles_ns(old)->lock));
1459
1460         for (i = 0; i < AAFS_PROF_SIZEOF; i++) {
1461                 new->dents[i] = old->dents[i];
1462                 if (new->dents[i])
1463                         new->dents[i]->d_inode->i_mtime = current_time(new->dents[i]->d_inode);
1464                 old->dents[i] = NULL;
1465         }
1466 }
1467
1468 static struct dentry *create_profile_file(struct dentry *dir, const char *name,
1469                                           struct aa_profile *profile,
1470                                           const struct file_operations *fops)
1471 {
1472         struct aa_proxy *proxy = aa_get_proxy(profile->label.proxy);
1473         struct dentry *dent;
1474
1475         dent = aafs_create_file(name, S_IFREG | 0444, dir, proxy, fops);
1476         if (IS_ERR(dent))
1477                 aa_put_proxy(proxy);
1478
1479         return dent;
1480 }
1481
1482 static int profile_depth(struct aa_profile *profile)
1483 {
1484         int depth = 0;
1485
1486         rcu_read_lock();
1487         for (depth = 0; profile; profile = rcu_access_pointer(profile->parent))
1488                 depth++;
1489         rcu_read_unlock();
1490
1491         return depth;
1492 }
1493
1494 static int gen_symlink_name(char *buffer, size_t bsize, int depth,
1495                             const char *dirname, const char *fname)
1496 {
1497         int error;
1498
1499         for (; depth > 0; depth--) {
1500                 if (bsize < 7)
1501                         return -ENAMETOOLONG;
1502                 strcpy(buffer, "../../");
1503                 buffer += 6;
1504                 bsize -= 6;
1505         }
1506
1507         error = snprintf(buffer, bsize, "raw_data/%s/%s", dirname, fname);
1508         if (error >= bsize || error < 0)
1509                 return -ENAMETOOLONG;
1510
1511         return 0;
1512 }
1513
1514 /*
1515  * Requires: @profile->ns->lock held
1516  */
1517 int __aafs_profile_mkdir(struct aa_profile *profile, struct dentry *parent)
1518 {
1519         struct aa_profile *child;
1520         struct dentry *dent = NULL, *dir;
1521         int error;
1522
1523         AA_BUG(!profile);
1524         AA_BUG(!mutex_is_locked(&profiles_ns(profile)->lock));
1525
1526         if (!parent) {
1527                 struct aa_profile *p;
1528                 p = aa_deref_parent(profile);
1529                 dent = prof_dir(p);
1530                 /* adding to parent that previously didn't have children */
1531                 dent = aafs_create_dir("profiles", dent);
1532                 if (IS_ERR(dent))
1533                         goto fail;
1534                 prof_child_dir(p) = parent = dent;
1535         }
1536
1537         if (!profile->dirname) {
1538                 int len, id_len;
1539                 len = mangle_name(profile->base.name, NULL);
1540                 id_len = snprintf(NULL, 0, ".%ld", profile->ns->uniq_id);
1541
1542                 profile->dirname = kmalloc(len + id_len + 1, GFP_KERNEL);
1543                 if (!profile->dirname) {
1544                         error = -ENOMEM;
1545                         goto fail2;
1546                 }
1547
1548                 mangle_name(profile->base.name, profile->dirname);
1549                 sprintf(profile->dirname + len, ".%ld", profile->ns->uniq_id++);
1550         }
1551
1552         dent = aafs_create_dir(profile->dirname, parent);
1553         if (IS_ERR(dent))
1554                 goto fail;
1555         prof_dir(profile) = dir = dent;
1556
1557         dent = create_profile_file(dir, "name", profile,
1558                                    &seq_profile_name_fops);
1559         if (IS_ERR(dent))
1560                 goto fail;
1561         profile->dents[AAFS_PROF_NAME] = dent;
1562
1563         dent = create_profile_file(dir, "mode", profile,
1564                                    &seq_profile_mode_fops);
1565         if (IS_ERR(dent))
1566                 goto fail;
1567         profile->dents[AAFS_PROF_MODE] = dent;
1568
1569         dent = create_profile_file(dir, "attach", profile,
1570                                    &seq_profile_attach_fops);
1571         if (IS_ERR(dent))
1572                 goto fail;
1573         profile->dents[AAFS_PROF_ATTACH] = dent;
1574
1575         if (profile->hash) {
1576                 dent = create_profile_file(dir, "sha1", profile,
1577                                            &seq_profile_hash_fops);
1578                 if (IS_ERR(dent))
1579                         goto fail;
1580                 profile->dents[AAFS_PROF_HASH] = dent;
1581         }
1582
1583         if (profile->rawdata) {
1584                 char target[64];
1585                 int depth = profile_depth(profile);
1586
1587                 error = gen_symlink_name(target, sizeof(target), depth,
1588                                          profile->rawdata->name, "sha1");
1589                 if (error < 0)
1590                         goto fail2;
1591                 dent = aafs_create_symlink("raw_sha1", dir, target, NULL);
1592                 if (IS_ERR(dent))
1593                         goto fail;
1594                 profile->dents[AAFS_PROF_RAW_HASH] = dent;
1595
1596                 error = gen_symlink_name(target, sizeof(target), depth,
1597                                          profile->rawdata->name, "abi");
1598                 if (error < 0)
1599                         goto fail2;
1600                 dent = aafs_create_symlink("raw_abi", dir, target, NULL);
1601                 if (IS_ERR(dent))
1602                         goto fail;
1603                 profile->dents[AAFS_PROF_RAW_ABI] = dent;
1604
1605                 error = gen_symlink_name(target, sizeof(target), depth,
1606                                          profile->rawdata->name, "raw_data");
1607                 if (error < 0)
1608                         goto fail2;
1609                 dent = aafs_create_symlink("raw_data", dir, target, NULL);
1610                 if (IS_ERR(dent))
1611                         goto fail;
1612                 profile->dents[AAFS_PROF_RAW_DATA] = dent;
1613         }
1614
1615         list_for_each_entry(child, &profile->base.profiles, base.list) {
1616                 error = __aafs_profile_mkdir(child, prof_child_dir(profile));
1617                 if (error)
1618                         goto fail2;
1619         }
1620
1621         return 0;
1622
1623 fail:
1624         error = PTR_ERR(dent);
1625
1626 fail2:
1627         __aafs_profile_rmdir(profile);
1628
1629         return error;
1630 }
1631
1632 static int ns_mkdir_op(struct inode *dir, struct dentry *dentry, umode_t mode)
1633 {
1634         struct aa_ns *ns, *parent;
1635         /* TODO: improve permission check */
1636         struct aa_label *label;
1637         int error;
1638
1639         label = begin_current_label_crit_section();
1640         error = aa_may_manage_policy(label, NULL, AA_MAY_LOAD_POLICY);
1641         end_current_label_crit_section(label);
1642         if (error)
1643                 return error;
1644
1645         parent = aa_get_ns(dir->i_private);
1646         AA_BUG(d_inode(ns_subns_dir(parent)) != dir);
1647
1648         /* we have to unlock and then relock to get locking order right
1649          * for pin_fs
1650          */
1651         inode_unlock(dir);
1652         error = simple_pin_fs(&aafs_ops, &aafs_mnt, &aafs_count);
1653         mutex_lock(&parent->lock);
1654         inode_lock_nested(dir, I_MUTEX_PARENT);
1655         if (error)
1656                 goto out;
1657
1658         error = __aafs_setup_d_inode(dir, dentry, mode | S_IFDIR,  NULL,
1659                                      NULL, NULL, NULL);
1660         if (error)
1661                 goto out_pin;
1662
1663         ns = __aa_find_or_create_ns(parent, READ_ONCE(dentry->d_name.name),
1664                                     dentry);
1665         if (IS_ERR(ns)) {
1666                 error = PTR_ERR(ns);
1667                 ns = NULL;
1668         }
1669
1670         aa_put_ns(ns);          /* list ref remains */
1671 out_pin:
1672         if (error)
1673                 simple_release_fs(&aafs_mnt, &aafs_count);
1674 out:
1675         mutex_unlock(&parent->lock);
1676         aa_put_ns(parent);
1677
1678         return error;
1679 }
1680
1681 static int ns_rmdir_op(struct inode *dir, struct dentry *dentry)
1682 {
1683         struct aa_ns *ns, *parent;
1684         /* TODO: improve permission check */
1685         struct aa_label *label;
1686         int error;
1687
1688         label = begin_current_label_crit_section();
1689         error = aa_may_manage_policy(label, NULL, AA_MAY_LOAD_POLICY);
1690         end_current_label_crit_section(label);
1691         if (error)
1692                 return error;
1693
1694          parent = aa_get_ns(dir->i_private);
1695         /* rmdir calls the generic securityfs functions to remove files
1696          * from the apparmor dir. It is up to the apparmor ns locking
1697          * to avoid races.
1698          */
1699         inode_unlock(dir);
1700         inode_unlock(dentry->d_inode);
1701
1702         mutex_lock(&parent->lock);
1703         ns = aa_get_ns(__aa_findn_ns(&parent->sub_ns, dentry->d_name.name,
1704                                      dentry->d_name.len));
1705         if (!ns) {
1706                 error = -ENOENT;
1707                 goto out;
1708         }
1709         AA_BUG(ns_dir(ns) != dentry);
1710
1711         __aa_remove_ns(ns);
1712         aa_put_ns(ns);
1713
1714 out:
1715         mutex_unlock(&parent->lock);
1716         inode_lock_nested(dir, I_MUTEX_PARENT);
1717         inode_lock(dentry->d_inode);
1718         aa_put_ns(parent);
1719
1720         return error;
1721 }
1722
1723 static const struct inode_operations ns_dir_inode_operations = {
1724         .lookup         = simple_lookup,
1725         .mkdir          = ns_mkdir_op,
1726         .rmdir          = ns_rmdir_op,
1727 };
1728
1729 static void __aa_fs_list_remove_rawdata(struct aa_ns *ns)
1730 {
1731         struct aa_loaddata *ent, *tmp;
1732
1733         AA_BUG(!mutex_is_locked(&ns->lock));
1734
1735         list_for_each_entry_safe(ent, tmp, &ns->rawdata_list, list)
1736                 __aa_fs_remove_rawdata(ent);
1737 }
1738
1739 /**
1740  *
1741  * Requires: @ns->lock held
1742  */
1743 void __aafs_ns_rmdir(struct aa_ns *ns)
1744 {
1745         struct aa_ns *sub;
1746         struct aa_profile *child;
1747         int i;
1748
1749         if (!ns)
1750                 return;
1751         AA_BUG(!mutex_is_locked(&ns->lock));
1752
1753         list_for_each_entry(child, &ns->base.profiles, base.list)
1754                 __aafs_profile_rmdir(child);
1755
1756         list_for_each_entry(sub, &ns->sub_ns, base.list) {
1757                 mutex_lock(&sub->lock);
1758                 __aafs_ns_rmdir(sub);
1759                 mutex_unlock(&sub->lock);
1760         }
1761
1762         __aa_fs_list_remove_rawdata(ns);
1763
1764         if (ns_subns_dir(ns)) {
1765                 sub = d_inode(ns_subns_dir(ns))->i_private;
1766                 aa_put_ns(sub);
1767         }
1768         if (ns_subload(ns)) {
1769                 sub = d_inode(ns_subload(ns))->i_private;
1770                 aa_put_ns(sub);
1771         }
1772         if (ns_subreplace(ns)) {
1773                 sub = d_inode(ns_subreplace(ns))->i_private;
1774                 aa_put_ns(sub);
1775         }
1776         if (ns_subremove(ns)) {
1777                 sub = d_inode(ns_subremove(ns))->i_private;
1778                 aa_put_ns(sub);
1779         }
1780         if (ns_subrevision(ns)) {
1781                 sub = d_inode(ns_subrevision(ns))->i_private;
1782                 aa_put_ns(sub);
1783         }
1784
1785         for (i = AAFS_NS_SIZEOF - 1; i >= 0; --i) {
1786                 aafs_remove(ns->dents[i]);
1787                 ns->dents[i] = NULL;
1788         }
1789 }
1790
1791 /* assumes cleanup in caller */
1792 static int __aafs_ns_mkdir_entries(struct aa_ns *ns, struct dentry *dir)
1793 {
1794         struct dentry *dent;
1795
1796         AA_BUG(!ns);
1797         AA_BUG(!dir);
1798
1799         dent = aafs_create_dir("profiles", dir);
1800         if (IS_ERR(dent))
1801                 return PTR_ERR(dent);
1802         ns_subprofs_dir(ns) = dent;
1803
1804         dent = aafs_create_dir("raw_data", dir);
1805         if (IS_ERR(dent))
1806                 return PTR_ERR(dent);
1807         ns_subdata_dir(ns) = dent;
1808
1809         dent = aafs_create_file("revision", 0444, dir, ns,
1810                                 &aa_fs_ns_revision_fops);
1811         if (IS_ERR(dent))
1812                 return PTR_ERR(dent);
1813         aa_get_ns(ns);
1814         ns_subrevision(ns) = dent;
1815
1816         dent = aafs_create_file(".load", 0640, dir, ns,
1817                                       &aa_fs_profile_load);
1818         if (IS_ERR(dent))
1819                 return PTR_ERR(dent);
1820         aa_get_ns(ns);
1821         ns_subload(ns) = dent;
1822
1823         dent = aafs_create_file(".replace", 0640, dir, ns,
1824                                       &aa_fs_profile_replace);
1825         if (IS_ERR(dent))
1826                 return PTR_ERR(dent);
1827         aa_get_ns(ns);
1828         ns_subreplace(ns) = dent;
1829
1830         dent = aafs_create_file(".remove", 0640, dir, ns,
1831                                       &aa_fs_profile_remove);
1832         if (IS_ERR(dent))
1833                 return PTR_ERR(dent);
1834         aa_get_ns(ns);
1835         ns_subremove(ns) = dent;
1836
1837           /* use create_dentry so we can supply private data */
1838         dent = aafs_create("namespaces", S_IFDIR | 0755, dir, ns, NULL, NULL,
1839                            &ns_dir_inode_operations);
1840         if (IS_ERR(dent))
1841                 return PTR_ERR(dent);
1842         aa_get_ns(ns);
1843         ns_subns_dir(ns) = dent;
1844
1845         return 0;
1846 }
1847
1848 /*
1849  * Requires: @ns->lock held
1850  */
1851 int __aafs_ns_mkdir(struct aa_ns *ns, struct dentry *parent, const char *name,
1852                     struct dentry *dent)
1853 {
1854         struct aa_ns *sub;
1855         struct aa_profile *child;
1856         struct dentry *dir;
1857         int error;
1858
1859         AA_BUG(!ns);
1860         AA_BUG(!parent);
1861         AA_BUG(!mutex_is_locked(&ns->lock));
1862
1863         if (!name)
1864                 name = ns->base.name;
1865
1866         if (!dent) {
1867                 /* create ns dir if it doesn't already exist */
1868                 dent = aafs_create_dir(name, parent);
1869                 if (IS_ERR(dent))
1870                         goto fail;
1871         } else
1872                 dget(dent);
1873         ns_dir(ns) = dir = dent;
1874         error = __aafs_ns_mkdir_entries(ns, dir);
1875         if (error)
1876                 goto fail2;
1877
1878         /* profiles */
1879         list_for_each_entry(child, &ns->base.profiles, base.list) {
1880                 error = __aafs_profile_mkdir(child, ns_subprofs_dir(ns));
1881                 if (error)
1882                         goto fail2;
1883         }
1884
1885         /* subnamespaces */
1886         list_for_each_entry(sub, &ns->sub_ns, base.list) {
1887                 mutex_lock(&sub->lock);
1888                 error = __aafs_ns_mkdir(sub, ns_subns_dir(ns), NULL, NULL);
1889                 mutex_unlock(&sub->lock);
1890                 if (error)
1891                         goto fail2;
1892         }
1893
1894         return 0;
1895
1896 fail:
1897         error = PTR_ERR(dent);
1898
1899 fail2:
1900         __aafs_ns_rmdir(ns);
1901
1902         return error;
1903 }
1904
1905 /**
1906  * __next_ns - find the next namespace to list
1907  * @root: root namespace to stop search at (NOT NULL)
1908  * @ns: current ns position (NOT NULL)
1909  *
1910  * Find the next namespace from @ns under @root and handle all locking needed
1911  * while switching current namespace.
1912  *
1913  * Returns: next namespace or NULL if at last namespace under @root
1914  * Requires: ns->parent->lock to be held
1915  * NOTE: will not unlock root->lock
1916  */
1917 static struct aa_ns *__next_ns(struct aa_ns *root, struct aa_ns *ns)
1918 {
1919         struct aa_ns *parent, *next;
1920
1921         AA_BUG(!root);
1922         AA_BUG(!ns);
1923         AA_BUG(ns != root && !mutex_is_locked(&ns->parent->lock));
1924
1925         /* is next namespace a child */
1926         if (!list_empty(&ns->sub_ns)) {
1927                 next = list_first_entry(&ns->sub_ns, typeof(*ns), base.list);
1928                 mutex_lock(&next->lock);
1929                 return next;
1930         }
1931
1932         /* check if the next ns is a sibling, parent, gp, .. */
1933         parent = ns->parent;
1934         while (ns != root) {
1935                 mutex_unlock(&ns->lock);
1936                 next = list_next_entry(ns, base.list);
1937                 if (!list_entry_is_head(next, &parent->sub_ns, base.list)) {
1938                         mutex_lock(&next->lock);
1939                         return next;
1940                 }
1941                 ns = parent;
1942                 parent = parent->parent;
1943         }
1944
1945         return NULL;
1946 }
1947
1948 /**
1949  * __first_profile - find the first profile in a namespace
1950  * @root: namespace that is root of profiles being displayed (NOT NULL)
1951  * @ns: namespace to start in   (NOT NULL)
1952  *
1953  * Returns: unrefcounted profile or NULL if no profile
1954  * Requires: profile->ns.lock to be held
1955  */
1956 static struct aa_profile *__first_profile(struct aa_ns *root,
1957                                           struct aa_ns *ns)
1958 {
1959         AA_BUG(!root);
1960         AA_BUG(ns && !mutex_is_locked(&ns->lock));
1961
1962         for (; ns; ns = __next_ns(root, ns)) {
1963                 if (!list_empty(&ns->base.profiles))
1964                         return list_first_entry(&ns->base.profiles,
1965                                                 struct aa_profile, base.list);
1966         }
1967         return NULL;
1968 }
1969
1970 /**
1971  * __next_profile - step to the next profile in a profile tree
1972  * @profile: current profile in tree (NOT NULL)
1973  *
1974  * Perform a depth first traversal on the profile tree in a namespace
1975  *
1976  * Returns: next profile or NULL if done
1977  * Requires: profile->ns.lock to be held
1978  */
1979 static struct aa_profile *__next_profile(struct aa_profile *p)
1980 {
1981         struct aa_profile *parent;
1982         struct aa_ns *ns = p->ns;
1983
1984         AA_BUG(!mutex_is_locked(&profiles_ns(p)->lock));
1985
1986         /* is next profile a child */
1987         if (!list_empty(&p->base.profiles))
1988                 return list_first_entry(&p->base.profiles, typeof(*p),
1989                                         base.list);
1990
1991         /* is next profile a sibling, parent sibling, gp, sibling, .. */
1992         parent = rcu_dereference_protected(p->parent,
1993                                            mutex_is_locked(&p->ns->lock));
1994         while (parent) {
1995                 p = list_next_entry(p, base.list);
1996                 if (!list_entry_is_head(p, &parent->base.profiles, base.list))
1997                         return p;
1998                 p = parent;
1999                 parent = rcu_dereference_protected(parent->parent,
2000                                             mutex_is_locked(&parent->ns->lock));
2001         }
2002
2003         /* is next another profile in the namespace */
2004         p = list_next_entry(p, base.list);
2005         if (!list_entry_is_head(p, &ns->base.profiles, base.list))
2006                 return p;
2007
2008         return NULL;
2009 }
2010
2011 /**
2012  * next_profile - step to the next profile in where ever it may be
2013  * @root: root namespace  (NOT NULL)
2014  * @profile: current profile  (NOT NULL)
2015  *
2016  * Returns: next profile or NULL if there isn't one
2017  */
2018 static struct aa_profile *next_profile(struct aa_ns *root,
2019                                        struct aa_profile *profile)
2020 {
2021         struct aa_profile *next = __next_profile(profile);
2022         if (next)
2023                 return next;
2024
2025         /* finished all profiles in namespace move to next namespace */
2026         return __first_profile(root, __next_ns(root, profile->ns));
2027 }
2028
2029 /**
2030  * p_start - start a depth first traversal of profile tree
2031  * @f: seq_file to fill
2032  * @pos: current position
2033  *
2034  * Returns: first profile under current namespace or NULL if none found
2035  *
2036  * acquires first ns->lock
2037  */
2038 static void *p_start(struct seq_file *f, loff_t *pos)
2039 {
2040         struct aa_profile *profile = NULL;
2041         struct aa_ns *root = aa_get_current_ns();
2042         loff_t l = *pos;
2043         f->private = root;
2044
2045         /* find the first profile */
2046         mutex_lock(&root->lock);
2047         profile = __first_profile(root, root);
2048
2049         /* skip to position */
2050         for (; profile && l > 0; l--)
2051                 profile = next_profile(root, profile);
2052
2053         return profile;
2054 }
2055
2056 /**
2057  * p_next - read the next profile entry
2058  * @f: seq_file to fill
2059  * @p: profile previously returned
2060  * @pos: current position
2061  *
2062  * Returns: next profile after @p or NULL if none
2063  *
2064  * may acquire/release locks in namespace tree as necessary
2065  */
2066 static void *p_next(struct seq_file *f, void *p, loff_t *pos)
2067 {
2068         struct aa_profile *profile = p;
2069         struct aa_ns *ns = f->private;
2070         (*pos)++;
2071
2072         return next_profile(ns, profile);
2073 }
2074
2075 /**
2076  * p_stop - stop depth first traversal
2077  * @f: seq_file we are filling
2078  * @p: the last profile writen
2079  *
2080  * Release all locking done by p_start/p_next on namespace tree
2081  */
2082 static void p_stop(struct seq_file *f, void *p)
2083 {
2084         struct aa_profile *profile = p;
2085         struct aa_ns *root = f->private, *ns;
2086
2087         if (profile) {
2088                 for (ns = profile->ns; ns && ns != root; ns = ns->parent)
2089                         mutex_unlock(&ns->lock);
2090         }
2091         mutex_unlock(&root->lock);
2092         aa_put_ns(root);
2093 }
2094
2095 /**
2096  * seq_show_profile - show a profile entry
2097  * @f: seq_file to file
2098  * @p: current position (profile)    (NOT NULL)
2099  *
2100  * Returns: error on failure
2101  */
2102 static int seq_show_profile(struct seq_file *f, void *p)
2103 {
2104         struct aa_profile *profile = (struct aa_profile *)p;
2105         struct aa_ns *root = f->private;
2106
2107         aa_label_seq_xprint(f, root, &profile->label,
2108                             FLAG_SHOW_MODE | FLAG_VIEW_SUBNS, GFP_KERNEL);
2109         seq_putc(f, '\n');
2110
2111         return 0;
2112 }
2113
2114 static const struct seq_operations aa_sfs_profiles_op = {
2115         .start = p_start,
2116         .next = p_next,
2117         .stop = p_stop,
2118         .show = seq_show_profile,
2119 };
2120
2121 static int profiles_open(struct inode *inode, struct file *file)
2122 {
2123         if (!policy_view_capable(NULL))
2124                 return -EACCES;
2125
2126         return seq_open(file, &aa_sfs_profiles_op);
2127 }
2128
2129 static int profiles_release(struct inode *inode, struct file *file)
2130 {
2131         return seq_release(inode, file);
2132 }
2133
2134 static const struct file_operations aa_sfs_profiles_fops = {
2135         .open = profiles_open,
2136         .read = seq_read,
2137         .llseek = seq_lseek,
2138         .release = profiles_release,
2139 };
2140
2141
2142 /** Base file system setup **/
2143 static struct aa_sfs_entry aa_sfs_entry_file[] = {
2144         AA_SFS_FILE_STRING("mask",
2145                            "create read write exec append mmap_exec link lock"),
2146         { }
2147 };
2148
2149 static struct aa_sfs_entry aa_sfs_entry_ptrace[] = {
2150         AA_SFS_FILE_STRING("mask", "read trace"),
2151         { }
2152 };
2153
2154 static struct aa_sfs_entry aa_sfs_entry_signal[] = {
2155         AA_SFS_FILE_STRING("mask", AA_SFS_SIG_MASK),
2156         { }
2157 };
2158
2159 static struct aa_sfs_entry aa_sfs_entry_domain[] = {
2160         AA_SFS_FILE_BOOLEAN("change_hat",       1),
2161         AA_SFS_FILE_BOOLEAN("change_hatv",      1),
2162         AA_SFS_FILE_BOOLEAN("change_onexec",    1),
2163         AA_SFS_FILE_BOOLEAN("change_profile",   1),
2164         AA_SFS_FILE_BOOLEAN("stack",            1),
2165         AA_SFS_FILE_BOOLEAN("fix_binfmt_elf_mmap",      1),
2166         AA_SFS_FILE_STRING("version", "1.2"),
2167         { }
2168 };
2169
2170 static struct aa_sfs_entry aa_sfs_entry_versions[] = {
2171         AA_SFS_FILE_BOOLEAN("v5",       1),
2172         AA_SFS_FILE_BOOLEAN("v6",       1),
2173         AA_SFS_FILE_BOOLEAN("v7",       1),
2174         { }
2175 };
2176
2177 static struct aa_sfs_entry aa_sfs_entry_policy[] = {
2178         AA_SFS_DIR("versions",                  aa_sfs_entry_versions),
2179         AA_SFS_FILE_BOOLEAN("set_load",         1),
2180         { }
2181 };
2182
2183 static struct aa_sfs_entry aa_sfs_entry_mount[] = {
2184         AA_SFS_FILE_STRING("mask", "mount umount pivot_root"),
2185         { }
2186 };
2187
2188 static struct aa_sfs_entry aa_sfs_entry_ns[] = {
2189         AA_SFS_FILE_BOOLEAN("profile",          1),
2190         AA_SFS_FILE_BOOLEAN("pivot_root",       0),
2191         { }
2192 };
2193
2194 static struct aa_sfs_entry aa_sfs_entry_query_label[] = {
2195         AA_SFS_FILE_STRING("perms", "allow deny audit quiet"),
2196         AA_SFS_FILE_BOOLEAN("data",             1),
2197         AA_SFS_FILE_BOOLEAN("multi_transaction",        1),
2198         { }
2199 };
2200
2201 static struct aa_sfs_entry aa_sfs_entry_query[] = {
2202         AA_SFS_DIR("label",                     aa_sfs_entry_query_label),
2203         { }
2204 };
2205 static struct aa_sfs_entry aa_sfs_entry_features[] = {
2206         AA_SFS_DIR("policy",                    aa_sfs_entry_policy),
2207         AA_SFS_DIR("domain",                    aa_sfs_entry_domain),
2208         AA_SFS_DIR("file",                      aa_sfs_entry_file),
2209         AA_SFS_DIR("mount",                     aa_sfs_entry_mount),
2210         AA_SFS_DIR("namespaces",                aa_sfs_entry_ns),
2211         AA_SFS_FILE_U64("capability",           VFS_CAP_FLAGS_MASK),
2212         AA_SFS_DIR("rlimit",                    aa_sfs_entry_rlimit),
2213         AA_SFS_DIR("caps",                      aa_sfs_entry_caps),
2214         AA_SFS_DIR("ptrace",                    aa_sfs_entry_ptrace),
2215         AA_SFS_DIR("signal",                    aa_sfs_entry_signal),
2216         AA_SFS_DIR("query",                     aa_sfs_entry_query),
2217         { }
2218 };
2219
2220 static struct aa_sfs_entry aa_sfs_entry_apparmor[] = {
2221         AA_SFS_FILE_FOPS(".access", 0666, &aa_sfs_access),
2222         AA_SFS_FILE_FOPS(".stacked", 0444, &seq_ns_stacked_fops),
2223         AA_SFS_FILE_FOPS(".ns_stacked", 0444, &seq_ns_nsstacked_fops),
2224         AA_SFS_FILE_FOPS(".ns_level", 0444, &seq_ns_level_fops),
2225         AA_SFS_FILE_FOPS(".ns_name", 0444, &seq_ns_name_fops),
2226         AA_SFS_FILE_FOPS("profiles", 0444, &aa_sfs_profiles_fops),
2227         AA_SFS_DIR("features", aa_sfs_entry_features),
2228         { }
2229 };
2230
2231 static struct aa_sfs_entry aa_sfs_entry =
2232         AA_SFS_DIR("apparmor", aa_sfs_entry_apparmor);
2233
2234 /**
2235  * entry_create_file - create a file entry in the apparmor securityfs
2236  * @fs_file: aa_sfs_entry to build an entry for (NOT NULL)
2237  * @parent: the parent dentry in the securityfs
2238  *
2239  * Use entry_remove_file to remove entries created with this fn.
2240  */
2241 static int __init entry_create_file(struct aa_sfs_entry *fs_file,
2242                                     struct dentry *parent)
2243 {
2244         int error = 0;
2245
2246         fs_file->dentry = securityfs_create_file(fs_file->name,
2247                                                  S_IFREG | fs_file->mode,
2248                                                  parent, fs_file,
2249                                                  fs_file->file_ops);
2250         if (IS_ERR(fs_file->dentry)) {
2251                 error = PTR_ERR(fs_file->dentry);
2252                 fs_file->dentry = NULL;
2253         }
2254         return error;
2255 }
2256
2257 static void __init entry_remove_dir(struct aa_sfs_entry *fs_dir);
2258 /**
2259  * entry_create_dir - recursively create a directory entry in the securityfs
2260  * @fs_dir: aa_sfs_entry (and all child entries) to build (NOT NULL)
2261  * @parent: the parent dentry in the securityfs
2262  *
2263  * Use entry_remove_dir to remove entries created with this fn.
2264  */
2265 static int __init entry_create_dir(struct aa_sfs_entry *fs_dir,
2266                                    struct dentry *parent)
2267 {
2268         struct aa_sfs_entry *fs_file;
2269         struct dentry *dir;
2270         int error;
2271
2272         dir = securityfs_create_dir(fs_dir->name, parent);
2273         if (IS_ERR(dir))
2274                 return PTR_ERR(dir);
2275         fs_dir->dentry = dir;
2276
2277         for (fs_file = fs_dir->v.files; fs_file && fs_file->name; ++fs_file) {
2278                 if (fs_file->v_type == AA_SFS_TYPE_DIR)
2279                         error = entry_create_dir(fs_file, fs_dir->dentry);
2280                 else
2281                         error = entry_create_file(fs_file, fs_dir->dentry);
2282                 if (error)
2283                         goto failed;
2284         }
2285
2286         return 0;
2287
2288 failed:
2289         entry_remove_dir(fs_dir);
2290
2291         return error;
2292 }
2293
2294 /**
2295  * entry_remove_file - drop a single file entry in the apparmor securityfs
2296  * @fs_file: aa_sfs_entry to detach from the securityfs (NOT NULL)
2297  */
2298 static void __init entry_remove_file(struct aa_sfs_entry *fs_file)
2299 {
2300         if (!fs_file->dentry)
2301                 return;
2302
2303         securityfs_remove(fs_file->dentry);
2304         fs_file->dentry = NULL;
2305 }
2306
2307 /**
2308  * entry_remove_dir - recursively drop a directory entry from the securityfs
2309  * @fs_dir: aa_sfs_entry (and all child entries) to detach (NOT NULL)
2310  */
2311 static void __init entry_remove_dir(struct aa_sfs_entry *fs_dir)
2312 {
2313         struct aa_sfs_entry *fs_file;
2314
2315         for (fs_file = fs_dir->v.files; fs_file && fs_file->name; ++fs_file) {
2316                 if (fs_file->v_type == AA_SFS_TYPE_DIR)
2317                         entry_remove_dir(fs_file);
2318                 else
2319                         entry_remove_file(fs_file);
2320         }
2321
2322         entry_remove_file(fs_dir);
2323 }
2324
2325 /**
2326  * aa_destroy_aafs - cleanup and free aafs
2327  *
2328  * releases dentries allocated by aa_create_aafs
2329  */
2330 void __init aa_destroy_aafs(void)
2331 {
2332         entry_remove_dir(&aa_sfs_entry);
2333 }
2334
2335
2336 #define NULL_FILE_NAME ".null"
2337 struct path aa_null;
2338
2339 static int aa_mk_null_file(struct dentry *parent)
2340 {
2341         struct vfsmount *mount = NULL;
2342         struct dentry *dentry;
2343         struct inode *inode;
2344         int count = 0;
2345         int error = simple_pin_fs(parent->d_sb->s_type, &mount, &count);
2346
2347         if (error)
2348                 return error;
2349
2350         inode_lock(d_inode(parent));
2351         dentry = lookup_one_len(NULL_FILE_NAME, parent, strlen(NULL_FILE_NAME));
2352         if (IS_ERR(dentry)) {
2353                 error = PTR_ERR(dentry);
2354                 goto out;
2355         }
2356         inode = new_inode(parent->d_inode->i_sb);
2357         if (!inode) {
2358                 error = -ENOMEM;
2359                 goto out1;
2360         }
2361
2362         inode->i_ino = get_next_ino();
2363         inode->i_mode = S_IFCHR | S_IRUGO | S_IWUGO;
2364         inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
2365         init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO,
2366                            MKDEV(MEM_MAJOR, 3));
2367         d_instantiate(dentry, inode);
2368         aa_null.dentry = dget(dentry);
2369         aa_null.mnt = mntget(mount);
2370
2371         error = 0;
2372
2373 out1:
2374         dput(dentry);
2375 out:
2376         inode_unlock(d_inode(parent));
2377         simple_release_fs(&mount, &count);
2378         return error;
2379 }
2380
2381
2382
2383 static const char *policy_get_link(struct dentry *dentry,
2384                                    struct inode *inode,
2385                                    struct delayed_call *done)
2386 {
2387         struct aa_ns *ns;
2388         struct path path;
2389
2390         if (!dentry)
2391                 return ERR_PTR(-ECHILD);
2392         ns = aa_get_current_ns();
2393         path.mnt = mntget(aafs_mnt);
2394         path.dentry = dget(ns_dir(ns));
2395         nd_jump_link(&path);
2396         aa_put_ns(ns);
2397
2398         return NULL;
2399 }
2400
2401 static int ns_get_name(char *buf, size_t size, struct aa_ns *ns,
2402                        struct inode *inode)
2403 {
2404         int res = snprintf(buf, size, "%s:[%lu]", AAFS_NAME, inode->i_ino);
2405
2406         if (res < 0 || res >= size)
2407                 res = -ENOENT;
2408
2409         return res;
2410 }
2411
2412 static int policy_readlink(struct dentry *dentry, char __user *buffer,
2413                            int buflen)
2414 {
2415         struct aa_ns *ns;
2416         char name[32];
2417         int res;
2418
2419         ns = aa_get_current_ns();
2420         res = ns_get_name(name, sizeof(name), ns, d_inode(dentry));
2421         if (res >= 0)
2422                 res = readlink_copy(buffer, buflen, name);
2423         aa_put_ns(ns);
2424
2425         return res;
2426 }
2427
2428 static const struct inode_operations policy_link_iops = {
2429         .readlink       = policy_readlink,
2430         .get_link       = policy_get_link,
2431 };
2432
2433
2434 /**
2435  * aa_create_aafs - create the apparmor security filesystem
2436  *
2437  * dentries created here are released by aa_destroy_aafs
2438  *
2439  * Returns: error on failure
2440  */
2441 static int __init aa_create_aafs(void)
2442 {
2443         struct dentry *dent;
2444         int error;
2445
2446         if (!apparmor_initialized)
2447                 return 0;
2448
2449         if (aa_sfs_entry.dentry) {
2450                 AA_ERROR("%s: AppArmor securityfs already exists\n", __func__);
2451                 return -EEXIST;
2452         }
2453
2454         /* setup apparmorfs used to virtualize policy/ */
2455         aafs_mnt = kern_mount(&aafs_ops);
2456         if (IS_ERR(aafs_mnt))
2457                 panic("can't set apparmorfs up\n");
2458         aafs_mnt->mnt_sb->s_flags &= ~MS_NOUSER;
2459
2460         /* Populate fs tree. */
2461         error = entry_create_dir(&aa_sfs_entry, NULL);
2462         if (error)
2463                 goto error;
2464
2465         dent = securityfs_create_file(".load", 0666, aa_sfs_entry.dentry,
2466                                       NULL, &aa_fs_profile_load);
2467         if (IS_ERR(dent)) {
2468                 error = PTR_ERR(dent);
2469                 goto error;
2470         }
2471         ns_subload(root_ns) = dent;
2472
2473         dent = securityfs_create_file(".replace", 0666, aa_sfs_entry.dentry,
2474                                       NULL, &aa_fs_profile_replace);
2475         if (IS_ERR(dent)) {
2476                 error = PTR_ERR(dent);
2477                 goto error;
2478         }
2479         ns_subreplace(root_ns) = dent;
2480
2481         dent = securityfs_create_file(".remove", 0666, aa_sfs_entry.dentry,
2482                                       NULL, &aa_fs_profile_remove);
2483         if (IS_ERR(dent)) {
2484                 error = PTR_ERR(dent);
2485                 goto error;
2486         }
2487         ns_subremove(root_ns) = dent;
2488
2489         dent = securityfs_create_file("revision", 0444, aa_sfs_entry.dentry,
2490                                       NULL, &aa_fs_ns_revision_fops);
2491         if (IS_ERR(dent)) {
2492                 error = PTR_ERR(dent);
2493                 goto error;
2494         }
2495         ns_subrevision(root_ns) = dent;
2496
2497         /* policy tree referenced by magic policy symlink */
2498         mutex_lock(&root_ns->lock);
2499         error = __aafs_ns_mkdir(root_ns, aafs_mnt->mnt_root, ".policy",
2500                                 aafs_mnt->mnt_root);
2501         mutex_unlock(&root_ns->lock);
2502         if (error)
2503                 goto error;
2504
2505         /* magic symlink similar to nsfs redirects based on task policy */
2506         dent = securityfs_create_symlink("policy", aa_sfs_entry.dentry,
2507                                          NULL, &policy_link_iops);
2508         if (IS_ERR(dent)) {
2509                 error = PTR_ERR(dent);
2510                 goto error;
2511         }
2512
2513         error = aa_mk_null_file(aa_sfs_entry.dentry);
2514         if (error)
2515                 goto error;
2516
2517         /* TODO: add default profile to apparmorfs */
2518
2519         /* Report that AppArmor fs is enabled */
2520         aa_info_message("AppArmor Filesystem Enabled");
2521         return 0;
2522
2523 error:
2524         aa_destroy_aafs();
2525         AA_ERROR("Error creating AppArmor securityfs\n");
2526         return error;
2527 }
2528
2529 fs_initcall(aa_create_aafs);