1b886d83cSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only 263e2b423SJohn Johansen /* 363e2b423SJohn Johansen * AppArmor security module 463e2b423SJohn Johansen * 563e2b423SJohn Johansen * This file contains AppArmor /sys/kernel/security/apparmor interface functions 663e2b423SJohn Johansen * 763e2b423SJohn Johansen * Copyright (C) 1998-2008 Novell/SUSE 863e2b423SJohn Johansen * Copyright 2009-2010 Canonical Ltd. 963e2b423SJohn Johansen */ 1063e2b423SJohn Johansen 110d259f04SJohn Johansen #include <linux/ctype.h> 1263e2b423SJohn Johansen #include <linux/security.h> 1363e2b423SJohn Johansen #include <linux/vmalloc.h> 14876979c9SPaul Gortmaker #include <linux/init.h> 1563e2b423SJohn Johansen #include <linux/seq_file.h> 1663e2b423SJohn Johansen #include <linux/uaccess.h> 17a71ada30SJohn Johansen #include <linux/mount.h> 1863e2b423SJohn Johansen #include <linux/namei.h> 19e74abcf3SKees Cook #include <linux/capability.h> 2029b3822fSJohn Johansen #include <linux/rcupdate.h> 21a71ada30SJohn Johansen #include <linux/fs.h> 22b0ecc9daSDavid Howells #include <linux/fs_context.h> 23d9bf2c26SJohn Johansen #include <linux/poll.h> 24f4d6b94bSJon Tourville #include <linux/zstd.h> 25a481f4d9SJohn Johansen #include <uapi/linux/major.h> 26a481f4d9SJohn Johansen #include <uapi/linux/magic.h> 2763e2b423SJohn Johansen 2863e2b423SJohn Johansen #include "include/apparmor.h" 2963e2b423SJohn Johansen #include "include/apparmorfs.h" 3063e2b423SJohn Johansen #include "include/audit.h" 31d8889d49SJohn Johansen #include "include/cred.h" 32f8eb8a13SJohn Johansen #include "include/crypto.h" 33cd1dbf76SJohn Johansen #include "include/ipc.h" 34317d9a05SJohn Johansen #include "include/label.h" 3563e2b423SJohn Johansen #include "include/policy.h" 36cff281f6SJohn Johansen #include "include/policy_ns.h" 37d384b0a1SKees Cook #include "include/resource.h" 385ac8c355SJohn Johansen #include "include/policy_unpack.h" 39eac93125SJohn Johansen #include "include/task.h" 4063e2b423SJohn Johansen 41c97204baSJohn Johansen /* 42c97204baSJohn Johansen * The apparmor filesystem interface used for policy load and introspection 43c97204baSJohn Johansen * The interface is split into two main components based on their function 44c97204baSJohn Johansen * a securityfs component: 45c97204baSJohn Johansen * used for static files that are always available, and which allows 46c97204baSJohn Johansen * userspace to specificy the location of the security filesystem. 47c97204baSJohn Johansen * 48c97204baSJohn Johansen * fns and data are prefixed with 49c97204baSJohn Johansen * aa_sfs_ 50c97204baSJohn Johansen * 51c97204baSJohn Johansen * an apparmorfs component: 52c97204baSJohn Johansen * used loaded policy content and introspection. It is not part of a 53c97204baSJohn Johansen * regular mounted filesystem and is available only through the magic 54c97204baSJohn Johansen * policy symlink in the root of the securityfs apparmor/ directory. 55c97204baSJohn Johansen * Tasks queries will be magically redirected to the correct portion 56c97204baSJohn Johansen * of the policy tree based on their confinement. 57c97204baSJohn Johansen * 58c97204baSJohn Johansen * fns and data are prefixed with 59c97204baSJohn Johansen * aafs_ 60c97204baSJohn Johansen * 61c97204baSJohn Johansen * The aa_fs_ prefix is used to indicate the fn is used by both the 62c97204baSJohn Johansen * securityfs and apparmorfs filesystems. 63c97204baSJohn Johansen */ 64c97204baSJohn Johansen 65c97204baSJohn Johansen 66c97204baSJohn Johansen /* 67c97204baSJohn Johansen * support fns 68c97204baSJohn Johansen */ 69c97204baSJohn Johansen 7063c16c3aSChris Coulson struct rawdata_f_data { 7163c16c3aSChris Coulson struct aa_loaddata *loaddata; 7263c16c3aSChris Coulson }; 7363c16c3aSChris Coulson 74d61c57fdSJohn Johansen #ifdef CONFIG_SECURITY_APPARMOR_EXPORT_BINARY 7563c16c3aSChris Coulson #define RAWDATA_F_DATA_BUF(p) (char *)(p + 1) 7663c16c3aSChris Coulson 7763c16c3aSChris Coulson static void rawdata_f_data_free(struct rawdata_f_data *private) 7863c16c3aSChris Coulson { 7963c16c3aSChris Coulson if (!private) 8063c16c3aSChris Coulson return; 8163c16c3aSChris Coulson 8263c16c3aSChris Coulson aa_put_loaddata(private->loaddata); 8363c16c3aSChris Coulson kvfree(private); 8463c16c3aSChris Coulson } 8563c16c3aSChris Coulson 8663c16c3aSChris Coulson static struct rawdata_f_data *rawdata_f_data_alloc(size_t size) 8763c16c3aSChris Coulson { 8863c16c3aSChris Coulson struct rawdata_f_data *ret; 8963c16c3aSChris Coulson 9063c16c3aSChris Coulson if (size > SIZE_MAX - sizeof(*ret)) 9163c16c3aSChris Coulson return ERR_PTR(-EINVAL); 9263c16c3aSChris Coulson 9363c16c3aSChris Coulson ret = kvzalloc(sizeof(*ret) + size, GFP_KERNEL); 9463c16c3aSChris Coulson if (!ret) 9563c16c3aSChris Coulson return ERR_PTR(-ENOMEM); 9663c16c3aSChris Coulson 9763c16c3aSChris Coulson return ret; 9863c16c3aSChris Coulson } 99d61c57fdSJohn Johansen #endif 10063c16c3aSChris Coulson 10163e2b423SJohn Johansen /** 102564423bfSYang Li * mangle_name - mangle a profile name to std profile layout form 1030d259f04SJohn Johansen * @name: profile name to mangle (NOT NULL) 1040d259f04SJohn Johansen * @target: buffer to store mangled name, same length as @name (MAYBE NULL) 1050d259f04SJohn Johansen * 1060d259f04SJohn Johansen * Returns: length of mangled name 1070d259f04SJohn Johansen */ 108bbe4a7c8SJohn Johansen static int mangle_name(const char *name, char *target) 1090d259f04SJohn Johansen { 1100d259f04SJohn Johansen char *t = target; 1110d259f04SJohn Johansen 1120d259f04SJohn Johansen while (*name == '/' || *name == '.') 1130d259f04SJohn Johansen name++; 1140d259f04SJohn Johansen 1150d259f04SJohn Johansen if (target) { 1160d259f04SJohn Johansen for (; *name; name++) { 1170d259f04SJohn Johansen if (*name == '/') 1180d259f04SJohn Johansen *(t)++ = '.'; 1190d259f04SJohn Johansen else if (isspace(*name)) 1200d259f04SJohn Johansen *(t)++ = '_'; 1210d259f04SJohn Johansen else if (isalnum(*name) || strchr("._-", *name)) 1220d259f04SJohn Johansen *(t)++ = *name; 1230d259f04SJohn Johansen } 1240d259f04SJohn Johansen 1250d259f04SJohn Johansen *t = 0; 1260d259f04SJohn Johansen } else { 1270d259f04SJohn Johansen int len = 0; 1280d259f04SJohn Johansen for (; *name; name++) { 1290d259f04SJohn Johansen if (isalnum(*name) || isspace(*name) || 1300d259f04SJohn Johansen strchr("/._-", *name)) 1310d259f04SJohn Johansen len++; 1320d259f04SJohn Johansen } 1330d259f04SJohn Johansen 1340d259f04SJohn Johansen return len; 1350d259f04SJohn Johansen } 1360d259f04SJohn Johansen 1370d259f04SJohn Johansen return t - target; 1380d259f04SJohn Johansen } 1390d259f04SJohn Johansen 140a481f4d9SJohn Johansen 141a481f4d9SJohn Johansen /* 142a481f4d9SJohn Johansen * aafs - core fns and data for the policy tree 143a481f4d9SJohn Johansen */ 144a481f4d9SJohn Johansen 145a481f4d9SJohn Johansen #define AAFS_NAME "apparmorfs" 146a481f4d9SJohn Johansen static struct vfsmount *aafs_mnt; 147a481f4d9SJohn Johansen static int aafs_count; 148a481f4d9SJohn Johansen 149a481f4d9SJohn Johansen 150a481f4d9SJohn Johansen static int aafs_show_path(struct seq_file *seq, struct dentry *dentry) 151a481f4d9SJohn Johansen { 152a0781209SJohn Johansen seq_printf(seq, "%s:[%lu]", AAFS_NAME, d_inode(dentry)->i_ino); 153a481f4d9SJohn Johansen return 0; 154a481f4d9SJohn Johansen } 155a481f4d9SJohn Johansen 15627afa27dSAl Viro static void aafs_free_inode(struct inode *inode) 157a481f4d9SJohn Johansen { 158a481f4d9SJohn Johansen if (S_ISLNK(inode->i_mode)) 159a481f4d9SJohn Johansen kfree(inode->i_link); 160f51dcd0fSAl Viro free_inode_nonrcu(inode); 161f51dcd0fSAl Viro } 162f51dcd0fSAl Viro 163a481f4d9SJohn Johansen static const struct super_operations aafs_super_ops = { 164a481f4d9SJohn Johansen .statfs = simple_statfs, 16527afa27dSAl Viro .free_inode = aafs_free_inode, 166a481f4d9SJohn Johansen .show_path = aafs_show_path, 167a481f4d9SJohn Johansen }; 168a481f4d9SJohn Johansen 169b0ecc9daSDavid Howells static int apparmorfs_fill_super(struct super_block *sb, struct fs_context *fc) 170a481f4d9SJohn Johansen { 171a481f4d9SJohn Johansen static struct tree_descr files[] = { {""} }; 172a481f4d9SJohn Johansen int error; 173a481f4d9SJohn Johansen 174a481f4d9SJohn Johansen error = simple_fill_super(sb, AAFS_MAGIC, files); 175a481f4d9SJohn Johansen if (error) 176a481f4d9SJohn Johansen return error; 177a481f4d9SJohn Johansen sb->s_op = &aafs_super_ops; 178a481f4d9SJohn Johansen 179a481f4d9SJohn Johansen return 0; 180a481f4d9SJohn Johansen } 181a481f4d9SJohn Johansen 182b0ecc9daSDavid Howells static int apparmorfs_get_tree(struct fs_context *fc) 183a481f4d9SJohn Johansen { 184b0ecc9daSDavid Howells return get_tree_single(fc, apparmorfs_fill_super); 185b0ecc9daSDavid Howells } 186b0ecc9daSDavid Howells 187b0ecc9daSDavid Howells static const struct fs_context_operations apparmorfs_context_ops = { 188b0ecc9daSDavid Howells .get_tree = apparmorfs_get_tree, 189b0ecc9daSDavid Howells }; 190b0ecc9daSDavid Howells 191b0ecc9daSDavid Howells static int apparmorfs_init_fs_context(struct fs_context *fc) 192b0ecc9daSDavid Howells { 193b0ecc9daSDavid Howells fc->ops = &apparmorfs_context_ops; 194b0ecc9daSDavid Howells return 0; 195a481f4d9SJohn Johansen } 196a481f4d9SJohn Johansen 197a481f4d9SJohn Johansen static struct file_system_type aafs_ops = { 198a481f4d9SJohn Johansen .owner = THIS_MODULE, 199a481f4d9SJohn Johansen .name = AAFS_NAME, 200b0ecc9daSDavid Howells .init_fs_context = apparmorfs_init_fs_context, 201a481f4d9SJohn Johansen .kill_sb = kill_anon_super, 202a481f4d9SJohn Johansen }; 203a481f4d9SJohn Johansen 204a481f4d9SJohn Johansen /** 205a481f4d9SJohn Johansen * __aafs_setup_d_inode - basic inode setup for apparmorfs 206a481f4d9SJohn Johansen * @dir: parent directory for the dentry 207a481f4d9SJohn Johansen * @dentry: dentry we are seting the inode up for 208a481f4d9SJohn Johansen * @mode: permissions the file should have 209a481f4d9SJohn Johansen * @data: data to store on inode.i_private, available in open() 210a481f4d9SJohn Johansen * @link: if symlink, symlink target string 211a481f4d9SJohn Johansen * @fops: struct file_operations that should be used 212a481f4d9SJohn Johansen * @iops: struct of inode_operations that should be used 213a481f4d9SJohn Johansen */ 214a481f4d9SJohn Johansen static int __aafs_setup_d_inode(struct inode *dir, struct dentry *dentry, 215a481f4d9SJohn Johansen umode_t mode, void *data, char *link, 216a481f4d9SJohn Johansen const struct file_operations *fops, 217a481f4d9SJohn Johansen const struct inode_operations *iops) 218a481f4d9SJohn Johansen { 219a481f4d9SJohn Johansen struct inode *inode = new_inode(dir->i_sb); 220a481f4d9SJohn Johansen 221a481f4d9SJohn Johansen AA_BUG(!dir); 222a481f4d9SJohn Johansen AA_BUG(!dentry); 223a481f4d9SJohn Johansen 224a481f4d9SJohn Johansen if (!inode) 225a481f4d9SJohn Johansen return -ENOMEM; 226a481f4d9SJohn Johansen 227a481f4d9SJohn Johansen inode->i_ino = get_next_ino(); 228a481f4d9SJohn Johansen inode->i_mode = mode; 229a481f4d9SJohn Johansen inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode); 230a481f4d9SJohn Johansen inode->i_private = data; 231a481f4d9SJohn Johansen if (S_ISDIR(mode)) { 232a481f4d9SJohn Johansen inode->i_op = iops ? iops : &simple_dir_inode_operations; 233a481f4d9SJohn Johansen inode->i_fop = &simple_dir_operations; 234a481f4d9SJohn Johansen inc_nlink(inode); 235a481f4d9SJohn Johansen inc_nlink(dir); 236a481f4d9SJohn Johansen } else if (S_ISLNK(mode)) { 237a481f4d9SJohn Johansen inode->i_op = iops ? iops : &simple_symlink_inode_operations; 238a481f4d9SJohn Johansen inode->i_link = link; 239a481f4d9SJohn Johansen } else { 240a481f4d9SJohn Johansen inode->i_fop = fops; 241a481f4d9SJohn Johansen } 242a481f4d9SJohn Johansen d_instantiate(dentry, inode); 243a481f4d9SJohn Johansen dget(dentry); 244a481f4d9SJohn Johansen 245a481f4d9SJohn Johansen return 0; 246a481f4d9SJohn Johansen } 247a481f4d9SJohn Johansen 248a481f4d9SJohn Johansen /** 249a481f4d9SJohn Johansen * aafs_create - create a dentry in the apparmorfs filesystem 250a481f4d9SJohn Johansen * 251a481f4d9SJohn Johansen * @name: name of dentry to create 252a481f4d9SJohn Johansen * @mode: permissions the file should have 253a481f4d9SJohn Johansen * @parent: parent directory for this dentry 254a481f4d9SJohn Johansen * @data: data to store on inode.i_private, available in open() 255a481f4d9SJohn Johansen * @link: if symlink, symlink target string 256a481f4d9SJohn Johansen * @fops: struct file_operations that should be used for 257a481f4d9SJohn Johansen * @iops: struct of inode_operations that should be used 258a481f4d9SJohn Johansen * 259a481f4d9SJohn Johansen * This is the basic "create a xxx" function for apparmorfs. 260a481f4d9SJohn Johansen * 261a481f4d9SJohn Johansen * Returns a pointer to a dentry if it succeeds, that must be free with 262a481f4d9SJohn Johansen * aafs_remove(). Will return ERR_PTR on failure. 263a481f4d9SJohn Johansen */ 264a481f4d9SJohn Johansen static struct dentry *aafs_create(const char *name, umode_t mode, 265a481f4d9SJohn Johansen struct dentry *parent, void *data, void *link, 266a481f4d9SJohn Johansen const struct file_operations *fops, 267a481f4d9SJohn Johansen const struct inode_operations *iops) 268a481f4d9SJohn Johansen { 269a481f4d9SJohn Johansen struct dentry *dentry; 270a481f4d9SJohn Johansen struct inode *dir; 271a481f4d9SJohn Johansen int error; 272a481f4d9SJohn Johansen 273a481f4d9SJohn Johansen AA_BUG(!name); 274a481f4d9SJohn Johansen AA_BUG(!parent); 275a481f4d9SJohn Johansen 276a481f4d9SJohn Johansen if (!(mode & S_IFMT)) 277a481f4d9SJohn Johansen mode = (mode & S_IALLUGO) | S_IFREG; 278a481f4d9SJohn Johansen 279a481f4d9SJohn Johansen error = simple_pin_fs(&aafs_ops, &aafs_mnt, &aafs_count); 280a481f4d9SJohn Johansen if (error) 281a481f4d9SJohn Johansen return ERR_PTR(error); 282a481f4d9SJohn Johansen 283a481f4d9SJohn Johansen dir = d_inode(parent); 284a481f4d9SJohn Johansen 285a481f4d9SJohn Johansen inode_lock(dir); 286a481f4d9SJohn Johansen dentry = lookup_one_len(name, parent, strlen(name)); 2875d314a81SDan Carpenter if (IS_ERR(dentry)) { 2885d314a81SDan Carpenter error = PTR_ERR(dentry); 289a481f4d9SJohn Johansen goto fail_lock; 2905d314a81SDan Carpenter } 291a481f4d9SJohn Johansen 292a481f4d9SJohn Johansen if (d_really_is_positive(dentry)) { 293a481f4d9SJohn Johansen error = -EEXIST; 294a481f4d9SJohn Johansen goto fail_dentry; 295a481f4d9SJohn Johansen } 296a481f4d9SJohn Johansen 297a481f4d9SJohn Johansen error = __aafs_setup_d_inode(dir, dentry, mode, data, link, fops, iops); 298a481f4d9SJohn Johansen if (error) 299a481f4d9SJohn Johansen goto fail_dentry; 300a481f4d9SJohn Johansen inode_unlock(dir); 301a481f4d9SJohn Johansen 302a481f4d9SJohn Johansen return dentry; 303a481f4d9SJohn Johansen 304a481f4d9SJohn Johansen fail_dentry: 305a481f4d9SJohn Johansen dput(dentry); 306a481f4d9SJohn Johansen 307a481f4d9SJohn Johansen fail_lock: 308a481f4d9SJohn Johansen inode_unlock(dir); 309a481f4d9SJohn Johansen simple_release_fs(&aafs_mnt, &aafs_count); 310a481f4d9SJohn Johansen 311a481f4d9SJohn Johansen return ERR_PTR(error); 312a481f4d9SJohn Johansen } 313a481f4d9SJohn Johansen 314a481f4d9SJohn Johansen /** 315a481f4d9SJohn Johansen * aafs_create_file - create a file in the apparmorfs filesystem 316a481f4d9SJohn Johansen * 317a481f4d9SJohn Johansen * @name: name of dentry to create 318a481f4d9SJohn Johansen * @mode: permissions the file should have 319a481f4d9SJohn Johansen * @parent: parent directory for this dentry 320a481f4d9SJohn Johansen * @data: data to store on inode.i_private, available in open() 321a481f4d9SJohn Johansen * @fops: struct file_operations that should be used for 322a481f4d9SJohn Johansen * 323a481f4d9SJohn Johansen * see aafs_create 324a481f4d9SJohn Johansen */ 325a481f4d9SJohn Johansen static struct dentry *aafs_create_file(const char *name, umode_t mode, 326a481f4d9SJohn Johansen struct dentry *parent, void *data, 327a481f4d9SJohn Johansen const struct file_operations *fops) 328a481f4d9SJohn Johansen { 329a481f4d9SJohn Johansen return aafs_create(name, mode, parent, data, NULL, fops, NULL); 330a481f4d9SJohn Johansen } 331a481f4d9SJohn Johansen 332a481f4d9SJohn Johansen /** 333a481f4d9SJohn Johansen * aafs_create_dir - create a directory in the apparmorfs filesystem 334a481f4d9SJohn Johansen * 335a481f4d9SJohn Johansen * @name: name of dentry to create 336a481f4d9SJohn Johansen * @parent: parent directory for this dentry 337a481f4d9SJohn Johansen * 338a481f4d9SJohn Johansen * see aafs_create 339a481f4d9SJohn Johansen */ 340a481f4d9SJohn Johansen static struct dentry *aafs_create_dir(const char *name, struct dentry *parent) 341a481f4d9SJohn Johansen { 342a481f4d9SJohn Johansen return aafs_create(name, S_IFDIR | 0755, parent, NULL, NULL, NULL, 343a481f4d9SJohn Johansen NULL); 344a481f4d9SJohn Johansen } 345a481f4d9SJohn Johansen 346a481f4d9SJohn Johansen /** 347a481f4d9SJohn Johansen * aafs_remove - removes a file or directory from the apparmorfs filesystem 348a481f4d9SJohn Johansen * 349a481f4d9SJohn Johansen * @dentry: dentry of the file/directory/symlink to removed. 350a481f4d9SJohn Johansen */ 351a481f4d9SJohn Johansen static void aafs_remove(struct dentry *dentry) 352a481f4d9SJohn Johansen { 353a481f4d9SJohn Johansen struct inode *dir; 354a481f4d9SJohn Johansen 355a481f4d9SJohn Johansen if (!dentry || IS_ERR(dentry)) 356a481f4d9SJohn Johansen return; 357a481f4d9SJohn Johansen 358a481f4d9SJohn Johansen dir = d_inode(dentry->d_parent); 359a481f4d9SJohn Johansen inode_lock(dir); 360a481f4d9SJohn Johansen if (simple_positive(dentry)) { 361a481f4d9SJohn Johansen if (d_is_dir(dentry)) 362a481f4d9SJohn Johansen simple_rmdir(dir, dentry); 363a481f4d9SJohn Johansen else 364a481f4d9SJohn Johansen simple_unlink(dir, dentry); 365201218e4SChris Coulson d_delete(dentry); 366a481f4d9SJohn Johansen dput(dentry); 367a481f4d9SJohn Johansen } 368a481f4d9SJohn Johansen inode_unlock(dir); 369a481f4d9SJohn Johansen simple_release_fs(&aafs_mnt, &aafs_count); 370a481f4d9SJohn Johansen } 371a481f4d9SJohn Johansen 372a481f4d9SJohn Johansen 373a481f4d9SJohn Johansen /* 374a481f4d9SJohn Johansen * aa_fs - policy load/replace/remove 375a481f4d9SJohn Johansen */ 376a481f4d9SJohn Johansen 3770d259f04SJohn Johansen /** 37863e2b423SJohn Johansen * aa_simple_write_to_buffer - common routine for getting policy from user 37963e2b423SJohn Johansen * @userbuf: user buffer to copy data from (NOT NULL) 3803ed02adaSJohn Johansen * @alloc_size: size of user buffer (REQUIRES: @alloc_size >= @copy_size) 38163e2b423SJohn Johansen * @copy_size: size of data to copy from user buffer 38263e2b423SJohn Johansen * @pos: position write is at in the file (NOT NULL) 38363e2b423SJohn Johansen * 38463e2b423SJohn Johansen * Returns: kernel buffer containing copy of user buffer data or an 38563e2b423SJohn Johansen * ERR_PTR on failure. 38663e2b423SJohn Johansen */ 3875ef50d01SJohn Johansen static struct aa_loaddata *aa_simple_write_to_buffer(const char __user *userbuf, 3885ac8c355SJohn Johansen size_t alloc_size, 3895ac8c355SJohn Johansen size_t copy_size, 39063e2b423SJohn Johansen loff_t *pos) 39163e2b423SJohn Johansen { 3925ac8c355SJohn Johansen struct aa_loaddata *data; 39363e2b423SJohn Johansen 394e6bfa25dSJohn Johansen AA_BUG(copy_size > alloc_size); 3953ed02adaSJohn Johansen 39663e2b423SJohn Johansen if (*pos != 0) 39763e2b423SJohn Johansen /* only writes from pos 0, that is complete writes */ 39863e2b423SJohn Johansen return ERR_PTR(-ESPIPE); 39963e2b423SJohn Johansen 40063e2b423SJohn Johansen /* freed by caller to simple_write_to_buffer */ 4015d5182caSJohn Johansen data = aa_loaddata_alloc(alloc_size); 4025d5182caSJohn Johansen if (IS_ERR(data)) 4035d5182caSJohn Johansen return data; 40463e2b423SJohn Johansen 4055d5182caSJohn Johansen data->size = copy_size; 4065ac8c355SJohn Johansen if (copy_from_user(data->data, userbuf, copy_size)) { 407417ea9feSXiu Jianfeng aa_put_loaddata(data); 40863e2b423SJohn Johansen return ERR_PTR(-EFAULT); 40963e2b423SJohn Johansen } 41063e2b423SJohn Johansen 41163e2b423SJohn Johansen return data; 41263e2b423SJohn Johansen } 41363e2b423SJohn Johansen 41418e99f19SJohn Johansen static ssize_t policy_update(u32 mask, const char __user *buf, size_t size, 415b7fd2c03SJohn Johansen loff_t *pos, struct aa_ns *ns) 4165ac8c355SJohn Johansen { 4175ac8c355SJohn Johansen struct aa_loaddata *data; 418637f688dSJohn Johansen struct aa_label *label; 419637f688dSJohn Johansen ssize_t error; 420cf797c0eSJohn Johansen 421637f688dSJohn Johansen label = begin_current_label_crit_section(); 422cf797c0eSJohn Johansen 4235ac8c355SJohn Johansen /* high level check about policy management - fine grained in 4245ac8c355SJohn Johansen * below after unpack 4255ac8c355SJohn Johansen */ 426637f688dSJohn Johansen error = aa_may_manage_policy(label, ns, mask); 4275ac8c355SJohn Johansen if (error) 428c6b39f07SXiyu Yang goto end_section; 42963e2b423SJohn Johansen 4305ef50d01SJohn Johansen data = aa_simple_write_to_buffer(buf, size, size, pos); 4315ac8c355SJohn Johansen error = PTR_ERR(data); 4325ac8c355SJohn Johansen if (!IS_ERR(data)) { 433637f688dSJohn Johansen error = aa_replace_profiles(ns, label, mask, data); 4345ac8c355SJohn Johansen aa_put_loaddata(data); 4355ac8c355SJohn Johansen } 436c6b39f07SXiyu Yang end_section: 437637f688dSJohn Johansen end_current_label_crit_section(label); 4385ac8c355SJohn Johansen 4395ac8c355SJohn Johansen return error; 4405ac8c355SJohn Johansen } 4415ac8c355SJohn Johansen 442b7fd2c03SJohn Johansen /* .load file hook fn to load policy */ 44363e2b423SJohn Johansen static ssize_t profile_load(struct file *f, const char __user *buf, size_t size, 44463e2b423SJohn Johansen loff_t *pos) 44563e2b423SJohn Johansen { 446b7fd2c03SJohn Johansen struct aa_ns *ns = aa_get_ns(f->f_inode->i_private); 44718e99f19SJohn Johansen int error = policy_update(AA_MAY_LOAD_POLICY, buf, size, pos, ns); 448b7fd2c03SJohn Johansen 449b7fd2c03SJohn Johansen aa_put_ns(ns); 45063e2b423SJohn Johansen 45163e2b423SJohn Johansen return error; 45263e2b423SJohn Johansen } 45363e2b423SJohn Johansen 45463e2b423SJohn Johansen static const struct file_operations aa_fs_profile_load = { 4556038f373SArnd Bergmann .write = profile_load, 4566038f373SArnd Bergmann .llseek = default_llseek, 45763e2b423SJohn Johansen }; 45863e2b423SJohn Johansen 45963e2b423SJohn Johansen /* .replace file hook fn to load and/or replace policy */ 46063e2b423SJohn Johansen static ssize_t profile_replace(struct file *f, const char __user *buf, 46163e2b423SJohn Johansen size_t size, loff_t *pos) 46263e2b423SJohn Johansen { 463b7fd2c03SJohn Johansen struct aa_ns *ns = aa_get_ns(f->f_inode->i_private); 46418e99f19SJohn Johansen int error = policy_update(AA_MAY_LOAD_POLICY | AA_MAY_REPLACE_POLICY, 46518e99f19SJohn Johansen buf, size, pos, ns); 466b7fd2c03SJohn Johansen aa_put_ns(ns); 46763e2b423SJohn Johansen 46863e2b423SJohn Johansen return error; 46963e2b423SJohn Johansen } 47063e2b423SJohn Johansen 47163e2b423SJohn Johansen static const struct file_operations aa_fs_profile_replace = { 4726038f373SArnd Bergmann .write = profile_replace, 4736038f373SArnd Bergmann .llseek = default_llseek, 47463e2b423SJohn Johansen }; 47563e2b423SJohn Johansen 476b7fd2c03SJohn Johansen /* .remove file hook fn to remove loaded policy */ 47763e2b423SJohn Johansen static ssize_t profile_remove(struct file *f, const char __user *buf, 47863e2b423SJohn Johansen size_t size, loff_t *pos) 47963e2b423SJohn Johansen { 4805ac8c355SJohn Johansen struct aa_loaddata *data; 481637f688dSJohn Johansen struct aa_label *label; 48263e2b423SJohn Johansen ssize_t error; 483b7fd2c03SJohn Johansen struct aa_ns *ns = aa_get_ns(f->f_inode->i_private); 48463e2b423SJohn Johansen 485637f688dSJohn Johansen label = begin_current_label_crit_section(); 4865ac8c355SJohn Johansen /* high level check about policy management - fine grained in 4875ac8c355SJohn Johansen * below after unpack 4885ac8c355SJohn Johansen */ 489637f688dSJohn Johansen error = aa_may_manage_policy(label, ns, AA_MAY_REMOVE_POLICY); 4905ac8c355SJohn Johansen if (error) 4915ac8c355SJohn Johansen goto out; 4925ac8c355SJohn Johansen 49363e2b423SJohn Johansen /* 49463e2b423SJohn Johansen * aa_remove_profile needs a null terminated string so 1 extra 49563e2b423SJohn Johansen * byte is allocated and the copied data is null terminated. 49663e2b423SJohn Johansen */ 4975ef50d01SJohn Johansen data = aa_simple_write_to_buffer(buf, size + 1, size, pos); 49863e2b423SJohn Johansen 49963e2b423SJohn Johansen error = PTR_ERR(data); 50063e2b423SJohn Johansen if (!IS_ERR(data)) { 5015ac8c355SJohn Johansen data->data[size] = 0; 502637f688dSJohn Johansen error = aa_remove_profiles(ns, label, data->data, size); 5035ac8c355SJohn Johansen aa_put_loaddata(data); 50463e2b423SJohn Johansen } 5055ac8c355SJohn Johansen out: 506637f688dSJohn Johansen end_current_label_crit_section(label); 507b7fd2c03SJohn Johansen aa_put_ns(ns); 50863e2b423SJohn Johansen return error; 50963e2b423SJohn Johansen } 51063e2b423SJohn Johansen 51163e2b423SJohn Johansen static const struct file_operations aa_fs_profile_remove = { 5126038f373SArnd Bergmann .write = profile_remove, 5136038f373SArnd Bergmann .llseek = default_llseek, 51463e2b423SJohn Johansen }; 51563e2b423SJohn Johansen 516d9bf2c26SJohn Johansen struct aa_revision { 517d9bf2c26SJohn Johansen struct aa_ns *ns; 518d9bf2c26SJohn Johansen long last_read; 519d9bf2c26SJohn Johansen }; 520d9bf2c26SJohn Johansen 521d9bf2c26SJohn Johansen /* revision file hook fn for policy loads */ 522d9bf2c26SJohn Johansen static int ns_revision_release(struct inode *inode, struct file *file) 523d9bf2c26SJohn Johansen { 524d9bf2c26SJohn Johansen struct aa_revision *rev = file->private_data; 525d9bf2c26SJohn Johansen 526d9bf2c26SJohn Johansen if (rev) { 527d9bf2c26SJohn Johansen aa_put_ns(rev->ns); 528d9bf2c26SJohn Johansen kfree(rev); 529d9bf2c26SJohn Johansen } 530d9bf2c26SJohn Johansen 531d9bf2c26SJohn Johansen return 0; 532d9bf2c26SJohn Johansen } 533d9bf2c26SJohn Johansen 534d9bf2c26SJohn Johansen static ssize_t ns_revision_read(struct file *file, char __user *buf, 535d9bf2c26SJohn Johansen size_t size, loff_t *ppos) 536d9bf2c26SJohn Johansen { 537d9bf2c26SJohn Johansen struct aa_revision *rev = file->private_data; 538d9bf2c26SJohn Johansen char buffer[32]; 539d9bf2c26SJohn Johansen long last_read; 540d9bf2c26SJohn Johansen int avail; 541d9bf2c26SJohn Johansen 542feb3c766SJohn Johansen mutex_lock_nested(&rev->ns->lock, rev->ns->level); 543d9bf2c26SJohn Johansen last_read = rev->last_read; 544d9bf2c26SJohn Johansen if (last_read == rev->ns->revision) { 545d9bf2c26SJohn Johansen mutex_unlock(&rev->ns->lock); 546d9bf2c26SJohn Johansen if (file->f_flags & O_NONBLOCK) 547d9bf2c26SJohn Johansen return -EAGAIN; 548d9bf2c26SJohn Johansen if (wait_event_interruptible(rev->ns->wait, 549d9bf2c26SJohn Johansen last_read != 550d9bf2c26SJohn Johansen READ_ONCE(rev->ns->revision))) 551d9bf2c26SJohn Johansen return -ERESTARTSYS; 552feb3c766SJohn Johansen mutex_lock_nested(&rev->ns->lock, rev->ns->level); 553d9bf2c26SJohn Johansen } 554d9bf2c26SJohn Johansen 555d9bf2c26SJohn Johansen avail = sprintf(buffer, "%ld\n", rev->ns->revision); 556d9bf2c26SJohn Johansen if (*ppos + size > avail) { 557d9bf2c26SJohn Johansen rev->last_read = rev->ns->revision; 558d9bf2c26SJohn Johansen *ppos = 0; 559d9bf2c26SJohn Johansen } 560d9bf2c26SJohn Johansen mutex_unlock(&rev->ns->lock); 561d9bf2c26SJohn Johansen 562d9bf2c26SJohn Johansen return simple_read_from_buffer(buf, size, ppos, buffer, avail); 563d9bf2c26SJohn Johansen } 564d9bf2c26SJohn Johansen 565d9bf2c26SJohn Johansen static int ns_revision_open(struct inode *inode, struct file *file) 566d9bf2c26SJohn Johansen { 567d9bf2c26SJohn Johansen struct aa_revision *rev = kzalloc(sizeof(*rev), GFP_KERNEL); 568d9bf2c26SJohn Johansen 569d9bf2c26SJohn Johansen if (!rev) 570d9bf2c26SJohn Johansen return -ENOMEM; 571d9bf2c26SJohn Johansen 572d9bf2c26SJohn Johansen rev->ns = aa_get_ns(inode->i_private); 573d9bf2c26SJohn Johansen if (!rev->ns) 574d9bf2c26SJohn Johansen rev->ns = aa_get_current_ns(); 575d9bf2c26SJohn Johansen file->private_data = rev; 576d9bf2c26SJohn Johansen 577d9bf2c26SJohn Johansen return 0; 578d9bf2c26SJohn Johansen } 579d9bf2c26SJohn Johansen 580e6c5a7d9SAl Viro static __poll_t ns_revision_poll(struct file *file, poll_table *pt) 581d9bf2c26SJohn Johansen { 582d9bf2c26SJohn Johansen struct aa_revision *rev = file->private_data; 583e6c5a7d9SAl Viro __poll_t mask = 0; 584d9bf2c26SJohn Johansen 585d9bf2c26SJohn Johansen if (rev) { 586feb3c766SJohn Johansen mutex_lock_nested(&rev->ns->lock, rev->ns->level); 587d9bf2c26SJohn Johansen poll_wait(file, &rev->ns->wait, pt); 588d9bf2c26SJohn Johansen if (rev->last_read < rev->ns->revision) 589a9a08845SLinus Torvalds mask |= EPOLLIN | EPOLLRDNORM; 590d9bf2c26SJohn Johansen mutex_unlock(&rev->ns->lock); 591d9bf2c26SJohn Johansen } 592d9bf2c26SJohn Johansen 593d9bf2c26SJohn Johansen return mask; 594d9bf2c26SJohn Johansen } 595d9bf2c26SJohn Johansen 5965d5182caSJohn Johansen void __aa_bump_ns_revision(struct aa_ns *ns) 5975d5182caSJohn Johansen { 5980df34a64SJohn Johansen WRITE_ONCE(ns->revision, READ_ONCE(ns->revision) + 1); 599d9bf2c26SJohn Johansen wake_up_interruptible(&ns->wait); 6005d5182caSJohn Johansen } 6015d5182caSJohn Johansen 602d9bf2c26SJohn Johansen static const struct file_operations aa_fs_ns_revision_fops = { 603d9bf2c26SJohn Johansen .owner = THIS_MODULE, 604d9bf2c26SJohn Johansen .open = ns_revision_open, 605d9bf2c26SJohn Johansen .poll = ns_revision_poll, 606d9bf2c26SJohn Johansen .read = ns_revision_read, 607d9bf2c26SJohn Johansen .llseek = generic_file_llseek, 608d9bf2c26SJohn Johansen .release = ns_revision_release, 609d9bf2c26SJohn Johansen }; 610d9bf2c26SJohn Johansen 6114f3b3f2dSJohn Johansen static void profile_query_cb(struct aa_profile *profile, struct aa_perms *perms, 6124f3b3f2dSJohn Johansen const char *match_str, size_t match_len) 6134f3b3f2dSJohn Johansen { 614f4585bc2STyler Hicks struct aa_perms tmp = { }; 6154f3b3f2dSJohn Johansen struct aa_dfa *dfa; 616*33fc95d8SJohn Johansen aa_state_t state = DFA_NOMATCH; 6174f3b3f2dSJohn Johansen 618637f688dSJohn Johansen if (profile_unconfined(profile)) 6194f3b3f2dSJohn Johansen return; 6204f3b3f2dSJohn Johansen if (profile->file.dfa && *match_str == AA_CLASS_FILE) { 6214f3b3f2dSJohn Johansen dfa = profile->file.dfa; 62253bdc46fSJohn Johansen state = aa_dfa_match_len(dfa, 62353bdc46fSJohn Johansen profile->file.start[AA_CLASS_FILE], 6244f3b3f2dSJohn Johansen match_str + 1, match_len - 1); 6254f3b3f2dSJohn Johansen if (state) { 6264f3b3f2dSJohn Johansen struct path_cond cond = { }; 6274f3b3f2dSJohn Johansen 628408d53e9SMike Salvatore tmp = *(aa_lookup_fperms(&(profile->file), state, &cond)); 6294f3b3f2dSJohn Johansen } 6304f3b3f2dSJohn Johansen } else if (profile->policy.dfa) { 631b9590ad4SJohn Johansen if (!PROFILE_MEDIATES(profile, *match_str)) 6324f3b3f2dSJohn Johansen return; /* no change to current perms */ 6334f3b3f2dSJohn Johansen dfa = profile->policy.dfa; 6344f3b3f2dSJohn Johansen state = aa_dfa_match_len(dfa, profile->policy.start[0], 6354f3b3f2dSJohn Johansen match_str, match_len); 6364f3b3f2dSJohn Johansen if (state) 637e844fe9bSJohn Johansen tmp = *aa_lookup_perms(&profile->policy, state); 6384f3b3f2dSJohn Johansen } 6394f3b3f2dSJohn Johansen aa_apply_modes_to_perms(profile, &tmp); 640317d9a05SJohn Johansen aa_perms_accum_raw(perms, &tmp); 6414f3b3f2dSJohn Johansen } 6424f3b3f2dSJohn Johansen 6434f3b3f2dSJohn Johansen 644e025be0fSWilliam Hua /** 645e025be0fSWilliam Hua * query_data - queries a policy and writes its data to buf 646e025be0fSWilliam Hua * @buf: the resulting data is stored here (NOT NULL) 647e025be0fSWilliam Hua * @buf_len: size of buf 648e025be0fSWilliam Hua * @query: query string used to retrieve data 649e025be0fSWilliam Hua * @query_len: size of query including second NUL byte 650e025be0fSWilliam Hua * 651e025be0fSWilliam Hua * The buffers pointed to by buf and query may overlap. The query buffer is 652e025be0fSWilliam Hua * parsed before buf is written to. 653e025be0fSWilliam Hua * 654e025be0fSWilliam Hua * The query should look like "<LABEL>\0<KEY>\0", where <LABEL> is the name of 655e025be0fSWilliam Hua * the security confinement context and <KEY> is the name of the data to 656e025be0fSWilliam Hua * retrieve. <LABEL> and <KEY> must not be NUL-terminated. 657e025be0fSWilliam Hua * 658e025be0fSWilliam Hua * Don't expect the contents of buf to be preserved on failure. 659e025be0fSWilliam Hua * 660e025be0fSWilliam Hua * Returns: number of characters written to buf or -errno on failure 661e025be0fSWilliam Hua */ 662e025be0fSWilliam Hua static ssize_t query_data(char *buf, size_t buf_len, 663e025be0fSWilliam Hua char *query, size_t query_len) 664e025be0fSWilliam Hua { 665e025be0fSWilliam Hua char *out; 666e025be0fSWilliam Hua const char *key; 667317d9a05SJohn Johansen struct label_it i; 668637f688dSJohn Johansen struct aa_label *label, *curr; 669317d9a05SJohn Johansen struct aa_profile *profile; 670e025be0fSWilliam Hua struct aa_data *data; 671e025be0fSWilliam Hua u32 bytes, blocks; 672e025be0fSWilliam Hua __le32 outle32; 673e025be0fSWilliam Hua 674e025be0fSWilliam Hua if (!query_len) 675e025be0fSWilliam Hua return -EINVAL; /* need a query */ 676e025be0fSWilliam Hua 677e025be0fSWilliam Hua key = query + strnlen(query, query_len) + 1; 678e025be0fSWilliam Hua if (key + 1 >= query + query_len) 679e025be0fSWilliam Hua return -EINVAL; /* not enough space for a non-empty key */ 680e025be0fSWilliam Hua if (key + strnlen(key, query + query_len - key) >= query + query_len) 681e025be0fSWilliam Hua return -EINVAL; /* must end with NUL */ 682e025be0fSWilliam Hua 683e025be0fSWilliam Hua if (buf_len < sizeof(bytes) + sizeof(blocks)) 684e025be0fSWilliam Hua return -EINVAL; /* not enough space */ 685e025be0fSWilliam Hua 686637f688dSJohn Johansen curr = begin_current_label_crit_section(); 687637f688dSJohn Johansen label = aa_label_parse(curr, query, GFP_KERNEL, false, false); 688637f688dSJohn Johansen end_current_label_crit_section(curr); 689637f688dSJohn Johansen if (IS_ERR(label)) 690637f688dSJohn Johansen return PTR_ERR(label); 691e025be0fSWilliam Hua 692e025be0fSWilliam Hua /* We are going to leave space for two numbers. The first is the total 693e025be0fSWilliam Hua * number of bytes we are writing after the first number. This is so 694e025be0fSWilliam Hua * users can read the full output without reallocation. 695e025be0fSWilliam Hua * 696e025be0fSWilliam Hua * The second number is the number of data blocks we're writing. An 697e025be0fSWilliam Hua * application might be confined by multiple policies having data in 698e025be0fSWilliam Hua * the same key. 699e025be0fSWilliam Hua */ 700e025be0fSWilliam Hua memset(buf, 0, sizeof(bytes) + sizeof(blocks)); 701e025be0fSWilliam Hua out = buf + sizeof(bytes) + sizeof(blocks); 702e025be0fSWilliam Hua 703e025be0fSWilliam Hua blocks = 0; 704317d9a05SJohn Johansen label_for_each_confined(i, label, profile) { 705317d9a05SJohn Johansen if (!profile->data) 706317d9a05SJohn Johansen continue; 707317d9a05SJohn Johansen 708317d9a05SJohn Johansen data = rhashtable_lookup_fast(profile->data, &key, 709317d9a05SJohn Johansen profile->data->p); 710e025be0fSWilliam Hua 711e025be0fSWilliam Hua if (data) { 712317d9a05SJohn Johansen if (out + sizeof(outle32) + data->size > buf + 713317d9a05SJohn Johansen buf_len) { 714637f688dSJohn Johansen aa_put_label(label); 715e025be0fSWilliam Hua return -EINVAL; /* not enough space */ 716637f688dSJohn Johansen } 717e025be0fSWilliam Hua outle32 = __cpu_to_le32(data->size); 718e025be0fSWilliam Hua memcpy(out, &outle32, sizeof(outle32)); 719e025be0fSWilliam Hua out += sizeof(outle32); 720e025be0fSWilliam Hua memcpy(out, data->data, data->size); 721e025be0fSWilliam Hua out += data->size; 722e025be0fSWilliam Hua blocks++; 723e025be0fSWilliam Hua } 724e025be0fSWilliam Hua } 725637f688dSJohn Johansen aa_put_label(label); 726e025be0fSWilliam Hua 727e025be0fSWilliam Hua outle32 = __cpu_to_le32(out - buf - sizeof(bytes)); 728e025be0fSWilliam Hua memcpy(buf, &outle32, sizeof(outle32)); 729e025be0fSWilliam Hua outle32 = __cpu_to_le32(blocks); 730e025be0fSWilliam Hua memcpy(buf + sizeof(bytes), &outle32, sizeof(outle32)); 731e025be0fSWilliam Hua 732e025be0fSWilliam Hua return out - buf; 733e025be0fSWilliam Hua } 734e025be0fSWilliam Hua 7354f3b3f2dSJohn Johansen /** 7364f3b3f2dSJohn Johansen * query_label - queries a label and writes permissions to buf 7374f3b3f2dSJohn Johansen * @buf: the resulting permissions string is stored here (NOT NULL) 7384f3b3f2dSJohn Johansen * @buf_len: size of buf 7394f3b3f2dSJohn Johansen * @query: binary query string to match against the dfa 7404f3b3f2dSJohn Johansen * @query_len: size of query 7414f3b3f2dSJohn Johansen * @view_only: only compute for querier's view 7424f3b3f2dSJohn Johansen * 7434f3b3f2dSJohn Johansen * The buffers pointed to by buf and query may overlap. The query buffer is 7444f3b3f2dSJohn Johansen * parsed before buf is written to. 7454f3b3f2dSJohn Johansen * 7464f3b3f2dSJohn Johansen * The query should look like "LABEL_NAME\0DFA_STRING" where LABEL_NAME is 7474f3b3f2dSJohn Johansen * the name of the label, in the current namespace, that is to be queried and 7484f3b3f2dSJohn Johansen * DFA_STRING is a binary string to match against the label(s)'s DFA. 7494f3b3f2dSJohn Johansen * 7504f3b3f2dSJohn Johansen * LABEL_NAME must be NUL terminated. DFA_STRING may contain NUL characters 7514f3b3f2dSJohn Johansen * but must *not* be NUL terminated. 7524f3b3f2dSJohn Johansen * 7534f3b3f2dSJohn Johansen * Returns: number of characters written to buf or -errno on failure 7544f3b3f2dSJohn Johansen */ 7554f3b3f2dSJohn Johansen static ssize_t query_label(char *buf, size_t buf_len, 7564f3b3f2dSJohn Johansen char *query, size_t query_len, bool view_only) 7574f3b3f2dSJohn Johansen { 758317d9a05SJohn Johansen struct aa_profile *profile; 759637f688dSJohn Johansen struct aa_label *label, *curr; 7604f3b3f2dSJohn Johansen char *label_name, *match_str; 7614f3b3f2dSJohn Johansen size_t label_name_len, match_len; 7624f3b3f2dSJohn Johansen struct aa_perms perms; 763317d9a05SJohn Johansen struct label_it i; 7644f3b3f2dSJohn Johansen 7654f3b3f2dSJohn Johansen if (!query_len) 7664f3b3f2dSJohn Johansen return -EINVAL; 7674f3b3f2dSJohn Johansen 7684f3b3f2dSJohn Johansen label_name = query; 7694f3b3f2dSJohn Johansen label_name_len = strnlen(query, query_len); 7704f3b3f2dSJohn Johansen if (!label_name_len || label_name_len == query_len) 7714f3b3f2dSJohn Johansen return -EINVAL; 7724f3b3f2dSJohn Johansen 7734f3b3f2dSJohn Johansen /** 7744f3b3f2dSJohn Johansen * The extra byte is to account for the null byte between the 7754f3b3f2dSJohn Johansen * profile name and dfa string. profile_name_len is greater 7764f3b3f2dSJohn Johansen * than zero and less than query_len, so a byte can be safely 7774f3b3f2dSJohn Johansen * added or subtracted. 7784f3b3f2dSJohn Johansen */ 7794f3b3f2dSJohn Johansen match_str = label_name + label_name_len + 1; 7804f3b3f2dSJohn Johansen match_len = query_len - label_name_len - 1; 7814f3b3f2dSJohn Johansen 782637f688dSJohn Johansen curr = begin_current_label_crit_section(); 783637f688dSJohn Johansen label = aa_label_parse(curr, label_name, GFP_KERNEL, false, false); 784637f688dSJohn Johansen end_current_label_crit_section(curr); 785637f688dSJohn Johansen if (IS_ERR(label)) 786637f688dSJohn Johansen return PTR_ERR(label); 7874f3b3f2dSJohn Johansen 7884f3b3f2dSJohn Johansen perms = allperms; 789317d9a05SJohn Johansen if (view_only) { 790317d9a05SJohn Johansen label_for_each_in_ns(i, labels_ns(label), label, profile) { 791317d9a05SJohn Johansen profile_query_cb(profile, &perms, match_str, match_len); 792317d9a05SJohn Johansen } 793317d9a05SJohn Johansen } else { 794317d9a05SJohn Johansen label_for_each(i, label, profile) { 795317d9a05SJohn Johansen profile_query_cb(profile, &perms, match_str, match_len); 796317d9a05SJohn Johansen } 797317d9a05SJohn Johansen } 798317d9a05SJohn Johansen aa_put_label(label); 7994f3b3f2dSJohn Johansen 8004f3b3f2dSJohn Johansen return scnprintf(buf, buf_len, 8014f3b3f2dSJohn Johansen "allow 0x%08x\ndeny 0x%08x\naudit 0x%08x\nquiet 0x%08x\n", 8024f3b3f2dSJohn Johansen perms.allow, perms.deny, perms.audit, perms.quiet); 8034f3b3f2dSJohn Johansen } 8044f3b3f2dSJohn Johansen 8051dea3b41SJohn Johansen /* 8061dea3b41SJohn Johansen * Transaction based IO. 8071dea3b41SJohn Johansen * The file expects a write which triggers the transaction, and then 8081dea3b41SJohn Johansen * possibly a read(s) which collects the result - which is stored in a 8091dea3b41SJohn Johansen * file-local buffer. Once a new write is performed, a new set of results 8101dea3b41SJohn Johansen * are stored in the file-local buffer. 8111dea3b41SJohn Johansen */ 8121dea3b41SJohn Johansen struct multi_transaction { 8131dea3b41SJohn Johansen struct kref count; 8141dea3b41SJohn Johansen ssize_t size; 815fe9fd23eSGustavo A. R. Silva char data[]; 8161dea3b41SJohn Johansen }; 8171dea3b41SJohn Johansen 8181dea3b41SJohn Johansen #define MULTI_TRANSACTION_LIMIT (PAGE_SIZE - sizeof(struct multi_transaction)) 8191dea3b41SJohn Johansen 8201dea3b41SJohn Johansen static void multi_transaction_kref(struct kref *kref) 8211dea3b41SJohn Johansen { 8221dea3b41SJohn Johansen struct multi_transaction *t; 8231dea3b41SJohn Johansen 8241dea3b41SJohn Johansen t = container_of(kref, struct multi_transaction, count); 8251dea3b41SJohn Johansen free_page((unsigned long) t); 8261dea3b41SJohn Johansen } 8271dea3b41SJohn Johansen 8281dea3b41SJohn Johansen static struct multi_transaction * 8291dea3b41SJohn Johansen get_multi_transaction(struct multi_transaction *t) 8301dea3b41SJohn Johansen { 8311dea3b41SJohn Johansen if (t) 8321dea3b41SJohn Johansen kref_get(&(t->count)); 8331dea3b41SJohn Johansen 8341dea3b41SJohn Johansen return t; 8351dea3b41SJohn Johansen } 8361dea3b41SJohn Johansen 8371dea3b41SJohn Johansen static void put_multi_transaction(struct multi_transaction *t) 8381dea3b41SJohn Johansen { 8391dea3b41SJohn Johansen if (t) 8401dea3b41SJohn Johansen kref_put(&(t->count), multi_transaction_kref); 8411dea3b41SJohn Johansen } 8421dea3b41SJohn Johansen 8431dea3b41SJohn Johansen /* does not increment @new's count */ 8441dea3b41SJohn Johansen static void multi_transaction_set(struct file *file, 8451dea3b41SJohn Johansen struct multi_transaction *new, size_t n) 8461dea3b41SJohn Johansen { 8471dea3b41SJohn Johansen struct multi_transaction *old; 8481dea3b41SJohn Johansen 8491dea3b41SJohn Johansen AA_BUG(n > MULTI_TRANSACTION_LIMIT); 8501dea3b41SJohn Johansen 8511dea3b41SJohn Johansen new->size = n; 852d0d845a7SHamza Mahfooz spin_lock(&file->f_lock); 8531dea3b41SJohn Johansen old = (struct multi_transaction *) file->private_data; 8541dea3b41SJohn Johansen file->private_data = new; 855d0d845a7SHamza Mahfooz spin_unlock(&file->f_lock); 8561dea3b41SJohn Johansen put_multi_transaction(old); 8571dea3b41SJohn Johansen } 8581dea3b41SJohn Johansen 8591dea3b41SJohn Johansen static struct multi_transaction *multi_transaction_new(struct file *file, 8601dea3b41SJohn Johansen const char __user *buf, 8611dea3b41SJohn Johansen size_t size) 8621dea3b41SJohn Johansen { 8631dea3b41SJohn Johansen struct multi_transaction *t; 8641dea3b41SJohn Johansen 8651dea3b41SJohn Johansen if (size > MULTI_TRANSACTION_LIMIT - 1) 8661dea3b41SJohn Johansen return ERR_PTR(-EFBIG); 8671dea3b41SJohn Johansen 8681dea3b41SJohn Johansen t = (struct multi_transaction *)get_zeroed_page(GFP_KERNEL); 8691dea3b41SJohn Johansen if (!t) 8701dea3b41SJohn Johansen return ERR_PTR(-ENOMEM); 8711dea3b41SJohn Johansen kref_init(&t->count); 872c73275cfSGaosheng Cui if (copy_from_user(t->data, buf, size)) { 873c73275cfSGaosheng Cui put_multi_transaction(t); 8741dea3b41SJohn Johansen return ERR_PTR(-EFAULT); 875c73275cfSGaosheng Cui } 8761dea3b41SJohn Johansen 8771dea3b41SJohn Johansen return t; 8781dea3b41SJohn Johansen } 8791dea3b41SJohn Johansen 8801dea3b41SJohn Johansen static ssize_t multi_transaction_read(struct file *file, char __user *buf, 8811dea3b41SJohn Johansen size_t size, loff_t *pos) 8821dea3b41SJohn Johansen { 8831dea3b41SJohn Johansen struct multi_transaction *t; 8841dea3b41SJohn Johansen ssize_t ret; 8851dea3b41SJohn Johansen 886d0d845a7SHamza Mahfooz spin_lock(&file->f_lock); 8871dea3b41SJohn Johansen t = get_multi_transaction(file->private_data); 888d0d845a7SHamza Mahfooz spin_unlock(&file->f_lock); 889d0d845a7SHamza Mahfooz 8901dea3b41SJohn Johansen if (!t) 8911dea3b41SJohn Johansen return 0; 8921dea3b41SJohn Johansen 8931dea3b41SJohn Johansen ret = simple_read_from_buffer(buf, size, pos, t->data, t->size); 8941dea3b41SJohn Johansen put_multi_transaction(t); 8951dea3b41SJohn Johansen 8961dea3b41SJohn Johansen return ret; 8971dea3b41SJohn Johansen } 8981dea3b41SJohn Johansen 8991dea3b41SJohn Johansen static int multi_transaction_release(struct inode *inode, struct file *file) 9001dea3b41SJohn Johansen { 9011dea3b41SJohn Johansen put_multi_transaction(file->private_data); 9021dea3b41SJohn Johansen 9031dea3b41SJohn Johansen return 0; 9041dea3b41SJohn Johansen } 9051dea3b41SJohn Johansen 906317d9a05SJohn Johansen #define QUERY_CMD_LABEL "label\0" 907317d9a05SJohn Johansen #define QUERY_CMD_LABEL_LEN 6 9084f3b3f2dSJohn Johansen #define QUERY_CMD_PROFILE "profile\0" 9094f3b3f2dSJohn Johansen #define QUERY_CMD_PROFILE_LEN 8 910317d9a05SJohn Johansen #define QUERY_CMD_LABELALL "labelall\0" 911317d9a05SJohn Johansen #define QUERY_CMD_LABELALL_LEN 9 912e025be0fSWilliam Hua #define QUERY_CMD_DATA "data\0" 913e025be0fSWilliam Hua #define QUERY_CMD_DATA_LEN 5 914e025be0fSWilliam Hua 915e025be0fSWilliam Hua /** 916e025be0fSWilliam Hua * aa_write_access - generic permissions and data query 917e025be0fSWilliam Hua * @file: pointer to open apparmorfs/access file 918e025be0fSWilliam Hua * @ubuf: user buffer containing the complete query string (NOT NULL) 919e025be0fSWilliam Hua * @count: size of ubuf 920e025be0fSWilliam Hua * @ppos: position in the file (MUST BE ZERO) 921e025be0fSWilliam Hua * 922e025be0fSWilliam Hua * Allows for one permissions or data query per open(), write(), and read() 923e025be0fSWilliam Hua * sequence. The only queries currently supported are label-based queries for 924e025be0fSWilliam Hua * permissions or data. 925e025be0fSWilliam Hua * 926e025be0fSWilliam Hua * For permissions queries, ubuf must begin with "label\0", followed by the 927e025be0fSWilliam Hua * profile query specific format described in the query_label() function 928e025be0fSWilliam Hua * documentation. 929e025be0fSWilliam Hua * 930e025be0fSWilliam Hua * For data queries, ubuf must have the form "data\0<LABEL>\0<KEY>\0", where 931e025be0fSWilliam Hua * <LABEL> is the name of the security confinement context and <KEY> is the 932e025be0fSWilliam Hua * name of the data to retrieve. 933e025be0fSWilliam Hua * 934e025be0fSWilliam Hua * Returns: number of bytes written or -errno on failure 935e025be0fSWilliam Hua */ 936e025be0fSWilliam Hua static ssize_t aa_write_access(struct file *file, const char __user *ubuf, 937e025be0fSWilliam Hua size_t count, loff_t *ppos) 938e025be0fSWilliam Hua { 9391dea3b41SJohn Johansen struct multi_transaction *t; 940e025be0fSWilliam Hua ssize_t len; 941e025be0fSWilliam Hua 942e025be0fSWilliam Hua if (*ppos) 943e025be0fSWilliam Hua return -ESPIPE; 944e025be0fSWilliam Hua 9451dea3b41SJohn Johansen t = multi_transaction_new(file, ubuf, count); 9461dea3b41SJohn Johansen if (IS_ERR(t)) 9471dea3b41SJohn Johansen return PTR_ERR(t); 948e025be0fSWilliam Hua 9494f3b3f2dSJohn Johansen if (count > QUERY_CMD_PROFILE_LEN && 9504f3b3f2dSJohn Johansen !memcmp(t->data, QUERY_CMD_PROFILE, QUERY_CMD_PROFILE_LEN)) { 9514f3b3f2dSJohn Johansen len = query_label(t->data, MULTI_TRANSACTION_LIMIT, 9524f3b3f2dSJohn Johansen t->data + QUERY_CMD_PROFILE_LEN, 9534f3b3f2dSJohn Johansen count - QUERY_CMD_PROFILE_LEN, true); 954317d9a05SJohn Johansen } else if (count > QUERY_CMD_LABEL_LEN && 955317d9a05SJohn Johansen !memcmp(t->data, QUERY_CMD_LABEL, QUERY_CMD_LABEL_LEN)) { 956317d9a05SJohn Johansen len = query_label(t->data, MULTI_TRANSACTION_LIMIT, 957317d9a05SJohn Johansen t->data + QUERY_CMD_LABEL_LEN, 958317d9a05SJohn Johansen count - QUERY_CMD_LABEL_LEN, true); 959317d9a05SJohn Johansen } else if (count > QUERY_CMD_LABELALL_LEN && 960317d9a05SJohn Johansen !memcmp(t->data, QUERY_CMD_LABELALL, 961317d9a05SJohn Johansen QUERY_CMD_LABELALL_LEN)) { 962317d9a05SJohn Johansen len = query_label(t->data, MULTI_TRANSACTION_LIMIT, 963317d9a05SJohn Johansen t->data + QUERY_CMD_LABELALL_LEN, 964317d9a05SJohn Johansen count - QUERY_CMD_LABELALL_LEN, false); 9654f3b3f2dSJohn Johansen } else if (count > QUERY_CMD_DATA_LEN && 9661dea3b41SJohn Johansen !memcmp(t->data, QUERY_CMD_DATA, QUERY_CMD_DATA_LEN)) { 9671dea3b41SJohn Johansen len = query_data(t->data, MULTI_TRANSACTION_LIMIT, 9681dea3b41SJohn Johansen t->data + QUERY_CMD_DATA_LEN, 969e025be0fSWilliam Hua count - QUERY_CMD_DATA_LEN); 970e025be0fSWilliam Hua } else 971e025be0fSWilliam Hua len = -EINVAL; 972e025be0fSWilliam Hua 9731dea3b41SJohn Johansen if (len < 0) { 9741dea3b41SJohn Johansen put_multi_transaction(t); 975e025be0fSWilliam Hua return len; 9761dea3b41SJohn Johansen } 977e025be0fSWilliam Hua 9781dea3b41SJohn Johansen multi_transaction_set(file, t, len); 979e025be0fSWilliam Hua 980e025be0fSWilliam Hua return count; 981e025be0fSWilliam Hua } 982e025be0fSWilliam Hua 983c97204baSJohn Johansen static const struct file_operations aa_sfs_access = { 984e025be0fSWilliam Hua .write = aa_write_access, 9851dea3b41SJohn Johansen .read = multi_transaction_read, 9861dea3b41SJohn Johansen .release = multi_transaction_release, 987e025be0fSWilliam Hua .llseek = generic_file_llseek, 988e025be0fSWilliam Hua }; 989e025be0fSWilliam Hua 990c97204baSJohn Johansen static int aa_sfs_seq_show(struct seq_file *seq, void *v) 991e74abcf3SKees Cook { 992c97204baSJohn Johansen struct aa_sfs_entry *fs_file = seq->private; 993e74abcf3SKees Cook 994e74abcf3SKees Cook if (!fs_file) 995e74abcf3SKees Cook return 0; 996e74abcf3SKees Cook 997e74abcf3SKees Cook switch (fs_file->v_type) { 998c97204baSJohn Johansen case AA_SFS_TYPE_BOOLEAN: 999e74abcf3SKees Cook seq_printf(seq, "%s\n", fs_file->v.boolean ? "yes" : "no"); 1000e74abcf3SKees Cook break; 1001c97204baSJohn Johansen case AA_SFS_TYPE_STRING: 1002a9bf8e9fSKees Cook seq_printf(seq, "%s\n", fs_file->v.string); 1003a9bf8e9fSKees Cook break; 1004c97204baSJohn Johansen case AA_SFS_TYPE_U64: 1005e74abcf3SKees Cook seq_printf(seq, "%#08lx\n", fs_file->v.u64); 1006e74abcf3SKees Cook break; 1007e74abcf3SKees Cook default: 1008e74abcf3SKees Cook /* Ignore unpritable entry types. */ 1009e74abcf3SKees Cook break; 1010e74abcf3SKees Cook } 1011e74abcf3SKees Cook 1012e74abcf3SKees Cook return 0; 1013e74abcf3SKees Cook } 1014e74abcf3SKees Cook 1015c97204baSJohn Johansen static int aa_sfs_seq_open(struct inode *inode, struct file *file) 1016e74abcf3SKees Cook { 1017c97204baSJohn Johansen return single_open(file, aa_sfs_seq_show, inode->i_private); 1018e74abcf3SKees Cook } 1019e74abcf3SKees Cook 1020c97204baSJohn Johansen const struct file_operations aa_sfs_seq_file_ops = { 1021e74abcf3SKees Cook .owner = THIS_MODULE, 1022c97204baSJohn Johansen .open = aa_sfs_seq_open, 1023e74abcf3SKees Cook .read = seq_read, 1024e74abcf3SKees Cook .llseek = seq_lseek, 1025e74abcf3SKees Cook .release = single_release, 1026e74abcf3SKees Cook }; 1027e74abcf3SKees Cook 102852b97de3SJohn Johansen /* 102952b97de3SJohn Johansen * profile based file operations 103052b97de3SJohn Johansen * policy/profiles/XXXX/profiles/ * 103152b97de3SJohn Johansen */ 103252b97de3SJohn Johansen 103352b97de3SJohn Johansen #define SEQ_PROFILE_FOPS(NAME) \ 103452b97de3SJohn Johansen static int seq_profile_ ##NAME ##_open(struct inode *inode, struct file *file)\ 103552b97de3SJohn Johansen { \ 103652b97de3SJohn Johansen return seq_profile_open(inode, file, seq_profile_ ##NAME ##_show); \ 103752b97de3SJohn Johansen } \ 103852b97de3SJohn Johansen \ 103952b97de3SJohn Johansen static const struct file_operations seq_profile_ ##NAME ##_fops = { \ 104052b97de3SJohn Johansen .owner = THIS_MODULE, \ 104152b97de3SJohn Johansen .open = seq_profile_ ##NAME ##_open, \ 104252b97de3SJohn Johansen .read = seq_read, \ 104352b97de3SJohn Johansen .llseek = seq_lseek, \ 104452b97de3SJohn Johansen .release = seq_profile_release, \ 104552b97de3SJohn Johansen } \ 104652b97de3SJohn Johansen 104752b97de3SJohn Johansen static int seq_profile_open(struct inode *inode, struct file *file, 10480d259f04SJohn Johansen int (*show)(struct seq_file *, void *)) 10490d259f04SJohn Johansen { 10508399588aSJohn Johansen struct aa_proxy *proxy = aa_get_proxy(inode->i_private); 10518399588aSJohn Johansen int error = single_open(file, show, proxy); 105263e2b423SJohn Johansen 10530d259f04SJohn Johansen if (error) { 10540d259f04SJohn Johansen file->private_data = NULL; 10558399588aSJohn Johansen aa_put_proxy(proxy); 10560d259f04SJohn Johansen } 10570d259f04SJohn Johansen 10580d259f04SJohn Johansen return error; 10590d259f04SJohn Johansen } 10600d259f04SJohn Johansen 106152b97de3SJohn Johansen static int seq_profile_release(struct inode *inode, struct file *file) 10620d259f04SJohn Johansen { 10630d259f04SJohn Johansen struct seq_file *seq = (struct seq_file *) file->private_data; 10640d259f04SJohn Johansen if (seq) 10658399588aSJohn Johansen aa_put_proxy(seq->private); 10660d259f04SJohn Johansen return single_release(inode, file); 10670d259f04SJohn Johansen } 10680d259f04SJohn Johansen 106952b97de3SJohn Johansen static int seq_profile_name_show(struct seq_file *seq, void *v) 10700d259f04SJohn Johansen { 10718399588aSJohn Johansen struct aa_proxy *proxy = seq->private; 1072637f688dSJohn Johansen struct aa_label *label = aa_get_label_rcu(&proxy->label); 1073637f688dSJohn Johansen struct aa_profile *profile = labels_profile(label); 10740d259f04SJohn Johansen seq_printf(seq, "%s\n", profile->base.name); 1075637f688dSJohn Johansen aa_put_label(label); 10760d259f04SJohn Johansen 10770d259f04SJohn Johansen return 0; 10780d259f04SJohn Johansen } 10790d259f04SJohn Johansen 108052b97de3SJohn Johansen static int seq_profile_mode_show(struct seq_file *seq, void *v) 10810d259f04SJohn Johansen { 10828399588aSJohn Johansen struct aa_proxy *proxy = seq->private; 1083637f688dSJohn Johansen struct aa_label *label = aa_get_label_rcu(&proxy->label); 1084637f688dSJohn Johansen struct aa_profile *profile = labels_profile(label); 10850d259f04SJohn Johansen seq_printf(seq, "%s\n", aa_profile_mode_names[profile->mode]); 1086637f688dSJohn Johansen aa_put_label(label); 10870d259f04SJohn Johansen 10880d259f04SJohn Johansen return 0; 10890d259f04SJohn Johansen } 10900d259f04SJohn Johansen 109152b97de3SJohn Johansen static int seq_profile_attach_show(struct seq_file *seq, void *v) 1092556d0be7SJohn Johansen { 10938399588aSJohn Johansen struct aa_proxy *proxy = seq->private; 1094637f688dSJohn Johansen struct aa_label *label = aa_get_label_rcu(&proxy->label); 1095637f688dSJohn Johansen struct aa_profile *profile = labels_profile(label); 1096556d0be7SJohn Johansen if (profile->attach) 1097556d0be7SJohn Johansen seq_printf(seq, "%s\n", profile->attach); 1098048d4954SJohn Johansen else if (profile->xmatch.dfa) 1099556d0be7SJohn Johansen seq_puts(seq, "<unknown>\n"); 1100556d0be7SJohn Johansen else 1101556d0be7SJohn Johansen seq_printf(seq, "%s\n", profile->base.name); 1102637f688dSJohn Johansen aa_put_label(label); 1103556d0be7SJohn Johansen 1104556d0be7SJohn Johansen return 0; 1105556d0be7SJohn Johansen } 1106556d0be7SJohn Johansen 110752b97de3SJohn Johansen static int seq_profile_hash_show(struct seq_file *seq, void *v) 1108f8eb8a13SJohn Johansen { 11098399588aSJohn Johansen struct aa_proxy *proxy = seq->private; 1110637f688dSJohn Johansen struct aa_label *label = aa_get_label_rcu(&proxy->label); 1111637f688dSJohn Johansen struct aa_profile *profile = labels_profile(label); 1112f8eb8a13SJohn Johansen unsigned int i, size = aa_hash_size(); 1113f8eb8a13SJohn Johansen 1114f8eb8a13SJohn Johansen if (profile->hash) { 1115f8eb8a13SJohn Johansen for (i = 0; i < size; i++) 1116f8eb8a13SJohn Johansen seq_printf(seq, "%.2x", profile->hash[i]); 111747dbd1cdSMarkus Elfring seq_putc(seq, '\n'); 1118f8eb8a13SJohn Johansen } 1119637f688dSJohn Johansen aa_put_label(label); 1120f8eb8a13SJohn Johansen 1121f8eb8a13SJohn Johansen return 0; 1122f8eb8a13SJohn Johansen } 1123f8eb8a13SJohn Johansen 112452b97de3SJohn Johansen SEQ_PROFILE_FOPS(name); 112552b97de3SJohn Johansen SEQ_PROFILE_FOPS(mode); 112652b97de3SJohn Johansen SEQ_PROFILE_FOPS(attach); 112752b97de3SJohn Johansen SEQ_PROFILE_FOPS(hash); 1128f8eb8a13SJohn Johansen 112964c86970SJohn Johansen /* 113064c86970SJohn Johansen * namespace based files 113164c86970SJohn Johansen * several root files and 113264c86970SJohn Johansen * policy/ * 113364c86970SJohn Johansen */ 1134f8eb8a13SJohn Johansen 113564c86970SJohn Johansen #define SEQ_NS_FOPS(NAME) \ 113664c86970SJohn Johansen static int seq_ns_ ##NAME ##_open(struct inode *inode, struct file *file) \ 113764c86970SJohn Johansen { \ 113864c86970SJohn Johansen return single_open(file, seq_ns_ ##NAME ##_show, inode->i_private); \ 113964c86970SJohn Johansen } \ 114064c86970SJohn Johansen \ 114164c86970SJohn Johansen static const struct file_operations seq_ns_ ##NAME ##_fops = { \ 114264c86970SJohn Johansen .owner = THIS_MODULE, \ 114364c86970SJohn Johansen .open = seq_ns_ ##NAME ##_open, \ 114464c86970SJohn Johansen .read = seq_read, \ 114564c86970SJohn Johansen .llseek = seq_lseek, \ 114664c86970SJohn Johansen .release = single_release, \ 114764c86970SJohn Johansen } \ 11483e3e5695SJohn Johansen 114940cde7fcSJohn Johansen static int seq_ns_stacked_show(struct seq_file *seq, void *v) 115040cde7fcSJohn Johansen { 115140cde7fcSJohn Johansen struct aa_label *label; 115240cde7fcSJohn Johansen 115340cde7fcSJohn Johansen label = begin_current_label_crit_section(); 115440cde7fcSJohn Johansen seq_printf(seq, "%s\n", label->size > 1 ? "yes" : "no"); 115540cde7fcSJohn Johansen end_current_label_crit_section(label); 115640cde7fcSJohn Johansen 115740cde7fcSJohn Johansen return 0; 115840cde7fcSJohn Johansen } 115940cde7fcSJohn Johansen 116040cde7fcSJohn Johansen static int seq_ns_nsstacked_show(struct seq_file *seq, void *v) 116140cde7fcSJohn Johansen { 116240cde7fcSJohn Johansen struct aa_label *label; 116340cde7fcSJohn Johansen struct aa_profile *profile; 116440cde7fcSJohn Johansen struct label_it it; 116540cde7fcSJohn Johansen int count = 1; 116640cde7fcSJohn Johansen 116740cde7fcSJohn Johansen label = begin_current_label_crit_section(); 116840cde7fcSJohn Johansen 116940cde7fcSJohn Johansen if (label->size > 1) { 117040cde7fcSJohn Johansen label_for_each(it, label, profile) 117140cde7fcSJohn Johansen if (profile->ns != labels_ns(label)) { 117240cde7fcSJohn Johansen count++; 117340cde7fcSJohn Johansen break; 117440cde7fcSJohn Johansen } 117540cde7fcSJohn Johansen } 117640cde7fcSJohn Johansen 117740cde7fcSJohn Johansen seq_printf(seq, "%s\n", count > 1 ? "yes" : "no"); 117840cde7fcSJohn Johansen end_current_label_crit_section(label); 117940cde7fcSJohn Johansen 118040cde7fcSJohn Johansen return 0; 118140cde7fcSJohn Johansen } 118240cde7fcSJohn Johansen 118364c86970SJohn Johansen static int seq_ns_level_show(struct seq_file *seq, void *v) 1184a71ada30SJohn Johansen { 1185637f688dSJohn Johansen struct aa_label *label; 1186a71ada30SJohn Johansen 1187637f688dSJohn Johansen label = begin_current_label_crit_section(); 1188637f688dSJohn Johansen seq_printf(seq, "%d\n", labels_ns(label)->level); 1189637f688dSJohn Johansen end_current_label_crit_section(label); 1190a71ada30SJohn Johansen 1191a71ada30SJohn Johansen return 0; 1192a71ada30SJohn Johansen } 1193a71ada30SJohn Johansen 119464c86970SJohn Johansen static int seq_ns_name_show(struct seq_file *seq, void *v) 11953e3e5695SJohn Johansen { 1196637f688dSJohn Johansen struct aa_label *label = begin_current_label_crit_section(); 1197040d9e2bSJohn Johansen seq_printf(seq, "%s\n", labels_ns(label)->base.name); 1198637f688dSJohn Johansen end_current_label_crit_section(label); 11993e3e5695SJohn Johansen 12003e3e5695SJohn Johansen return 0; 12013e3e5695SJohn Johansen } 12023e3e5695SJohn Johansen 12032218d081SJon Tourville static int seq_ns_compress_min_show(struct seq_file *seq, void *v) 12042218d081SJon Tourville { 12052218d081SJon Tourville seq_printf(seq, "%d\n", zstd_min_clevel()); 12062218d081SJon Tourville return 0; 12072218d081SJon Tourville } 12082218d081SJon Tourville 12092218d081SJon Tourville static int seq_ns_compress_max_show(struct seq_file *seq, void *v) 12102218d081SJon Tourville { 12112218d081SJon Tourville seq_printf(seq, "%d\n", zstd_max_clevel()); 12122218d081SJon Tourville return 0; 12132218d081SJon Tourville } 12142218d081SJon Tourville 121540cde7fcSJohn Johansen SEQ_NS_FOPS(stacked); 121640cde7fcSJohn Johansen SEQ_NS_FOPS(nsstacked); 121764c86970SJohn Johansen SEQ_NS_FOPS(level); 121864c86970SJohn Johansen SEQ_NS_FOPS(name); 12192218d081SJon Tourville SEQ_NS_FOPS(compress_min); 12202218d081SJon Tourville SEQ_NS_FOPS(compress_max); 12213e3e5695SJohn Johansen 12225d5182caSJohn Johansen 12235d5182caSJohn Johansen /* policy/raw_data/ * file ops */ 1224d61c57fdSJohn Johansen #ifdef CONFIG_SECURITY_APPARMOR_EXPORT_BINARY 12255d5182caSJohn Johansen #define SEQ_RAWDATA_FOPS(NAME) \ 12265d5182caSJohn Johansen static int seq_rawdata_ ##NAME ##_open(struct inode *inode, struct file *file)\ 12275d5182caSJohn Johansen { \ 12285d5182caSJohn Johansen return seq_rawdata_open(inode, file, seq_rawdata_ ##NAME ##_show); \ 12295d5182caSJohn Johansen } \ 12305d5182caSJohn Johansen \ 12315d5182caSJohn Johansen static const struct file_operations seq_rawdata_ ##NAME ##_fops = { \ 12325d5182caSJohn Johansen .owner = THIS_MODULE, \ 12335d5182caSJohn Johansen .open = seq_rawdata_ ##NAME ##_open, \ 12345d5182caSJohn Johansen .read = seq_read, \ 12355d5182caSJohn Johansen .llseek = seq_lseek, \ 12365d5182caSJohn Johansen .release = seq_rawdata_release, \ 12375d5182caSJohn Johansen } \ 12385d5182caSJohn Johansen 12395d5182caSJohn Johansen static int seq_rawdata_open(struct inode *inode, struct file *file, 12405d5182caSJohn Johansen int (*show)(struct seq_file *, void *)) 12415ac8c355SJohn Johansen { 12425d5182caSJohn Johansen struct aa_loaddata *data = __aa_get_loaddata(inode->i_private); 12435d5182caSJohn Johansen int error; 12445d5182caSJohn Johansen 12455d5182caSJohn Johansen if (!data) 12465d5182caSJohn Johansen /* lost race this ent is being reaped */ 12475d5182caSJohn Johansen return -ENOENT; 12485d5182caSJohn Johansen 12495d5182caSJohn Johansen error = single_open(file, show, data); 12505d5182caSJohn Johansen if (error) { 12515d5182caSJohn Johansen AA_BUG(file->private_data && 12525d5182caSJohn Johansen ((struct seq_file *)file->private_data)->private); 12535d5182caSJohn Johansen aa_put_loaddata(data); 12545d5182caSJohn Johansen } 12555d5182caSJohn Johansen 12565d5182caSJohn Johansen return error; 12575d5182caSJohn Johansen } 12585d5182caSJohn Johansen 12595d5182caSJohn Johansen static int seq_rawdata_release(struct inode *inode, struct file *file) 12605d5182caSJohn Johansen { 12615d5182caSJohn Johansen struct seq_file *seq = (struct seq_file *) file->private_data; 12625d5182caSJohn Johansen 12635d5182caSJohn Johansen if (seq) 12645d5182caSJohn Johansen aa_put_loaddata(seq->private); 12655d5182caSJohn Johansen 12665d5182caSJohn Johansen return single_release(inode, file); 12675d5182caSJohn Johansen } 12685d5182caSJohn Johansen 12695d5182caSJohn Johansen static int seq_rawdata_abi_show(struct seq_file *seq, void *v) 12705d5182caSJohn Johansen { 12715d5182caSJohn Johansen struct aa_loaddata *data = seq->private; 12725d5182caSJohn Johansen 12735d5182caSJohn Johansen seq_printf(seq, "v%d\n", data->abi); 12745ac8c355SJohn Johansen 12755ac8c355SJohn Johansen return 0; 12765ac8c355SJohn Johansen } 12775ac8c355SJohn Johansen 12785d5182caSJohn Johansen static int seq_rawdata_revision_show(struct seq_file *seq, void *v) 12795ac8c355SJohn Johansen { 12805d5182caSJohn Johansen struct aa_loaddata *data = seq->private; 12815ac8c355SJohn Johansen 12825d5182caSJohn Johansen seq_printf(seq, "%ld\n", data->revision); 12835ac8c355SJohn Johansen 12845ac8c355SJohn Johansen return 0; 12855ac8c355SJohn Johansen } 12865ac8c355SJohn Johansen 12875d5182caSJohn Johansen static int seq_rawdata_hash_show(struct seq_file *seq, void *v) 12885ac8c355SJohn Johansen { 12895d5182caSJohn Johansen struct aa_loaddata *data = seq->private; 12905ac8c355SJohn Johansen unsigned int i, size = aa_hash_size(); 12915ac8c355SJohn Johansen 12925d5182caSJohn Johansen if (data->hash) { 12935ac8c355SJohn Johansen for (i = 0; i < size; i++) 12945d5182caSJohn Johansen seq_printf(seq, "%.2x", data->hash[i]); 129547dbd1cdSMarkus Elfring seq_putc(seq, '\n'); 12965ac8c355SJohn Johansen } 12975ac8c355SJohn Johansen 12985ac8c355SJohn Johansen return 0; 12995ac8c355SJohn Johansen } 13005ac8c355SJohn Johansen 130163c16c3aSChris Coulson static int seq_rawdata_compressed_size_show(struct seq_file *seq, void *v) 130263c16c3aSChris Coulson { 130363c16c3aSChris Coulson struct aa_loaddata *data = seq->private; 130463c16c3aSChris Coulson 130563c16c3aSChris Coulson seq_printf(seq, "%zu\n", data->compressed_size); 130663c16c3aSChris Coulson 130763c16c3aSChris Coulson return 0; 130863c16c3aSChris Coulson } 130963c16c3aSChris Coulson 13105d5182caSJohn Johansen SEQ_RAWDATA_FOPS(abi); 13115d5182caSJohn Johansen SEQ_RAWDATA_FOPS(revision); 13125d5182caSJohn Johansen SEQ_RAWDATA_FOPS(hash); 131363c16c3aSChris Coulson SEQ_RAWDATA_FOPS(compressed_size); 131463c16c3aSChris Coulson 1315f4d6b94bSJon Tourville static int decompress_zstd(char *src, size_t slen, char *dst, size_t dlen) 131663c16c3aSChris Coulson { 1317f9da5b14SJohn Johansen #ifdef CONFIG_SECURITY_APPARMOR_EXPORT_BINARY 1318f4d6b94bSJon Tourville if (aa_g_rawdata_compression_level == 0) { 1319f4d6b94bSJon Tourville const size_t wksp_len = zstd_dctx_workspace_bound(); 1320f4d6b94bSJon Tourville zstd_dctx *ctx; 1321f4d6b94bSJon Tourville void *wksp; 1322f4d6b94bSJon Tourville size_t out_len; 1323f4d6b94bSJon Tourville int ret = 0; 132463c16c3aSChris Coulson 1325f4d6b94bSJon Tourville wksp = kvzalloc(wksp_len, GFP_KERNEL); 1326f4d6b94bSJon Tourville if (!wksp) { 1327f4d6b94bSJon Tourville ret = -ENOMEM; 1328f4d6b94bSJon Tourville goto cleanup; 132963c16c3aSChris Coulson } 133063c16c3aSChris Coulson 1331f4d6b94bSJon Tourville out_len = zstd_decompress_dctx(ctx, dst, dlen, src, slen); 1332f4d6b94bSJon Tourville if (zstd_is_error(out_len)) { 1333f4d6b94bSJon Tourville ret = -EINVAL; 1334f4d6b94bSJon Tourville goto cleanup; 1335f4d6b94bSJon Tourville } 1336f4d6b94bSJon Tourville cleanup: 1337f4d6b94bSJon Tourville kvfree(wksp); 1338f4d6b94bSJon Tourville return ret; 133963c16c3aSChris Coulson } 1340f9da5b14SJohn Johansen #endif 1341f9da5b14SJohn Johansen 1342f9da5b14SJohn Johansen if (dlen < slen) 1343f9da5b14SJohn Johansen return -EINVAL; 1344f9da5b14SJohn Johansen memcpy(dst, src, slen); 1345f9da5b14SJohn Johansen return 0; 1346f9da5b14SJohn Johansen } 13475ac8c355SJohn Johansen 13485ac8c355SJohn Johansen static ssize_t rawdata_read(struct file *file, char __user *buf, size_t size, 13495ac8c355SJohn Johansen loff_t *ppos) 13505ac8c355SJohn Johansen { 135163c16c3aSChris Coulson struct rawdata_f_data *private = file->private_data; 13525ac8c355SJohn Johansen 135363c16c3aSChris Coulson return simple_read_from_buffer(buf, size, ppos, 135463c16c3aSChris Coulson RAWDATA_F_DATA_BUF(private), 135563c16c3aSChris Coulson private->loaddata->size); 13565ac8c355SJohn Johansen } 13575ac8c355SJohn Johansen 13585d5182caSJohn Johansen static int rawdata_release(struct inode *inode, struct file *file) 13595ac8c355SJohn Johansen { 136063c16c3aSChris Coulson rawdata_f_data_free(file->private_data); 13615ac8c355SJohn Johansen 13625ac8c355SJohn Johansen return 0; 13635ac8c355SJohn Johansen } 13645ac8c355SJohn Johansen 13655d5182caSJohn Johansen static int rawdata_open(struct inode *inode, struct file *file) 13665d5182caSJohn Johansen { 136763c16c3aSChris Coulson int error; 136863c16c3aSChris Coulson struct aa_loaddata *loaddata; 136963c16c3aSChris Coulson struct rawdata_f_data *private; 137063c16c3aSChris Coulson 137192de220aSJohn Johansen if (!aa_current_policy_view_capable(NULL)) 13725d5182caSJohn Johansen return -EACCES; 137363c16c3aSChris Coulson 137463c16c3aSChris Coulson loaddata = __aa_get_loaddata(inode->i_private); 137563c16c3aSChris Coulson if (!loaddata) 13765d5182caSJohn Johansen /* lost race: this entry is being reaped */ 13775d5182caSJohn Johansen return -ENOENT; 13785d5182caSJohn Johansen 137963c16c3aSChris Coulson private = rawdata_f_data_alloc(loaddata->size); 138063c16c3aSChris Coulson if (IS_ERR(private)) { 138163c16c3aSChris Coulson error = PTR_ERR(private); 138263c16c3aSChris Coulson goto fail_private_alloc; 138363c16c3aSChris Coulson } 138463c16c3aSChris Coulson 138563c16c3aSChris Coulson private->loaddata = loaddata; 138663c16c3aSChris Coulson 1387f4d6b94bSJon Tourville error = decompress_zstd(loaddata->data, loaddata->compressed_size, 138863c16c3aSChris Coulson RAWDATA_F_DATA_BUF(private), 138963c16c3aSChris Coulson loaddata->size); 139063c16c3aSChris Coulson if (error) 139163c16c3aSChris Coulson goto fail_decompress; 139263c16c3aSChris Coulson 139363c16c3aSChris Coulson file->private_data = private; 13945d5182caSJohn Johansen return 0; 139563c16c3aSChris Coulson 139663c16c3aSChris Coulson fail_decompress: 139763c16c3aSChris Coulson rawdata_f_data_free(private); 139863c16c3aSChris Coulson return error; 139963c16c3aSChris Coulson 140063c16c3aSChris Coulson fail_private_alloc: 140163c16c3aSChris Coulson aa_put_loaddata(loaddata); 140263c16c3aSChris Coulson return error; 14035d5182caSJohn Johansen } 14045d5182caSJohn Johansen 14055d5182caSJohn Johansen static const struct file_operations rawdata_fops = { 14065ac8c355SJohn Johansen .open = rawdata_open, 14075ac8c355SJohn Johansen .read = rawdata_read, 14085ac8c355SJohn Johansen .llseek = generic_file_llseek, 14095ac8c355SJohn Johansen .release = rawdata_release, 14105ac8c355SJohn Johansen }; 14115ac8c355SJohn Johansen 14125d5182caSJohn Johansen static void remove_rawdata_dents(struct aa_loaddata *rawdata) 14135d5182caSJohn Johansen { 14145d5182caSJohn Johansen int i; 14155d5182caSJohn Johansen 14165d5182caSJohn Johansen for (i = 0; i < AAFS_LOADDATA_NDENTS; i++) { 14175d5182caSJohn Johansen if (!IS_ERR_OR_NULL(rawdata->dents[i])) { 14185d5182caSJohn Johansen /* no refcounts on i_private */ 1419c961ee5fSJohn Johansen aafs_remove(rawdata->dents[i]); 14205d5182caSJohn Johansen rawdata->dents[i] = NULL; 14215d5182caSJohn Johansen } 14225d5182caSJohn Johansen } 14235d5182caSJohn Johansen } 14245d5182caSJohn Johansen 14255d5182caSJohn Johansen void __aa_fs_remove_rawdata(struct aa_loaddata *rawdata) 14265d5182caSJohn Johansen { 14275d5182caSJohn Johansen AA_BUG(rawdata->ns && !mutex_is_locked(&rawdata->ns->lock)); 14285d5182caSJohn Johansen 14295d5182caSJohn Johansen if (rawdata->ns) { 14305d5182caSJohn Johansen remove_rawdata_dents(rawdata); 14315d5182caSJohn Johansen list_del_init(&rawdata->list); 14325d5182caSJohn Johansen aa_put_ns(rawdata->ns); 14335d5182caSJohn Johansen rawdata->ns = NULL; 14345d5182caSJohn Johansen } 14355d5182caSJohn Johansen } 14365d5182caSJohn Johansen 14375d5182caSJohn Johansen int __aa_fs_create_rawdata(struct aa_ns *ns, struct aa_loaddata *rawdata) 14385d5182caSJohn Johansen { 14395d5182caSJohn Johansen struct dentry *dent, *dir; 14405d5182caSJohn Johansen 14415d5182caSJohn Johansen AA_BUG(!ns); 14425d5182caSJohn Johansen AA_BUG(!rawdata); 14435d5182caSJohn Johansen AA_BUG(!mutex_is_locked(&ns->lock)); 14445d5182caSJohn Johansen AA_BUG(!ns_subdata_dir(ns)); 14455d5182caSJohn Johansen 14465d5182caSJohn Johansen /* 14475d5182caSJohn Johansen * just use ns revision dir was originally created at. This is 14485d5182caSJohn Johansen * under ns->lock and if load is successful revision will be 14495d5182caSJohn Johansen * bumped and is guaranteed to be unique 14505d5182caSJohn Johansen */ 14515d5182caSJohn Johansen rawdata->name = kasprintf(GFP_KERNEL, "%ld", ns->revision); 14525d5182caSJohn Johansen if (!rawdata->name) 14535d5182caSJohn Johansen return -ENOMEM; 14545d5182caSJohn Johansen 1455c961ee5fSJohn Johansen dir = aafs_create_dir(rawdata->name, ns_subdata_dir(ns)); 14565d5182caSJohn Johansen if (IS_ERR(dir)) 14575d5182caSJohn Johansen /* ->name freed when rawdata freed */ 14585d5182caSJohn Johansen return PTR_ERR(dir); 14595d5182caSJohn Johansen rawdata->dents[AAFS_LOADDATA_DIR] = dir; 14605d5182caSJohn Johansen 1461c961ee5fSJohn Johansen dent = aafs_create_file("abi", S_IFREG | 0444, dir, rawdata, 14625d5182caSJohn Johansen &seq_rawdata_abi_fops); 14635d5182caSJohn Johansen if (IS_ERR(dent)) 14645d5182caSJohn Johansen goto fail; 14655d5182caSJohn Johansen rawdata->dents[AAFS_LOADDATA_ABI] = dent; 14665d5182caSJohn Johansen 1467c961ee5fSJohn Johansen dent = aafs_create_file("revision", S_IFREG | 0444, dir, rawdata, 14685d5182caSJohn Johansen &seq_rawdata_revision_fops); 14695d5182caSJohn Johansen if (IS_ERR(dent)) 14705d5182caSJohn Johansen goto fail; 14715d5182caSJohn Johansen rawdata->dents[AAFS_LOADDATA_REVISION] = dent; 14725d5182caSJohn Johansen 14735d5182caSJohn Johansen if (aa_g_hash_policy) { 1474c961ee5fSJohn Johansen dent = aafs_create_file("sha1", S_IFREG | 0444, dir, 14755d5182caSJohn Johansen rawdata, &seq_rawdata_hash_fops); 14765d5182caSJohn Johansen if (IS_ERR(dent)) 14775d5182caSJohn Johansen goto fail; 14785d5182caSJohn Johansen rawdata->dents[AAFS_LOADDATA_HASH] = dent; 14795d5182caSJohn Johansen } 14805d5182caSJohn Johansen 148163c16c3aSChris Coulson dent = aafs_create_file("compressed_size", S_IFREG | 0444, dir, 148263c16c3aSChris Coulson rawdata, 148363c16c3aSChris Coulson &seq_rawdata_compressed_size_fops); 148463c16c3aSChris Coulson if (IS_ERR(dent)) 148563c16c3aSChris Coulson goto fail; 148663c16c3aSChris Coulson rawdata->dents[AAFS_LOADDATA_COMPRESSED_SIZE] = dent; 148763c16c3aSChris Coulson 1488c961ee5fSJohn Johansen dent = aafs_create_file("raw_data", S_IFREG | 0444, 14895d5182caSJohn Johansen dir, rawdata, &rawdata_fops); 14905d5182caSJohn Johansen if (IS_ERR(dent)) 14915d5182caSJohn Johansen goto fail; 14925d5182caSJohn Johansen rawdata->dents[AAFS_LOADDATA_DATA] = dent; 14935d5182caSJohn Johansen d_inode(dent)->i_size = rawdata->size; 14945d5182caSJohn Johansen 14955d5182caSJohn Johansen rawdata->ns = aa_get_ns(ns); 14965d5182caSJohn Johansen list_add(&rawdata->list, &ns->rawdata_list); 14975d5182caSJohn Johansen /* no refcount on inode rawdata */ 14985d5182caSJohn Johansen 14995d5182caSJohn Johansen return 0; 15005d5182caSJohn Johansen 15015d5182caSJohn Johansen fail: 15025d5182caSJohn Johansen remove_rawdata_dents(rawdata); 15035d5182caSJohn Johansen 15045d5182caSJohn Johansen return PTR_ERR(dent); 15055d5182caSJohn Johansen } 1506d61c57fdSJohn Johansen #endif /* CONFIG_SECURITY_APPARMOR_EXPORT_BINARY */ 1507d61c57fdSJohn Johansen 15085d5182caSJohn Johansen 15090d259f04SJohn Johansen /** fns to setup dynamic per profile/namespace files **/ 1510c97204baSJohn Johansen 1511564423bfSYang Li /* 1512c97204baSJohn Johansen * 1513c97204baSJohn Johansen * Requires: @profile->ns->lock held 1514c97204baSJohn Johansen */ 1515c97204baSJohn Johansen void __aafs_profile_rmdir(struct aa_profile *profile) 15160d259f04SJohn Johansen { 15170d259f04SJohn Johansen struct aa_profile *child; 15180d259f04SJohn Johansen int i; 15190d259f04SJohn Johansen 15200d259f04SJohn Johansen if (!profile) 15210d259f04SJohn Johansen return; 15220d259f04SJohn Johansen 15230d259f04SJohn Johansen list_for_each_entry(child, &profile->base.profiles, base.list) 1524c97204baSJohn Johansen __aafs_profile_rmdir(child); 15250d259f04SJohn Johansen 15260d259f04SJohn Johansen for (i = AAFS_PROF_SIZEOF - 1; i >= 0; --i) { 15278399588aSJohn Johansen struct aa_proxy *proxy; 15280d259f04SJohn Johansen if (!profile->dents[i]) 15290d259f04SJohn Johansen continue; 15300d259f04SJohn Johansen 15318399588aSJohn Johansen proxy = d_inode(profile->dents[i])->i_private; 1532c961ee5fSJohn Johansen aafs_remove(profile->dents[i]); 15338399588aSJohn Johansen aa_put_proxy(proxy); 15340d259f04SJohn Johansen profile->dents[i] = NULL; 15350d259f04SJohn Johansen } 15360d259f04SJohn Johansen } 15370d259f04SJohn Johansen 1538564423bfSYang Li /* 1539c97204baSJohn Johansen * 1540c97204baSJohn Johansen * Requires: @old->ns->lock held 1541c97204baSJohn Johansen */ 1542c97204baSJohn Johansen void __aafs_profile_migrate_dents(struct aa_profile *old, 15430d259f04SJohn Johansen struct aa_profile *new) 15440d259f04SJohn Johansen { 15450d259f04SJohn Johansen int i; 15460d259f04SJohn Johansen 1547cbf2d0e1SJohn Johansen AA_BUG(!old); 1548cbf2d0e1SJohn Johansen AA_BUG(!new); 1549cbf2d0e1SJohn Johansen AA_BUG(!mutex_is_locked(&profiles_ns(old)->lock)); 1550cbf2d0e1SJohn Johansen 15510d259f04SJohn Johansen for (i = 0; i < AAFS_PROF_SIZEOF; i++) { 15520d259f04SJohn Johansen new->dents[i] = old->dents[i]; 1553d671e890SJohn Johansen if (new->dents[i]) 1554078cd827SDeepa Dinamani new->dents[i]->d_inode->i_mtime = current_time(new->dents[i]->d_inode); 15550d259f04SJohn Johansen old->dents[i] = NULL; 15560d259f04SJohn Johansen } 15570d259f04SJohn Johansen } 15580d259f04SJohn Johansen 15590d259f04SJohn Johansen static struct dentry *create_profile_file(struct dentry *dir, const char *name, 15600d259f04SJohn Johansen struct aa_profile *profile, 15610d259f04SJohn Johansen const struct file_operations *fops) 15620d259f04SJohn Johansen { 1563637f688dSJohn Johansen struct aa_proxy *proxy = aa_get_proxy(profile->label.proxy); 15640d259f04SJohn Johansen struct dentry *dent; 15650d259f04SJohn Johansen 1566c961ee5fSJohn Johansen dent = aafs_create_file(name, S_IFREG | 0444, dir, proxy, fops); 15670d259f04SJohn Johansen if (IS_ERR(dent)) 15688399588aSJohn Johansen aa_put_proxy(proxy); 15690d259f04SJohn Johansen 15700d259f04SJohn Johansen return dent; 15710d259f04SJohn Johansen } 15720d259f04SJohn Johansen 1573d61c57fdSJohn Johansen #ifdef CONFIG_SECURITY_APPARMOR_EXPORT_BINARY 15745d5182caSJohn Johansen static int profile_depth(struct aa_profile *profile) 15755d5182caSJohn Johansen { 15765d5182caSJohn Johansen int depth = 0; 15775d5182caSJohn Johansen 15785d5182caSJohn Johansen rcu_read_lock(); 15795d5182caSJohn Johansen for (depth = 0; profile; profile = rcu_access_pointer(profile->parent)) 15805d5182caSJohn Johansen depth++; 15815d5182caSJohn Johansen rcu_read_unlock(); 15825d5182caSJohn Johansen 15835d5182caSJohn Johansen return depth; 15845d5182caSJohn Johansen } 15855d5182caSJohn Johansen 15861180b4c7SJohn Johansen static char *gen_symlink_name(int depth, const char *dirname, const char *fname) 15875d5182caSJohn Johansen { 15881180b4c7SJohn Johansen char *buffer, *s; 15895d5182caSJohn Johansen int error; 15901180b4c7SJohn Johansen int size = depth * 6 + strlen(dirname) + strlen(fname) + 11; 15911180b4c7SJohn Johansen 15921180b4c7SJohn Johansen s = buffer = kmalloc(size, GFP_KERNEL); 15931180b4c7SJohn Johansen if (!buffer) 15941180b4c7SJohn Johansen return ERR_PTR(-ENOMEM); 15955d5182caSJohn Johansen 15965d5182caSJohn Johansen for (; depth > 0; depth--) { 15971180b4c7SJohn Johansen strcpy(s, "../../"); 15981180b4c7SJohn Johansen s += 6; 15991180b4c7SJohn Johansen size -= 6; 16005d5182caSJohn Johansen } 16015d5182caSJohn Johansen 16021180b4c7SJohn Johansen error = snprintf(s, size, "raw_data/%s/%s", dirname, fname); 1603588558ebSColin Ian King if (error >= size || error < 0) { 1604588558ebSColin Ian King kfree(buffer); 16051180b4c7SJohn Johansen return ERR_PTR(-ENAMETOOLONG); 16065d5182caSJohn Johansen } 16075d5182caSJohn Johansen 16081180b4c7SJohn Johansen return buffer; 16095d5182caSJohn Johansen } 16105d5182caSJohn Johansen 16111180b4c7SJohn Johansen static void rawdata_link_cb(void *arg) 16121180b4c7SJohn Johansen { 16131180b4c7SJohn Johansen kfree(arg); 16141180b4c7SJohn Johansen } 16151180b4c7SJohn Johansen 16161180b4c7SJohn Johansen static const char *rawdata_get_link_base(struct dentry *dentry, 16171180b4c7SJohn Johansen struct inode *inode, 16181180b4c7SJohn Johansen struct delayed_call *done, 16191180b4c7SJohn Johansen const char *name) 16201180b4c7SJohn Johansen { 16211180b4c7SJohn Johansen struct aa_proxy *proxy = inode->i_private; 16221180b4c7SJohn Johansen struct aa_label *label; 16231180b4c7SJohn Johansen struct aa_profile *profile; 16241180b4c7SJohn Johansen char *target; 16251180b4c7SJohn Johansen int depth; 16261180b4c7SJohn Johansen 16271180b4c7SJohn Johansen if (!dentry) 16281180b4c7SJohn Johansen return ERR_PTR(-ECHILD); 16291180b4c7SJohn Johansen 16301180b4c7SJohn Johansen label = aa_get_label_rcu(&proxy->label); 16311180b4c7SJohn Johansen profile = labels_profile(label); 16321180b4c7SJohn Johansen depth = profile_depth(profile); 16331180b4c7SJohn Johansen target = gen_symlink_name(depth, profile->rawdata->name, name); 16341180b4c7SJohn Johansen aa_put_label(label); 16351180b4c7SJohn Johansen 16361180b4c7SJohn Johansen if (IS_ERR(target)) 16371180b4c7SJohn Johansen return target; 16381180b4c7SJohn Johansen 16391180b4c7SJohn Johansen set_delayed_call(done, rawdata_link_cb, target); 16401180b4c7SJohn Johansen 16411180b4c7SJohn Johansen return target; 16421180b4c7SJohn Johansen } 16431180b4c7SJohn Johansen 16441180b4c7SJohn Johansen static const char *rawdata_get_link_sha1(struct dentry *dentry, 16451180b4c7SJohn Johansen struct inode *inode, 16461180b4c7SJohn Johansen struct delayed_call *done) 16471180b4c7SJohn Johansen { 16481180b4c7SJohn Johansen return rawdata_get_link_base(dentry, inode, done, "sha1"); 16491180b4c7SJohn Johansen } 16501180b4c7SJohn Johansen 16511180b4c7SJohn Johansen static const char *rawdata_get_link_abi(struct dentry *dentry, 16521180b4c7SJohn Johansen struct inode *inode, 16531180b4c7SJohn Johansen struct delayed_call *done) 16541180b4c7SJohn Johansen { 16551180b4c7SJohn Johansen return rawdata_get_link_base(dentry, inode, done, "abi"); 16561180b4c7SJohn Johansen } 16571180b4c7SJohn Johansen 16581180b4c7SJohn Johansen static const char *rawdata_get_link_data(struct dentry *dentry, 16591180b4c7SJohn Johansen struct inode *inode, 16601180b4c7SJohn Johansen struct delayed_call *done) 16611180b4c7SJohn Johansen { 16621180b4c7SJohn Johansen return rawdata_get_link_base(dentry, inode, done, "raw_data"); 16631180b4c7SJohn Johansen } 16641180b4c7SJohn Johansen 16651180b4c7SJohn Johansen static const struct inode_operations rawdata_link_sha1_iops = { 16661180b4c7SJohn Johansen .get_link = rawdata_get_link_sha1, 16671180b4c7SJohn Johansen }; 16681180b4c7SJohn Johansen 16691180b4c7SJohn Johansen static const struct inode_operations rawdata_link_abi_iops = { 16701180b4c7SJohn Johansen .get_link = rawdata_get_link_abi, 16711180b4c7SJohn Johansen }; 16721180b4c7SJohn Johansen static const struct inode_operations rawdata_link_data_iops = { 16731180b4c7SJohn Johansen .get_link = rawdata_get_link_data, 16741180b4c7SJohn Johansen }; 1675d61c57fdSJohn Johansen #endif /* CONFIG_SECURITY_APPARMOR_EXPORT_BINARY */ 16761180b4c7SJohn Johansen 16775d5182caSJohn Johansen /* 16785d5182caSJohn Johansen * Requires: @profile->ns->lock held 16795d5182caSJohn Johansen */ 1680c97204baSJohn Johansen int __aafs_profile_mkdir(struct aa_profile *profile, struct dentry *parent) 16810d259f04SJohn Johansen { 16820d259f04SJohn Johansen struct aa_profile *child; 16830d259f04SJohn Johansen struct dentry *dent = NULL, *dir; 16840d259f04SJohn Johansen int error; 16850d259f04SJohn Johansen 1686cbf2d0e1SJohn Johansen AA_BUG(!profile); 1687cbf2d0e1SJohn Johansen AA_BUG(!mutex_is_locked(&profiles_ns(profile)->lock)); 1688cbf2d0e1SJohn Johansen 16890d259f04SJohn Johansen if (!parent) { 16900d259f04SJohn Johansen struct aa_profile *p; 16910d259f04SJohn Johansen p = aa_deref_parent(profile); 16920d259f04SJohn Johansen dent = prof_dir(p); 16930d259f04SJohn Johansen /* adding to parent that previously didn't have children */ 1694c961ee5fSJohn Johansen dent = aafs_create_dir("profiles", dent); 16950d259f04SJohn Johansen if (IS_ERR(dent)) 16960d259f04SJohn Johansen goto fail; 16970d259f04SJohn Johansen prof_child_dir(p) = parent = dent; 16980d259f04SJohn Johansen } 16990d259f04SJohn Johansen 17000d259f04SJohn Johansen if (!profile->dirname) { 17010d259f04SJohn Johansen int len, id_len; 17020d259f04SJohn Johansen len = mangle_name(profile->base.name, NULL); 17030d259f04SJohn Johansen id_len = snprintf(NULL, 0, ".%ld", profile->ns->uniq_id); 17040d259f04SJohn Johansen 17050d259f04SJohn Johansen profile->dirname = kmalloc(len + id_len + 1, GFP_KERNEL); 1706ffac1de6SDan Carpenter if (!profile->dirname) { 1707ffac1de6SDan Carpenter error = -ENOMEM; 1708ffac1de6SDan Carpenter goto fail2; 1709ffac1de6SDan Carpenter } 17100d259f04SJohn Johansen 17110d259f04SJohn Johansen mangle_name(profile->base.name, profile->dirname); 17120d259f04SJohn Johansen sprintf(profile->dirname + len, ".%ld", profile->ns->uniq_id++); 17130d259f04SJohn Johansen } 17140d259f04SJohn Johansen 1715c961ee5fSJohn Johansen dent = aafs_create_dir(profile->dirname, parent); 17160d259f04SJohn Johansen if (IS_ERR(dent)) 17170d259f04SJohn Johansen goto fail; 17180d259f04SJohn Johansen prof_dir(profile) = dir = dent; 17190d259f04SJohn Johansen 172052b97de3SJohn Johansen dent = create_profile_file(dir, "name", profile, 172152b97de3SJohn Johansen &seq_profile_name_fops); 17220d259f04SJohn Johansen if (IS_ERR(dent)) 17230d259f04SJohn Johansen goto fail; 17240d259f04SJohn Johansen profile->dents[AAFS_PROF_NAME] = dent; 17250d259f04SJohn Johansen 172652b97de3SJohn Johansen dent = create_profile_file(dir, "mode", profile, 172752b97de3SJohn Johansen &seq_profile_mode_fops); 17280d259f04SJohn Johansen if (IS_ERR(dent)) 17290d259f04SJohn Johansen goto fail; 17300d259f04SJohn Johansen profile->dents[AAFS_PROF_MODE] = dent; 17310d259f04SJohn Johansen 1732556d0be7SJohn Johansen dent = create_profile_file(dir, "attach", profile, 173352b97de3SJohn Johansen &seq_profile_attach_fops); 1734556d0be7SJohn Johansen if (IS_ERR(dent)) 1735556d0be7SJohn Johansen goto fail; 1736556d0be7SJohn Johansen profile->dents[AAFS_PROF_ATTACH] = dent; 1737556d0be7SJohn Johansen 1738f8eb8a13SJohn Johansen if (profile->hash) { 1739f8eb8a13SJohn Johansen dent = create_profile_file(dir, "sha1", profile, 174052b97de3SJohn Johansen &seq_profile_hash_fops); 1741f8eb8a13SJohn Johansen if (IS_ERR(dent)) 1742f8eb8a13SJohn Johansen goto fail; 1743f8eb8a13SJohn Johansen profile->dents[AAFS_PROF_HASH] = dent; 1744f8eb8a13SJohn Johansen } 1745f8eb8a13SJohn Johansen 1746d61c57fdSJohn Johansen #ifdef CONFIG_SECURITY_APPARMOR_EXPORT_BINARY 17475ac8c355SJohn Johansen if (profile->rawdata) { 1748482e8050SJohn Johansen if (aa_g_hash_policy) { 1749a68d59ffSJohn Johansen dent = aafs_create("raw_sha1", S_IFLNK | 0444, dir, 1750a68d59ffSJohn Johansen profile->label.proxy, NULL, NULL, 17511180b4c7SJohn Johansen &rawdata_link_sha1_iops); 17525ac8c355SJohn Johansen if (IS_ERR(dent)) 17535ac8c355SJohn Johansen goto fail; 17541180b4c7SJohn Johansen aa_get_proxy(profile->label.proxy); 17555ac8c355SJohn Johansen profile->dents[AAFS_PROF_RAW_HASH] = dent; 1756482e8050SJohn Johansen } 1757a68d59ffSJohn Johansen dent = aafs_create("raw_abi", S_IFLNK | 0444, dir, 1758a68d59ffSJohn Johansen profile->label.proxy, NULL, NULL, 17591180b4c7SJohn Johansen &rawdata_link_abi_iops); 17605ac8c355SJohn Johansen if (IS_ERR(dent)) 17615ac8c355SJohn Johansen goto fail; 17621180b4c7SJohn Johansen aa_get_proxy(profile->label.proxy); 17635ac8c355SJohn Johansen profile->dents[AAFS_PROF_RAW_ABI] = dent; 17645ac8c355SJohn Johansen 1765a68d59ffSJohn Johansen dent = aafs_create("raw_data", S_IFLNK | 0444, dir, 1766a68d59ffSJohn Johansen profile->label.proxy, NULL, NULL, 17671180b4c7SJohn Johansen &rawdata_link_data_iops); 17685ac8c355SJohn Johansen if (IS_ERR(dent)) 17695ac8c355SJohn Johansen goto fail; 17701180b4c7SJohn Johansen aa_get_proxy(profile->label.proxy); 17715ac8c355SJohn Johansen profile->dents[AAFS_PROF_RAW_DATA] = dent; 17725ac8c355SJohn Johansen } 1773d61c57fdSJohn Johansen #endif /*CONFIG_SECURITY_APPARMOR_EXPORT_BINARY */ 17745ac8c355SJohn Johansen 17750d259f04SJohn Johansen list_for_each_entry(child, &profile->base.profiles, base.list) { 1776c97204baSJohn Johansen error = __aafs_profile_mkdir(child, prof_child_dir(profile)); 17770d259f04SJohn Johansen if (error) 17780d259f04SJohn Johansen goto fail2; 17790d259f04SJohn Johansen } 17800d259f04SJohn Johansen 17810d259f04SJohn Johansen return 0; 17820d259f04SJohn Johansen 17830d259f04SJohn Johansen fail: 17840d259f04SJohn Johansen error = PTR_ERR(dent); 17850d259f04SJohn Johansen 17860d259f04SJohn Johansen fail2: 1787c97204baSJohn Johansen __aafs_profile_rmdir(profile); 17880d259f04SJohn Johansen 17890d259f04SJohn Johansen return error; 17900d259f04SJohn Johansen } 17910d259f04SJohn Johansen 1792549c7297SChristian Brauner static int ns_mkdir_op(struct user_namespace *mnt_userns, struct inode *dir, 1793549c7297SChristian Brauner struct dentry *dentry, umode_t mode) 17944ae47f33SJohn Johansen { 17954ae47f33SJohn Johansen struct aa_ns *ns, *parent; 17964ae47f33SJohn Johansen /* TODO: improve permission check */ 1797637f688dSJohn Johansen struct aa_label *label; 1798637f688dSJohn Johansen int error; 1799637f688dSJohn Johansen 1800637f688dSJohn Johansen label = begin_current_label_crit_section(); 1801637f688dSJohn Johansen error = aa_may_manage_policy(label, NULL, AA_MAY_LOAD_POLICY); 1802637f688dSJohn Johansen end_current_label_crit_section(label); 18034ae47f33SJohn Johansen if (error) 18044ae47f33SJohn Johansen return error; 18054ae47f33SJohn Johansen 18064ae47f33SJohn Johansen parent = aa_get_ns(dir->i_private); 18074ae47f33SJohn Johansen AA_BUG(d_inode(ns_subns_dir(parent)) != dir); 18084ae47f33SJohn Johansen 18094ae47f33SJohn Johansen /* we have to unlock and then relock to get locking order right 18104ae47f33SJohn Johansen * for pin_fs 18114ae47f33SJohn Johansen */ 18124ae47f33SJohn Johansen inode_unlock(dir); 18134ae47f33SJohn Johansen error = simple_pin_fs(&aafs_ops, &aafs_mnt, &aafs_count); 1814feb3c766SJohn Johansen mutex_lock_nested(&parent->lock, parent->level); 18154ae47f33SJohn Johansen inode_lock_nested(dir, I_MUTEX_PARENT); 18164ae47f33SJohn Johansen if (error) 18174ae47f33SJohn Johansen goto out; 18184ae47f33SJohn Johansen 18194ae47f33SJohn Johansen error = __aafs_setup_d_inode(dir, dentry, mode | S_IFDIR, NULL, 18204ae47f33SJohn Johansen NULL, NULL, NULL); 18214ae47f33SJohn Johansen if (error) 18224ae47f33SJohn Johansen goto out_pin; 18234ae47f33SJohn Johansen 18244ae47f33SJohn Johansen ns = __aa_find_or_create_ns(parent, READ_ONCE(dentry->d_name.name), 18254ae47f33SJohn Johansen dentry); 18264ae47f33SJohn Johansen if (IS_ERR(ns)) { 18274ae47f33SJohn Johansen error = PTR_ERR(ns); 18284ae47f33SJohn Johansen ns = NULL; 18294ae47f33SJohn Johansen } 18304ae47f33SJohn Johansen 18314ae47f33SJohn Johansen aa_put_ns(ns); /* list ref remains */ 18324ae47f33SJohn Johansen out_pin: 18334ae47f33SJohn Johansen if (error) 18344ae47f33SJohn Johansen simple_release_fs(&aafs_mnt, &aafs_count); 18354ae47f33SJohn Johansen out: 18364ae47f33SJohn Johansen mutex_unlock(&parent->lock); 18374ae47f33SJohn Johansen aa_put_ns(parent); 18384ae47f33SJohn Johansen 18394ae47f33SJohn Johansen return error; 18404ae47f33SJohn Johansen } 18414ae47f33SJohn Johansen 18424ae47f33SJohn Johansen static int ns_rmdir_op(struct inode *dir, struct dentry *dentry) 18434ae47f33SJohn Johansen { 18444ae47f33SJohn Johansen struct aa_ns *ns, *parent; 18454ae47f33SJohn Johansen /* TODO: improve permission check */ 1846637f688dSJohn Johansen struct aa_label *label; 1847637f688dSJohn Johansen int error; 1848637f688dSJohn Johansen 1849637f688dSJohn Johansen label = begin_current_label_crit_section(); 1850637f688dSJohn Johansen error = aa_may_manage_policy(label, NULL, AA_MAY_LOAD_POLICY); 1851637f688dSJohn Johansen end_current_label_crit_section(label); 18524ae47f33SJohn Johansen if (error) 18534ae47f33SJohn Johansen return error; 18544ae47f33SJohn Johansen 18554ae47f33SJohn Johansen parent = aa_get_ns(dir->i_private); 18564ae47f33SJohn Johansen /* rmdir calls the generic securityfs functions to remove files 18574ae47f33SJohn Johansen * from the apparmor dir. It is up to the apparmor ns locking 18584ae47f33SJohn Johansen * to avoid races. 18594ae47f33SJohn Johansen */ 18604ae47f33SJohn Johansen inode_unlock(dir); 18614ae47f33SJohn Johansen inode_unlock(dentry->d_inode); 18624ae47f33SJohn Johansen 1863feb3c766SJohn Johansen mutex_lock_nested(&parent->lock, parent->level); 18644ae47f33SJohn Johansen ns = aa_get_ns(__aa_findn_ns(&parent->sub_ns, dentry->d_name.name, 18654ae47f33SJohn Johansen dentry->d_name.len)); 18664ae47f33SJohn Johansen if (!ns) { 18674ae47f33SJohn Johansen error = -ENOENT; 18684ae47f33SJohn Johansen goto out; 18694ae47f33SJohn Johansen } 18704ae47f33SJohn Johansen AA_BUG(ns_dir(ns) != dentry); 18714ae47f33SJohn Johansen 18724ae47f33SJohn Johansen __aa_remove_ns(ns); 18734ae47f33SJohn Johansen aa_put_ns(ns); 18744ae47f33SJohn Johansen 18754ae47f33SJohn Johansen out: 18764ae47f33SJohn Johansen mutex_unlock(&parent->lock); 18774ae47f33SJohn Johansen inode_lock_nested(dir, I_MUTEX_PARENT); 18784ae47f33SJohn Johansen inode_lock(dentry->d_inode); 18794ae47f33SJohn Johansen aa_put_ns(parent); 18804ae47f33SJohn Johansen 18814ae47f33SJohn Johansen return error; 18824ae47f33SJohn Johansen } 18834ae47f33SJohn Johansen 18844ae47f33SJohn Johansen static const struct inode_operations ns_dir_inode_operations = { 18854ae47f33SJohn Johansen .lookup = simple_lookup, 18864ae47f33SJohn Johansen .mkdir = ns_mkdir_op, 18874ae47f33SJohn Johansen .rmdir = ns_rmdir_op, 18884ae47f33SJohn Johansen }; 18894ae47f33SJohn Johansen 18905d5182caSJohn Johansen static void __aa_fs_list_remove_rawdata(struct aa_ns *ns) 18915d5182caSJohn Johansen { 18925d5182caSJohn Johansen struct aa_loaddata *ent, *tmp; 18935d5182caSJohn Johansen 18945d5182caSJohn Johansen AA_BUG(!mutex_is_locked(&ns->lock)); 18955d5182caSJohn Johansen 18965d5182caSJohn Johansen list_for_each_entry_safe(ent, tmp, &ns->rawdata_list, list) 18975d5182caSJohn Johansen __aa_fs_remove_rawdata(ent); 18985d5182caSJohn Johansen } 18995d5182caSJohn Johansen 1900564423bfSYang Li /* 1901c97204baSJohn Johansen * 1902c97204baSJohn Johansen * Requires: @ns->lock held 1903c97204baSJohn Johansen */ 1904c97204baSJohn Johansen void __aafs_ns_rmdir(struct aa_ns *ns) 19050d259f04SJohn Johansen { 190698849dffSJohn Johansen struct aa_ns *sub; 19070d259f04SJohn Johansen struct aa_profile *child; 19080d259f04SJohn Johansen int i; 19090d259f04SJohn Johansen 19100d259f04SJohn Johansen if (!ns) 19110d259f04SJohn Johansen return; 1912cbf2d0e1SJohn Johansen AA_BUG(!mutex_is_locked(&ns->lock)); 19130d259f04SJohn Johansen 19140d259f04SJohn Johansen list_for_each_entry(child, &ns->base.profiles, base.list) 1915c97204baSJohn Johansen __aafs_profile_rmdir(child); 19160d259f04SJohn Johansen 19170d259f04SJohn Johansen list_for_each_entry(sub, &ns->sub_ns, base.list) { 1918feb3c766SJohn Johansen mutex_lock_nested(&sub->lock, sub->level); 1919c97204baSJohn Johansen __aafs_ns_rmdir(sub); 19200d259f04SJohn Johansen mutex_unlock(&sub->lock); 19210d259f04SJohn Johansen } 19220d259f04SJohn Johansen 19235d5182caSJohn Johansen __aa_fs_list_remove_rawdata(ns); 19245d5182caSJohn Johansen 1925b7fd2c03SJohn Johansen if (ns_subns_dir(ns)) { 1926b7fd2c03SJohn Johansen sub = d_inode(ns_subns_dir(ns))->i_private; 1927b7fd2c03SJohn Johansen aa_put_ns(sub); 1928b7fd2c03SJohn Johansen } 1929b7fd2c03SJohn Johansen if (ns_subload(ns)) { 1930b7fd2c03SJohn Johansen sub = d_inode(ns_subload(ns))->i_private; 1931b7fd2c03SJohn Johansen aa_put_ns(sub); 1932b7fd2c03SJohn Johansen } 1933b7fd2c03SJohn Johansen if (ns_subreplace(ns)) { 1934b7fd2c03SJohn Johansen sub = d_inode(ns_subreplace(ns))->i_private; 1935b7fd2c03SJohn Johansen aa_put_ns(sub); 1936b7fd2c03SJohn Johansen } 1937b7fd2c03SJohn Johansen if (ns_subremove(ns)) { 1938b7fd2c03SJohn Johansen sub = d_inode(ns_subremove(ns))->i_private; 1939b7fd2c03SJohn Johansen aa_put_ns(sub); 1940b7fd2c03SJohn Johansen } 1941d9bf2c26SJohn Johansen if (ns_subrevision(ns)) { 1942d9bf2c26SJohn Johansen sub = d_inode(ns_subrevision(ns))->i_private; 1943d9bf2c26SJohn Johansen aa_put_ns(sub); 1944d9bf2c26SJohn Johansen } 1945b7fd2c03SJohn Johansen 19460d259f04SJohn Johansen for (i = AAFS_NS_SIZEOF - 1; i >= 0; --i) { 1947c961ee5fSJohn Johansen aafs_remove(ns->dents[i]); 19480d259f04SJohn Johansen ns->dents[i] = NULL; 19490d259f04SJohn Johansen } 19500d259f04SJohn Johansen } 19510d259f04SJohn Johansen 1952b7fd2c03SJohn Johansen /* assumes cleanup in caller */ 1953c97204baSJohn Johansen static int __aafs_ns_mkdir_entries(struct aa_ns *ns, struct dentry *dir) 1954b7fd2c03SJohn Johansen { 1955b7fd2c03SJohn Johansen struct dentry *dent; 1956b7fd2c03SJohn Johansen 1957b7fd2c03SJohn Johansen AA_BUG(!ns); 1958b7fd2c03SJohn Johansen AA_BUG(!dir); 1959b7fd2c03SJohn Johansen 1960c961ee5fSJohn Johansen dent = aafs_create_dir("profiles", dir); 1961b7fd2c03SJohn Johansen if (IS_ERR(dent)) 1962b7fd2c03SJohn Johansen return PTR_ERR(dent); 1963b7fd2c03SJohn Johansen ns_subprofs_dir(ns) = dent; 1964b7fd2c03SJohn Johansen 1965c961ee5fSJohn Johansen dent = aafs_create_dir("raw_data", dir); 1966b7fd2c03SJohn Johansen if (IS_ERR(dent)) 1967b7fd2c03SJohn Johansen return PTR_ERR(dent); 1968b7fd2c03SJohn Johansen ns_subdata_dir(ns) = dent; 1969b7fd2c03SJohn Johansen 1970d9bf2c26SJohn Johansen dent = aafs_create_file("revision", 0444, dir, ns, 1971d9bf2c26SJohn Johansen &aa_fs_ns_revision_fops); 1972d9bf2c26SJohn Johansen if (IS_ERR(dent)) 1973d9bf2c26SJohn Johansen return PTR_ERR(dent); 1974d9bf2c26SJohn Johansen aa_get_ns(ns); 1975d9bf2c26SJohn Johansen ns_subrevision(ns) = dent; 1976d9bf2c26SJohn Johansen 1977c961ee5fSJohn Johansen dent = aafs_create_file(".load", 0640, dir, ns, 1978b7fd2c03SJohn Johansen &aa_fs_profile_load); 1979b7fd2c03SJohn Johansen if (IS_ERR(dent)) 1980b7fd2c03SJohn Johansen return PTR_ERR(dent); 1981b7fd2c03SJohn Johansen aa_get_ns(ns); 1982b7fd2c03SJohn Johansen ns_subload(ns) = dent; 1983b7fd2c03SJohn Johansen 1984c961ee5fSJohn Johansen dent = aafs_create_file(".replace", 0640, dir, ns, 1985b7fd2c03SJohn Johansen &aa_fs_profile_replace); 1986b7fd2c03SJohn Johansen if (IS_ERR(dent)) 1987b7fd2c03SJohn Johansen return PTR_ERR(dent); 1988b7fd2c03SJohn Johansen aa_get_ns(ns); 1989b7fd2c03SJohn Johansen ns_subreplace(ns) = dent; 1990b7fd2c03SJohn Johansen 1991c961ee5fSJohn Johansen dent = aafs_create_file(".remove", 0640, dir, ns, 1992b7fd2c03SJohn Johansen &aa_fs_profile_remove); 1993b7fd2c03SJohn Johansen if (IS_ERR(dent)) 1994b7fd2c03SJohn Johansen return PTR_ERR(dent); 1995b7fd2c03SJohn Johansen aa_get_ns(ns); 1996b7fd2c03SJohn Johansen ns_subremove(ns) = dent; 1997b7fd2c03SJohn Johansen 19984ae47f33SJohn Johansen /* use create_dentry so we can supply private data */ 19994ae47f33SJohn Johansen dent = aafs_create("namespaces", S_IFDIR | 0755, dir, ns, NULL, NULL, 20004ae47f33SJohn Johansen &ns_dir_inode_operations); 2001b7fd2c03SJohn Johansen if (IS_ERR(dent)) 2002b7fd2c03SJohn Johansen return PTR_ERR(dent); 2003b7fd2c03SJohn Johansen aa_get_ns(ns); 2004b7fd2c03SJohn Johansen ns_subns_dir(ns) = dent; 2005b7fd2c03SJohn Johansen 2006b7fd2c03SJohn Johansen return 0; 2007b7fd2c03SJohn Johansen } 2008b7fd2c03SJohn Johansen 2009c97204baSJohn Johansen /* 2010c97204baSJohn Johansen * Requires: @ns->lock held 2011c97204baSJohn Johansen */ 201298407f0aSJohn Johansen int __aafs_ns_mkdir(struct aa_ns *ns, struct dentry *parent, const char *name, 201398407f0aSJohn Johansen struct dentry *dent) 20140d259f04SJohn Johansen { 201598849dffSJohn Johansen struct aa_ns *sub; 20160d259f04SJohn Johansen struct aa_profile *child; 201798407f0aSJohn Johansen struct dentry *dir; 20180d259f04SJohn Johansen int error; 20190d259f04SJohn Johansen 2020b7fd2c03SJohn Johansen AA_BUG(!ns); 2021b7fd2c03SJohn Johansen AA_BUG(!parent); 2022b7fd2c03SJohn Johansen AA_BUG(!mutex_is_locked(&ns->lock)); 2023b7fd2c03SJohn Johansen 20240d259f04SJohn Johansen if (!name) 20250d259f04SJohn Johansen name = ns->base.name; 20260d259f04SJohn Johansen 2027c961ee5fSJohn Johansen if (!dent) { 2028b7fd2c03SJohn Johansen /* create ns dir if it doesn't already exist */ 2029c961ee5fSJohn Johansen dent = aafs_create_dir(name, parent); 20300d259f04SJohn Johansen if (IS_ERR(dent)) 20310d259f04SJohn Johansen goto fail; 2032c961ee5fSJohn Johansen } else 2033c961ee5fSJohn Johansen dget(dent); 20340d259f04SJohn Johansen ns_dir(ns) = dir = dent; 2035c97204baSJohn Johansen error = __aafs_ns_mkdir_entries(ns, dir); 2036b7fd2c03SJohn Johansen if (error) 2037b7fd2c03SJohn Johansen goto fail2; 20380d259f04SJohn Johansen 2039b7fd2c03SJohn Johansen /* profiles */ 20400d259f04SJohn Johansen list_for_each_entry(child, &ns->base.profiles, base.list) { 2041c97204baSJohn Johansen error = __aafs_profile_mkdir(child, ns_subprofs_dir(ns)); 20420d259f04SJohn Johansen if (error) 20430d259f04SJohn Johansen goto fail2; 20440d259f04SJohn Johansen } 20450d259f04SJohn Johansen 2046b7fd2c03SJohn Johansen /* subnamespaces */ 20470d259f04SJohn Johansen list_for_each_entry(sub, &ns->sub_ns, base.list) { 2048feb3c766SJohn Johansen mutex_lock_nested(&sub->lock, sub->level); 204998407f0aSJohn Johansen error = __aafs_ns_mkdir(sub, ns_subns_dir(ns), NULL, NULL); 20500d259f04SJohn Johansen mutex_unlock(&sub->lock); 20510d259f04SJohn Johansen if (error) 20520d259f04SJohn Johansen goto fail2; 20530d259f04SJohn Johansen } 20540d259f04SJohn Johansen 20550d259f04SJohn Johansen return 0; 20560d259f04SJohn Johansen 20570d259f04SJohn Johansen fail: 20580d259f04SJohn Johansen error = PTR_ERR(dent); 20590d259f04SJohn Johansen 20600d259f04SJohn Johansen fail2: 2061c97204baSJohn Johansen __aafs_ns_rmdir(ns); 20620d259f04SJohn Johansen 20630d259f04SJohn Johansen return error; 20640d259f04SJohn Johansen } 20650d259f04SJohn Johansen 206629b3822fSJohn Johansen /** 206798849dffSJohn Johansen * __next_ns - find the next namespace to list 206829b3822fSJohn Johansen * @root: root namespace to stop search at (NOT NULL) 206929b3822fSJohn Johansen * @ns: current ns position (NOT NULL) 207029b3822fSJohn Johansen * 207129b3822fSJohn Johansen * Find the next namespace from @ns under @root and handle all locking needed 207229b3822fSJohn Johansen * while switching current namespace. 207329b3822fSJohn Johansen * 207429b3822fSJohn Johansen * Returns: next namespace or NULL if at last namespace under @root 207529b3822fSJohn Johansen * Requires: ns->parent->lock to be held 207629b3822fSJohn Johansen * NOTE: will not unlock root->lock 207729b3822fSJohn Johansen */ 207898849dffSJohn Johansen static struct aa_ns *__next_ns(struct aa_ns *root, struct aa_ns *ns) 207929b3822fSJohn Johansen { 208098849dffSJohn Johansen struct aa_ns *parent, *next; 208129b3822fSJohn Johansen 2082cbf2d0e1SJohn Johansen AA_BUG(!root); 2083cbf2d0e1SJohn Johansen AA_BUG(!ns); 2084cbf2d0e1SJohn Johansen AA_BUG(ns != root && !mutex_is_locked(&ns->parent->lock)); 2085cbf2d0e1SJohn Johansen 208629b3822fSJohn Johansen /* is next namespace a child */ 208729b3822fSJohn Johansen if (!list_empty(&ns->sub_ns)) { 208829b3822fSJohn Johansen next = list_first_entry(&ns->sub_ns, typeof(*ns), base.list); 2089feb3c766SJohn Johansen mutex_lock_nested(&next->lock, next->level); 209029b3822fSJohn Johansen return next; 209129b3822fSJohn Johansen } 209229b3822fSJohn Johansen 209329b3822fSJohn Johansen /* check if the next ns is a sibling, parent, gp, .. */ 209429b3822fSJohn Johansen parent = ns->parent; 2095ed2c7da3SJohn Johansen while (ns != root) { 209629b3822fSJohn Johansen mutex_unlock(&ns->lock); 209738dbd7d8SGeliang Tang next = list_next_entry(ns, base.list); 209829b3822fSJohn Johansen if (!list_entry_is_head(next, &parent->sub_ns, base.list)) { 2099feb3c766SJohn Johansen mutex_lock_nested(&next->lock, next->level); 210029b3822fSJohn Johansen return next; 210129b3822fSJohn Johansen } 210229b3822fSJohn Johansen ns = parent; 210329b3822fSJohn Johansen parent = parent->parent; 210429b3822fSJohn Johansen } 210529b3822fSJohn Johansen 210629b3822fSJohn Johansen return NULL; 210729b3822fSJohn Johansen } 210829b3822fSJohn Johansen 210929b3822fSJohn Johansen /** 211029b3822fSJohn Johansen * __first_profile - find the first profile in a namespace 211129b3822fSJohn Johansen * @root: namespace that is root of profiles being displayed (NOT NULL) 211229b3822fSJohn Johansen * @ns: namespace to start in (NOT NULL) 211329b3822fSJohn Johansen * 211429b3822fSJohn Johansen * Returns: unrefcounted profile or NULL if no profile 211529b3822fSJohn Johansen * Requires: profile->ns.lock to be held 211629b3822fSJohn Johansen */ 211798849dffSJohn Johansen static struct aa_profile *__first_profile(struct aa_ns *root, 211898849dffSJohn Johansen struct aa_ns *ns) 211929b3822fSJohn Johansen { 2120cbf2d0e1SJohn Johansen AA_BUG(!root); 2121cbf2d0e1SJohn Johansen AA_BUG(ns && !mutex_is_locked(&ns->lock)); 2122cbf2d0e1SJohn Johansen 212398849dffSJohn Johansen for (; ns; ns = __next_ns(root, ns)) { 212429b3822fSJohn Johansen if (!list_empty(&ns->base.profiles)) 212529b3822fSJohn Johansen return list_first_entry(&ns->base.profiles, 212629b3822fSJohn Johansen struct aa_profile, base.list); 212729b3822fSJohn Johansen } 212829b3822fSJohn Johansen return NULL; 212929b3822fSJohn Johansen } 213029b3822fSJohn Johansen 213129b3822fSJohn Johansen /** 213229b3822fSJohn Johansen * __next_profile - step to the next profile in a profile tree 2133aa4ceed7SChenXiaoSong * @p: current profile in tree (NOT NULL) 213429b3822fSJohn Johansen * 213529b3822fSJohn Johansen * Perform a depth first traversal on the profile tree in a namespace 213629b3822fSJohn Johansen * 213729b3822fSJohn Johansen * Returns: next profile or NULL if done 213829b3822fSJohn Johansen * Requires: profile->ns.lock to be held 213929b3822fSJohn Johansen */ 214029b3822fSJohn Johansen static struct aa_profile *__next_profile(struct aa_profile *p) 214129b3822fSJohn Johansen { 214229b3822fSJohn Johansen struct aa_profile *parent; 214398849dffSJohn Johansen struct aa_ns *ns = p->ns; 214429b3822fSJohn Johansen 2145cbf2d0e1SJohn Johansen AA_BUG(!mutex_is_locked(&profiles_ns(p)->lock)); 2146cbf2d0e1SJohn Johansen 214729b3822fSJohn Johansen /* is next profile a child */ 214829b3822fSJohn Johansen if (!list_empty(&p->base.profiles)) 214929b3822fSJohn Johansen return list_first_entry(&p->base.profiles, typeof(*p), 215029b3822fSJohn Johansen base.list); 215129b3822fSJohn Johansen 215229b3822fSJohn Johansen /* is next profile a sibling, parent sibling, gp, sibling, .. */ 215329b3822fSJohn Johansen parent = rcu_dereference_protected(p->parent, 215429b3822fSJohn Johansen mutex_is_locked(&p->ns->lock)); 215529b3822fSJohn Johansen while (parent) { 215638dbd7d8SGeliang Tang p = list_next_entry(p, base.list); 215729b3822fSJohn Johansen if (!list_entry_is_head(p, &parent->base.profiles, base.list)) 215829b3822fSJohn Johansen return p; 215929b3822fSJohn Johansen p = parent; 216029b3822fSJohn Johansen parent = rcu_dereference_protected(parent->parent, 216129b3822fSJohn Johansen mutex_is_locked(&parent->ns->lock)); 216229b3822fSJohn Johansen } 216329b3822fSJohn Johansen 216429b3822fSJohn Johansen /* is next another profile in the namespace */ 216538dbd7d8SGeliang Tang p = list_next_entry(p, base.list); 216629b3822fSJohn Johansen if (!list_entry_is_head(p, &ns->base.profiles, base.list)) 216729b3822fSJohn Johansen return p; 216829b3822fSJohn Johansen 216929b3822fSJohn Johansen return NULL; 217029b3822fSJohn Johansen } 217129b3822fSJohn Johansen 217229b3822fSJohn Johansen /** 217329b3822fSJohn Johansen * next_profile - step to the next profile in where ever it may be 217429b3822fSJohn Johansen * @root: root namespace (NOT NULL) 217529b3822fSJohn Johansen * @profile: current profile (NOT NULL) 217629b3822fSJohn Johansen * 217729b3822fSJohn Johansen * Returns: next profile or NULL if there isn't one 217829b3822fSJohn Johansen */ 217998849dffSJohn Johansen static struct aa_profile *next_profile(struct aa_ns *root, 218029b3822fSJohn Johansen struct aa_profile *profile) 218129b3822fSJohn Johansen { 218229b3822fSJohn Johansen struct aa_profile *next = __next_profile(profile); 218329b3822fSJohn Johansen if (next) 218429b3822fSJohn Johansen return next; 218529b3822fSJohn Johansen 218629b3822fSJohn Johansen /* finished all profiles in namespace move to next namespace */ 218798849dffSJohn Johansen return __first_profile(root, __next_ns(root, profile->ns)); 218829b3822fSJohn Johansen } 218929b3822fSJohn Johansen 219029b3822fSJohn Johansen /** 219129b3822fSJohn Johansen * p_start - start a depth first traversal of profile tree 219229b3822fSJohn Johansen * @f: seq_file to fill 219329b3822fSJohn Johansen * @pos: current position 219429b3822fSJohn Johansen * 219529b3822fSJohn Johansen * Returns: first profile under current namespace or NULL if none found 219629b3822fSJohn Johansen * 219729b3822fSJohn Johansen * acquires first ns->lock 219829b3822fSJohn Johansen */ 219929b3822fSJohn Johansen static void *p_start(struct seq_file *f, loff_t *pos) 220029b3822fSJohn Johansen { 220129b3822fSJohn Johansen struct aa_profile *profile = NULL; 2202cf797c0eSJohn Johansen struct aa_ns *root = aa_get_current_ns(); 220329b3822fSJohn Johansen loff_t l = *pos; 2204cf797c0eSJohn Johansen f->private = root; 220529b3822fSJohn Johansen 220629b3822fSJohn Johansen /* find the first profile */ 2207feb3c766SJohn Johansen mutex_lock_nested(&root->lock, root->level); 220829b3822fSJohn Johansen profile = __first_profile(root, root); 220929b3822fSJohn Johansen 221029b3822fSJohn Johansen /* skip to position */ 221129b3822fSJohn Johansen for (; profile && l > 0; l--) 221229b3822fSJohn Johansen profile = next_profile(root, profile); 221329b3822fSJohn Johansen 221429b3822fSJohn Johansen return profile; 221529b3822fSJohn Johansen } 221629b3822fSJohn Johansen 221729b3822fSJohn Johansen /** 221829b3822fSJohn Johansen * p_next - read the next profile entry 221929b3822fSJohn Johansen * @f: seq_file to fill 222029b3822fSJohn Johansen * @p: profile previously returned 222129b3822fSJohn Johansen * @pos: current position 222229b3822fSJohn Johansen * 222329b3822fSJohn Johansen * Returns: next profile after @p or NULL if none 222429b3822fSJohn Johansen * 222529b3822fSJohn Johansen * may acquire/release locks in namespace tree as necessary 222629b3822fSJohn Johansen */ 222729b3822fSJohn Johansen static void *p_next(struct seq_file *f, void *p, loff_t *pos) 222829b3822fSJohn Johansen { 222929b3822fSJohn Johansen struct aa_profile *profile = p; 223098849dffSJohn Johansen struct aa_ns *ns = f->private; 223129b3822fSJohn Johansen (*pos)++; 223229b3822fSJohn Johansen 223329b3822fSJohn Johansen return next_profile(ns, profile); 223429b3822fSJohn Johansen } 223529b3822fSJohn Johansen 223629b3822fSJohn Johansen /** 223729b3822fSJohn Johansen * p_stop - stop depth first traversal 223829b3822fSJohn Johansen * @f: seq_file we are filling 223929b3822fSJohn Johansen * @p: the last profile writen 224029b3822fSJohn Johansen * 224129b3822fSJohn Johansen * Release all locking done by p_start/p_next on namespace tree 224229b3822fSJohn Johansen */ 224329b3822fSJohn Johansen static void p_stop(struct seq_file *f, void *p) 224429b3822fSJohn Johansen { 224529b3822fSJohn Johansen struct aa_profile *profile = p; 224698849dffSJohn Johansen struct aa_ns *root = f->private, *ns; 224729b3822fSJohn Johansen 224829b3822fSJohn Johansen if (profile) { 224929b3822fSJohn Johansen for (ns = profile->ns; ns && ns != root; ns = ns->parent) 225029b3822fSJohn Johansen mutex_unlock(&ns->lock); 225129b3822fSJohn Johansen } 225229b3822fSJohn Johansen mutex_unlock(&root->lock); 225398849dffSJohn Johansen aa_put_ns(root); 225429b3822fSJohn Johansen } 225529b3822fSJohn Johansen 225629b3822fSJohn Johansen /** 225729b3822fSJohn Johansen * seq_show_profile - show a profile entry 225829b3822fSJohn Johansen * @f: seq_file to file 225929b3822fSJohn Johansen * @p: current position (profile) (NOT NULL) 226029b3822fSJohn Johansen * 226129b3822fSJohn Johansen * Returns: error on failure 226229b3822fSJohn Johansen */ 226329b3822fSJohn Johansen static int seq_show_profile(struct seq_file *f, void *p) 226429b3822fSJohn Johansen { 226529b3822fSJohn Johansen struct aa_profile *profile = (struct aa_profile *)p; 226698849dffSJohn Johansen struct aa_ns *root = f->private; 226729b3822fSJohn Johansen 2268637f688dSJohn Johansen aa_label_seq_xprint(f, root, &profile->label, 2269637f688dSJohn Johansen FLAG_SHOW_MODE | FLAG_VIEW_SUBNS, GFP_KERNEL); 2270637f688dSJohn Johansen seq_putc(f, '\n'); 227129b3822fSJohn Johansen 227229b3822fSJohn Johansen return 0; 227329b3822fSJohn Johansen } 227429b3822fSJohn Johansen 2275c97204baSJohn Johansen static const struct seq_operations aa_sfs_profiles_op = { 227629b3822fSJohn Johansen .start = p_start, 227729b3822fSJohn Johansen .next = p_next, 227829b3822fSJohn Johansen .stop = p_stop, 227929b3822fSJohn Johansen .show = seq_show_profile, 228029b3822fSJohn Johansen }; 228129b3822fSJohn Johansen 228229b3822fSJohn Johansen static int profiles_open(struct inode *inode, struct file *file) 228329b3822fSJohn Johansen { 228492de220aSJohn Johansen if (!aa_current_policy_view_capable(NULL)) 22855ac8c355SJohn Johansen return -EACCES; 22865ac8c355SJohn Johansen 2287c97204baSJohn Johansen return seq_open(file, &aa_sfs_profiles_op); 228829b3822fSJohn Johansen } 228929b3822fSJohn Johansen 229029b3822fSJohn Johansen static int profiles_release(struct inode *inode, struct file *file) 229129b3822fSJohn Johansen { 229229b3822fSJohn Johansen return seq_release(inode, file); 229329b3822fSJohn Johansen } 229429b3822fSJohn Johansen 2295c97204baSJohn Johansen static const struct file_operations aa_sfs_profiles_fops = { 229629b3822fSJohn Johansen .open = profiles_open, 229729b3822fSJohn Johansen .read = seq_read, 229829b3822fSJohn Johansen .llseek = seq_lseek, 229929b3822fSJohn Johansen .release = profiles_release, 230029b3822fSJohn Johansen }; 230129b3822fSJohn Johansen 230229b3822fSJohn Johansen 23030d259f04SJohn Johansen /** Base file system setup **/ 2304c97204baSJohn Johansen static struct aa_sfs_entry aa_sfs_entry_file[] = { 2305c97204baSJohn Johansen AA_SFS_FILE_STRING("mask", 2306c97204baSJohn Johansen "create read write exec append mmap_exec link lock"), 2307a9bf8e9fSKees Cook { } 2308a9bf8e9fSKees Cook }; 2309a9bf8e9fSKees Cook 2310290f458aSJohn Johansen static struct aa_sfs_entry aa_sfs_entry_ptrace[] = { 2311290f458aSJohn Johansen AA_SFS_FILE_STRING("mask", "read trace"), 2312290f458aSJohn Johansen { } 2313290f458aSJohn Johansen }; 2314290f458aSJohn Johansen 2315cd1dbf76SJohn Johansen static struct aa_sfs_entry aa_sfs_entry_signal[] = { 2316cd1dbf76SJohn Johansen AA_SFS_FILE_STRING("mask", AA_SFS_SIG_MASK), 2317cd1dbf76SJohn Johansen { } 2318cd1dbf76SJohn Johansen }; 2319cd1dbf76SJohn Johansen 232073f488cdSJohn Johansen static struct aa_sfs_entry aa_sfs_entry_attach[] = { 232173f488cdSJohn Johansen AA_SFS_FILE_BOOLEAN("xattr", 1), 232273f488cdSJohn Johansen { } 232373f488cdSJohn Johansen }; 2324c97204baSJohn Johansen static struct aa_sfs_entry aa_sfs_entry_domain[] = { 2325c97204baSJohn Johansen AA_SFS_FILE_BOOLEAN("change_hat", 1), 2326c97204baSJohn Johansen AA_SFS_FILE_BOOLEAN("change_hatv", 1), 2327c97204baSJohn Johansen AA_SFS_FILE_BOOLEAN("change_onexec", 1), 2328c97204baSJohn Johansen AA_SFS_FILE_BOOLEAN("change_profile", 1), 23296c5fc8f1SJohn Johansen AA_SFS_FILE_BOOLEAN("stack", 1), 2330c97204baSJohn Johansen AA_SFS_FILE_BOOLEAN("fix_binfmt_elf_mmap", 1), 23319fcf78ccSJohn Johansen AA_SFS_FILE_BOOLEAN("post_nnp_subset", 1), 233221f60661SJohn Johansen AA_SFS_FILE_BOOLEAN("computed_longest_left", 1), 233373f488cdSJohn Johansen AA_SFS_DIR("attach_conditions", aa_sfs_entry_attach), 2334c97204baSJohn Johansen AA_SFS_FILE_STRING("version", "1.2"), 2335e74abcf3SKees Cook { } 2336e74abcf3SKees Cook }; 2337e74abcf3SKees Cook 2338c97204baSJohn Johansen static struct aa_sfs_entry aa_sfs_entry_versions[] = { 2339c97204baSJohn Johansen AA_SFS_FILE_BOOLEAN("v5", 1), 23405379a331SJohn Johansen AA_SFS_FILE_BOOLEAN("v6", 1), 23415379a331SJohn Johansen AA_SFS_FILE_BOOLEAN("v7", 1), 234256974a6fSJohn Johansen AA_SFS_FILE_BOOLEAN("v8", 1), 2343f567e7faSJohn Johansen AA_SFS_FILE_BOOLEAN("v9", 1), 2344474d6b75SJohn Johansen { } 2345474d6b75SJohn Johansen }; 2346474d6b75SJohn Johansen 2347c97204baSJohn Johansen static struct aa_sfs_entry aa_sfs_entry_policy[] = { 2348c97204baSJohn Johansen AA_SFS_DIR("versions", aa_sfs_entry_versions), 2349c97204baSJohn Johansen AA_SFS_FILE_BOOLEAN("set_load", 1), 23500df34a64SJohn Johansen /* number of out of band transitions supported */ 23510df34a64SJohn Johansen AA_SFS_FILE_U64("outofband", MAX_OOB_SUPPORTED), 23529d910a3bSJohn Johansen { } 23539d910a3bSJohn Johansen }; 23549d910a3bSJohn Johansen 23552ea3ffb7SJohn Johansen static struct aa_sfs_entry aa_sfs_entry_mount[] = { 23562ea3ffb7SJohn Johansen AA_SFS_FILE_STRING("mask", "mount umount pivot_root"), 23572ea3ffb7SJohn Johansen { } 23582ea3ffb7SJohn Johansen }; 23592ea3ffb7SJohn Johansen 236033f2eadaSJohn Johansen static struct aa_sfs_entry aa_sfs_entry_ns[] = { 236133f2eadaSJohn Johansen AA_SFS_FILE_BOOLEAN("profile", 1), 23622ea3ffb7SJohn Johansen AA_SFS_FILE_BOOLEAN("pivot_root", 0), 236333f2eadaSJohn Johansen { } 236433f2eadaSJohn Johansen }; 236533f2eadaSJohn Johansen 2366a83bd86eSJohn Johansen static struct aa_sfs_entry aa_sfs_entry_query_label[] = { 23674f3b3f2dSJohn Johansen AA_SFS_FILE_STRING("perms", "allow deny audit quiet"), 2368a83bd86eSJohn Johansen AA_SFS_FILE_BOOLEAN("data", 1), 23691dea3b41SJohn Johansen AA_SFS_FILE_BOOLEAN("multi_transaction", 1), 2370a83bd86eSJohn Johansen { } 2371a83bd86eSJohn Johansen }; 2372a83bd86eSJohn Johansen 2373a83bd86eSJohn Johansen static struct aa_sfs_entry aa_sfs_entry_query[] = { 2374a83bd86eSJohn Johansen AA_SFS_DIR("label", aa_sfs_entry_query_label), 2375a83bd86eSJohn Johansen { } 2376a83bd86eSJohn Johansen }; 2377c97204baSJohn Johansen static struct aa_sfs_entry aa_sfs_entry_features[] = { 2378c97204baSJohn Johansen AA_SFS_DIR("policy", aa_sfs_entry_policy), 2379c97204baSJohn Johansen AA_SFS_DIR("domain", aa_sfs_entry_domain), 2380c97204baSJohn Johansen AA_SFS_DIR("file", aa_sfs_entry_file), 238156974a6fSJohn Johansen AA_SFS_DIR("network_v8", aa_sfs_entry_network), 23822ea3ffb7SJohn Johansen AA_SFS_DIR("mount", aa_sfs_entry_mount), 238333f2eadaSJohn Johansen AA_SFS_DIR("namespaces", aa_sfs_entry_ns), 2384c97204baSJohn Johansen AA_SFS_FILE_U64("capability", VFS_CAP_FLAGS_MASK), 2385c97204baSJohn Johansen AA_SFS_DIR("rlimit", aa_sfs_entry_rlimit), 2386c97204baSJohn Johansen AA_SFS_DIR("caps", aa_sfs_entry_caps), 2387290f458aSJohn Johansen AA_SFS_DIR("ptrace", aa_sfs_entry_ptrace), 2388cd1dbf76SJohn Johansen AA_SFS_DIR("signal", aa_sfs_entry_signal), 2389a83bd86eSJohn Johansen AA_SFS_DIR("query", aa_sfs_entry_query), 2390e74abcf3SKees Cook { } 2391e74abcf3SKees Cook }; 2392e74abcf3SKees Cook 2393c97204baSJohn Johansen static struct aa_sfs_entry aa_sfs_entry_apparmor[] = { 2394bf81100fSJohn Johansen AA_SFS_FILE_FOPS(".access", 0666, &aa_sfs_access), 23956c5fc8f1SJohn Johansen AA_SFS_FILE_FOPS(".stacked", 0444, &seq_ns_stacked_fops), 23966c5fc8f1SJohn Johansen AA_SFS_FILE_FOPS(".ns_stacked", 0444, &seq_ns_nsstacked_fops), 2397bf81100fSJohn Johansen AA_SFS_FILE_FOPS(".ns_level", 0444, &seq_ns_level_fops), 2398bf81100fSJohn Johansen AA_SFS_FILE_FOPS(".ns_name", 0444, &seq_ns_name_fops), 2399bf81100fSJohn Johansen AA_SFS_FILE_FOPS("profiles", 0444, &aa_sfs_profiles_fops), 24002218d081SJon Tourville AA_SFS_FILE_FOPS("raw_data_compression_level_min", 0444, &seq_ns_compress_min_fops), 24012218d081SJon Tourville AA_SFS_FILE_FOPS("raw_data_compression_level_max", 0444, &seq_ns_compress_max_fops), 2402c97204baSJohn Johansen AA_SFS_DIR("features", aa_sfs_entry_features), 24039acd494bSKees Cook { } 24049acd494bSKees Cook }; 240563e2b423SJohn Johansen 2406c97204baSJohn Johansen static struct aa_sfs_entry aa_sfs_entry = 2407c97204baSJohn Johansen AA_SFS_DIR("apparmor", aa_sfs_entry_apparmor); 24089acd494bSKees Cook 24099acd494bSKees Cook /** 2410a481f4d9SJohn Johansen * entry_create_file - create a file entry in the apparmor securityfs 2411c97204baSJohn Johansen * @fs_file: aa_sfs_entry to build an entry for (NOT NULL) 24129acd494bSKees Cook * @parent: the parent dentry in the securityfs 24139acd494bSKees Cook * 2414a481f4d9SJohn Johansen * Use entry_remove_file to remove entries created with this fn. 24159acd494bSKees Cook */ 2416c97204baSJohn Johansen static int __init entry_create_file(struct aa_sfs_entry *fs_file, 24179acd494bSKees Cook struct dentry *parent) 241863e2b423SJohn Johansen { 24199acd494bSKees Cook int error = 0; 242063e2b423SJohn Johansen 24219acd494bSKees Cook fs_file->dentry = securityfs_create_file(fs_file->name, 24229acd494bSKees Cook S_IFREG | fs_file->mode, 24239acd494bSKees Cook parent, fs_file, 24249acd494bSKees Cook fs_file->file_ops); 24259acd494bSKees Cook if (IS_ERR(fs_file->dentry)) { 24269acd494bSKees Cook error = PTR_ERR(fs_file->dentry); 24279acd494bSKees Cook fs_file->dentry = NULL; 242863e2b423SJohn Johansen } 24299acd494bSKees Cook return error; 243063e2b423SJohn Johansen } 243163e2b423SJohn Johansen 2432c97204baSJohn Johansen static void __init entry_remove_dir(struct aa_sfs_entry *fs_dir); 243363e2b423SJohn Johansen /** 2434a481f4d9SJohn Johansen * entry_create_dir - recursively create a directory entry in the securityfs 2435c97204baSJohn Johansen * @fs_dir: aa_sfs_entry (and all child entries) to build (NOT NULL) 24369acd494bSKees Cook * @parent: the parent dentry in the securityfs 243763e2b423SJohn Johansen * 2438a481f4d9SJohn Johansen * Use entry_remove_dir to remove entries created with this fn. 243963e2b423SJohn Johansen */ 2440c97204baSJohn Johansen static int __init entry_create_dir(struct aa_sfs_entry *fs_dir, 24419acd494bSKees Cook struct dentry *parent) 244263e2b423SJohn Johansen { 2443c97204baSJohn Johansen struct aa_sfs_entry *fs_file; 24440d259f04SJohn Johansen struct dentry *dir; 24450d259f04SJohn Johansen int error; 244663e2b423SJohn Johansen 24470d259f04SJohn Johansen dir = securityfs_create_dir(fs_dir->name, parent); 24480d259f04SJohn Johansen if (IS_ERR(dir)) 24490d259f04SJohn Johansen return PTR_ERR(dir); 24500d259f04SJohn Johansen fs_dir->dentry = dir; 245163e2b423SJohn Johansen 24520d259f04SJohn Johansen for (fs_file = fs_dir->v.files; fs_file && fs_file->name; ++fs_file) { 2453c97204baSJohn Johansen if (fs_file->v_type == AA_SFS_TYPE_DIR) 2454a481f4d9SJohn Johansen error = entry_create_dir(fs_file, fs_dir->dentry); 24559acd494bSKees Cook else 2456a481f4d9SJohn Johansen error = entry_create_file(fs_file, fs_dir->dentry); 24579acd494bSKees Cook if (error) 24589acd494bSKees Cook goto failed; 24599acd494bSKees Cook } 24609acd494bSKees Cook 24619acd494bSKees Cook return 0; 24629acd494bSKees Cook 24639acd494bSKees Cook failed: 2464a481f4d9SJohn Johansen entry_remove_dir(fs_dir); 24650d259f04SJohn Johansen 24669acd494bSKees Cook return error; 24679acd494bSKees Cook } 24689acd494bSKees Cook 24699acd494bSKees Cook /** 2470c97204baSJohn Johansen * entry_remove_file - drop a single file entry in the apparmor securityfs 2471c97204baSJohn Johansen * @fs_file: aa_sfs_entry to detach from the securityfs (NOT NULL) 24729acd494bSKees Cook */ 2473c97204baSJohn Johansen static void __init entry_remove_file(struct aa_sfs_entry *fs_file) 24749acd494bSKees Cook { 24759acd494bSKees Cook if (!fs_file->dentry) 24769acd494bSKees Cook return; 24779acd494bSKees Cook 24789acd494bSKees Cook securityfs_remove(fs_file->dentry); 24799acd494bSKees Cook fs_file->dentry = NULL; 24809acd494bSKees Cook } 24819acd494bSKees Cook 24829acd494bSKees Cook /** 2483a481f4d9SJohn Johansen * entry_remove_dir - recursively drop a directory entry from the securityfs 2484c97204baSJohn Johansen * @fs_dir: aa_sfs_entry (and all child entries) to detach (NOT NULL) 24859acd494bSKees Cook */ 2486c97204baSJohn Johansen static void __init entry_remove_dir(struct aa_sfs_entry *fs_dir) 24879acd494bSKees Cook { 2488c97204baSJohn Johansen struct aa_sfs_entry *fs_file; 24899acd494bSKees Cook 24900d259f04SJohn Johansen for (fs_file = fs_dir->v.files; fs_file && fs_file->name; ++fs_file) { 2491c97204baSJohn Johansen if (fs_file->v_type == AA_SFS_TYPE_DIR) 2492a481f4d9SJohn Johansen entry_remove_dir(fs_file); 24939acd494bSKees Cook else 2494c97204baSJohn Johansen entry_remove_file(fs_file); 24959acd494bSKees Cook } 24969acd494bSKees Cook 2497c97204baSJohn Johansen entry_remove_file(fs_dir); 249863e2b423SJohn Johansen } 249963e2b423SJohn Johansen 250063e2b423SJohn Johansen /** 250163e2b423SJohn Johansen * aa_destroy_aafs - cleanup and free aafs 250263e2b423SJohn Johansen * 250363e2b423SJohn Johansen * releases dentries allocated by aa_create_aafs 250463e2b423SJohn Johansen */ 250563e2b423SJohn Johansen void __init aa_destroy_aafs(void) 250663e2b423SJohn Johansen { 2507c97204baSJohn Johansen entry_remove_dir(&aa_sfs_entry); 250863e2b423SJohn Johansen } 250963e2b423SJohn Johansen 2510a71ada30SJohn Johansen 2511a71ada30SJohn Johansen #define NULL_FILE_NAME ".null" 2512a71ada30SJohn Johansen struct path aa_null; 2513a71ada30SJohn Johansen 2514a71ada30SJohn Johansen static int aa_mk_null_file(struct dentry *parent) 2515a71ada30SJohn Johansen { 2516a71ada30SJohn Johansen struct vfsmount *mount = NULL; 2517a71ada30SJohn Johansen struct dentry *dentry; 2518a71ada30SJohn Johansen struct inode *inode; 2519a71ada30SJohn Johansen int count = 0; 2520a71ada30SJohn Johansen int error = simple_pin_fs(parent->d_sb->s_type, &mount, &count); 2521a71ada30SJohn Johansen 2522a71ada30SJohn Johansen if (error) 2523a71ada30SJohn Johansen return error; 2524a71ada30SJohn Johansen 2525a71ada30SJohn Johansen inode_lock(d_inode(parent)); 2526a71ada30SJohn Johansen dentry = lookup_one_len(NULL_FILE_NAME, parent, strlen(NULL_FILE_NAME)); 2527a71ada30SJohn Johansen if (IS_ERR(dentry)) { 2528a71ada30SJohn Johansen error = PTR_ERR(dentry); 2529a71ada30SJohn Johansen goto out; 2530a71ada30SJohn Johansen } 2531a71ada30SJohn Johansen inode = new_inode(parent->d_inode->i_sb); 2532a71ada30SJohn Johansen if (!inode) { 2533a71ada30SJohn Johansen error = -ENOMEM; 2534a71ada30SJohn Johansen goto out1; 2535a71ada30SJohn Johansen } 2536a71ada30SJohn Johansen 2537a71ada30SJohn Johansen inode->i_ino = get_next_ino(); 2538a71ada30SJohn Johansen inode->i_mode = S_IFCHR | S_IRUGO | S_IWUGO; 253924d0d03cSDeepa Dinamani inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode); 2540a71ada30SJohn Johansen init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO, 2541a71ada30SJohn Johansen MKDEV(MEM_MAJOR, 3)); 2542a71ada30SJohn Johansen d_instantiate(dentry, inode); 2543a71ada30SJohn Johansen aa_null.dentry = dget(dentry); 2544a71ada30SJohn Johansen aa_null.mnt = mntget(mount); 2545a71ada30SJohn Johansen 2546a71ada30SJohn Johansen error = 0; 2547a71ada30SJohn Johansen 2548a71ada30SJohn Johansen out1: 2549a71ada30SJohn Johansen dput(dentry); 2550a71ada30SJohn Johansen out: 2551a71ada30SJohn Johansen inode_unlock(d_inode(parent)); 2552a71ada30SJohn Johansen simple_release_fs(&mount, &count); 2553a71ada30SJohn Johansen return error; 2554a71ada30SJohn Johansen } 2555a71ada30SJohn Johansen 2556a481f4d9SJohn Johansen 2557a481f4d9SJohn Johansen 2558a481f4d9SJohn Johansen static const char *policy_get_link(struct dentry *dentry, 2559a481f4d9SJohn Johansen struct inode *inode, 2560a481f4d9SJohn Johansen struct delayed_call *done) 2561a481f4d9SJohn Johansen { 2562a481f4d9SJohn Johansen struct aa_ns *ns; 2563a481f4d9SJohn Johansen struct path path; 25641bc82070SAleksa Sarai int error; 2565a481f4d9SJohn Johansen 2566a481f4d9SJohn Johansen if (!dentry) 2567a481f4d9SJohn Johansen return ERR_PTR(-ECHILD); 25681bc82070SAleksa Sarai 2569a481f4d9SJohn Johansen ns = aa_get_current_ns(); 2570a481f4d9SJohn Johansen path.mnt = mntget(aafs_mnt); 2571a481f4d9SJohn Johansen path.dentry = dget(ns_dir(ns)); 25721bc82070SAleksa Sarai error = nd_jump_link(&path); 2573a481f4d9SJohn Johansen aa_put_ns(ns); 2574a481f4d9SJohn Johansen 25751bc82070SAleksa Sarai return ERR_PTR(error); 2576a481f4d9SJohn Johansen } 2577a481f4d9SJohn Johansen 2578a481f4d9SJohn Johansen static int policy_readlink(struct dentry *dentry, char __user *buffer, 2579a481f4d9SJohn Johansen int buflen) 2580a481f4d9SJohn Johansen { 2581a481f4d9SJohn Johansen char name[32]; 2582a481f4d9SJohn Johansen int res; 2583a481f4d9SJohn Johansen 2584a0781209SJohn Johansen res = snprintf(name, sizeof(name), "%s:[%lu]", AAFS_NAME, 2585a0781209SJohn Johansen d_inode(dentry)->i_ino); 2586a0781209SJohn Johansen if (res > 0 && res < sizeof(name)) 2587a481f4d9SJohn Johansen res = readlink_copy(buffer, buflen, name); 2588a0781209SJohn Johansen else 2589a0781209SJohn Johansen res = -ENOENT; 2590a481f4d9SJohn Johansen 2591a481f4d9SJohn Johansen return res; 2592a481f4d9SJohn Johansen } 2593a481f4d9SJohn Johansen 2594a481f4d9SJohn Johansen static const struct inode_operations policy_link_iops = { 2595a481f4d9SJohn Johansen .readlink = policy_readlink, 2596a481f4d9SJohn Johansen .get_link = policy_get_link, 2597a481f4d9SJohn Johansen }; 2598a481f4d9SJohn Johansen 2599a481f4d9SJohn Johansen 260063e2b423SJohn Johansen /** 260163e2b423SJohn Johansen * aa_create_aafs - create the apparmor security filesystem 260263e2b423SJohn Johansen * 260363e2b423SJohn Johansen * dentries created here are released by aa_destroy_aafs 260463e2b423SJohn Johansen * 260563e2b423SJohn Johansen * Returns: error on failure 260663e2b423SJohn Johansen */ 26073417d8d5SJames Morris static int __init aa_create_aafs(void) 260863e2b423SJohn Johansen { 2609b7fd2c03SJohn Johansen struct dentry *dent; 261063e2b423SJohn Johansen int error; 261163e2b423SJohn Johansen 261263e2b423SJohn Johansen if (!apparmor_initialized) 261363e2b423SJohn Johansen return 0; 261463e2b423SJohn Johansen 2615c97204baSJohn Johansen if (aa_sfs_entry.dentry) { 261663e2b423SJohn Johansen AA_ERROR("%s: AppArmor securityfs already exists\n", __func__); 261763e2b423SJohn Johansen return -EEXIST; 261863e2b423SJohn Johansen } 261963e2b423SJohn Johansen 2620a481f4d9SJohn Johansen /* setup apparmorfs used to virtualize policy/ */ 2621a481f4d9SJohn Johansen aafs_mnt = kern_mount(&aafs_ops); 2622a481f4d9SJohn Johansen if (IS_ERR(aafs_mnt)) 2623a481f4d9SJohn Johansen panic("can't set apparmorfs up\n"); 26241751e8a6SLinus Torvalds aafs_mnt->mnt_sb->s_flags &= ~SB_NOUSER; 2625a481f4d9SJohn Johansen 26269acd494bSKees Cook /* Populate fs tree. */ 2627c97204baSJohn Johansen error = entry_create_dir(&aa_sfs_entry, NULL); 262863e2b423SJohn Johansen if (error) 262963e2b423SJohn Johansen goto error; 263063e2b423SJohn Johansen 2631c97204baSJohn Johansen dent = securityfs_create_file(".load", 0666, aa_sfs_entry.dentry, 2632b7fd2c03SJohn Johansen NULL, &aa_fs_profile_load); 2633cf916000SJohn Johansen if (IS_ERR(dent)) 2634cf916000SJohn Johansen goto dent_error; 2635b7fd2c03SJohn Johansen ns_subload(root_ns) = dent; 2636b7fd2c03SJohn Johansen 2637c97204baSJohn Johansen dent = securityfs_create_file(".replace", 0666, aa_sfs_entry.dentry, 2638b7fd2c03SJohn Johansen NULL, &aa_fs_profile_replace); 2639cf916000SJohn Johansen if (IS_ERR(dent)) 2640cf916000SJohn Johansen goto dent_error; 2641b7fd2c03SJohn Johansen ns_subreplace(root_ns) = dent; 2642b7fd2c03SJohn Johansen 2643c97204baSJohn Johansen dent = securityfs_create_file(".remove", 0666, aa_sfs_entry.dentry, 2644b7fd2c03SJohn Johansen NULL, &aa_fs_profile_remove); 2645cf916000SJohn Johansen if (IS_ERR(dent)) 2646cf916000SJohn Johansen goto dent_error; 2647b7fd2c03SJohn Johansen ns_subremove(root_ns) = dent; 2648b7fd2c03SJohn Johansen 2649d9bf2c26SJohn Johansen dent = securityfs_create_file("revision", 0444, aa_sfs_entry.dentry, 2650d9bf2c26SJohn Johansen NULL, &aa_fs_ns_revision_fops); 2651cf916000SJohn Johansen if (IS_ERR(dent)) 2652cf916000SJohn Johansen goto dent_error; 2653d9bf2c26SJohn Johansen ns_subrevision(root_ns) = dent; 2654d9bf2c26SJohn Johansen 2655d9bf2c26SJohn Johansen /* policy tree referenced by magic policy symlink */ 2656feb3c766SJohn Johansen mutex_lock_nested(&root_ns->lock, root_ns->level); 2657c961ee5fSJohn Johansen error = __aafs_ns_mkdir(root_ns, aafs_mnt->mnt_root, ".policy", 2658c961ee5fSJohn Johansen aafs_mnt->mnt_root); 2659b7fd2c03SJohn Johansen mutex_unlock(&root_ns->lock); 26600d259f04SJohn Johansen if (error) 26610d259f04SJohn Johansen goto error; 26620d259f04SJohn Johansen 2663c961ee5fSJohn Johansen /* magic symlink similar to nsfs redirects based on task policy */ 2664c961ee5fSJohn Johansen dent = securityfs_create_symlink("policy", aa_sfs_entry.dentry, 2665c961ee5fSJohn Johansen NULL, &policy_link_iops); 2666cf916000SJohn Johansen if (IS_ERR(dent)) 2667cf916000SJohn Johansen goto dent_error; 2668c961ee5fSJohn Johansen 2669c97204baSJohn Johansen error = aa_mk_null_file(aa_sfs_entry.dentry); 2670a71ada30SJohn Johansen if (error) 2671a71ada30SJohn Johansen goto error; 2672a71ada30SJohn Johansen 2673a71ada30SJohn Johansen /* TODO: add default profile to apparmorfs */ 267463e2b423SJohn Johansen 267563e2b423SJohn Johansen /* Report that AppArmor fs is enabled */ 267663e2b423SJohn Johansen aa_info_message("AppArmor Filesystem Enabled"); 267763e2b423SJohn Johansen return 0; 267863e2b423SJohn Johansen 2679cf916000SJohn Johansen dent_error: 2680cf916000SJohn Johansen error = PTR_ERR(dent); 268163e2b423SJohn Johansen error: 268263e2b423SJohn Johansen aa_destroy_aafs(); 268363e2b423SJohn Johansen AA_ERROR("Error creating AppArmor securityfs\n"); 268463e2b423SJohn Johansen return error; 268563e2b423SJohn Johansen } 268663e2b423SJohn Johansen 268763e2b423SJohn Johansen fs_initcall(aa_create_aafs); 2688