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/namei.h>
22 #include <linux/capability.h>
23 #include <linux/rcupdate.h>
25 #include "include/apparmor.h"
26 #include "include/apparmorfs.h"
27 #include "include/audit.h"
28 #include "include/context.h"
29 #include "include/crypto.h"
30 #include "include/policy.h"
31 #include "include/resource.h"
34 * aa_mangle_name - mangle a profile name to std profile layout form
35 * @name: profile name to mangle (NOT NULL)
36 * @target: buffer to store mangled name, same length as @name (MAYBE NULL)
38 * Returns: length of mangled name
40 static int mangle_name(char *name, char *target)
44 while (*name == '/' || *name == '.')
48 for (; *name; name++) {
51 else if (isspace(*name))
53 else if (isalnum(*name) || strchr("._-", *name))
60 for (; *name; name++) {
61 if (isalnum(*name) || isspace(*name) ||
62 strchr("/._-", *name))
73 * aa_simple_write_to_buffer - common routine for getting policy from user
74 * @op: operation doing the user buffer copy
75 * @userbuf: user buffer to copy data from (NOT NULL)
76 * @alloc_size: size of user buffer (REQUIRES: @alloc_size >= @copy_size)
77 * @copy_size: size of data to copy from user buffer
78 * @pos: position write is at in the file (NOT NULL)
80 * Returns: kernel buffer containing copy of user buffer data or an
83 static char *aa_simple_write_to_buffer(int op, const char __user *userbuf,
84 size_t alloc_size, size_t copy_size,
89 BUG_ON(copy_size > alloc_size);
92 /* only writes from pos 0, that is complete writes */
93 return ERR_PTR(-ESPIPE);
96 * Don't allow profile load/replace/remove from profiles that don't
99 if (!aa_may_manage_policy(op))
100 return ERR_PTR(-EACCES);
102 /* freed by caller to simple_write_to_buffer */
103 data = kvmalloc(alloc_size);
105 return ERR_PTR(-ENOMEM);
107 if (copy_from_user(data, userbuf, copy_size)) {
109 return ERR_PTR(-EFAULT);
116 /* .load file hook fn to load policy */
117 static ssize_t profile_load(struct file *f, const char __user *buf, size_t size,
123 data = aa_simple_write_to_buffer(OP_PROF_LOAD, buf, size, size, pos);
125 error = PTR_ERR(data);
127 error = aa_replace_profiles(data, size, PROF_ADD);
134 static const struct file_operations aa_fs_profile_load = {
135 .write = profile_load,
136 .llseek = default_llseek,
139 /* .replace file hook fn to load and/or replace policy */
140 static ssize_t profile_replace(struct file *f, const char __user *buf,
141 size_t size, loff_t *pos)
146 data = aa_simple_write_to_buffer(OP_PROF_REPL, buf, size, size, pos);
147 error = PTR_ERR(data);
149 error = aa_replace_profiles(data, size, PROF_REPLACE);
156 static const struct file_operations aa_fs_profile_replace = {
157 .write = profile_replace,
158 .llseek = default_llseek,
161 /* .remove file hook fn to remove loaded policy */
162 static ssize_t profile_remove(struct file *f, const char __user *buf,
163 size_t size, loff_t *pos)
169 * aa_remove_profile needs a null terminated string so 1 extra
170 * byte is allocated and the copied data is null terminated.
172 data = aa_simple_write_to_buffer(OP_PROF_RM, buf, size + 1, size, pos);
174 error = PTR_ERR(data);
177 error = aa_remove_profiles(data, size);
184 static const struct file_operations aa_fs_profile_remove = {
185 .write = profile_remove,
186 .llseek = default_llseek,
189 static int aa_fs_seq_show(struct seq_file *seq, void *v)
191 struct aa_fs_entry *fs_file = seq->private;
196 switch (fs_file->v_type) {
197 case AA_FS_TYPE_BOOLEAN:
198 seq_printf(seq, "%s\n", fs_file->v.boolean ? "yes" : "no");
200 case AA_FS_TYPE_STRING:
201 seq_printf(seq, "%s\n", fs_file->v.string);
204 seq_printf(seq, "%#08lx\n", fs_file->v.u64);
207 /* Ignore unpritable entry types. */
214 static int aa_fs_seq_open(struct inode *inode, struct file *file)
216 return single_open(file, aa_fs_seq_show, inode->i_private);
219 const struct file_operations aa_fs_seq_file_ops = {
220 .owner = THIS_MODULE,
221 .open = aa_fs_seq_open,
224 .release = single_release,
227 static int aa_fs_seq_profile_open(struct inode *inode, struct file *file,
228 int (*show)(struct seq_file *, void *))
230 struct aa_replacedby *r = aa_get_replacedby(inode->i_private);
231 int error = single_open(file, show, r);
234 file->private_data = NULL;
235 aa_put_replacedby(r);
241 static int aa_fs_seq_profile_release(struct inode *inode, struct file *file)
243 struct seq_file *seq = (struct seq_file *) file->private_data;
245 aa_put_replacedby(seq->private);
246 return single_release(inode, file);
249 static int aa_fs_seq_profname_show(struct seq_file *seq, void *v)
251 struct aa_replacedby *r = seq->private;
252 struct aa_profile *profile = aa_get_profile_rcu(&r->profile);
253 seq_printf(seq, "%s\n", profile->base.name);
254 aa_put_profile(profile);
259 static int aa_fs_seq_profname_open(struct inode *inode, struct file *file)
261 return aa_fs_seq_profile_open(inode, file, aa_fs_seq_profname_show);
264 static const struct file_operations aa_fs_profname_fops = {
265 .owner = THIS_MODULE,
266 .open = aa_fs_seq_profname_open,
269 .release = aa_fs_seq_profile_release,
272 static int aa_fs_seq_profmode_show(struct seq_file *seq, void *v)
274 struct aa_replacedby *r = seq->private;
275 struct aa_profile *profile = aa_get_profile_rcu(&r->profile);
276 seq_printf(seq, "%s\n", aa_profile_mode_names[profile->mode]);
277 aa_put_profile(profile);
282 static int aa_fs_seq_profmode_open(struct inode *inode, struct file *file)
284 return aa_fs_seq_profile_open(inode, file, aa_fs_seq_profmode_show);
287 static const struct file_operations aa_fs_profmode_fops = {
288 .owner = THIS_MODULE,
289 .open = aa_fs_seq_profmode_open,
292 .release = aa_fs_seq_profile_release,
295 static int aa_fs_seq_profattach_show(struct seq_file *seq, void *v)
297 struct aa_replacedby *r = seq->private;
298 struct aa_profile *profile = aa_get_profile_rcu(&r->profile);
300 seq_printf(seq, "%s\n", profile->attach);
301 else if (profile->xmatch)
302 seq_puts(seq, "<unknown>\n");
304 seq_printf(seq, "%s\n", profile->base.name);
305 aa_put_profile(profile);
310 static int aa_fs_seq_profattach_open(struct inode *inode, struct file *file)
312 return aa_fs_seq_profile_open(inode, file, aa_fs_seq_profattach_show);
315 static const struct file_operations aa_fs_profattach_fops = {
316 .owner = THIS_MODULE,
317 .open = aa_fs_seq_profattach_open,
320 .release = aa_fs_seq_profile_release,
323 static int aa_fs_seq_hash_show(struct seq_file *seq, void *v)
325 struct aa_replacedby *r = seq->private;
326 struct aa_profile *profile = aa_get_profile_rcu(&r->profile);
327 unsigned int i, size = aa_hash_size();
330 for (i = 0; i < size; i++)
331 seq_printf(seq, "%.2x", profile->hash[i]);
334 aa_put_profile(profile);
339 static int aa_fs_seq_hash_open(struct inode *inode, struct file *file)
341 return single_open(file, aa_fs_seq_hash_show, inode->i_private);
344 static const struct file_operations aa_fs_seq_hash_fops = {
345 .owner = THIS_MODULE,
346 .open = aa_fs_seq_hash_open,
349 .release = single_release,
352 /** fns to setup dynamic per profile/namespace files **/
353 void __aa_fs_profile_rmdir(struct aa_profile *profile)
355 struct aa_profile *child;
361 list_for_each_entry(child, &profile->base.profiles, base.list)
362 __aa_fs_profile_rmdir(child);
364 for (i = AAFS_PROF_SIZEOF - 1; i >= 0; --i) {
365 struct aa_replacedby *r;
366 if (!profile->dents[i])
369 r = d_inode(profile->dents[i])->i_private;
370 securityfs_remove(profile->dents[i]);
371 aa_put_replacedby(r);
372 profile->dents[i] = NULL;
376 void __aa_fs_profile_migrate_dents(struct aa_profile *old,
377 struct aa_profile *new)
381 for (i = 0; i < AAFS_PROF_SIZEOF; i++) {
382 new->dents[i] = old->dents[i];
383 old->dents[i] = NULL;
387 static struct dentry *create_profile_file(struct dentry *dir, const char *name,
388 struct aa_profile *profile,
389 const struct file_operations *fops)
391 struct aa_replacedby *r = aa_get_replacedby(profile->replacedby);
394 dent = securityfs_create_file(name, S_IFREG | 0444, dir, r, fops);
396 aa_put_replacedby(r);
401 /* requires lock be held */
402 int __aa_fs_profile_mkdir(struct aa_profile *profile, struct dentry *parent)
404 struct aa_profile *child;
405 struct dentry *dent = NULL, *dir;
409 struct aa_profile *p;
410 p = aa_deref_parent(profile);
412 /* adding to parent that previously didn't have children */
413 dent = securityfs_create_dir("profiles", dent);
416 prof_child_dir(p) = parent = dent;
419 if (!profile->dirname) {
421 len = mangle_name(profile->base.name, NULL);
422 id_len = snprintf(NULL, 0, ".%ld", profile->ns->uniq_id);
424 profile->dirname = kmalloc(len + id_len + 1, GFP_KERNEL);
425 if (!profile->dirname)
428 mangle_name(profile->base.name, profile->dirname);
429 sprintf(profile->dirname + len, ".%ld", profile->ns->uniq_id++);
432 dent = securityfs_create_dir(profile->dirname, parent);
435 prof_dir(profile) = dir = dent;
437 dent = create_profile_file(dir, "name", profile, &aa_fs_profname_fops);
440 profile->dents[AAFS_PROF_NAME] = dent;
442 dent = create_profile_file(dir, "mode", profile, &aa_fs_profmode_fops);
445 profile->dents[AAFS_PROF_MODE] = dent;
447 dent = create_profile_file(dir, "attach", profile,
448 &aa_fs_profattach_fops);
451 profile->dents[AAFS_PROF_ATTACH] = dent;
454 dent = create_profile_file(dir, "sha1", profile,
455 &aa_fs_seq_hash_fops);
458 profile->dents[AAFS_PROF_HASH] = dent;
461 list_for_each_entry(child, &profile->base.profiles, base.list) {
462 error = __aa_fs_profile_mkdir(child, prof_child_dir(profile));
470 error = PTR_ERR(dent);
473 __aa_fs_profile_rmdir(profile);
478 void __aa_fs_namespace_rmdir(struct aa_namespace *ns)
480 struct aa_namespace *sub;
481 struct aa_profile *child;
487 list_for_each_entry(child, &ns->base.profiles, base.list)
488 __aa_fs_profile_rmdir(child);
490 list_for_each_entry(sub, &ns->sub_ns, base.list) {
491 mutex_lock(&sub->lock);
492 __aa_fs_namespace_rmdir(sub);
493 mutex_unlock(&sub->lock);
496 for (i = AAFS_NS_SIZEOF - 1; i >= 0; --i) {
497 securityfs_remove(ns->dents[i]);
502 int __aa_fs_namespace_mkdir(struct aa_namespace *ns, struct dentry *parent,
505 struct aa_namespace *sub;
506 struct aa_profile *child;
507 struct dentry *dent, *dir;
511 name = ns->base.name;
513 dent = securityfs_create_dir(name, parent);
516 ns_dir(ns) = dir = dent;
518 dent = securityfs_create_dir("profiles", dir);
521 ns_subprofs_dir(ns) = dent;
523 dent = securityfs_create_dir("namespaces", dir);
526 ns_subns_dir(ns) = dent;
528 list_for_each_entry(child, &ns->base.profiles, base.list) {
529 error = __aa_fs_profile_mkdir(child, ns_subprofs_dir(ns));
534 list_for_each_entry(sub, &ns->sub_ns, base.list) {
535 mutex_lock(&sub->lock);
536 error = __aa_fs_namespace_mkdir(sub, ns_subns_dir(ns), NULL);
537 mutex_unlock(&sub->lock);
545 error = PTR_ERR(dent);
548 __aa_fs_namespace_rmdir(ns);
554 #define list_entry_next(pos, member) \
555 list_entry(pos->member.next, typeof(*pos), member)
556 #define list_entry_is_head(pos, head, member) (&pos->member == (head))
559 * __next_namespace - find the next namespace to list
560 * @root: root namespace to stop search at (NOT NULL)
561 * @ns: current ns position (NOT NULL)
563 * Find the next namespace from @ns under @root and handle all locking needed
564 * while switching current namespace.
566 * Returns: next namespace or NULL if at last namespace under @root
567 * Requires: ns->parent->lock to be held
568 * NOTE: will not unlock root->lock
570 static struct aa_namespace *__next_namespace(struct aa_namespace *root,
571 struct aa_namespace *ns)
573 struct aa_namespace *parent, *next;
575 /* is next namespace a child */
576 if (!list_empty(&ns->sub_ns)) {
577 next = list_first_entry(&ns->sub_ns, typeof(*ns), base.list);
578 mutex_lock(&next->lock);
582 /* check if the next ns is a sibling, parent, gp, .. */
585 mutex_unlock(&ns->lock);
586 next = list_entry_next(ns, base.list);
587 if (!list_entry_is_head(next, &parent->sub_ns, base.list)) {
588 mutex_lock(&next->lock);
592 parent = parent->parent;
599 * __first_profile - find the first profile in a namespace
600 * @root: namespace that is root of profiles being displayed (NOT NULL)
601 * @ns: namespace to start in (NOT NULL)
603 * Returns: unrefcounted profile or NULL if no profile
604 * Requires: profile->ns.lock to be held
606 static struct aa_profile *__first_profile(struct aa_namespace *root,
607 struct aa_namespace *ns)
609 for (; ns; ns = __next_namespace(root, ns)) {
610 if (!list_empty(&ns->base.profiles))
611 return list_first_entry(&ns->base.profiles,
612 struct aa_profile, base.list);
618 * __next_profile - step to the next profile in a profile tree
619 * @profile: current profile in tree (NOT NULL)
621 * Perform a depth first traversal on the profile tree in a namespace
623 * Returns: next profile or NULL if done
624 * Requires: profile->ns.lock to be held
626 static struct aa_profile *__next_profile(struct aa_profile *p)
628 struct aa_profile *parent;
629 struct aa_namespace *ns = p->ns;
631 /* is next profile a child */
632 if (!list_empty(&p->base.profiles))
633 return list_first_entry(&p->base.profiles, typeof(*p),
636 /* is next profile a sibling, parent sibling, gp, sibling, .. */
637 parent = rcu_dereference_protected(p->parent,
638 mutex_is_locked(&p->ns->lock));
640 p = list_entry_next(p, base.list);
641 if (!list_entry_is_head(p, &parent->base.profiles, base.list))
644 parent = rcu_dereference_protected(parent->parent,
645 mutex_is_locked(&parent->ns->lock));
648 /* is next another profile in the namespace */
649 p = list_entry_next(p, base.list);
650 if (!list_entry_is_head(p, &ns->base.profiles, base.list))
657 * next_profile - step to the next profile in where ever it may be
658 * @root: root namespace (NOT NULL)
659 * @profile: current profile (NOT NULL)
661 * Returns: next profile or NULL if there isn't one
663 static struct aa_profile *next_profile(struct aa_namespace *root,
664 struct aa_profile *profile)
666 struct aa_profile *next = __next_profile(profile);
670 /* finished all profiles in namespace move to next namespace */
671 return __first_profile(root, __next_namespace(root, profile->ns));
675 * p_start - start a depth first traversal of profile tree
676 * @f: seq_file to fill
677 * @pos: current position
679 * Returns: first profile under current namespace or NULL if none found
681 * acquires first ns->lock
683 static void *p_start(struct seq_file *f, loff_t *pos)
685 struct aa_profile *profile = NULL;
686 struct aa_namespace *root = aa_current_profile()->ns;
688 f->private = aa_get_namespace(root);
691 /* find the first profile */
692 mutex_lock(&root->lock);
693 profile = __first_profile(root, root);
695 /* skip to position */
696 for (; profile && l > 0; l--)
697 profile = next_profile(root, profile);
703 * p_next - read the next profile entry
704 * @f: seq_file to fill
705 * @p: profile previously returned
706 * @pos: current position
708 * Returns: next profile after @p or NULL if none
710 * may acquire/release locks in namespace tree as necessary
712 static void *p_next(struct seq_file *f, void *p, loff_t *pos)
714 struct aa_profile *profile = p;
715 struct aa_namespace *ns = f->private;
718 return next_profile(ns, profile);
722 * p_stop - stop depth first traversal
723 * @f: seq_file we are filling
724 * @p: the last profile writen
726 * Release all locking done by p_start/p_next on namespace tree
728 static void p_stop(struct seq_file *f, void *p)
730 struct aa_profile *profile = p;
731 struct aa_namespace *root = f->private, *ns;
734 for (ns = profile->ns; ns && ns != root; ns = ns->parent)
735 mutex_unlock(&ns->lock);
737 mutex_unlock(&root->lock);
738 aa_put_namespace(root);
742 * seq_show_profile - show a profile entry
743 * @f: seq_file to file
744 * @p: current position (profile) (NOT NULL)
746 * Returns: error on failure
748 static int seq_show_profile(struct seq_file *f, void *p)
750 struct aa_profile *profile = (struct aa_profile *)p;
751 struct aa_namespace *root = f->private;
753 if (profile->ns != root)
754 seq_printf(f, ":%s://", aa_ns_name(root, profile->ns));
755 seq_printf(f, "%s (%s)\n", profile->base.hname,
756 aa_profile_mode_names[profile->mode]);
761 static const struct seq_operations aa_fs_profiles_op = {
765 .show = seq_show_profile,
768 static int profiles_open(struct inode *inode, struct file *file)
770 return seq_open(file, &aa_fs_profiles_op);
773 static int profiles_release(struct inode *inode, struct file *file)
775 return seq_release(inode, file);
778 static const struct file_operations aa_fs_profiles_fops = {
779 .open = profiles_open,
782 .release = profiles_release,
786 /** Base file system setup **/
787 static struct aa_fs_entry aa_fs_entry_file[] = {
788 AA_FS_FILE_STRING("mask", "create read write exec append mmap_exec " \
793 static struct aa_fs_entry aa_fs_entry_domain[] = {
794 AA_FS_FILE_BOOLEAN("change_hat", 1),
795 AA_FS_FILE_BOOLEAN("change_hatv", 1),
796 AA_FS_FILE_BOOLEAN("change_onexec", 1),
797 AA_FS_FILE_BOOLEAN("change_profile", 1),
801 static struct aa_fs_entry aa_fs_entry_policy[] = {
802 AA_FS_FILE_BOOLEAN("set_load", 1),
806 static struct aa_fs_entry aa_fs_entry_features[] = {
807 AA_FS_DIR("policy", aa_fs_entry_policy),
808 AA_FS_DIR("domain", aa_fs_entry_domain),
809 AA_FS_DIR("file", aa_fs_entry_file),
810 AA_FS_FILE_U64("capability", VFS_CAP_FLAGS_MASK),
811 AA_FS_DIR("rlimit", aa_fs_entry_rlimit),
812 AA_FS_DIR("caps", aa_fs_entry_caps),
816 static struct aa_fs_entry aa_fs_entry_apparmor[] = {
817 AA_FS_FILE_FOPS(".load", 0640, &aa_fs_profile_load),
818 AA_FS_FILE_FOPS(".replace", 0640, &aa_fs_profile_replace),
819 AA_FS_FILE_FOPS(".remove", 0640, &aa_fs_profile_remove),
820 AA_FS_FILE_FOPS("profiles", 0640, &aa_fs_profiles_fops),
821 AA_FS_DIR("features", aa_fs_entry_features),
825 static struct aa_fs_entry aa_fs_entry =
826 AA_FS_DIR("apparmor", aa_fs_entry_apparmor);
829 * aafs_create_file - create a file entry in the apparmor securityfs
830 * @fs_file: aa_fs_entry to build an entry for (NOT NULL)
831 * @parent: the parent dentry in the securityfs
833 * Use aafs_remove_file to remove entries created with this fn.
835 static int __init aafs_create_file(struct aa_fs_entry *fs_file,
836 struct dentry *parent)
840 fs_file->dentry = securityfs_create_file(fs_file->name,
841 S_IFREG | fs_file->mode,
844 if (IS_ERR(fs_file->dentry)) {
845 error = PTR_ERR(fs_file->dentry);
846 fs_file->dentry = NULL;
851 static void __init aafs_remove_dir(struct aa_fs_entry *fs_dir);
853 * aafs_create_dir - recursively create a directory entry in the securityfs
854 * @fs_dir: aa_fs_entry (and all child entries) to build (NOT NULL)
855 * @parent: the parent dentry in the securityfs
857 * Use aafs_remove_dir to remove entries created with this fn.
859 static int __init aafs_create_dir(struct aa_fs_entry *fs_dir,
860 struct dentry *parent)
862 struct aa_fs_entry *fs_file;
866 dir = securityfs_create_dir(fs_dir->name, parent);
869 fs_dir->dentry = dir;
871 for (fs_file = fs_dir->v.files; fs_file && fs_file->name; ++fs_file) {
872 if (fs_file->v_type == AA_FS_TYPE_DIR)
873 error = aafs_create_dir(fs_file, fs_dir->dentry);
875 error = aafs_create_file(fs_file, fs_dir->dentry);
883 aafs_remove_dir(fs_dir);
889 * aafs_remove_file - drop a single file entry in the apparmor securityfs
890 * @fs_file: aa_fs_entry to detach from the securityfs (NOT NULL)
892 static void __init aafs_remove_file(struct aa_fs_entry *fs_file)
894 if (!fs_file->dentry)
897 securityfs_remove(fs_file->dentry);
898 fs_file->dentry = NULL;
902 * aafs_remove_dir - recursively drop a directory entry from the securityfs
903 * @fs_dir: aa_fs_entry (and all child entries) to detach (NOT NULL)
905 static void __init aafs_remove_dir(struct aa_fs_entry *fs_dir)
907 struct aa_fs_entry *fs_file;
909 for (fs_file = fs_dir->v.files; fs_file && fs_file->name; ++fs_file) {
910 if (fs_file->v_type == AA_FS_TYPE_DIR)
911 aafs_remove_dir(fs_file);
913 aafs_remove_file(fs_file);
916 aafs_remove_file(fs_dir);
920 * aa_destroy_aafs - cleanup and free aafs
922 * releases dentries allocated by aa_create_aafs
924 void __init aa_destroy_aafs(void)
926 aafs_remove_dir(&aa_fs_entry);
930 * aa_create_aafs - create the apparmor security filesystem
932 * dentries created here are released by aa_destroy_aafs
934 * Returns: error on failure
936 static int __init aa_create_aafs(void)
940 if (!apparmor_initialized)
943 if (aa_fs_entry.dentry) {
944 AA_ERROR("%s: AppArmor securityfs already exists\n", __func__);
948 /* Populate fs tree. */
949 error = aafs_create_dir(&aa_fs_entry, NULL);
953 error = __aa_fs_namespace_mkdir(root_ns, aa_fs_entry.dentry,
958 /* TODO: add support for apparmorfs_null and apparmorfs_mnt */
960 /* Report that AppArmor fs is enabled */
961 aa_info_message("AppArmor Filesystem Enabled");
966 AA_ERROR("Error creating AppArmor securityfs\n");
970 fs_initcall(aa_create_aafs);