2 * AppArmor security module
4 * This file contains AppArmor /sys/kernel/security/apparmor interface functions
6 * Copyright (C) 1998-2008 Novell/SUSE
7 * Copyright 2009-2010 Canonical Ltd.
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
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>
26 #include <linux/poll.h>
27 #include <uapi/linux/major.h>
28 #include <uapi/linux/magic.h>
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"
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.
50 * fns and data are prefixed with
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.
60 * fns and data are prefixed with
63 * The aa_fs_ prefix is used to indicate the fn is used by both the
64 * securityfs and apparmorfs filesystems.
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)
77 * Returns: length of mangled name
79 static int mangle_name(const char *name
, char *target
)
83 while (*name
== '/' || *name
== '.')
87 for (; *name
; name
++) {
90 else if (isspace(*name
))
92 else if (isalnum(*name
) || strchr("._-", *name
))
99 for (; *name
; name
++) {
100 if (isalnum(*name
) || isspace(*name
) ||
101 strchr("/._-", *name
))
113 * aafs - core fns and data for the policy tree
116 #define AAFS_NAME "apparmorfs"
117 static struct vfsmount
*aafs_mnt
;
118 static int aafs_count
;
121 static int aafs_show_path(struct seq_file
*seq
, struct dentry
*dentry
)
123 struct inode
*inode
= d_inode(dentry
);
125 seq_printf(seq
, "%s:[%lu]", AAFS_NAME
, inode
->i_ino
);
129 static void aafs_i_callback(struct rcu_head
*head
)
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
);
137 static void aafs_destroy_inode(struct inode
*inode
)
139 call_rcu(&inode
->i_rcu
, aafs_i_callback
);
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
,
148 static int fill_super(struct super_block
*sb
, void *data
, int silent
)
150 static struct tree_descr files
[] = { {""} };
153 error
= simple_fill_super(sb
, AAFS_MAGIC
, files
);
156 sb
->s_op
= &aafs_super_ops
;
161 static struct dentry
*aafs_mount(struct file_system_type
*fs_type
,
162 int flags
, const char *dev_name
, void *data
)
164 return mount_single(fs_type
, flags
, data
, fill_super
);
167 static struct file_system_type aafs_ops
= {
168 .owner
= THIS_MODULE
,
171 .kill_sb
= kill_anon_super
,
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
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
)
189 struct inode
*inode
= new_inode(dir
->i_sb
);
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
;
202 inode
->i_op
= iops
? iops
: &simple_dir_inode_operations
;
203 inode
->i_fop
= &simple_dir_operations
;
206 } else if (S_ISLNK(mode
)) {
207 inode
->i_op
= iops
? iops
: &simple_symlink_inode_operations
;
208 inode
->i_link
= link
;
212 d_instantiate(dentry
, inode
);
219 * aafs_create - create a dentry in the apparmorfs filesystem
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
229 * This is the basic "create a xxx" function for apparmorfs.
231 * Returns a pointer to a dentry if it succeeds, that must be free with
232 * aafs_remove(). Will return ERR_PTR on failure.
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
)
239 struct dentry
*dentry
;
246 if (!(mode
& S_IFMT
))
247 mode
= (mode
& S_IALLUGO
) | S_IFREG
;
249 error
= simple_pin_fs(&aafs_ops
, &aafs_mnt
, &aafs_count
);
251 return ERR_PTR(error
);
253 dir
= d_inode(parent
);
256 dentry
= lookup_one_len(name
, parent
, strlen(name
));
257 if (IS_ERR(dentry
)) {
258 error
= PTR_ERR(dentry
);
262 if (d_really_is_positive(dentry
)) {
267 error
= __aafs_setup_d_inode(dir
, dentry
, mode
, data
, link
, fops
, iops
);
279 simple_release_fs(&aafs_mnt
, &aafs_count
);
281 return ERR_PTR(error
);
285 * aafs_create_file - create a file in the apparmorfs filesystem
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
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
)
299 return aafs_create(name
, mode
, parent
, data
, NULL
, fops
, NULL
);
303 * aafs_create_dir - create a directory in the apparmorfs filesystem
305 * @name: name of dentry to create
306 * @parent: parent directory for this dentry
310 static struct dentry
*aafs_create_dir(const char *name
, struct dentry
*parent
)
312 return aafs_create(name
, S_IFDIR
| 0755, parent
, NULL
, NULL
, NULL
,
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
323 * If @target parameter is %NULL, then the @iops parameter needs to be
324 * setup to handle .readlink and .get_link inode_operations.
326 static struct dentry
*aafs_create_symlink(const char *name
,
327 struct dentry
*parent
,
329 const struct inode_operations
*iops
)
335 link
= kstrdup(target
, GFP_KERNEL
);
337 return ERR_PTR(-ENOMEM
);
339 dent
= aafs_create(name
, S_IFLNK
| 0444, parent
, NULL
, link
, NULL
,
348 * aafs_remove - removes a file or directory from the apparmorfs filesystem
350 * @dentry: dentry of the file/directory/symlink to removed.
352 static void aafs_remove(struct dentry
*dentry
)
356 if (!dentry
|| IS_ERR(dentry
))
359 dir
= d_inode(dentry
->d_parent
);
361 if (simple_positive(dentry
)) {
362 if (d_is_dir(dentry
))
363 simple_rmdir(dir
, dentry
);
365 simple_unlink(dir
, dentry
);
370 simple_release_fs(&aafs_mnt
, &aafs_count
);
375 * aa_fs - policy load/replace/remove
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)
385 * Returns: kernel buffer containing copy of user buffer data or an
386 * ERR_PTR on failure.
388 static struct aa_loaddata
*aa_simple_write_to_buffer(const char __user
*userbuf
,
393 struct aa_loaddata
*data
;
395 AA_BUG(copy_size
> alloc_size
);
398 /* only writes from pos 0, that is complete writes */
399 return ERR_PTR(-ESPIPE
);
401 /* freed by caller to simple_write_to_buffer */
402 data
= aa_loaddata_alloc(alloc_size
);
406 data
->size
= copy_size
;
407 if (copy_from_user(data
->data
, userbuf
, copy_size
)) {
409 return ERR_PTR(-EFAULT
);
415 static ssize_t
policy_update(u32 mask
, const char __user
*buf
, size_t size
,
416 loff_t
*pos
, struct aa_ns
*ns
)
418 struct aa_loaddata
*data
;
419 struct aa_label
*label
;
422 label
= begin_current_label_crit_section();
424 /* high level check about policy management - fine grained in
427 error
= aa_may_manage_policy(label
, ns
, mask
);
431 data
= aa_simple_write_to_buffer(buf
, size
, size
, pos
);
432 error
= PTR_ERR(data
);
434 error
= aa_replace_profiles(ns
, label
, mask
, data
);
435 aa_put_loaddata(data
);
438 end_current_label_crit_section(label
);
443 /* .load file hook fn to load policy */
444 static ssize_t
profile_load(struct file
*f
, const char __user
*buf
, size_t size
,
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
);
455 static const struct file_operations aa_fs_profile_load
= {
456 .write
= profile_load
,
457 .llseek
= default_llseek
,
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
)
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
,
472 static const struct file_operations aa_fs_profile_replace
= {
473 .write
= profile_replace
,
474 .llseek
= default_llseek
,
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
)
481 struct aa_loaddata
*data
;
482 struct aa_label
*label
;
484 struct aa_ns
*ns
= aa_get_ns(f
->f_inode
->i_private
);
486 label
= begin_current_label_crit_section();
487 /* high level check about policy management - fine grained in
490 error
= aa_may_manage_policy(label
, ns
, AA_MAY_REMOVE_POLICY
);
495 * aa_remove_profile needs a null terminated string so 1 extra
496 * byte is allocated and the copied data is null terminated.
498 data
= aa_simple_write_to_buffer(buf
, size
+ 1, size
, pos
);
500 error
= PTR_ERR(data
);
502 data
->data
[size
] = 0;
503 error
= aa_remove_profiles(ns
, label
, data
->data
, size
);
504 aa_put_loaddata(data
);
507 end_current_label_crit_section(label
);
512 static const struct file_operations aa_fs_profile_remove
= {
513 .write
= profile_remove
,
514 .llseek
= default_llseek
,
522 /* revision file hook fn for policy loads */
523 static int ns_revision_release(struct inode
*inode
, struct file
*file
)
525 struct aa_revision
*rev
= file
->private_data
;
535 static ssize_t
ns_revision_read(struct file
*file
, char __user
*buf
,
536 size_t size
, loff_t
*ppos
)
538 struct aa_revision
*rev
= file
->private_data
;
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
)
549 if (wait_event_interruptible(rev
->ns
->wait
,
551 READ_ONCE(rev
->ns
->revision
)))
553 mutex_lock(&rev
->ns
->lock
);
556 avail
= sprintf(buffer
, "%ld\n", rev
->ns
->revision
);
557 if (*ppos
+ size
> avail
) {
558 rev
->last_read
= rev
->ns
->revision
;
561 mutex_unlock(&rev
->ns
->lock
);
563 return simple_read_from_buffer(buf
, size
, ppos
, buffer
, avail
);
566 static int ns_revision_open(struct inode
*inode
, struct file
*file
)
568 struct aa_revision
*rev
= kzalloc(sizeof(*rev
), GFP_KERNEL
);
573 rev
->ns
= aa_get_ns(inode
->i_private
);
575 rev
->ns
= aa_get_current_ns();
576 file
->private_data
= rev
;
581 static unsigned int ns_revision_poll(struct file
*file
, poll_table
*pt
)
583 struct aa_revision
*rev
= file
->private_data
;
584 unsigned int mask
= 0;
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
);
597 void __aa_bump_ns_revision(struct aa_ns
*ns
)
600 wake_up_interruptible(&ns
->wait
);
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
,
612 static void profile_query_cb(struct aa_profile
*profile
, struct aa_perms
*perms
,
613 const char *match_str
, size_t match_len
)
617 unsigned int state
= 0;
619 if (profile_unconfined(profile
))
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);
627 struct path_cond cond
= { };
629 tmp
= aa_compute_fperms(dfa
, state
, &cond
);
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
);
638 aa_compute_perms(dfa
, state
, &tmp
);
642 aa_apply_modes_to_perms(profile
, &tmp
);
643 aa_perms_accum_raw(perms
, &tmp
);
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
654 * The buffers pointed to by buf and query may overlap. The query buffer is
655 * parsed before buf is written to.
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.
661 * Don't expect the contents of buf to be preserved on failure.
663 * Returns: number of characters written to buf or -errno on failure
665 static ssize_t
query_data(char *buf
, size_t buf_len
,
666 char *query
, size_t query_len
)
671 struct aa_label
*label
, *curr
;
672 struct aa_profile
*profile
;
673 struct aa_data
*data
;
678 return -EINVAL
; /* need a query */
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 */
686 if (buf_len
< sizeof(bytes
) + sizeof(blocks
))
687 return -EINVAL
; /* not enough space */
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
);
693 return PTR_ERR(label
);
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.
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
703 memset(buf
, 0, sizeof(bytes
) + sizeof(blocks
));
704 out
= buf
+ sizeof(bytes
) + sizeof(blocks
);
707 label_for_each_confined(i
, label
, profile
) {
711 data
= rhashtable_lookup_fast(profile
->data
, &key
,
715 if (out
+ sizeof(outle32
) + data
->size
> buf
+
718 return -EINVAL
; /* not enough space */
720 outle32
= __cpu_to_le32(data
->size
);
721 memcpy(out
, &outle32
, sizeof(outle32
));
722 out
+= sizeof(outle32
);
723 memcpy(out
, data
->data
, data
->size
);
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
));
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
746 * The buffers pointed to by buf and query may overlap. The query buffer is
747 * parsed before buf is written to.
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.
753 * LABEL_NAME must be NUL terminated. DFA_STRING may contain NUL characters
754 * but must *not* be NUL terminated.
756 * Returns: number of characters written to buf or -errno on failure
758 static ssize_t
query_label(char *buf
, size_t buf_len
,
759 char *query
, size_t query_len
, bool view_only
)
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
;
772 label_name_len
= strnlen(query
, query_len
);
773 if (!label_name_len
|| label_name_len
== query_len
)
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.
782 match_str
= label_name
+ label_name_len
+ 1;
783 match_len
= query_len
- label_name_len
- 1;
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
);
789 return PTR_ERR(label
);
793 label_for_each_in_ns(i
, labels_ns(label
), label
, profile
) {
794 profile_query_cb(profile
, &perms
, match_str
, match_len
);
797 label_for_each(i
, label
, profile
) {
798 profile_query_cb(profile
, &perms
, match_str
, match_len
);
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
);
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.
815 struct multi_transaction
{
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
);
825 static void multi_transaction_kref(struct kref
*kref
)
827 struct multi_transaction
*t
;
829 t
= container_of(kref
, struct multi_transaction
, count
);
830 free_page((unsigned long) t
);
833 static struct multi_transaction
*
834 get_multi_transaction(struct multi_transaction
*t
)
837 kref_get(&(t
->count
));
842 static void put_multi_transaction(struct multi_transaction
*t
)
845 kref_put(&(t
->count
), multi_transaction_kref
);
848 /* does not increment @new's count */
849 static void multi_transaction_set(struct file
*file
,
850 struct multi_transaction
*new, size_t n
)
852 struct multi_transaction
*old
;
854 AA_BUG(n
> MULTI_TRANSACTION_LIMIT
);
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
);
864 static struct multi_transaction
*multi_transaction_new(struct file
*file
,
865 const char __user
*buf
,
868 struct multi_transaction
*t
;
870 if (size
> MULTI_TRANSACTION_LIMIT
- 1)
871 return ERR_PTR(-EFBIG
);
873 t
= (struct multi_transaction
*)get_zeroed_page(GFP_KERNEL
);
875 return ERR_PTR(-ENOMEM
);
876 kref_init(&t
->count
);
877 if (copy_from_user(t
->data
, buf
, size
))
878 return ERR_PTR(-EFAULT
);
883 static ssize_t
multi_transaction_read(struct file
*file
, char __user
*buf
,
884 size_t size
, loff_t
*pos
)
886 struct multi_transaction
*t
;
889 spin_lock(&multi_transaction_lock
);
890 t
= get_multi_transaction(file
->private_data
);
891 spin_unlock(&multi_transaction_lock
);
895 ret
= simple_read_from_buffer(buf
, size
, pos
, t
->data
, t
->size
);
896 put_multi_transaction(t
);
901 static int multi_transaction_release(struct inode
*inode
, struct file
*file
)
903 put_multi_transaction(file
->private_data
);
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
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)
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.
928 * For permissions queries, ubuf must begin with "label\0", followed by the
929 * profile query specific format described in the query_label() function
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.
936 * Returns: number of bytes written or -errno on failure
938 static ssize_t
aa_write_access(struct file
*file
, const char __user
*ubuf
,
939 size_t count
, loff_t
*ppos
)
941 struct multi_transaction
*t
;
947 t
= multi_transaction_new(file
, ubuf
, count
);
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
);
976 put_multi_transaction(t
);
980 multi_transaction_set(file
, t
, len
);
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
,
992 static int aa_sfs_seq_show(struct seq_file
*seq
, void *v
)
994 struct aa_sfs_entry
*fs_file
= seq
->private;
999 switch (fs_file
->v_type
) {
1000 case AA_SFS_TYPE_BOOLEAN
:
1001 seq_printf(seq
, "%s\n", fs_file
->v
.boolean
? "yes" : "no");
1003 case AA_SFS_TYPE_STRING
:
1004 seq_printf(seq
, "%s\n", fs_file
->v
.string
);
1006 case AA_SFS_TYPE_U64
:
1007 seq_printf(seq
, "%#08lx\n", fs_file
->v
.u64
);
1010 /* Ignore unpritable entry types. */
1017 static int aa_sfs_seq_open(struct inode
*inode
, struct file
*file
)
1019 return single_open(file
, aa_sfs_seq_show
, inode
->i_private
);
1022 const struct file_operations aa_sfs_seq_file_ops
= {
1023 .owner
= THIS_MODULE
,
1024 .open
= aa_sfs_seq_open
,
1026 .llseek
= seq_lseek
,
1027 .release
= single_release
,
1031 * profile based file operations
1032 * policy/profiles/XXXX/profiles/ *
1035 #define SEQ_PROFILE_FOPS(NAME) \
1036 static int seq_profile_ ##NAME ##_open(struct inode *inode, struct file *file)\
1038 return seq_profile_open(inode, file, seq_profile_ ##NAME ##_show); \
1041 static const struct file_operations seq_profile_ ##NAME ##_fops = { \
1042 .owner = THIS_MODULE, \
1043 .open = seq_profile_ ##NAME ##_open, \
1045 .llseek = seq_lseek, \
1046 .release = seq_profile_release, \
1049 static int seq_profile_open(struct inode *inode, struct file *file,
1050 int (*show
)(struct seq_file
*, void *))
1052 struct aa_proxy
*proxy
= aa_get_proxy(inode
->i_private
);
1053 int error
= single_open(file
, show
, proxy
);
1056 file
->private_data
= NULL
;
1057 aa_put_proxy(proxy
);
1063 static int seq_profile_release(struct inode
*inode
, struct file
*file
)
1065 struct seq_file
*seq
= (struct seq_file
*) file
->private_data
;
1067 aa_put_proxy(seq
->private);
1068 return single_release(inode
, file
);
1071 static int seq_profile_name_show(struct seq_file
*seq
, void *v
)
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
);
1082 static int seq_profile_mode_show(struct seq_file
*seq
, void *v
)
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
);
1093 static int seq_profile_attach_show(struct seq_file
*seq
, void *v
)
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");
1103 seq_printf(seq
, "%s\n", profile
->base
.name
);
1104 aa_put_label(label
);
1109 static int seq_profile_hash_show(struct seq_file
*seq
, void *v
)
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();
1116 if (profile
->hash
) {
1117 for (i
= 0; i
< size
; i
++)
1118 seq_printf(seq
, "%.2x", profile
->hash
[i
]);
1119 seq_putc(seq
, '\n');
1121 aa_put_label(label
);
1126 SEQ_PROFILE_FOPS(name
);
1127 SEQ_PROFILE_FOPS(mode
);
1128 SEQ_PROFILE_FOPS(attach
);
1129 SEQ_PROFILE_FOPS(hash
);
1132 * namespace based files
1133 * several root files and
1137 #define SEQ_NS_FOPS(NAME) \
1138 static int seq_ns_ ##NAME ##_open(struct inode *inode, struct file *file) \
1140 return single_open(file, seq_ns_ ##NAME ##_show, inode->i_private); \
1143 static const struct file_operations seq_ns_ ##NAME ##_fops = { \
1144 .owner = THIS_MODULE, \
1145 .open = seq_ns_ ##NAME ##_open, \
1147 .llseek = seq_lseek, \
1148 .release = single_release, \
1151 static int seq_ns_stacked_show(struct seq_file *seq, void *v)
1153 struct aa_label
*label
;
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
);
1162 static int seq_ns_nsstacked_show(struct seq_file
*seq
, void *v
)
1164 struct aa_label
*label
;
1165 struct aa_profile
*profile
;
1169 label
= begin_current_label_crit_section();
1171 if (label
->size
> 1) {
1172 label_for_each(it
, label
, profile
)
1173 if (profile
->ns
!= labels_ns(label
)) {
1179 seq_printf(seq
, "%s\n", count
> 1 ? "yes" : "no");
1180 end_current_label_crit_section(label
);
1185 static int seq_ns_level_show(struct seq_file
*seq
, void *v
)
1187 struct aa_label
*label
;
1189 label
= begin_current_label_crit_section();
1190 seq_printf(seq
, "%d\n", labels_ns(label
)->level
);
1191 end_current_label_crit_section(label
);
1196 static int seq_ns_name_show(struct seq_file
*seq
, void *v
)
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
);
1205 SEQ_NS_FOPS(stacked
);
1206 SEQ_NS_FOPS(nsstacked
);
1211 /* policy/raw_data/ * file ops */
1213 #define SEQ_RAWDATA_FOPS(NAME) \
1214 static int seq_rawdata_ ##NAME ##_open(struct inode *inode, struct file *file)\
1216 return seq_rawdata_open(inode, file, seq_rawdata_ ##NAME ##_show); \
1219 static const struct file_operations seq_rawdata_ ##NAME ##_fops = { \
1220 .owner = THIS_MODULE, \
1221 .open = seq_rawdata_ ##NAME ##_open, \
1223 .llseek = seq_lseek, \
1224 .release = seq_rawdata_release, \
1227 static int seq_rawdata_open(struct inode *inode, struct file *file,
1228 int (*show
)(struct seq_file
*, void *))
1230 struct aa_loaddata
*data
= __aa_get_loaddata(inode
->i_private
);
1234 /* lost race this ent is being reaped */
1237 error
= single_open(file
, show
, data
);
1239 AA_BUG(file
->private_data
&&
1240 ((struct seq_file
*)file
->private_data
)->private);
1241 aa_put_loaddata(data
);
1247 static int seq_rawdata_release(struct inode
*inode
, struct file
*file
)
1249 struct seq_file
*seq
= (struct seq_file
*) file
->private_data
;
1252 aa_put_loaddata(seq
->private);
1254 return single_release(inode
, file
);
1257 static int seq_rawdata_abi_show(struct seq_file
*seq
, void *v
)
1259 struct aa_loaddata
*data
= seq
->private;
1261 seq_printf(seq
, "v%d\n", data
->abi
);
1266 static int seq_rawdata_revision_show(struct seq_file
*seq
, void *v
)
1268 struct aa_loaddata
*data
= seq
->private;
1270 seq_printf(seq
, "%ld\n", data
->revision
);
1275 static int seq_rawdata_hash_show(struct seq_file
*seq
, void *v
)
1277 struct aa_loaddata
*data
= seq
->private;
1278 unsigned int i
, size
= aa_hash_size();
1281 for (i
= 0; i
< size
; i
++)
1282 seq_printf(seq
, "%.2x", data
->hash
[i
]);
1283 seq_putc(seq
, '\n');
1289 SEQ_RAWDATA_FOPS(abi
);
1290 SEQ_RAWDATA_FOPS(revision
);
1291 SEQ_RAWDATA_FOPS(hash
);
1293 static ssize_t
rawdata_read(struct file
*file
, char __user
*buf
, size_t size
,
1296 struct aa_loaddata
*rawdata
= file
->private_data
;
1298 return simple_read_from_buffer(buf
, size
, ppos
, rawdata
->data
,
1302 static int rawdata_release(struct inode
*inode
, struct file
*file
)
1304 aa_put_loaddata(file
->private_data
);
1309 static int rawdata_open(struct inode
*inode
, struct file
*file
)
1311 if (!policy_view_capable(NULL
))
1313 file
->private_data
= __aa_get_loaddata(inode
->i_private
);
1314 if (!file
->private_data
)
1315 /* lost race: this entry is being reaped */
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
,
1328 static void remove_rawdata_dents(struct aa_loaddata
*rawdata
)
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
;
1341 void __aa_fs_remove_rawdata(struct aa_loaddata
*rawdata
)
1343 AA_BUG(rawdata
->ns
&& !mutex_is_locked(&rawdata
->ns
->lock
));
1346 remove_rawdata_dents(rawdata
);
1347 list_del_init(&rawdata
->list
);
1348 aa_put_ns(rawdata
->ns
);
1353 int __aa_fs_create_rawdata(struct aa_ns
*ns
, struct aa_loaddata
*rawdata
)
1355 struct dentry
*dent
, *dir
;
1359 AA_BUG(!mutex_is_locked(&ns
->lock
));
1360 AA_BUG(!ns_subdata_dir(ns
));
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
1367 rawdata
->name
= kasprintf(GFP_KERNEL
, "%ld", ns
->revision
);
1371 dir
= aafs_create_dir(rawdata
->name
, ns_subdata_dir(ns
));
1373 /* ->name freed when rawdata freed */
1374 return PTR_ERR(dir
);
1375 rawdata
->dents
[AAFS_LOADDATA_DIR
] = dir
;
1377 dent
= aafs_create_file("abi", S_IFREG
| 0444, dir
, rawdata
,
1378 &seq_rawdata_abi_fops
);
1381 rawdata
->dents
[AAFS_LOADDATA_ABI
] = dent
;
1383 dent
= aafs_create_file("revision", S_IFREG
| 0444, dir
, rawdata
,
1384 &seq_rawdata_revision_fops
);
1387 rawdata
->dents
[AAFS_LOADDATA_REVISION
] = dent
;
1389 if (aa_g_hash_policy
) {
1390 dent
= aafs_create_file("sha1", S_IFREG
| 0444, dir
,
1391 rawdata
, &seq_rawdata_hash_fops
);
1394 rawdata
->dents
[AAFS_LOADDATA_HASH
] = dent
;
1397 dent
= aafs_create_file("raw_data", S_IFREG
| 0444,
1398 dir
, rawdata
, &rawdata_fops
);
1401 rawdata
->dents
[AAFS_LOADDATA_DATA
] = dent
;
1402 d_inode(dent
)->i_size
= rawdata
->size
;
1404 rawdata
->ns
= aa_get_ns(ns
);
1405 list_add(&rawdata
->list
, &ns
->rawdata_list
);
1406 /* no refcount on inode rawdata */
1411 remove_rawdata_dents(rawdata
);
1413 return PTR_ERR(dent
);
1416 /** fns to setup dynamic per profile/namespace files **/
1420 * Requires: @profile->ns->lock held
1422 void __aafs_profile_rmdir(struct aa_profile
*profile
)
1424 struct aa_profile
*child
;
1430 list_for_each_entry(child
, &profile
->base
.profiles
, base
.list
)
1431 __aafs_profile_rmdir(child
);
1433 for (i
= AAFS_PROF_SIZEOF
- 1; i
>= 0; --i
) {
1434 struct aa_proxy
*proxy
;
1435 if (!profile
->dents
[i
])
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
;
1447 * Requires: @old->ns->lock held
1449 void __aafs_profile_migrate_dents(struct aa_profile
*old
,
1450 struct aa_profile
*new)
1456 AA_BUG(!mutex_is_locked(&profiles_ns(old
)->lock
));
1458 for (i
= 0; i
< AAFS_PROF_SIZEOF
; i
++) {
1459 new->dents
[i
] = old
->dents
[i
];
1461 new->dents
[i
]->d_inode
->i_mtime
= current_time(new->dents
[i
]->d_inode
);
1462 old
->dents
[i
] = NULL
;
1466 static struct dentry
*create_profile_file(struct dentry
*dir
, const char *name
,
1467 struct aa_profile
*profile
,
1468 const struct file_operations
*fops
)
1470 struct aa_proxy
*proxy
= aa_get_proxy(profile
->label
.proxy
);
1471 struct dentry
*dent
;
1473 dent
= aafs_create_file(name
, S_IFREG
| 0444, dir
, proxy
, fops
);
1475 aa_put_proxy(proxy
);
1480 static int profile_depth(struct aa_profile
*profile
)
1485 for (depth
= 0; profile
; profile
= rcu_access_pointer(profile
->parent
))
1492 static int gen_symlink_name(char *buffer
, size_t bsize
, int depth
,
1493 const char *dirname
, const char *fname
)
1497 for (; depth
> 0; depth
--) {
1499 return -ENAMETOOLONG
;
1500 strcpy(buffer
, "../../");
1505 error
= snprintf(buffer
, bsize
, "raw_data/%s/%s", dirname
, fname
);
1506 if (error
>= bsize
|| error
< 0)
1507 return -ENAMETOOLONG
;
1513 * Requires: @profile->ns->lock held
1515 int __aafs_profile_mkdir(struct aa_profile
*profile
, struct dentry
*parent
)
1517 struct aa_profile
*child
;
1518 struct dentry
*dent
= NULL
, *dir
;
1522 AA_BUG(!mutex_is_locked(&profiles_ns(profile
)->lock
));
1525 struct aa_profile
*p
;
1526 p
= aa_deref_parent(profile
);
1528 /* adding to parent that previously didn't have children */
1529 dent
= aafs_create_dir("profiles", dent
);
1532 prof_child_dir(p
) = parent
= dent
;
1535 if (!profile
->dirname
) {
1537 len
= mangle_name(profile
->base
.name
, NULL
);
1538 id_len
= snprintf(NULL
, 0, ".%ld", profile
->ns
->uniq_id
);
1540 profile
->dirname
= kmalloc(len
+ id_len
+ 1, GFP_KERNEL
);
1541 if (!profile
->dirname
) {
1546 mangle_name(profile
->base
.name
, profile
->dirname
);
1547 sprintf(profile
->dirname
+ len
, ".%ld", profile
->ns
->uniq_id
++);
1550 dent
= aafs_create_dir(profile
->dirname
, parent
);
1553 prof_dir(profile
) = dir
= dent
;
1555 dent
= create_profile_file(dir
, "name", profile
,
1556 &seq_profile_name_fops
);
1559 profile
->dents
[AAFS_PROF_NAME
] = dent
;
1561 dent
= create_profile_file(dir
, "mode", profile
,
1562 &seq_profile_mode_fops
);
1565 profile
->dents
[AAFS_PROF_MODE
] = dent
;
1567 dent
= create_profile_file(dir
, "attach", profile
,
1568 &seq_profile_attach_fops
);
1571 profile
->dents
[AAFS_PROF_ATTACH
] = dent
;
1573 if (profile
->hash
) {
1574 dent
= create_profile_file(dir
, "sha1", profile
,
1575 &seq_profile_hash_fops
);
1578 profile
->dents
[AAFS_PROF_HASH
] = dent
;
1581 if (profile
->rawdata
) {
1583 int depth
= profile_depth(profile
);
1585 error
= gen_symlink_name(target
, sizeof(target
), depth
,
1586 profile
->rawdata
->name
, "sha1");
1589 dent
= aafs_create_symlink("raw_sha1", dir
, target
, NULL
);
1592 profile
->dents
[AAFS_PROF_RAW_HASH
] = dent
;
1594 error
= gen_symlink_name(target
, sizeof(target
), depth
,
1595 profile
->rawdata
->name
, "abi");
1598 dent
= aafs_create_symlink("raw_abi", dir
, target
, NULL
);
1601 profile
->dents
[AAFS_PROF_RAW_ABI
] = dent
;
1603 error
= gen_symlink_name(target
, sizeof(target
), depth
,
1604 profile
->rawdata
->name
, "raw_data");
1607 dent
= aafs_create_symlink("raw_data", dir
, target
, NULL
);
1610 profile
->dents
[AAFS_PROF_RAW_DATA
] = dent
;
1613 list_for_each_entry(child
, &profile
->base
.profiles
, base
.list
) {
1614 error
= __aafs_profile_mkdir(child
, prof_child_dir(profile
));
1622 error
= PTR_ERR(dent
);
1625 __aafs_profile_rmdir(profile
);
1630 static int ns_mkdir_op(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
)
1632 struct aa_ns
*ns
, *parent
;
1633 /* TODO: improve permission check */
1634 struct aa_label
*label
;
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
);
1643 parent
= aa_get_ns(dir
->i_private
);
1644 AA_BUG(d_inode(ns_subns_dir(parent
)) != dir
);
1646 /* we have to unlock and then relock to get locking order right
1650 error
= simple_pin_fs(&aafs_ops
, &aafs_mnt
, &aafs_count
);
1651 mutex_lock(&parent
->lock
);
1652 inode_lock_nested(dir
, I_MUTEX_PARENT
);
1656 error
= __aafs_setup_d_inode(dir
, dentry
, mode
| S_IFDIR
, NULL
,
1661 ns
= __aa_find_or_create_ns(parent
, READ_ONCE(dentry
->d_name
.name
),
1664 error
= PTR_ERR(ns
);
1668 aa_put_ns(ns
); /* list ref remains */
1671 simple_release_fs(&aafs_mnt
, &aafs_count
);
1673 mutex_unlock(&parent
->lock
);
1679 static int ns_rmdir_op(struct inode
*dir
, struct dentry
*dentry
)
1681 struct aa_ns
*ns
, *parent
;
1682 /* TODO: improve permission check */
1683 struct aa_label
*label
;
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
);
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
1698 inode_unlock(dentry
->d_inode
);
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
));
1707 AA_BUG(ns_dir(ns
) != dentry
);
1713 mutex_unlock(&parent
->lock
);
1714 inode_lock_nested(dir
, I_MUTEX_PARENT
);
1715 inode_lock(dentry
->d_inode
);
1721 static const struct inode_operations ns_dir_inode_operations
= {
1722 .lookup
= simple_lookup
,
1723 .mkdir
= ns_mkdir_op
,
1724 .rmdir
= ns_rmdir_op
,
1727 static void __aa_fs_list_remove_rawdata(struct aa_ns
*ns
)
1729 struct aa_loaddata
*ent
, *tmp
;
1731 AA_BUG(!mutex_is_locked(&ns
->lock
));
1733 list_for_each_entry_safe(ent
, tmp
, &ns
->rawdata_list
, list
)
1734 __aa_fs_remove_rawdata(ent
);
1739 * Requires: @ns->lock held
1741 void __aafs_ns_rmdir(struct aa_ns
*ns
)
1744 struct aa_profile
*child
;
1749 AA_BUG(!mutex_is_locked(&ns
->lock
));
1751 list_for_each_entry(child
, &ns
->base
.profiles
, base
.list
)
1752 __aafs_profile_rmdir(child
);
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
);
1760 __aa_fs_list_remove_rawdata(ns
);
1762 if (ns_subns_dir(ns
)) {
1763 sub
= d_inode(ns_subns_dir(ns
))->i_private
;
1766 if (ns_subload(ns
)) {
1767 sub
= d_inode(ns_subload(ns
))->i_private
;
1770 if (ns_subreplace(ns
)) {
1771 sub
= d_inode(ns_subreplace(ns
))->i_private
;
1774 if (ns_subremove(ns
)) {
1775 sub
= d_inode(ns_subremove(ns
))->i_private
;
1778 if (ns_subrevision(ns
)) {
1779 sub
= d_inode(ns_subrevision(ns
))->i_private
;
1783 for (i
= AAFS_NS_SIZEOF
- 1; i
>= 0; --i
) {
1784 aafs_remove(ns
->dents
[i
]);
1785 ns
->dents
[i
] = NULL
;
1789 /* assumes cleanup in caller */
1790 static int __aafs_ns_mkdir_entries(struct aa_ns
*ns
, struct dentry
*dir
)
1792 struct dentry
*dent
;
1797 dent
= aafs_create_dir("profiles", dir
);
1799 return PTR_ERR(dent
);
1800 ns_subprofs_dir(ns
) = dent
;
1802 dent
= aafs_create_dir("raw_data", dir
);
1804 return PTR_ERR(dent
);
1805 ns_subdata_dir(ns
) = dent
;
1807 dent
= aafs_create_file("revision", 0444, dir
, ns
,
1808 &aa_fs_ns_revision_fops
);
1810 return PTR_ERR(dent
);
1812 ns_subrevision(ns
) = dent
;
1814 dent
= aafs_create_file(".load", 0640, dir
, ns
,
1815 &aa_fs_profile_load
);
1817 return PTR_ERR(dent
);
1819 ns_subload(ns
) = dent
;
1821 dent
= aafs_create_file(".replace", 0640, dir
, ns
,
1822 &aa_fs_profile_replace
);
1824 return PTR_ERR(dent
);
1826 ns_subreplace(ns
) = dent
;
1828 dent
= aafs_create_file(".remove", 0640, dir
, ns
,
1829 &aa_fs_profile_remove
);
1831 return PTR_ERR(dent
);
1833 ns_subremove(ns
) = dent
;
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
);
1839 return PTR_ERR(dent
);
1841 ns_subns_dir(ns
) = dent
;
1847 * Requires: @ns->lock held
1849 int __aafs_ns_mkdir(struct aa_ns
*ns
, struct dentry
*parent
, const char *name
,
1850 struct dentry
*dent
)
1853 struct aa_profile
*child
;
1859 AA_BUG(!mutex_is_locked(&ns
->lock
));
1862 name
= ns
->base
.name
;
1865 /* create ns dir if it doesn't already exist */
1866 dent
= aafs_create_dir(name
, parent
);
1871 ns_dir(ns
) = dir
= dent
;
1872 error
= __aafs_ns_mkdir_entries(ns
, dir
);
1877 list_for_each_entry(child
, &ns
->base
.profiles
, base
.list
) {
1878 error
= __aafs_profile_mkdir(child
, ns_subprofs_dir(ns
));
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
);
1895 error
= PTR_ERR(dent
);
1898 __aafs_ns_rmdir(ns
);
1904 #define list_entry_is_head(pos, head, member) (&pos->member == (head))
1907 * __next_ns - find the next namespace to list
1908 * @root: root namespace to stop search at (NOT NULL)
1909 * @ns: current ns position (NOT NULL)
1911 * Find the next namespace from @ns under @root and handle all locking needed
1912 * while switching current namespace.
1914 * Returns: next namespace or NULL if at last namespace under @root
1915 * Requires: ns->parent->lock to be held
1916 * NOTE: will not unlock root->lock
1918 static struct aa_ns
*__next_ns(struct aa_ns
*root
, struct aa_ns
*ns
)
1920 struct aa_ns
*parent
, *next
;
1924 AA_BUG(ns
!= root
&& !mutex_is_locked(&ns
->parent
->lock
));
1926 /* is next namespace a child */
1927 if (!list_empty(&ns
->sub_ns
)) {
1928 next
= list_first_entry(&ns
->sub_ns
, typeof(*ns
), base
.list
);
1929 mutex_lock(&next
->lock
);
1933 /* check if the next ns is a sibling, parent, gp, .. */
1934 parent
= ns
->parent
;
1935 while (ns
!= root
) {
1936 mutex_unlock(&ns
->lock
);
1937 next
= list_next_entry(ns
, base
.list
);
1938 if (!list_entry_is_head(next
, &parent
->sub_ns
, base
.list
)) {
1939 mutex_lock(&next
->lock
);
1943 parent
= parent
->parent
;
1950 * __first_profile - find the first profile in a namespace
1951 * @root: namespace that is root of profiles being displayed (NOT NULL)
1952 * @ns: namespace to start in (NOT NULL)
1954 * Returns: unrefcounted profile or NULL if no profile
1955 * Requires: profile->ns.lock to be held
1957 static struct aa_profile
*__first_profile(struct aa_ns
*root
,
1961 AA_BUG(ns
&& !mutex_is_locked(&ns
->lock
));
1963 for (; ns
; ns
= __next_ns(root
, ns
)) {
1964 if (!list_empty(&ns
->base
.profiles
))
1965 return list_first_entry(&ns
->base
.profiles
,
1966 struct aa_profile
, base
.list
);
1972 * __next_profile - step to the next profile in a profile tree
1973 * @profile: current profile in tree (NOT NULL)
1975 * Perform a depth first traversal on the profile tree in a namespace
1977 * Returns: next profile or NULL if done
1978 * Requires: profile->ns.lock to be held
1980 static struct aa_profile
*__next_profile(struct aa_profile
*p
)
1982 struct aa_profile
*parent
;
1983 struct aa_ns
*ns
= p
->ns
;
1985 AA_BUG(!mutex_is_locked(&profiles_ns(p
)->lock
));
1987 /* is next profile a child */
1988 if (!list_empty(&p
->base
.profiles
))
1989 return list_first_entry(&p
->base
.profiles
, typeof(*p
),
1992 /* is next profile a sibling, parent sibling, gp, sibling, .. */
1993 parent
= rcu_dereference_protected(p
->parent
,
1994 mutex_is_locked(&p
->ns
->lock
));
1996 p
= list_next_entry(p
, base
.list
);
1997 if (!list_entry_is_head(p
, &parent
->base
.profiles
, base
.list
))
2000 parent
= rcu_dereference_protected(parent
->parent
,
2001 mutex_is_locked(&parent
->ns
->lock
));
2004 /* is next another profile in the namespace */
2005 p
= list_next_entry(p
, base
.list
);
2006 if (!list_entry_is_head(p
, &ns
->base
.profiles
, base
.list
))
2013 * next_profile - step to the next profile in where ever it may be
2014 * @root: root namespace (NOT NULL)
2015 * @profile: current profile (NOT NULL)
2017 * Returns: next profile or NULL if there isn't one
2019 static struct aa_profile
*next_profile(struct aa_ns
*root
,
2020 struct aa_profile
*profile
)
2022 struct aa_profile
*next
= __next_profile(profile
);
2026 /* finished all profiles in namespace move to next namespace */
2027 return __first_profile(root
, __next_ns(root
, profile
->ns
));
2031 * p_start - start a depth first traversal of profile tree
2032 * @f: seq_file to fill
2033 * @pos: current position
2035 * Returns: first profile under current namespace or NULL if none found
2037 * acquires first ns->lock
2039 static void *p_start(struct seq_file
*f
, loff_t
*pos
)
2041 struct aa_profile
*profile
= NULL
;
2042 struct aa_ns
*root
= aa_get_current_ns();
2046 /* find the first profile */
2047 mutex_lock(&root
->lock
);
2048 profile
= __first_profile(root
, root
);
2050 /* skip to position */
2051 for (; profile
&& l
> 0; l
--)
2052 profile
= next_profile(root
, profile
);
2058 * p_next - read the next profile entry
2059 * @f: seq_file to fill
2060 * @p: profile previously returned
2061 * @pos: current position
2063 * Returns: next profile after @p or NULL if none
2065 * may acquire/release locks in namespace tree as necessary
2067 static void *p_next(struct seq_file
*f
, void *p
, loff_t
*pos
)
2069 struct aa_profile
*profile
= p
;
2070 struct aa_ns
*ns
= f
->private;
2073 return next_profile(ns
, profile
);
2077 * p_stop - stop depth first traversal
2078 * @f: seq_file we are filling
2079 * @p: the last profile writen
2081 * Release all locking done by p_start/p_next on namespace tree
2083 static void p_stop(struct seq_file
*f
, void *p
)
2085 struct aa_profile
*profile
= p
;
2086 struct aa_ns
*root
= f
->private, *ns
;
2089 for (ns
= profile
->ns
; ns
&& ns
!= root
; ns
= ns
->parent
)
2090 mutex_unlock(&ns
->lock
);
2092 mutex_unlock(&root
->lock
);
2097 * seq_show_profile - show a profile entry
2098 * @f: seq_file to file
2099 * @p: current position (profile) (NOT NULL)
2101 * Returns: error on failure
2103 static int seq_show_profile(struct seq_file
*f
, void *p
)
2105 struct aa_profile
*profile
= (struct aa_profile
*)p
;
2106 struct aa_ns
*root
= f
->private;
2108 aa_label_seq_xprint(f
, root
, &profile
->label
,
2109 FLAG_SHOW_MODE
| FLAG_VIEW_SUBNS
, GFP_KERNEL
);
2115 static const struct seq_operations aa_sfs_profiles_op
= {
2119 .show
= seq_show_profile
,
2122 static int profiles_open(struct inode
*inode
, struct file
*file
)
2124 if (!policy_view_capable(NULL
))
2127 return seq_open(file
, &aa_sfs_profiles_op
);
2130 static int profiles_release(struct inode
*inode
, struct file
*file
)
2132 return seq_release(inode
, file
);
2135 static const struct file_operations aa_sfs_profiles_fops
= {
2136 .open
= profiles_open
,
2138 .llseek
= seq_lseek
,
2139 .release
= profiles_release
,
2143 /** Base file system setup **/
2144 static struct aa_sfs_entry aa_sfs_entry_file
[] = {
2145 AA_SFS_FILE_STRING("mask",
2146 "create read write exec append mmap_exec link lock"),
2150 static struct aa_sfs_entry aa_sfs_entry_ptrace
[] = {
2151 AA_SFS_FILE_STRING("mask", "read trace"),
2155 static struct aa_sfs_entry aa_sfs_entry_signal
[] = {
2156 AA_SFS_FILE_STRING("mask", AA_SFS_SIG_MASK
),
2160 static struct aa_sfs_entry aa_sfs_entry_domain
[] = {
2161 AA_SFS_FILE_BOOLEAN("change_hat", 1),
2162 AA_SFS_FILE_BOOLEAN("change_hatv", 1),
2163 AA_SFS_FILE_BOOLEAN("change_onexec", 1),
2164 AA_SFS_FILE_BOOLEAN("change_profile", 1),
2165 AA_SFS_FILE_BOOLEAN("stack", 1),
2166 AA_SFS_FILE_BOOLEAN("fix_binfmt_elf_mmap", 1),
2167 AA_SFS_FILE_STRING("version", "1.2"),
2171 static struct aa_sfs_entry aa_sfs_entry_versions
[] = {
2172 AA_SFS_FILE_BOOLEAN("v5", 1),
2173 AA_SFS_FILE_BOOLEAN("v6", 1),
2174 AA_SFS_FILE_BOOLEAN("v7", 1),
2178 static struct aa_sfs_entry aa_sfs_entry_policy
[] = {
2179 AA_SFS_DIR("versions", aa_sfs_entry_versions
),
2180 AA_SFS_FILE_BOOLEAN("set_load", 1),
2184 static struct aa_sfs_entry aa_sfs_entry_mount
[] = {
2185 AA_SFS_FILE_STRING("mask", "mount umount pivot_root"),
2189 static struct aa_sfs_entry aa_sfs_entry_ns
[] = {
2190 AA_SFS_FILE_BOOLEAN("profile", 1),
2191 AA_SFS_FILE_BOOLEAN("pivot_root", 0),
2195 static struct aa_sfs_entry aa_sfs_entry_query_label
[] = {
2196 AA_SFS_FILE_STRING("perms", "allow deny audit quiet"),
2197 AA_SFS_FILE_BOOLEAN("data", 1),
2198 AA_SFS_FILE_BOOLEAN("multi_transaction", 1),
2202 static struct aa_sfs_entry aa_sfs_entry_query
[] = {
2203 AA_SFS_DIR("label", aa_sfs_entry_query_label
),
2206 static struct aa_sfs_entry aa_sfs_entry_features
[] = {
2207 AA_SFS_DIR("policy", aa_sfs_entry_policy
),
2208 AA_SFS_DIR("domain", aa_sfs_entry_domain
),
2209 AA_SFS_DIR("file", aa_sfs_entry_file
),
2210 AA_SFS_DIR("mount", aa_sfs_entry_mount
),
2211 AA_SFS_DIR("namespaces", aa_sfs_entry_ns
),
2212 AA_SFS_FILE_U64("capability", VFS_CAP_FLAGS_MASK
),
2213 AA_SFS_DIR("rlimit", aa_sfs_entry_rlimit
),
2214 AA_SFS_DIR("caps", aa_sfs_entry_caps
),
2215 AA_SFS_DIR("ptrace", aa_sfs_entry_ptrace
),
2216 AA_SFS_DIR("signal", aa_sfs_entry_signal
),
2217 AA_SFS_DIR("query", aa_sfs_entry_query
),
2221 static struct aa_sfs_entry aa_sfs_entry_apparmor
[] = {
2222 AA_SFS_FILE_FOPS(".access", 0666, &aa_sfs_access
),
2223 AA_SFS_FILE_FOPS(".stacked", 0444, &seq_ns_stacked_fops
),
2224 AA_SFS_FILE_FOPS(".ns_stacked", 0444, &seq_ns_nsstacked_fops
),
2225 AA_SFS_FILE_FOPS(".ns_level", 0444, &seq_ns_level_fops
),
2226 AA_SFS_FILE_FOPS(".ns_name", 0444, &seq_ns_name_fops
),
2227 AA_SFS_FILE_FOPS("profiles", 0444, &aa_sfs_profiles_fops
),
2228 AA_SFS_DIR("features", aa_sfs_entry_features
),
2232 static struct aa_sfs_entry aa_sfs_entry
=
2233 AA_SFS_DIR("apparmor", aa_sfs_entry_apparmor
);
2236 * entry_create_file - create a file entry in the apparmor securityfs
2237 * @fs_file: aa_sfs_entry to build an entry for (NOT NULL)
2238 * @parent: the parent dentry in the securityfs
2240 * Use entry_remove_file to remove entries created with this fn.
2242 static int __init
entry_create_file(struct aa_sfs_entry
*fs_file
,
2243 struct dentry
*parent
)
2247 fs_file
->dentry
= securityfs_create_file(fs_file
->name
,
2248 S_IFREG
| fs_file
->mode
,
2251 if (IS_ERR(fs_file
->dentry
)) {
2252 error
= PTR_ERR(fs_file
->dentry
);
2253 fs_file
->dentry
= NULL
;
2258 static void __init
entry_remove_dir(struct aa_sfs_entry
*fs_dir
);
2260 * entry_create_dir - recursively create a directory entry in the securityfs
2261 * @fs_dir: aa_sfs_entry (and all child entries) to build (NOT NULL)
2262 * @parent: the parent dentry in the securityfs
2264 * Use entry_remove_dir to remove entries created with this fn.
2266 static int __init
entry_create_dir(struct aa_sfs_entry
*fs_dir
,
2267 struct dentry
*parent
)
2269 struct aa_sfs_entry
*fs_file
;
2273 dir
= securityfs_create_dir(fs_dir
->name
, parent
);
2275 return PTR_ERR(dir
);
2276 fs_dir
->dentry
= dir
;
2278 for (fs_file
= fs_dir
->v
.files
; fs_file
&& fs_file
->name
; ++fs_file
) {
2279 if (fs_file
->v_type
== AA_SFS_TYPE_DIR
)
2280 error
= entry_create_dir(fs_file
, fs_dir
->dentry
);
2282 error
= entry_create_file(fs_file
, fs_dir
->dentry
);
2290 entry_remove_dir(fs_dir
);
2296 * entry_remove_file - drop a single file entry in the apparmor securityfs
2297 * @fs_file: aa_sfs_entry to detach from the securityfs (NOT NULL)
2299 static void __init
entry_remove_file(struct aa_sfs_entry
*fs_file
)
2301 if (!fs_file
->dentry
)
2304 securityfs_remove(fs_file
->dentry
);
2305 fs_file
->dentry
= NULL
;
2309 * entry_remove_dir - recursively drop a directory entry from the securityfs
2310 * @fs_dir: aa_sfs_entry (and all child entries) to detach (NOT NULL)
2312 static void __init
entry_remove_dir(struct aa_sfs_entry
*fs_dir
)
2314 struct aa_sfs_entry
*fs_file
;
2316 for (fs_file
= fs_dir
->v
.files
; fs_file
&& fs_file
->name
; ++fs_file
) {
2317 if (fs_file
->v_type
== AA_SFS_TYPE_DIR
)
2318 entry_remove_dir(fs_file
);
2320 entry_remove_file(fs_file
);
2323 entry_remove_file(fs_dir
);
2327 * aa_destroy_aafs - cleanup and free aafs
2329 * releases dentries allocated by aa_create_aafs
2331 void __init
aa_destroy_aafs(void)
2333 entry_remove_dir(&aa_sfs_entry
);
2337 #define NULL_FILE_NAME ".null"
2338 struct path aa_null
;
2340 static int aa_mk_null_file(struct dentry
*parent
)
2342 struct vfsmount
*mount
= NULL
;
2343 struct dentry
*dentry
;
2344 struct inode
*inode
;
2346 int error
= simple_pin_fs(parent
->d_sb
->s_type
, &mount
, &count
);
2351 inode_lock(d_inode(parent
));
2352 dentry
= lookup_one_len(NULL_FILE_NAME
, parent
, strlen(NULL_FILE_NAME
));
2353 if (IS_ERR(dentry
)) {
2354 error
= PTR_ERR(dentry
);
2357 inode
= new_inode(parent
->d_inode
->i_sb
);
2363 inode
->i_ino
= get_next_ino();
2364 inode
->i_mode
= S_IFCHR
| S_IRUGO
| S_IWUGO
;
2365 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
= current_time(inode
);
2366 init_special_inode(inode
, S_IFCHR
| S_IRUGO
| S_IWUGO
,
2367 MKDEV(MEM_MAJOR
, 3));
2368 d_instantiate(dentry
, inode
);
2369 aa_null
.dentry
= dget(dentry
);
2370 aa_null
.mnt
= mntget(mount
);
2377 inode_unlock(d_inode(parent
));
2378 simple_release_fs(&mount
, &count
);
2384 static const char *policy_get_link(struct dentry
*dentry
,
2385 struct inode
*inode
,
2386 struct delayed_call
*done
)
2392 return ERR_PTR(-ECHILD
);
2393 ns
= aa_get_current_ns();
2394 path
.mnt
= mntget(aafs_mnt
);
2395 path
.dentry
= dget(ns_dir(ns
));
2396 nd_jump_link(&path
);
2402 static int ns_get_name(char *buf
, size_t size
, struct aa_ns
*ns
,
2403 struct inode
*inode
)
2405 int res
= snprintf(buf
, size
, "%s:[%lu]", AAFS_NAME
, inode
->i_ino
);
2407 if (res
< 0 || res
>= size
)
2413 static int policy_readlink(struct dentry
*dentry
, char __user
*buffer
,
2420 ns
= aa_get_current_ns();
2421 res
= ns_get_name(name
, sizeof(name
), ns
, d_inode(dentry
));
2423 res
= readlink_copy(buffer
, buflen
, name
);
2429 static const struct inode_operations policy_link_iops
= {
2430 .readlink
= policy_readlink
,
2431 .get_link
= policy_get_link
,
2436 * aa_create_aafs - create the apparmor security filesystem
2438 * dentries created here are released by aa_destroy_aafs
2440 * Returns: error on failure
2442 static int __init
aa_create_aafs(void)
2444 struct dentry
*dent
;
2447 if (!apparmor_initialized
)
2450 if (aa_sfs_entry
.dentry
) {
2451 AA_ERROR("%s: AppArmor securityfs already exists\n", __func__
);
2455 /* setup apparmorfs used to virtualize policy/ */
2456 aafs_mnt
= kern_mount(&aafs_ops
);
2457 if (IS_ERR(aafs_mnt
))
2458 panic("can't set apparmorfs up\n");
2459 aafs_mnt
->mnt_sb
->s_flags
&= ~MS_NOUSER
;
2461 /* Populate fs tree. */
2462 error
= entry_create_dir(&aa_sfs_entry
, NULL
);
2466 dent
= securityfs_create_file(".load", 0666, aa_sfs_entry
.dentry
,
2467 NULL
, &aa_fs_profile_load
);
2469 error
= PTR_ERR(dent
);
2472 ns_subload(root_ns
) = dent
;
2474 dent
= securityfs_create_file(".replace", 0666, aa_sfs_entry
.dentry
,
2475 NULL
, &aa_fs_profile_replace
);
2477 error
= PTR_ERR(dent
);
2480 ns_subreplace(root_ns
) = dent
;
2482 dent
= securityfs_create_file(".remove", 0666, aa_sfs_entry
.dentry
,
2483 NULL
, &aa_fs_profile_remove
);
2485 error
= PTR_ERR(dent
);
2488 ns_subremove(root_ns
) = dent
;
2490 dent
= securityfs_create_file("revision", 0444, aa_sfs_entry
.dentry
,
2491 NULL
, &aa_fs_ns_revision_fops
);
2493 error
= PTR_ERR(dent
);
2496 ns_subrevision(root_ns
) = dent
;
2498 /* policy tree referenced by magic policy symlink */
2499 mutex_lock(&root_ns
->lock
);
2500 error
= __aafs_ns_mkdir(root_ns
, aafs_mnt
->mnt_root
, ".policy",
2501 aafs_mnt
->mnt_root
);
2502 mutex_unlock(&root_ns
->lock
);
2506 /* magic symlink similar to nsfs redirects based on task policy */
2507 dent
= securityfs_create_symlink("policy", aa_sfs_entry
.dentry
,
2508 NULL
, &policy_link_iops
);
2510 error
= PTR_ERR(dent
);
2514 error
= aa_mk_null_file(aa_sfs_entry
.dentry
);
2518 /* TODO: add default profile to apparmorfs */
2520 /* Report that AppArmor fs is enabled */
2521 aa_info_message("AppArmor Filesystem Enabled");
2526 AA_ERROR("Error creating AppArmor securityfs\n");
2530 fs_initcall(aa_create_aafs
);