163e2b423SJohn Johansen /*
263e2b423SJohn Johansen  * AppArmor security module
363e2b423SJohn Johansen  *
463e2b423SJohn Johansen  * This file contains AppArmor /sys/kernel/security/apparmor interface functions
563e2b423SJohn Johansen  *
663e2b423SJohn Johansen  * Copyright (C) 1998-2008 Novell/SUSE
763e2b423SJohn Johansen  * Copyright 2009-2010 Canonical Ltd.
863e2b423SJohn Johansen  *
963e2b423SJohn Johansen  * This program is free software; you can redistribute it and/or
1063e2b423SJohn Johansen  * modify it under the terms of the GNU General Public License as
1163e2b423SJohn Johansen  * published by the Free Software Foundation, version 2 of the
1263e2b423SJohn Johansen  * License.
1363e2b423SJohn Johansen  */
1463e2b423SJohn Johansen 
150d259f04SJohn Johansen #include <linux/ctype.h>
1663e2b423SJohn Johansen #include <linux/security.h>
1763e2b423SJohn Johansen #include <linux/vmalloc.h>
1863e2b423SJohn Johansen #include <linux/module.h>
1963e2b423SJohn Johansen #include <linux/seq_file.h>
2063e2b423SJohn Johansen #include <linux/uaccess.h>
21a71ada30SJohn Johansen #include <linux/mount.h>
2263e2b423SJohn Johansen #include <linux/namei.h>
23e74abcf3SKees Cook #include <linux/capability.h>
2429b3822fSJohn Johansen #include <linux/rcupdate.h>
25a71ada30SJohn Johansen #include <linux/fs.h>
26d9bf2c26SJohn Johansen #include <linux/poll.h>
27a481f4d9SJohn Johansen #include <uapi/linux/major.h>
28a481f4d9SJohn Johansen #include <uapi/linux/magic.h>
2963e2b423SJohn Johansen 
3063e2b423SJohn Johansen #include "include/apparmor.h"
3163e2b423SJohn Johansen #include "include/apparmorfs.h"
3263e2b423SJohn Johansen #include "include/audit.h"
3363e2b423SJohn Johansen #include "include/context.h"
34f8eb8a13SJohn Johansen #include "include/crypto.h"
35d9bf2c26SJohn Johansen #include "include/policy_ns.h"
3663e2b423SJohn Johansen #include "include/policy.h"
37cff281f6SJohn Johansen #include "include/policy_ns.h"
38d384b0a1SKees Cook #include "include/resource.h"
395ac8c355SJohn Johansen #include "include/policy_unpack.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 
7063e2b423SJohn Johansen /**
710d259f04SJohn Johansen  * aa_mangle_name - mangle a profile name to std profile layout form
720d259f04SJohn Johansen  * @name: profile name to mangle  (NOT NULL)
730d259f04SJohn Johansen  * @target: buffer to store mangled name, same length as @name (MAYBE NULL)
740d259f04SJohn Johansen  *
750d259f04SJohn Johansen  * Returns: length of mangled name
760d259f04SJohn Johansen  */
77bbe4a7c8SJohn Johansen static int mangle_name(const char *name, char *target)
780d259f04SJohn Johansen {
790d259f04SJohn Johansen 	char *t = target;
800d259f04SJohn Johansen 
810d259f04SJohn Johansen 	while (*name == '/' || *name == '.')
820d259f04SJohn Johansen 		name++;
830d259f04SJohn Johansen 
840d259f04SJohn Johansen 	if (target) {
850d259f04SJohn Johansen 		for (; *name; name++) {
860d259f04SJohn Johansen 			if (*name == '/')
870d259f04SJohn Johansen 				*(t)++ = '.';
880d259f04SJohn Johansen 			else if (isspace(*name))
890d259f04SJohn Johansen 				*(t)++ = '_';
900d259f04SJohn Johansen 			else if (isalnum(*name) || strchr("._-", *name))
910d259f04SJohn Johansen 				*(t)++ = *name;
920d259f04SJohn Johansen 		}
930d259f04SJohn Johansen 
940d259f04SJohn Johansen 		*t = 0;
950d259f04SJohn Johansen 	} else {
960d259f04SJohn Johansen 		int len = 0;
970d259f04SJohn Johansen 		for (; *name; name++) {
980d259f04SJohn Johansen 			if (isalnum(*name) || isspace(*name) ||
990d259f04SJohn Johansen 			    strchr("/._-", *name))
1000d259f04SJohn Johansen 				len++;
1010d259f04SJohn Johansen 		}
1020d259f04SJohn Johansen 
1030d259f04SJohn Johansen 		return len;
1040d259f04SJohn Johansen 	}
1050d259f04SJohn Johansen 
1060d259f04SJohn Johansen 	return t - target;
1070d259f04SJohn Johansen }
1080d259f04SJohn Johansen 
109a481f4d9SJohn Johansen 
110a481f4d9SJohn Johansen /*
111a481f4d9SJohn Johansen  * aafs - core fns and data for the policy tree
112a481f4d9SJohn Johansen  */
113a481f4d9SJohn Johansen 
114a481f4d9SJohn Johansen #define AAFS_NAME		"apparmorfs"
115a481f4d9SJohn Johansen static struct vfsmount *aafs_mnt;
116a481f4d9SJohn Johansen static int aafs_count;
117a481f4d9SJohn Johansen 
118a481f4d9SJohn Johansen 
119a481f4d9SJohn Johansen static int aafs_show_path(struct seq_file *seq, struct dentry *dentry)
120a481f4d9SJohn Johansen {
121a481f4d9SJohn Johansen 	struct inode *inode = d_inode(dentry);
122a481f4d9SJohn Johansen 
123a481f4d9SJohn Johansen 	seq_printf(seq, "%s:[%lu]", AAFS_NAME, inode->i_ino);
124a481f4d9SJohn Johansen 	return 0;
125a481f4d9SJohn Johansen }
126a481f4d9SJohn Johansen 
127a481f4d9SJohn Johansen static void aafs_evict_inode(struct inode *inode)
128a481f4d9SJohn Johansen {
129a481f4d9SJohn Johansen 	truncate_inode_pages_final(&inode->i_data);
130a481f4d9SJohn Johansen 	clear_inode(inode);
131a481f4d9SJohn Johansen 	if (S_ISLNK(inode->i_mode))
132a481f4d9SJohn Johansen 		kfree(inode->i_link);
133a481f4d9SJohn Johansen }
134a481f4d9SJohn Johansen 
135a481f4d9SJohn Johansen static const struct super_operations aafs_super_ops = {
136a481f4d9SJohn Johansen 	.statfs = simple_statfs,
137a481f4d9SJohn Johansen 	.evict_inode = aafs_evict_inode,
138a481f4d9SJohn Johansen 	.show_path = aafs_show_path,
139a481f4d9SJohn Johansen };
140a481f4d9SJohn Johansen 
141a481f4d9SJohn Johansen static int fill_super(struct super_block *sb, void *data, int silent)
142a481f4d9SJohn Johansen {
143a481f4d9SJohn Johansen 	static struct tree_descr files[] = { {""} };
144a481f4d9SJohn Johansen 	int error;
145a481f4d9SJohn Johansen 
146a481f4d9SJohn Johansen 	error = simple_fill_super(sb, AAFS_MAGIC, files);
147a481f4d9SJohn Johansen 	if (error)
148a481f4d9SJohn Johansen 		return error;
149a481f4d9SJohn Johansen 	sb->s_op = &aafs_super_ops;
150a481f4d9SJohn Johansen 
151a481f4d9SJohn Johansen 	return 0;
152a481f4d9SJohn Johansen }
153a481f4d9SJohn Johansen 
154a481f4d9SJohn Johansen static struct dentry *aafs_mount(struct file_system_type *fs_type,
155a481f4d9SJohn Johansen 				 int flags, const char *dev_name, void *data)
156a481f4d9SJohn Johansen {
157a481f4d9SJohn Johansen 	return mount_single(fs_type, flags, data, fill_super);
158a481f4d9SJohn Johansen }
159a481f4d9SJohn Johansen 
160a481f4d9SJohn Johansen static struct file_system_type aafs_ops = {
161a481f4d9SJohn Johansen 	.owner = THIS_MODULE,
162a481f4d9SJohn Johansen 	.name = AAFS_NAME,
163a481f4d9SJohn Johansen 	.mount = aafs_mount,
164a481f4d9SJohn Johansen 	.kill_sb = kill_anon_super,
165a481f4d9SJohn Johansen };
166a481f4d9SJohn Johansen 
167a481f4d9SJohn Johansen /**
168a481f4d9SJohn Johansen  * __aafs_setup_d_inode - basic inode setup for apparmorfs
169a481f4d9SJohn Johansen  * @dir: parent directory for the dentry
170a481f4d9SJohn Johansen  * @dentry: dentry we are seting the inode up for
171a481f4d9SJohn Johansen  * @mode: permissions the file should have
172a481f4d9SJohn Johansen  * @data: data to store on inode.i_private, available in open()
173a481f4d9SJohn Johansen  * @link: if symlink, symlink target string
174a481f4d9SJohn Johansen  * @fops: struct file_operations that should be used
175a481f4d9SJohn Johansen  * @iops: struct of inode_operations that should be used
176a481f4d9SJohn Johansen  */
177a481f4d9SJohn Johansen static int __aafs_setup_d_inode(struct inode *dir, struct dentry *dentry,
178a481f4d9SJohn Johansen 			       umode_t mode, void *data, char *link,
179a481f4d9SJohn Johansen 			       const struct file_operations *fops,
180a481f4d9SJohn Johansen 			       const struct inode_operations *iops)
181a481f4d9SJohn Johansen {
182a481f4d9SJohn Johansen 	struct inode *inode = new_inode(dir->i_sb);
183a481f4d9SJohn Johansen 
184a481f4d9SJohn Johansen 	AA_BUG(!dir);
185a481f4d9SJohn Johansen 	AA_BUG(!dentry);
186a481f4d9SJohn Johansen 
187a481f4d9SJohn Johansen 	if (!inode)
188a481f4d9SJohn Johansen 		return -ENOMEM;
189a481f4d9SJohn Johansen 
190a481f4d9SJohn Johansen 	inode->i_ino = get_next_ino();
191a481f4d9SJohn Johansen 	inode->i_mode = mode;
192a481f4d9SJohn Johansen 	inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
193a481f4d9SJohn Johansen 	inode->i_private = data;
194a481f4d9SJohn Johansen 	if (S_ISDIR(mode)) {
195a481f4d9SJohn Johansen 		inode->i_op = iops ? iops : &simple_dir_inode_operations;
196a481f4d9SJohn Johansen 		inode->i_fop = &simple_dir_operations;
197a481f4d9SJohn Johansen 		inc_nlink(inode);
198a481f4d9SJohn Johansen 		inc_nlink(dir);
199a481f4d9SJohn Johansen 	} else if (S_ISLNK(mode)) {
200a481f4d9SJohn Johansen 		inode->i_op = iops ? iops : &simple_symlink_inode_operations;
201a481f4d9SJohn Johansen 		inode->i_link = link;
202a481f4d9SJohn Johansen 	} else {
203a481f4d9SJohn Johansen 		inode->i_fop = fops;
204a481f4d9SJohn Johansen 	}
205a481f4d9SJohn Johansen 	d_instantiate(dentry, inode);
206a481f4d9SJohn Johansen 	dget(dentry);
207a481f4d9SJohn Johansen 
208a481f4d9SJohn Johansen 	return 0;
209a481f4d9SJohn Johansen }
210a481f4d9SJohn Johansen 
211a481f4d9SJohn Johansen /**
212a481f4d9SJohn Johansen  * aafs_create - create a dentry in the apparmorfs filesystem
213a481f4d9SJohn Johansen  *
214a481f4d9SJohn Johansen  * @name: name of dentry to create
215a481f4d9SJohn Johansen  * @mode: permissions the file should have
216a481f4d9SJohn Johansen  * @parent: parent directory for this dentry
217a481f4d9SJohn Johansen  * @data: data to store on inode.i_private, available in open()
218a481f4d9SJohn Johansen  * @link: if symlink, symlink target string
219a481f4d9SJohn Johansen  * @fops: struct file_operations that should be used for
220a481f4d9SJohn Johansen  * @iops: struct of inode_operations that should be used
221a481f4d9SJohn Johansen  *
222a481f4d9SJohn Johansen  * This is the basic "create a xxx" function for apparmorfs.
223a481f4d9SJohn Johansen  *
224a481f4d9SJohn Johansen  * Returns a pointer to a dentry if it succeeds, that must be free with
225a481f4d9SJohn Johansen  * aafs_remove(). Will return ERR_PTR on failure.
226a481f4d9SJohn Johansen  */
227a481f4d9SJohn Johansen static struct dentry *aafs_create(const char *name, umode_t mode,
228a481f4d9SJohn Johansen 				  struct dentry *parent, void *data, void *link,
229a481f4d9SJohn Johansen 				  const struct file_operations *fops,
230a481f4d9SJohn Johansen 				  const struct inode_operations *iops)
231a481f4d9SJohn Johansen {
232a481f4d9SJohn Johansen 	struct dentry *dentry;
233a481f4d9SJohn Johansen 	struct inode *dir;
234a481f4d9SJohn Johansen 	int error;
235a481f4d9SJohn Johansen 
236a481f4d9SJohn Johansen 	AA_BUG(!name);
237a481f4d9SJohn Johansen 	AA_BUG(!parent);
238a481f4d9SJohn Johansen 
239a481f4d9SJohn Johansen 	if (!(mode & S_IFMT))
240a481f4d9SJohn Johansen 		mode = (mode & S_IALLUGO) | S_IFREG;
241a481f4d9SJohn Johansen 
242a481f4d9SJohn Johansen 	error = simple_pin_fs(&aafs_ops, &aafs_mnt, &aafs_count);
243a481f4d9SJohn Johansen 	if (error)
244a481f4d9SJohn Johansen 		return ERR_PTR(error);
245a481f4d9SJohn Johansen 
246a481f4d9SJohn Johansen 	dir = d_inode(parent);
247a481f4d9SJohn Johansen 
248a481f4d9SJohn Johansen 	inode_lock(dir);
249a481f4d9SJohn Johansen 	dentry = lookup_one_len(name, parent, strlen(name));
250a481f4d9SJohn Johansen 	if (IS_ERR(dentry))
251a481f4d9SJohn Johansen 		goto fail_lock;
252a481f4d9SJohn Johansen 
253a481f4d9SJohn Johansen 	if (d_really_is_positive(dentry)) {
254a481f4d9SJohn Johansen 		error = -EEXIST;
255a481f4d9SJohn Johansen 		goto fail_dentry;
256a481f4d9SJohn Johansen 	}
257a481f4d9SJohn Johansen 
258a481f4d9SJohn Johansen 	error = __aafs_setup_d_inode(dir, dentry, mode, data, link, fops, iops);
259a481f4d9SJohn Johansen 	if (error)
260a481f4d9SJohn Johansen 		goto fail_dentry;
261a481f4d9SJohn Johansen 	inode_unlock(dir);
262a481f4d9SJohn Johansen 
263a481f4d9SJohn Johansen 	return dentry;
264a481f4d9SJohn Johansen 
265a481f4d9SJohn Johansen fail_dentry:
266a481f4d9SJohn Johansen 	dput(dentry);
267a481f4d9SJohn Johansen 
268a481f4d9SJohn Johansen fail_lock:
269a481f4d9SJohn Johansen 	inode_unlock(dir);
270a481f4d9SJohn Johansen 	simple_release_fs(&aafs_mnt, &aafs_count);
271a481f4d9SJohn Johansen 
272a481f4d9SJohn Johansen 	return ERR_PTR(error);
273a481f4d9SJohn Johansen }
274a481f4d9SJohn Johansen 
275a481f4d9SJohn Johansen /**
276a481f4d9SJohn Johansen  * aafs_create_file - create a file in the apparmorfs filesystem
277a481f4d9SJohn Johansen  *
278a481f4d9SJohn Johansen  * @name: name of dentry to create
279a481f4d9SJohn Johansen  * @mode: permissions the file should have
280a481f4d9SJohn Johansen  * @parent: parent directory for this dentry
281a481f4d9SJohn Johansen  * @data: data to store on inode.i_private, available in open()
282a481f4d9SJohn Johansen  * @fops: struct file_operations that should be used for
283a481f4d9SJohn Johansen  *
284a481f4d9SJohn Johansen  * see aafs_create
285a481f4d9SJohn Johansen  */
286a481f4d9SJohn Johansen static struct dentry *aafs_create_file(const char *name, umode_t mode,
287a481f4d9SJohn Johansen 				       struct dentry *parent, void *data,
288a481f4d9SJohn Johansen 				       const struct file_operations *fops)
289a481f4d9SJohn Johansen {
290a481f4d9SJohn Johansen 	return aafs_create(name, mode, parent, data, NULL, fops, NULL);
291a481f4d9SJohn Johansen }
292a481f4d9SJohn Johansen 
293a481f4d9SJohn Johansen /**
294a481f4d9SJohn Johansen  * aafs_create_dir - create a directory in the apparmorfs filesystem
295a481f4d9SJohn Johansen  *
296a481f4d9SJohn Johansen  * @name: name of dentry to create
297a481f4d9SJohn Johansen  * @parent: parent directory for this dentry
298a481f4d9SJohn Johansen  *
299a481f4d9SJohn Johansen  * see aafs_create
300a481f4d9SJohn Johansen  */
301a481f4d9SJohn Johansen static struct dentry *aafs_create_dir(const char *name, struct dentry *parent)
302a481f4d9SJohn Johansen {
303a481f4d9SJohn Johansen 	return aafs_create(name, S_IFDIR | 0755, parent, NULL, NULL, NULL,
304a481f4d9SJohn Johansen 			   NULL);
305a481f4d9SJohn Johansen }
306a481f4d9SJohn Johansen 
307a481f4d9SJohn Johansen /**
308a481f4d9SJohn Johansen  * aafs_create_symlink - create a symlink in the apparmorfs filesystem
309a481f4d9SJohn Johansen  * @name: name of dentry to create
310a481f4d9SJohn Johansen  * @parent: parent directory for this dentry
311a481f4d9SJohn Johansen  * @target: if symlink, symlink target string
312a481f4d9SJohn Johansen  * @iops: struct of inode_operations that should be used
313a481f4d9SJohn Johansen  *
314a481f4d9SJohn Johansen  * If @target parameter is %NULL, then the @iops parameter needs to be
315a481f4d9SJohn Johansen  * setup to handle .readlink and .get_link inode_operations.
316a481f4d9SJohn Johansen  */
317a481f4d9SJohn Johansen static struct dentry *aafs_create_symlink(const char *name,
318a481f4d9SJohn Johansen 					  struct dentry *parent,
319a481f4d9SJohn Johansen 					  const char *target,
320a481f4d9SJohn Johansen 					  const struct inode_operations *iops)
321a481f4d9SJohn Johansen {
322a481f4d9SJohn Johansen 	struct dentry *dent;
323a481f4d9SJohn Johansen 	char *link = NULL;
324a481f4d9SJohn Johansen 
325a481f4d9SJohn Johansen 	if (target) {
326a481f4d9SJohn Johansen 		link = kstrdup(target, GFP_KERNEL);
327a481f4d9SJohn Johansen 		if (!link)
328a481f4d9SJohn Johansen 			return ERR_PTR(-ENOMEM);
329a481f4d9SJohn Johansen 	}
330a481f4d9SJohn Johansen 	dent = aafs_create(name, S_IFLNK | 0444, parent, NULL, link, NULL,
331a481f4d9SJohn Johansen 			   iops);
332a481f4d9SJohn Johansen 	if (IS_ERR(dent))
333a481f4d9SJohn Johansen 		kfree(link);
334a481f4d9SJohn Johansen 
335a481f4d9SJohn Johansen 	return dent;
336a481f4d9SJohn Johansen }
337a481f4d9SJohn Johansen 
338a481f4d9SJohn Johansen /**
339a481f4d9SJohn Johansen  * aafs_remove - removes a file or directory from the apparmorfs filesystem
340a481f4d9SJohn Johansen  *
341a481f4d9SJohn Johansen  * @dentry: dentry of the file/directory/symlink to removed.
342a481f4d9SJohn Johansen  */
343a481f4d9SJohn Johansen static void aafs_remove(struct dentry *dentry)
344a481f4d9SJohn Johansen {
345a481f4d9SJohn Johansen 	struct inode *dir;
346a481f4d9SJohn Johansen 
347a481f4d9SJohn Johansen 	if (!dentry || IS_ERR(dentry))
348a481f4d9SJohn Johansen 		return;
349a481f4d9SJohn Johansen 
350a481f4d9SJohn Johansen 	dir = d_inode(dentry->d_parent);
351a481f4d9SJohn Johansen 	inode_lock(dir);
352a481f4d9SJohn Johansen 	if (simple_positive(dentry)) {
353a481f4d9SJohn Johansen 		if (d_is_dir(dentry))
354a481f4d9SJohn Johansen 			simple_rmdir(dir, dentry);
355a481f4d9SJohn Johansen 		else
356a481f4d9SJohn Johansen 			simple_unlink(dir, dentry);
357a481f4d9SJohn Johansen 		dput(dentry);
358a481f4d9SJohn Johansen 	}
359a481f4d9SJohn Johansen 	inode_unlock(dir);
360a481f4d9SJohn Johansen 	simple_release_fs(&aafs_mnt, &aafs_count);
361a481f4d9SJohn Johansen }
362a481f4d9SJohn Johansen 
363a481f4d9SJohn Johansen 
364a481f4d9SJohn Johansen /*
365a481f4d9SJohn Johansen  * aa_fs - policy load/replace/remove
366a481f4d9SJohn Johansen  */
367a481f4d9SJohn Johansen 
3680d259f04SJohn Johansen /**
36963e2b423SJohn Johansen  * aa_simple_write_to_buffer - common routine for getting policy from user
37063e2b423SJohn Johansen  * @userbuf: user buffer to copy data from  (NOT NULL)
3713ed02adaSJohn Johansen  * @alloc_size: size of user buffer (REQUIRES: @alloc_size >= @copy_size)
37263e2b423SJohn Johansen  * @copy_size: size of data to copy from user buffer
37363e2b423SJohn Johansen  * @pos: position write is at in the file (NOT NULL)
37463e2b423SJohn Johansen  *
37563e2b423SJohn Johansen  * Returns: kernel buffer containing copy of user buffer data or an
37663e2b423SJohn Johansen  *          ERR_PTR on failure.
37763e2b423SJohn Johansen  */
3785ef50d01SJohn Johansen static struct aa_loaddata *aa_simple_write_to_buffer(const char __user *userbuf,
3795ac8c355SJohn Johansen 						     size_t alloc_size,
3805ac8c355SJohn Johansen 						     size_t copy_size,
38163e2b423SJohn Johansen 						     loff_t *pos)
38263e2b423SJohn Johansen {
3835ac8c355SJohn Johansen 	struct aa_loaddata *data;
38463e2b423SJohn Johansen 
385e6bfa25dSJohn Johansen 	AA_BUG(copy_size > alloc_size);
3863ed02adaSJohn Johansen 
38763e2b423SJohn Johansen 	if (*pos != 0)
38863e2b423SJohn Johansen 		/* only writes from pos 0, that is complete writes */
38963e2b423SJohn Johansen 		return ERR_PTR(-ESPIPE);
39063e2b423SJohn Johansen 
39163e2b423SJohn Johansen 	/* freed by caller to simple_write_to_buffer */
3925d5182caSJohn Johansen 	data = aa_loaddata_alloc(alloc_size);
3935d5182caSJohn Johansen 	if (IS_ERR(data))
3945d5182caSJohn Johansen 		return data;
39563e2b423SJohn Johansen 
3965d5182caSJohn Johansen 	data->size = copy_size;
3975ac8c355SJohn Johansen 	if (copy_from_user(data->data, userbuf, copy_size)) {
39863e2b423SJohn Johansen 		kvfree(data);
39963e2b423SJohn Johansen 		return ERR_PTR(-EFAULT);
40063e2b423SJohn Johansen 	}
40163e2b423SJohn Johansen 
40263e2b423SJohn Johansen 	return data;
40363e2b423SJohn Johansen }
40463e2b423SJohn Johansen 
40518e99f19SJohn Johansen static ssize_t policy_update(u32 mask, const char __user *buf, size_t size,
406b7fd2c03SJohn Johansen 			     loff_t *pos, struct aa_ns *ns)
4075ac8c355SJohn Johansen {
4085ac8c355SJohn Johansen 	ssize_t error;
4095ac8c355SJohn Johansen 	struct aa_loaddata *data;
4105ac8c355SJohn Johansen 	struct aa_profile *profile = aa_current_profile();
4115ac8c355SJohn Johansen 	/* high level check about policy management - fine grained in
4125ac8c355SJohn Johansen 	 * below after unpack
4135ac8c355SJohn Johansen 	 */
41418e99f19SJohn Johansen 	error = aa_may_manage_policy(profile, ns, mask);
4155ac8c355SJohn Johansen 	if (error)
4165ac8c355SJohn Johansen 		return error;
41763e2b423SJohn Johansen 
4185ef50d01SJohn Johansen 	data = aa_simple_write_to_buffer(buf, size, size, pos);
4195ac8c355SJohn Johansen 	error = PTR_ERR(data);
4205ac8c355SJohn Johansen 	if (!IS_ERR(data)) {
421b7fd2c03SJohn Johansen 		error = aa_replace_profiles(ns ? ns : profile->ns, profile,
42218e99f19SJohn Johansen 					    mask, data);
4235ac8c355SJohn Johansen 		aa_put_loaddata(data);
4245ac8c355SJohn Johansen 	}
4255ac8c355SJohn Johansen 
4265ac8c355SJohn Johansen 	return error;
4275ac8c355SJohn Johansen }
4285ac8c355SJohn Johansen 
429b7fd2c03SJohn Johansen /* .load file hook fn to load policy */
43063e2b423SJohn Johansen static ssize_t profile_load(struct file *f, const char __user *buf, size_t size,
43163e2b423SJohn Johansen 			    loff_t *pos)
43263e2b423SJohn Johansen {
433b7fd2c03SJohn Johansen 	struct aa_ns *ns = aa_get_ns(f->f_inode->i_private);
43418e99f19SJohn Johansen 	int error = policy_update(AA_MAY_LOAD_POLICY, buf, size, pos, ns);
435b7fd2c03SJohn Johansen 
436b7fd2c03SJohn Johansen 	aa_put_ns(ns);
43763e2b423SJohn Johansen 
43863e2b423SJohn Johansen 	return error;
43963e2b423SJohn Johansen }
44063e2b423SJohn Johansen 
44163e2b423SJohn Johansen static const struct file_operations aa_fs_profile_load = {
4426038f373SArnd Bergmann 	.write = profile_load,
4436038f373SArnd Bergmann 	.llseek = default_llseek,
44463e2b423SJohn Johansen };
44563e2b423SJohn Johansen 
44663e2b423SJohn Johansen /* .replace file hook fn to load and/or replace policy */
44763e2b423SJohn Johansen static ssize_t profile_replace(struct file *f, const char __user *buf,
44863e2b423SJohn Johansen 			       size_t size, loff_t *pos)
44963e2b423SJohn Johansen {
450b7fd2c03SJohn Johansen 	struct aa_ns *ns = aa_get_ns(f->f_inode->i_private);
45118e99f19SJohn Johansen 	int error = policy_update(AA_MAY_LOAD_POLICY | AA_MAY_REPLACE_POLICY,
45218e99f19SJohn Johansen 				  buf, size, pos, ns);
453b7fd2c03SJohn Johansen 	aa_put_ns(ns);
45463e2b423SJohn Johansen 
45563e2b423SJohn Johansen 	return error;
45663e2b423SJohn Johansen }
45763e2b423SJohn Johansen 
45863e2b423SJohn Johansen static const struct file_operations aa_fs_profile_replace = {
4596038f373SArnd Bergmann 	.write = profile_replace,
4606038f373SArnd Bergmann 	.llseek = default_llseek,
46163e2b423SJohn Johansen };
46263e2b423SJohn Johansen 
463b7fd2c03SJohn Johansen /* .remove file hook fn to remove loaded policy */
46463e2b423SJohn Johansen static ssize_t profile_remove(struct file *f, const char __user *buf,
46563e2b423SJohn Johansen 			      size_t size, loff_t *pos)
46663e2b423SJohn Johansen {
4675ac8c355SJohn Johansen 	struct aa_loaddata *data;
4685ac8c355SJohn Johansen 	struct aa_profile *profile;
46963e2b423SJohn Johansen 	ssize_t error;
470b7fd2c03SJohn Johansen 	struct aa_ns *ns = aa_get_ns(f->f_inode->i_private);
47163e2b423SJohn Johansen 
4725ac8c355SJohn Johansen 	profile = aa_current_profile();
4735ac8c355SJohn Johansen 	/* high level check about policy management - fine grained in
4745ac8c355SJohn Johansen 	 * below after unpack
4755ac8c355SJohn Johansen 	 */
47618e99f19SJohn Johansen 	error = aa_may_manage_policy(profile, ns, AA_MAY_REMOVE_POLICY);
4775ac8c355SJohn Johansen 	if (error)
4785ac8c355SJohn Johansen 		goto out;
4795ac8c355SJohn Johansen 
48063e2b423SJohn Johansen 	/*
48163e2b423SJohn Johansen 	 * aa_remove_profile needs a null terminated string so 1 extra
48263e2b423SJohn Johansen 	 * byte is allocated and the copied data is null terminated.
48363e2b423SJohn Johansen 	 */
4845ef50d01SJohn Johansen 	data = aa_simple_write_to_buffer(buf, size + 1, size, pos);
48563e2b423SJohn Johansen 
48663e2b423SJohn Johansen 	error = PTR_ERR(data);
48763e2b423SJohn Johansen 	if (!IS_ERR(data)) {
4885ac8c355SJohn Johansen 		data->data[size] = 0;
489b7fd2c03SJohn Johansen 		error = aa_remove_profiles(ns ? ns : profile->ns, profile,
490b7fd2c03SJohn Johansen 					   data->data, size);
4915ac8c355SJohn Johansen 		aa_put_loaddata(data);
49263e2b423SJohn Johansen 	}
4935ac8c355SJohn Johansen  out:
494b7fd2c03SJohn Johansen 	aa_put_ns(ns);
49563e2b423SJohn Johansen 	return error;
49663e2b423SJohn Johansen }
49763e2b423SJohn Johansen 
49863e2b423SJohn Johansen static const struct file_operations aa_fs_profile_remove = {
4996038f373SArnd Bergmann 	.write = profile_remove,
5006038f373SArnd Bergmann 	.llseek = default_llseek,
50163e2b423SJohn Johansen };
50263e2b423SJohn Johansen 
503d9bf2c26SJohn Johansen struct aa_revision {
504d9bf2c26SJohn Johansen 	struct aa_ns *ns;
505d9bf2c26SJohn Johansen 	long last_read;
506d9bf2c26SJohn Johansen };
507d9bf2c26SJohn Johansen 
508d9bf2c26SJohn Johansen /* revision file hook fn for policy loads */
509d9bf2c26SJohn Johansen static int ns_revision_release(struct inode *inode, struct file *file)
510d9bf2c26SJohn Johansen {
511d9bf2c26SJohn Johansen 	struct aa_revision *rev = file->private_data;
512d9bf2c26SJohn Johansen 
513d9bf2c26SJohn Johansen 	if (rev) {
514d9bf2c26SJohn Johansen 		aa_put_ns(rev->ns);
515d9bf2c26SJohn Johansen 		kfree(rev);
516d9bf2c26SJohn Johansen 	}
517d9bf2c26SJohn Johansen 
518d9bf2c26SJohn Johansen 	return 0;
519d9bf2c26SJohn Johansen }
520d9bf2c26SJohn Johansen 
521d9bf2c26SJohn Johansen static ssize_t ns_revision_read(struct file *file, char __user *buf,
522d9bf2c26SJohn Johansen 				size_t size, loff_t *ppos)
523d9bf2c26SJohn Johansen {
524d9bf2c26SJohn Johansen 	struct aa_revision *rev = file->private_data;
525d9bf2c26SJohn Johansen 	char buffer[32];
526d9bf2c26SJohn Johansen 	long last_read;
527d9bf2c26SJohn Johansen 	int avail;
528d9bf2c26SJohn Johansen 
529d9bf2c26SJohn Johansen 	mutex_lock(&rev->ns->lock);
530d9bf2c26SJohn Johansen 	last_read = rev->last_read;
531d9bf2c26SJohn Johansen 	if (last_read == rev->ns->revision) {
532d9bf2c26SJohn Johansen 		mutex_unlock(&rev->ns->lock);
533d9bf2c26SJohn Johansen 		if (file->f_flags & O_NONBLOCK)
534d9bf2c26SJohn Johansen 			return -EAGAIN;
535d9bf2c26SJohn Johansen 		if (wait_event_interruptible(rev->ns->wait,
536d9bf2c26SJohn Johansen 					     last_read !=
537d9bf2c26SJohn Johansen 					     READ_ONCE(rev->ns->revision)))
538d9bf2c26SJohn Johansen 			return -ERESTARTSYS;
539d9bf2c26SJohn Johansen 		mutex_lock(&rev->ns->lock);
540d9bf2c26SJohn Johansen 	}
541d9bf2c26SJohn Johansen 
542d9bf2c26SJohn Johansen 	avail = sprintf(buffer, "%ld\n", rev->ns->revision);
543d9bf2c26SJohn Johansen 	if (*ppos + size > avail) {
544d9bf2c26SJohn Johansen 		rev->last_read = rev->ns->revision;
545d9bf2c26SJohn Johansen 		*ppos = 0;
546d9bf2c26SJohn Johansen 	}
547d9bf2c26SJohn Johansen 	mutex_unlock(&rev->ns->lock);
548d9bf2c26SJohn Johansen 
549d9bf2c26SJohn Johansen 	return simple_read_from_buffer(buf, size, ppos, buffer, avail);
550d9bf2c26SJohn Johansen }
551d9bf2c26SJohn Johansen 
552d9bf2c26SJohn Johansen static int ns_revision_open(struct inode *inode, struct file *file)
553d9bf2c26SJohn Johansen {
554d9bf2c26SJohn Johansen 	struct aa_revision *rev = kzalloc(sizeof(*rev), GFP_KERNEL);
555d9bf2c26SJohn Johansen 
556d9bf2c26SJohn Johansen 	if (!rev)
557d9bf2c26SJohn Johansen 		return -ENOMEM;
558d9bf2c26SJohn Johansen 
559d9bf2c26SJohn Johansen 	rev->ns = aa_get_ns(inode->i_private);
560d9bf2c26SJohn Johansen 	if (!rev->ns)
561d9bf2c26SJohn Johansen 		rev->ns = aa_get_current_ns();
562d9bf2c26SJohn Johansen 	file->private_data = rev;
563d9bf2c26SJohn Johansen 
564d9bf2c26SJohn Johansen 	return 0;
565d9bf2c26SJohn Johansen }
566d9bf2c26SJohn Johansen 
567d9bf2c26SJohn Johansen static unsigned int ns_revision_poll(struct file *file, poll_table *pt)
568d9bf2c26SJohn Johansen {
569d9bf2c26SJohn Johansen 	struct aa_revision *rev = file->private_data;
570d9bf2c26SJohn Johansen 	unsigned int mask = 0;
571d9bf2c26SJohn Johansen 
572d9bf2c26SJohn Johansen 	if (rev) {
573d9bf2c26SJohn Johansen 		mutex_lock(&rev->ns->lock);
574d9bf2c26SJohn Johansen 		poll_wait(file, &rev->ns->wait, pt);
575d9bf2c26SJohn Johansen 		if (rev->last_read < rev->ns->revision)
576d9bf2c26SJohn Johansen 			mask |= POLLIN | POLLRDNORM;
577d9bf2c26SJohn Johansen 		mutex_unlock(&rev->ns->lock);
578d9bf2c26SJohn Johansen 	}
579d9bf2c26SJohn Johansen 
580d9bf2c26SJohn Johansen 	return mask;
581d9bf2c26SJohn Johansen }
582d9bf2c26SJohn Johansen 
5835d5182caSJohn Johansen void __aa_bump_ns_revision(struct aa_ns *ns)
5845d5182caSJohn Johansen {
5855d5182caSJohn Johansen 	ns->revision++;
586d9bf2c26SJohn Johansen 	wake_up_interruptible(&ns->wait);
5875d5182caSJohn Johansen }
5885d5182caSJohn Johansen 
589d9bf2c26SJohn Johansen static const struct file_operations aa_fs_ns_revision_fops = {
590d9bf2c26SJohn Johansen 	.owner		= THIS_MODULE,
591d9bf2c26SJohn Johansen 	.open		= ns_revision_open,
592d9bf2c26SJohn Johansen 	.poll		= ns_revision_poll,
593d9bf2c26SJohn Johansen 	.read		= ns_revision_read,
594d9bf2c26SJohn Johansen 	.llseek		= generic_file_llseek,
595d9bf2c26SJohn Johansen 	.release	= ns_revision_release,
596d9bf2c26SJohn Johansen };
597d9bf2c26SJohn Johansen 
598e025be0fSWilliam Hua /**
599e025be0fSWilliam Hua  * query_data - queries a policy and writes its data to buf
600e025be0fSWilliam Hua  * @buf: the resulting data is stored here (NOT NULL)
601e025be0fSWilliam Hua  * @buf_len: size of buf
602e025be0fSWilliam Hua  * @query: query string used to retrieve data
603e025be0fSWilliam Hua  * @query_len: size of query including second NUL byte
604e025be0fSWilliam Hua  *
605e025be0fSWilliam Hua  * The buffers pointed to by buf and query may overlap. The query buffer is
606e025be0fSWilliam Hua  * parsed before buf is written to.
607e025be0fSWilliam Hua  *
608e025be0fSWilliam Hua  * The query should look like "<LABEL>\0<KEY>\0", where <LABEL> is the name of
609e025be0fSWilliam Hua  * the security confinement context and <KEY> is the name of the data to
610e025be0fSWilliam Hua  * retrieve. <LABEL> and <KEY> must not be NUL-terminated.
611e025be0fSWilliam Hua  *
612e025be0fSWilliam Hua  * Don't expect the contents of buf to be preserved on failure.
613e025be0fSWilliam Hua  *
614e025be0fSWilliam Hua  * Returns: number of characters written to buf or -errno on failure
615e025be0fSWilliam Hua  */
616e025be0fSWilliam Hua static ssize_t query_data(char *buf, size_t buf_len,
617e025be0fSWilliam Hua 			  char *query, size_t query_len)
618e025be0fSWilliam Hua {
619e025be0fSWilliam Hua 	char *out;
620e025be0fSWilliam Hua 	const char *key;
621e025be0fSWilliam Hua 	struct aa_profile *profile;
622e025be0fSWilliam Hua 	struct aa_data *data;
623e025be0fSWilliam Hua 	u32 bytes, blocks;
624e025be0fSWilliam Hua 	__le32 outle32;
625e025be0fSWilliam Hua 
626e025be0fSWilliam Hua 	if (!query_len)
627e025be0fSWilliam Hua 		return -EINVAL; /* need a query */
628e025be0fSWilliam Hua 
629e025be0fSWilliam Hua 	key = query + strnlen(query, query_len) + 1;
630e025be0fSWilliam Hua 	if (key + 1 >= query + query_len)
631e025be0fSWilliam Hua 		return -EINVAL; /* not enough space for a non-empty key */
632e025be0fSWilliam Hua 	if (key + strnlen(key, query + query_len - key) >= query + query_len)
633e025be0fSWilliam Hua 		return -EINVAL; /* must end with NUL */
634e025be0fSWilliam Hua 
635e025be0fSWilliam Hua 	if (buf_len < sizeof(bytes) + sizeof(blocks))
636e025be0fSWilliam Hua 		return -EINVAL; /* not enough space */
637e025be0fSWilliam Hua 
638e025be0fSWilliam Hua 	profile = aa_current_profile();
639e025be0fSWilliam Hua 
640e025be0fSWilliam Hua 	/* We are going to leave space for two numbers. The first is the total
641e025be0fSWilliam Hua 	 * number of bytes we are writing after the first number. This is so
642e025be0fSWilliam Hua 	 * users can read the full output without reallocation.
643e025be0fSWilliam Hua 	 *
644e025be0fSWilliam Hua 	 * The second number is the number of data blocks we're writing. An
645e025be0fSWilliam Hua 	 * application might be confined by multiple policies having data in
646e025be0fSWilliam Hua 	 * the same key.
647e025be0fSWilliam Hua 	 */
648e025be0fSWilliam Hua 	memset(buf, 0, sizeof(bytes) + sizeof(blocks));
649e025be0fSWilliam Hua 	out = buf + sizeof(bytes) + sizeof(blocks);
650e025be0fSWilliam Hua 
651e025be0fSWilliam Hua 	blocks = 0;
652e025be0fSWilliam Hua 	if (profile->data) {
653e025be0fSWilliam Hua 		data = rhashtable_lookup_fast(profile->data, &key,
654e025be0fSWilliam Hua 					      profile->data->p);
655e025be0fSWilliam Hua 
656e025be0fSWilliam Hua 		if (data) {
657e025be0fSWilliam Hua 			if (out + sizeof(outle32) + data->size > buf + buf_len)
658e025be0fSWilliam Hua 				return -EINVAL; /* not enough space */
659e025be0fSWilliam Hua 			outle32 = __cpu_to_le32(data->size);
660e025be0fSWilliam Hua 			memcpy(out, &outle32, sizeof(outle32));
661e025be0fSWilliam Hua 			out += sizeof(outle32);
662e025be0fSWilliam Hua 			memcpy(out, data->data, data->size);
663e025be0fSWilliam Hua 			out += data->size;
664e025be0fSWilliam Hua 			blocks++;
665e025be0fSWilliam Hua 		}
666e025be0fSWilliam Hua 	}
667e025be0fSWilliam Hua 
668e025be0fSWilliam Hua 	outle32 = __cpu_to_le32(out - buf - sizeof(bytes));
669e025be0fSWilliam Hua 	memcpy(buf, &outle32, sizeof(outle32));
670e025be0fSWilliam Hua 	outle32 = __cpu_to_le32(blocks);
671e025be0fSWilliam Hua 	memcpy(buf + sizeof(bytes), &outle32, sizeof(outle32));
672e025be0fSWilliam Hua 
673e025be0fSWilliam Hua 	return out - buf;
674e025be0fSWilliam Hua }
675e025be0fSWilliam Hua 
676e025be0fSWilliam Hua #define QUERY_CMD_DATA		"data\0"
677e025be0fSWilliam Hua #define QUERY_CMD_DATA_LEN	5
678e025be0fSWilliam Hua 
679e025be0fSWilliam Hua /**
680e025be0fSWilliam Hua  * aa_write_access - generic permissions and data query
681e025be0fSWilliam Hua  * @file: pointer to open apparmorfs/access file
682e025be0fSWilliam Hua  * @ubuf: user buffer containing the complete query string (NOT NULL)
683e025be0fSWilliam Hua  * @count: size of ubuf
684e025be0fSWilliam Hua  * @ppos: position in the file (MUST BE ZERO)
685e025be0fSWilliam Hua  *
686e025be0fSWilliam Hua  * Allows for one permissions or data query per open(), write(), and read()
687e025be0fSWilliam Hua  * sequence. The only queries currently supported are label-based queries for
688e025be0fSWilliam Hua  * permissions or data.
689e025be0fSWilliam Hua  *
690e025be0fSWilliam Hua  * For permissions queries, ubuf must begin with "label\0", followed by the
691e025be0fSWilliam Hua  * profile query specific format described in the query_label() function
692e025be0fSWilliam Hua  * documentation.
693e025be0fSWilliam Hua  *
694e025be0fSWilliam Hua  * For data queries, ubuf must have the form "data\0<LABEL>\0<KEY>\0", where
695e025be0fSWilliam Hua  * <LABEL> is the name of the security confinement context and <KEY> is the
696e025be0fSWilliam Hua  * name of the data to retrieve.
697e025be0fSWilliam Hua  *
698e025be0fSWilliam Hua  * Returns: number of bytes written or -errno on failure
699e025be0fSWilliam Hua  */
700e025be0fSWilliam Hua static ssize_t aa_write_access(struct file *file, const char __user *ubuf,
701e025be0fSWilliam Hua 			       size_t count, loff_t *ppos)
702e025be0fSWilliam Hua {
703e025be0fSWilliam Hua 	char *buf;
704e025be0fSWilliam Hua 	ssize_t len;
705e025be0fSWilliam Hua 
706e025be0fSWilliam Hua 	if (*ppos)
707e025be0fSWilliam Hua 		return -ESPIPE;
708e025be0fSWilliam Hua 
709e025be0fSWilliam Hua 	buf = simple_transaction_get(file, ubuf, count);
710e025be0fSWilliam Hua 	if (IS_ERR(buf))
711e025be0fSWilliam Hua 		return PTR_ERR(buf);
712e025be0fSWilliam Hua 
713e025be0fSWilliam Hua 	if (count > QUERY_CMD_DATA_LEN &&
714e025be0fSWilliam Hua 		   !memcmp(buf, QUERY_CMD_DATA, QUERY_CMD_DATA_LEN)) {
715e025be0fSWilliam Hua 		len = query_data(buf, SIMPLE_TRANSACTION_LIMIT,
716e025be0fSWilliam Hua 				 buf + QUERY_CMD_DATA_LEN,
717e025be0fSWilliam Hua 				 count - QUERY_CMD_DATA_LEN);
718e025be0fSWilliam Hua 	} else
719e025be0fSWilliam Hua 		len = -EINVAL;
720e025be0fSWilliam Hua 
721e025be0fSWilliam Hua 	if (len < 0)
722e025be0fSWilliam Hua 		return len;
723e025be0fSWilliam Hua 
724e025be0fSWilliam Hua 	simple_transaction_set(file, len);
725e025be0fSWilliam Hua 
726e025be0fSWilliam Hua 	return count;
727e025be0fSWilliam Hua }
728e025be0fSWilliam Hua 
729c97204baSJohn Johansen static const struct file_operations aa_sfs_access = {
730e025be0fSWilliam Hua 	.write		= aa_write_access,
731e025be0fSWilliam Hua 	.read		= simple_transaction_read,
732e025be0fSWilliam Hua 	.release	= simple_transaction_release,
733e025be0fSWilliam Hua 	.llseek		= generic_file_llseek,
734e025be0fSWilliam Hua };
735e025be0fSWilliam Hua 
736c97204baSJohn Johansen static int aa_sfs_seq_show(struct seq_file *seq, void *v)
737e74abcf3SKees Cook {
738c97204baSJohn Johansen 	struct aa_sfs_entry *fs_file = seq->private;
739e74abcf3SKees Cook 
740e74abcf3SKees Cook 	if (!fs_file)
741e74abcf3SKees Cook 		return 0;
742e74abcf3SKees Cook 
743e74abcf3SKees Cook 	switch (fs_file->v_type) {
744c97204baSJohn Johansen 	case AA_SFS_TYPE_BOOLEAN:
745e74abcf3SKees Cook 		seq_printf(seq, "%s\n", fs_file->v.boolean ? "yes" : "no");
746e74abcf3SKees Cook 		break;
747c97204baSJohn Johansen 	case AA_SFS_TYPE_STRING:
748a9bf8e9fSKees Cook 		seq_printf(seq, "%s\n", fs_file->v.string);
749a9bf8e9fSKees Cook 		break;
750c97204baSJohn Johansen 	case AA_SFS_TYPE_U64:
751e74abcf3SKees Cook 		seq_printf(seq, "%#08lx\n", fs_file->v.u64);
752e74abcf3SKees Cook 		break;
753e74abcf3SKees Cook 	default:
754e74abcf3SKees Cook 		/* Ignore unpritable entry types. */
755e74abcf3SKees Cook 		break;
756e74abcf3SKees Cook 	}
757e74abcf3SKees Cook 
758e74abcf3SKees Cook 	return 0;
759e74abcf3SKees Cook }
760e74abcf3SKees Cook 
761c97204baSJohn Johansen static int aa_sfs_seq_open(struct inode *inode, struct file *file)
762e74abcf3SKees Cook {
763c97204baSJohn Johansen 	return single_open(file, aa_sfs_seq_show, inode->i_private);
764e74abcf3SKees Cook }
765e74abcf3SKees Cook 
766c97204baSJohn Johansen const struct file_operations aa_sfs_seq_file_ops = {
767e74abcf3SKees Cook 	.owner		= THIS_MODULE,
768c97204baSJohn Johansen 	.open		= aa_sfs_seq_open,
769e74abcf3SKees Cook 	.read		= seq_read,
770e74abcf3SKees Cook 	.llseek		= seq_lseek,
771e74abcf3SKees Cook 	.release	= single_release,
772e74abcf3SKees Cook };
773e74abcf3SKees Cook 
77452b97de3SJohn Johansen /*
77552b97de3SJohn Johansen  * profile based file operations
77652b97de3SJohn Johansen  *     policy/profiles/XXXX/profiles/ *
77752b97de3SJohn Johansen  */
77852b97de3SJohn Johansen 
77952b97de3SJohn Johansen #define SEQ_PROFILE_FOPS(NAME)						      \
78052b97de3SJohn Johansen static int seq_profile_ ##NAME ##_open(struct inode *inode, struct file *file)\
78152b97de3SJohn Johansen {									      \
78252b97de3SJohn Johansen 	return seq_profile_open(inode, file, seq_profile_ ##NAME ##_show);    \
78352b97de3SJohn Johansen }									      \
78452b97de3SJohn Johansen 									      \
78552b97de3SJohn Johansen static const struct file_operations seq_profile_ ##NAME ##_fops = {	      \
78652b97de3SJohn Johansen 	.owner		= THIS_MODULE,					      \
78752b97de3SJohn Johansen 	.open		= seq_profile_ ##NAME ##_open,			      \
78852b97de3SJohn Johansen 	.read		= seq_read,					      \
78952b97de3SJohn Johansen 	.llseek		= seq_lseek,					      \
79052b97de3SJohn Johansen 	.release	= seq_profile_release,				      \
79152b97de3SJohn Johansen }									      \
79252b97de3SJohn Johansen 
79352b97de3SJohn Johansen static int seq_profile_open(struct inode *inode, struct file *file,
7940d259f04SJohn Johansen 			    int (*show)(struct seq_file *, void *))
7950d259f04SJohn Johansen {
7968399588aSJohn Johansen 	struct aa_proxy *proxy = aa_get_proxy(inode->i_private);
7978399588aSJohn Johansen 	int error = single_open(file, show, proxy);
79863e2b423SJohn Johansen 
7990d259f04SJohn Johansen 	if (error) {
8000d259f04SJohn Johansen 		file->private_data = NULL;
8018399588aSJohn Johansen 		aa_put_proxy(proxy);
8020d259f04SJohn Johansen 	}
8030d259f04SJohn Johansen 
8040d259f04SJohn Johansen 	return error;
8050d259f04SJohn Johansen }
8060d259f04SJohn Johansen 
80752b97de3SJohn Johansen static int seq_profile_release(struct inode *inode, struct file *file)
8080d259f04SJohn Johansen {
8090d259f04SJohn Johansen 	struct seq_file *seq = (struct seq_file *) file->private_data;
8100d259f04SJohn Johansen 	if (seq)
8118399588aSJohn Johansen 		aa_put_proxy(seq->private);
8120d259f04SJohn Johansen 	return single_release(inode, file);
8130d259f04SJohn Johansen }
8140d259f04SJohn Johansen 
81552b97de3SJohn Johansen static int seq_profile_name_show(struct seq_file *seq, void *v)
8160d259f04SJohn Johansen {
8178399588aSJohn Johansen 	struct aa_proxy *proxy = seq->private;
8188399588aSJohn Johansen 	struct aa_profile *profile = aa_get_profile_rcu(&proxy->profile);
8190d259f04SJohn Johansen 	seq_printf(seq, "%s\n", profile->base.name);
8200d259f04SJohn Johansen 	aa_put_profile(profile);
8210d259f04SJohn Johansen 
8220d259f04SJohn Johansen 	return 0;
8230d259f04SJohn Johansen }
8240d259f04SJohn Johansen 
82552b97de3SJohn Johansen static int seq_profile_mode_show(struct seq_file *seq, void *v)
8260d259f04SJohn Johansen {
8278399588aSJohn Johansen 	struct aa_proxy *proxy = seq->private;
8288399588aSJohn Johansen 	struct aa_profile *profile = aa_get_profile_rcu(&proxy->profile);
8290d259f04SJohn Johansen 	seq_printf(seq, "%s\n", aa_profile_mode_names[profile->mode]);
8300d259f04SJohn Johansen 	aa_put_profile(profile);
8310d259f04SJohn Johansen 
8320d259f04SJohn Johansen 	return 0;
8330d259f04SJohn Johansen }
8340d259f04SJohn Johansen 
83552b97de3SJohn Johansen static int seq_profile_attach_show(struct seq_file *seq, void *v)
836556d0be7SJohn Johansen {
8378399588aSJohn Johansen 	struct aa_proxy *proxy = seq->private;
8388399588aSJohn Johansen 	struct aa_profile *profile = aa_get_profile_rcu(&proxy->profile);
839556d0be7SJohn Johansen 	if (profile->attach)
840556d0be7SJohn Johansen 		seq_printf(seq, "%s\n", profile->attach);
841556d0be7SJohn Johansen 	else if (profile->xmatch)
842556d0be7SJohn Johansen 		seq_puts(seq, "<unknown>\n");
843556d0be7SJohn Johansen 	else
844556d0be7SJohn Johansen 		seq_printf(seq, "%s\n", profile->base.name);
845556d0be7SJohn Johansen 	aa_put_profile(profile);
846556d0be7SJohn Johansen 
847556d0be7SJohn Johansen 	return 0;
848556d0be7SJohn Johansen }
849556d0be7SJohn Johansen 
85052b97de3SJohn Johansen static int seq_profile_hash_show(struct seq_file *seq, void *v)
851f8eb8a13SJohn Johansen {
8528399588aSJohn Johansen 	struct aa_proxy *proxy = seq->private;
8538399588aSJohn Johansen 	struct aa_profile *profile = aa_get_profile_rcu(&proxy->profile);
854f8eb8a13SJohn Johansen 	unsigned int i, size = aa_hash_size();
855f8eb8a13SJohn Johansen 
856f8eb8a13SJohn Johansen 	if (profile->hash) {
857f8eb8a13SJohn Johansen 		for (i = 0; i < size; i++)
858f8eb8a13SJohn Johansen 			seq_printf(seq, "%.2x", profile->hash[i]);
85947dbd1cdSMarkus Elfring 		seq_putc(seq, '\n');
860f8eb8a13SJohn Johansen 	}
8610b938a2eSJohn Johansen 	aa_put_profile(profile);
862f8eb8a13SJohn Johansen 
863f8eb8a13SJohn Johansen 	return 0;
864f8eb8a13SJohn Johansen }
865f8eb8a13SJohn Johansen 
86652b97de3SJohn Johansen SEQ_PROFILE_FOPS(name);
86752b97de3SJohn Johansen SEQ_PROFILE_FOPS(mode);
86852b97de3SJohn Johansen SEQ_PROFILE_FOPS(attach);
86952b97de3SJohn Johansen SEQ_PROFILE_FOPS(hash);
870f8eb8a13SJohn Johansen 
87164c86970SJohn Johansen /*
87264c86970SJohn Johansen  * namespace based files
87364c86970SJohn Johansen  *     several root files and
87464c86970SJohn Johansen  *     policy/ *
87564c86970SJohn Johansen  */
876f8eb8a13SJohn Johansen 
87764c86970SJohn Johansen #define SEQ_NS_FOPS(NAME)						      \
87864c86970SJohn Johansen static int seq_ns_ ##NAME ##_open(struct inode *inode, struct file *file)     \
87964c86970SJohn Johansen {									      \
88064c86970SJohn Johansen 	return single_open(file, seq_ns_ ##NAME ##_show, inode->i_private);   \
88164c86970SJohn Johansen }									      \
88264c86970SJohn Johansen 									      \
88364c86970SJohn Johansen static const struct file_operations seq_ns_ ##NAME ##_fops = {	      \
88464c86970SJohn Johansen 	.owner		= THIS_MODULE,					      \
88564c86970SJohn Johansen 	.open		= seq_ns_ ##NAME ##_open,			      \
88664c86970SJohn Johansen 	.read		= seq_read,					      \
88764c86970SJohn Johansen 	.llseek		= seq_lseek,					      \
88864c86970SJohn Johansen 	.release	= single_release,				      \
88964c86970SJohn Johansen }									      \
8903e3e5695SJohn Johansen 
89164c86970SJohn Johansen static int seq_ns_level_show(struct seq_file *seq, void *v)
892a71ada30SJohn Johansen {
893a71ada30SJohn Johansen 	struct aa_ns *ns = aa_current_profile()->ns;
894a71ada30SJohn Johansen 
895a71ada30SJohn Johansen 	seq_printf(seq, "%d\n", ns->level);
896a71ada30SJohn Johansen 
897a71ada30SJohn Johansen 	return 0;
898a71ada30SJohn Johansen }
899a71ada30SJohn Johansen 
90064c86970SJohn Johansen static int seq_ns_name_show(struct seq_file *seq, void *v)
9013e3e5695SJohn Johansen {
9023e3e5695SJohn Johansen 	struct aa_ns *ns = aa_current_profile()->ns;
9033e3e5695SJohn Johansen 
9043e3e5695SJohn Johansen 	seq_printf(seq, "%s\n", ns->base.name);
9053e3e5695SJohn Johansen 
9063e3e5695SJohn Johansen 	return 0;
9073e3e5695SJohn Johansen }
9083e3e5695SJohn Johansen 
90964c86970SJohn Johansen SEQ_NS_FOPS(level);
91064c86970SJohn Johansen SEQ_NS_FOPS(name);
9113e3e5695SJohn Johansen 
9125d5182caSJohn Johansen 
9135d5182caSJohn Johansen /* policy/raw_data/ * file ops */
9145d5182caSJohn Johansen 
9155d5182caSJohn Johansen #define SEQ_RAWDATA_FOPS(NAME)						      \
9165d5182caSJohn Johansen static int seq_rawdata_ ##NAME ##_open(struct inode *inode, struct file *file)\
9175d5182caSJohn Johansen {									      \
9185d5182caSJohn Johansen 	return seq_rawdata_open(inode, file, seq_rawdata_ ##NAME ##_show);    \
9195d5182caSJohn Johansen }									      \
9205d5182caSJohn Johansen 									      \
9215d5182caSJohn Johansen static const struct file_operations seq_rawdata_ ##NAME ##_fops = {	      \
9225d5182caSJohn Johansen 	.owner		= THIS_MODULE,					      \
9235d5182caSJohn Johansen 	.open		= seq_rawdata_ ##NAME ##_open,			      \
9245d5182caSJohn Johansen 	.read		= seq_read,					      \
9255d5182caSJohn Johansen 	.llseek		= seq_lseek,					      \
9265d5182caSJohn Johansen 	.release	= seq_rawdata_release,				      \
9275d5182caSJohn Johansen }									      \
9285d5182caSJohn Johansen 
9295d5182caSJohn Johansen static int seq_rawdata_open(struct inode *inode, struct file *file,
9305d5182caSJohn Johansen 			    int (*show)(struct seq_file *, void *))
9315ac8c355SJohn Johansen {
9325d5182caSJohn Johansen 	struct aa_loaddata *data = __aa_get_loaddata(inode->i_private);
9335d5182caSJohn Johansen 	int error;
9345d5182caSJohn Johansen 
9355d5182caSJohn Johansen 	if (!data)
9365d5182caSJohn Johansen 		/* lost race this ent is being reaped */
9375d5182caSJohn Johansen 		return -ENOENT;
9385d5182caSJohn Johansen 
9395d5182caSJohn Johansen 	error = single_open(file, show, data);
9405d5182caSJohn Johansen 	if (error) {
9415d5182caSJohn Johansen 		AA_BUG(file->private_data &&
9425d5182caSJohn Johansen 		       ((struct seq_file *)file->private_data)->private);
9435d5182caSJohn Johansen 		aa_put_loaddata(data);
9445d5182caSJohn Johansen 	}
9455d5182caSJohn Johansen 
9465d5182caSJohn Johansen 	return error;
9475d5182caSJohn Johansen }
9485d5182caSJohn Johansen 
9495d5182caSJohn Johansen static int seq_rawdata_release(struct inode *inode, struct file *file)
9505d5182caSJohn Johansen {
9515d5182caSJohn Johansen 	struct seq_file *seq = (struct seq_file *) file->private_data;
9525d5182caSJohn Johansen 
9535d5182caSJohn Johansen 	if (seq)
9545d5182caSJohn Johansen 		aa_put_loaddata(seq->private);
9555d5182caSJohn Johansen 
9565d5182caSJohn Johansen 	return single_release(inode, file);
9575d5182caSJohn Johansen }
9585d5182caSJohn Johansen 
9595d5182caSJohn Johansen static int seq_rawdata_abi_show(struct seq_file *seq, void *v)
9605d5182caSJohn Johansen {
9615d5182caSJohn Johansen 	struct aa_loaddata *data = seq->private;
9625d5182caSJohn Johansen 
9635d5182caSJohn Johansen 	seq_printf(seq, "v%d\n", data->abi);
9645ac8c355SJohn Johansen 
9655ac8c355SJohn Johansen 	return 0;
9665ac8c355SJohn Johansen }
9675ac8c355SJohn Johansen 
9685d5182caSJohn Johansen static int seq_rawdata_revision_show(struct seq_file *seq, void *v)
9695ac8c355SJohn Johansen {
9705d5182caSJohn Johansen 	struct aa_loaddata *data = seq->private;
9715ac8c355SJohn Johansen 
9725d5182caSJohn Johansen 	seq_printf(seq, "%ld\n", data->revision);
9735ac8c355SJohn Johansen 
9745ac8c355SJohn Johansen 	return 0;
9755ac8c355SJohn Johansen }
9765ac8c355SJohn Johansen 
9775d5182caSJohn Johansen static int seq_rawdata_hash_show(struct seq_file *seq, void *v)
9785ac8c355SJohn Johansen {
9795d5182caSJohn Johansen 	struct aa_loaddata *data = seq->private;
9805ac8c355SJohn Johansen 	unsigned int i, size = aa_hash_size();
9815ac8c355SJohn Johansen 
9825d5182caSJohn Johansen 	if (data->hash) {
9835ac8c355SJohn Johansen 		for (i = 0; i < size; i++)
9845d5182caSJohn Johansen 			seq_printf(seq, "%.2x", data->hash[i]);
98547dbd1cdSMarkus Elfring 		seq_putc(seq, '\n');
9865ac8c355SJohn Johansen 	}
9875ac8c355SJohn Johansen 
9885ac8c355SJohn Johansen 	return 0;
9895ac8c355SJohn Johansen }
9905ac8c355SJohn Johansen 
9915d5182caSJohn Johansen SEQ_RAWDATA_FOPS(abi);
9925d5182caSJohn Johansen SEQ_RAWDATA_FOPS(revision);
9935d5182caSJohn Johansen SEQ_RAWDATA_FOPS(hash);
9945ac8c355SJohn Johansen 
9955ac8c355SJohn Johansen static ssize_t rawdata_read(struct file *file, char __user *buf, size_t size,
9965ac8c355SJohn Johansen 			    loff_t *ppos)
9975ac8c355SJohn Johansen {
9985ac8c355SJohn Johansen 	struct aa_loaddata *rawdata = file->private_data;
9995ac8c355SJohn Johansen 
10005ac8c355SJohn Johansen 	return simple_read_from_buffer(buf, size, ppos, rawdata->data,
10015ac8c355SJohn Johansen 				       rawdata->size);
10025ac8c355SJohn Johansen }
10035ac8c355SJohn Johansen 
10045d5182caSJohn Johansen static int rawdata_release(struct inode *inode, struct file *file)
10055ac8c355SJohn Johansen {
10065d5182caSJohn Johansen 	aa_put_loaddata(file->private_data);
10075ac8c355SJohn Johansen 
10085ac8c355SJohn Johansen 	return 0;
10095ac8c355SJohn Johansen }
10105ac8c355SJohn Johansen 
10115d5182caSJohn Johansen static int rawdata_open(struct inode *inode, struct file *file)
10125d5182caSJohn Johansen {
10135d5182caSJohn Johansen 	if (!policy_view_capable(NULL))
10145d5182caSJohn Johansen 		return -EACCES;
10155d5182caSJohn Johansen 	file->private_data = __aa_get_loaddata(inode->i_private);
10165d5182caSJohn Johansen 	if (!file->private_data)
10175d5182caSJohn Johansen 		/* lost race: this entry is being reaped */
10185d5182caSJohn Johansen 		return -ENOENT;
10195d5182caSJohn Johansen 
10205d5182caSJohn Johansen 	return 0;
10215d5182caSJohn Johansen }
10225d5182caSJohn Johansen 
10235d5182caSJohn Johansen static const struct file_operations rawdata_fops = {
10245ac8c355SJohn Johansen 	.open = rawdata_open,
10255ac8c355SJohn Johansen 	.read = rawdata_read,
10265ac8c355SJohn Johansen 	.llseek = generic_file_llseek,
10275ac8c355SJohn Johansen 	.release = rawdata_release,
10285ac8c355SJohn Johansen };
10295ac8c355SJohn Johansen 
10305d5182caSJohn Johansen static void remove_rawdata_dents(struct aa_loaddata *rawdata)
10315d5182caSJohn Johansen {
10325d5182caSJohn Johansen 	int i;
10335d5182caSJohn Johansen 
10345d5182caSJohn Johansen 	for (i = 0; i < AAFS_LOADDATA_NDENTS; i++) {
10355d5182caSJohn Johansen 		if (!IS_ERR_OR_NULL(rawdata->dents[i])) {
10365d5182caSJohn Johansen 			/* no refcounts on i_private */
1037c961ee5fSJohn Johansen 			aafs_remove(rawdata->dents[i]);
10385d5182caSJohn Johansen 			rawdata->dents[i] = NULL;
10395d5182caSJohn Johansen 		}
10405d5182caSJohn Johansen 	}
10415d5182caSJohn Johansen }
10425d5182caSJohn Johansen 
10435d5182caSJohn Johansen void __aa_fs_remove_rawdata(struct aa_loaddata *rawdata)
10445d5182caSJohn Johansen {
10455d5182caSJohn Johansen 	AA_BUG(rawdata->ns && !mutex_is_locked(&rawdata->ns->lock));
10465d5182caSJohn Johansen 
10475d5182caSJohn Johansen 	if (rawdata->ns) {
10485d5182caSJohn Johansen 		remove_rawdata_dents(rawdata);
10495d5182caSJohn Johansen 		list_del_init(&rawdata->list);
10505d5182caSJohn Johansen 		aa_put_ns(rawdata->ns);
10515d5182caSJohn Johansen 		rawdata->ns = NULL;
10525d5182caSJohn Johansen 	}
10535d5182caSJohn Johansen }
10545d5182caSJohn Johansen 
10555d5182caSJohn Johansen int __aa_fs_create_rawdata(struct aa_ns *ns, struct aa_loaddata *rawdata)
10565d5182caSJohn Johansen {
10575d5182caSJohn Johansen 	struct dentry *dent, *dir;
10585d5182caSJohn Johansen 
10595d5182caSJohn Johansen 	AA_BUG(!ns);
10605d5182caSJohn Johansen 	AA_BUG(!rawdata);
10615d5182caSJohn Johansen 	AA_BUG(!mutex_is_locked(&ns->lock));
10625d5182caSJohn Johansen 	AA_BUG(!ns_subdata_dir(ns));
10635d5182caSJohn Johansen 
10645d5182caSJohn Johansen 	/*
10655d5182caSJohn Johansen 	 * just use ns revision dir was originally created at. This is
10665d5182caSJohn Johansen 	 * under ns->lock and if load is successful revision will be
10675d5182caSJohn Johansen 	 * bumped and is guaranteed to be unique
10685d5182caSJohn Johansen 	 */
10695d5182caSJohn Johansen 	rawdata->name = kasprintf(GFP_KERNEL, "%ld", ns->revision);
10705d5182caSJohn Johansen 	if (!rawdata->name)
10715d5182caSJohn Johansen 		return -ENOMEM;
10725d5182caSJohn Johansen 
1073c961ee5fSJohn Johansen 	dir = aafs_create_dir(rawdata->name, ns_subdata_dir(ns));
10745d5182caSJohn Johansen 	if (IS_ERR(dir))
10755d5182caSJohn Johansen 		/* ->name freed when rawdata freed */
10765d5182caSJohn Johansen 		return PTR_ERR(dir);
10775d5182caSJohn Johansen 	rawdata->dents[AAFS_LOADDATA_DIR] = dir;
10785d5182caSJohn Johansen 
1079c961ee5fSJohn Johansen 	dent = aafs_create_file("abi", S_IFREG | 0444, dir, rawdata,
10805d5182caSJohn Johansen 				      &seq_rawdata_abi_fops);
10815d5182caSJohn Johansen 	if (IS_ERR(dent))
10825d5182caSJohn Johansen 		goto fail;
10835d5182caSJohn Johansen 	rawdata->dents[AAFS_LOADDATA_ABI] = dent;
10845d5182caSJohn Johansen 
1085c961ee5fSJohn Johansen 	dent = aafs_create_file("revision", S_IFREG | 0444, dir, rawdata,
10865d5182caSJohn Johansen 				      &seq_rawdata_revision_fops);
10875d5182caSJohn Johansen 	if (IS_ERR(dent))
10885d5182caSJohn Johansen 		goto fail;
10895d5182caSJohn Johansen 	rawdata->dents[AAFS_LOADDATA_REVISION] = dent;
10905d5182caSJohn Johansen 
10915d5182caSJohn Johansen 	if (aa_g_hash_policy) {
1092c961ee5fSJohn Johansen 		dent = aafs_create_file("sha1", S_IFREG | 0444, dir,
10935d5182caSJohn Johansen 					      rawdata, &seq_rawdata_hash_fops);
10945d5182caSJohn Johansen 		if (IS_ERR(dent))
10955d5182caSJohn Johansen 			goto fail;
10965d5182caSJohn Johansen 		rawdata->dents[AAFS_LOADDATA_HASH] = dent;
10975d5182caSJohn Johansen 	}
10985d5182caSJohn Johansen 
1099c961ee5fSJohn Johansen 	dent = aafs_create_file("raw_data", S_IFREG | 0444,
11005d5182caSJohn Johansen 				      dir, rawdata, &rawdata_fops);
11015d5182caSJohn Johansen 	if (IS_ERR(dent))
11025d5182caSJohn Johansen 		goto fail;
11035d5182caSJohn Johansen 	rawdata->dents[AAFS_LOADDATA_DATA] = dent;
11045d5182caSJohn Johansen 	d_inode(dent)->i_size = rawdata->size;
11055d5182caSJohn Johansen 
11065d5182caSJohn Johansen 	rawdata->ns = aa_get_ns(ns);
11075d5182caSJohn Johansen 	list_add(&rawdata->list, &ns->rawdata_list);
11085d5182caSJohn Johansen 	/* no refcount on inode rawdata */
11095d5182caSJohn Johansen 
11105d5182caSJohn Johansen 	return 0;
11115d5182caSJohn Johansen 
11125d5182caSJohn Johansen fail:
11135d5182caSJohn Johansen 	remove_rawdata_dents(rawdata);
11145d5182caSJohn Johansen 
11155d5182caSJohn Johansen 	return PTR_ERR(dent);
11165d5182caSJohn Johansen }
11175d5182caSJohn Johansen 
11180d259f04SJohn Johansen /** fns to setup dynamic per profile/namespace files **/
1119c97204baSJohn Johansen 
1120c97204baSJohn Johansen /**
1121c97204baSJohn Johansen  *
1122c97204baSJohn Johansen  * Requires: @profile->ns->lock held
1123c97204baSJohn Johansen  */
1124c97204baSJohn Johansen void __aafs_profile_rmdir(struct aa_profile *profile)
11250d259f04SJohn Johansen {
11260d259f04SJohn Johansen 	struct aa_profile *child;
11270d259f04SJohn Johansen 	int i;
11280d259f04SJohn Johansen 
11290d259f04SJohn Johansen 	if (!profile)
11300d259f04SJohn Johansen 		return;
11310d259f04SJohn Johansen 
11320d259f04SJohn Johansen 	list_for_each_entry(child, &profile->base.profiles, base.list)
1133c97204baSJohn Johansen 		__aafs_profile_rmdir(child);
11340d259f04SJohn Johansen 
11350d259f04SJohn Johansen 	for (i = AAFS_PROF_SIZEOF - 1; i >= 0; --i) {
11368399588aSJohn Johansen 		struct aa_proxy *proxy;
11370d259f04SJohn Johansen 		if (!profile->dents[i])
11380d259f04SJohn Johansen 			continue;
11390d259f04SJohn Johansen 
11408399588aSJohn Johansen 		proxy = d_inode(profile->dents[i])->i_private;
1141c961ee5fSJohn Johansen 		aafs_remove(profile->dents[i]);
11428399588aSJohn Johansen 		aa_put_proxy(proxy);
11430d259f04SJohn Johansen 		profile->dents[i] = NULL;
11440d259f04SJohn Johansen 	}
11450d259f04SJohn Johansen }
11460d259f04SJohn Johansen 
1147c97204baSJohn Johansen /**
1148c97204baSJohn Johansen  *
1149c97204baSJohn Johansen  * Requires: @old->ns->lock held
1150c97204baSJohn Johansen  */
1151c97204baSJohn Johansen void __aafs_profile_migrate_dents(struct aa_profile *old,
11520d259f04SJohn Johansen 				  struct aa_profile *new)
11530d259f04SJohn Johansen {
11540d259f04SJohn Johansen 	int i;
11550d259f04SJohn Johansen 
11560d259f04SJohn Johansen 	for (i = 0; i < AAFS_PROF_SIZEOF; i++) {
11570d259f04SJohn Johansen 		new->dents[i] = old->dents[i];
1158d671e890SJohn Johansen 		if (new->dents[i])
1159078cd827SDeepa Dinamani 			new->dents[i]->d_inode->i_mtime = current_time(new->dents[i]->d_inode);
11600d259f04SJohn Johansen 		old->dents[i] = NULL;
11610d259f04SJohn Johansen 	}
11620d259f04SJohn Johansen }
11630d259f04SJohn Johansen 
11640d259f04SJohn Johansen static struct dentry *create_profile_file(struct dentry *dir, const char *name,
11650d259f04SJohn Johansen 					  struct aa_profile *profile,
11660d259f04SJohn Johansen 					  const struct file_operations *fops)
11670d259f04SJohn Johansen {
11688399588aSJohn Johansen 	struct aa_proxy *proxy = aa_get_proxy(profile->proxy);
11690d259f04SJohn Johansen 	struct dentry *dent;
11700d259f04SJohn Johansen 
1171c961ee5fSJohn Johansen 	dent = aafs_create_file(name, S_IFREG | 0444, dir, proxy, fops);
11720d259f04SJohn Johansen 	if (IS_ERR(dent))
11738399588aSJohn Johansen 		aa_put_proxy(proxy);
11740d259f04SJohn Johansen 
11750d259f04SJohn Johansen 	return dent;
11760d259f04SJohn Johansen }
11770d259f04SJohn Johansen 
11785d5182caSJohn Johansen static int profile_depth(struct aa_profile *profile)
11795d5182caSJohn Johansen {
11805d5182caSJohn Johansen 	int depth = 0;
11815d5182caSJohn Johansen 
11825d5182caSJohn Johansen 	rcu_read_lock();
11835d5182caSJohn Johansen 	for (depth = 0; profile; profile = rcu_access_pointer(profile->parent))
11845d5182caSJohn Johansen 		depth++;
11855d5182caSJohn Johansen 	rcu_read_unlock();
11865d5182caSJohn Johansen 
11875d5182caSJohn Johansen 	return depth;
11885d5182caSJohn Johansen }
11895d5182caSJohn Johansen 
11905d5182caSJohn Johansen static int gen_symlink_name(char *buffer, size_t bsize, int depth,
11915d5182caSJohn Johansen 			    const char *dirname, const char *fname)
11925d5182caSJohn Johansen {
11935d5182caSJohn Johansen 	int error;
11945d5182caSJohn Johansen 
11955d5182caSJohn Johansen 	for (; depth > 0; depth--) {
11965d5182caSJohn Johansen 		if (bsize < 7)
11975d5182caSJohn Johansen 			return -ENAMETOOLONG;
11985d5182caSJohn Johansen 		strcpy(buffer, "../../");
11995d5182caSJohn Johansen 		buffer += 6;
12005d5182caSJohn Johansen 		bsize -= 6;
12015d5182caSJohn Johansen 	}
12025d5182caSJohn Johansen 
12035d5182caSJohn Johansen 	error = snprintf(buffer, bsize, "raw_data/%s/%s", dirname, fname);
12045d5182caSJohn Johansen 	if (error >= bsize || error < 0)
12055d5182caSJohn Johansen 		return -ENAMETOOLONG;
12065d5182caSJohn Johansen 
12075d5182caSJohn Johansen 	return 0;
12085d5182caSJohn Johansen }
12095d5182caSJohn Johansen 
12105d5182caSJohn Johansen /*
12115d5182caSJohn Johansen  * Requires: @profile->ns->lock held
12125d5182caSJohn Johansen  */
1213c97204baSJohn Johansen int __aafs_profile_mkdir(struct aa_profile *profile, struct dentry *parent)
12140d259f04SJohn Johansen {
12150d259f04SJohn Johansen 	struct aa_profile *child;
12160d259f04SJohn Johansen 	struct dentry *dent = NULL, *dir;
12170d259f04SJohn Johansen 	int error;
12180d259f04SJohn Johansen 
12190d259f04SJohn Johansen 	if (!parent) {
12200d259f04SJohn Johansen 		struct aa_profile *p;
12210d259f04SJohn Johansen 		p = aa_deref_parent(profile);
12220d259f04SJohn Johansen 		dent = prof_dir(p);
12230d259f04SJohn Johansen 		/* adding to parent that previously didn't have children */
1224c961ee5fSJohn Johansen 		dent = aafs_create_dir("profiles", dent);
12250d259f04SJohn Johansen 		if (IS_ERR(dent))
12260d259f04SJohn Johansen 			goto fail;
12270d259f04SJohn Johansen 		prof_child_dir(p) = parent = dent;
12280d259f04SJohn Johansen 	}
12290d259f04SJohn Johansen 
12300d259f04SJohn Johansen 	if (!profile->dirname) {
12310d259f04SJohn Johansen 		int len, id_len;
12320d259f04SJohn Johansen 		len = mangle_name(profile->base.name, NULL);
12330d259f04SJohn Johansen 		id_len = snprintf(NULL, 0, ".%ld", profile->ns->uniq_id);
12340d259f04SJohn Johansen 
12350d259f04SJohn Johansen 		profile->dirname = kmalloc(len + id_len + 1, GFP_KERNEL);
1236ffac1de6SDan Carpenter 		if (!profile->dirname) {
1237ffac1de6SDan Carpenter 			error = -ENOMEM;
1238ffac1de6SDan Carpenter 			goto fail2;
1239ffac1de6SDan Carpenter 		}
12400d259f04SJohn Johansen 
12410d259f04SJohn Johansen 		mangle_name(profile->base.name, profile->dirname);
12420d259f04SJohn Johansen 		sprintf(profile->dirname + len, ".%ld", profile->ns->uniq_id++);
12430d259f04SJohn Johansen 	}
12440d259f04SJohn Johansen 
1245c961ee5fSJohn Johansen 	dent = aafs_create_dir(profile->dirname, parent);
12460d259f04SJohn Johansen 	if (IS_ERR(dent))
12470d259f04SJohn Johansen 		goto fail;
12480d259f04SJohn Johansen 	prof_dir(profile) = dir = dent;
12490d259f04SJohn Johansen 
125052b97de3SJohn Johansen 	dent = create_profile_file(dir, "name", profile,
125152b97de3SJohn Johansen 				   &seq_profile_name_fops);
12520d259f04SJohn Johansen 	if (IS_ERR(dent))
12530d259f04SJohn Johansen 		goto fail;
12540d259f04SJohn Johansen 	profile->dents[AAFS_PROF_NAME] = dent;
12550d259f04SJohn Johansen 
125652b97de3SJohn Johansen 	dent = create_profile_file(dir, "mode", profile,
125752b97de3SJohn Johansen 				   &seq_profile_mode_fops);
12580d259f04SJohn Johansen 	if (IS_ERR(dent))
12590d259f04SJohn Johansen 		goto fail;
12600d259f04SJohn Johansen 	profile->dents[AAFS_PROF_MODE] = dent;
12610d259f04SJohn Johansen 
1262556d0be7SJohn Johansen 	dent = create_profile_file(dir, "attach", profile,
126352b97de3SJohn Johansen 				   &seq_profile_attach_fops);
1264556d0be7SJohn Johansen 	if (IS_ERR(dent))
1265556d0be7SJohn Johansen 		goto fail;
1266556d0be7SJohn Johansen 	profile->dents[AAFS_PROF_ATTACH] = dent;
1267556d0be7SJohn Johansen 
1268f8eb8a13SJohn Johansen 	if (profile->hash) {
1269f8eb8a13SJohn Johansen 		dent = create_profile_file(dir, "sha1", profile,
127052b97de3SJohn Johansen 					   &seq_profile_hash_fops);
1271f8eb8a13SJohn Johansen 		if (IS_ERR(dent))
1272f8eb8a13SJohn Johansen 			goto fail;
1273f8eb8a13SJohn Johansen 		profile->dents[AAFS_PROF_HASH] = dent;
1274f8eb8a13SJohn Johansen 	}
1275f8eb8a13SJohn Johansen 
12765ac8c355SJohn Johansen 	if (profile->rawdata) {
12775d5182caSJohn Johansen 		char target[64];
12785d5182caSJohn Johansen 		int depth = profile_depth(profile);
12795d5182caSJohn Johansen 
12805d5182caSJohn Johansen 		error = gen_symlink_name(target, sizeof(target), depth,
12815d5182caSJohn Johansen 					 profile->rawdata->name, "sha1");
12825d5182caSJohn Johansen 		if (error < 0)
12835d5182caSJohn Johansen 			goto fail2;
1284c961ee5fSJohn Johansen 		dent = aafs_create_symlink("raw_sha1", dir, target, NULL);
12855ac8c355SJohn Johansen 		if (IS_ERR(dent))
12865ac8c355SJohn Johansen 			goto fail;
12875ac8c355SJohn Johansen 		profile->dents[AAFS_PROF_RAW_HASH] = dent;
12885ac8c355SJohn Johansen 
12895d5182caSJohn Johansen 		error = gen_symlink_name(target, sizeof(target), depth,
12905d5182caSJohn Johansen 					 profile->rawdata->name, "abi");
12915d5182caSJohn Johansen 		if (error < 0)
12925d5182caSJohn Johansen 			goto fail2;
1293c961ee5fSJohn Johansen 		dent = aafs_create_symlink("raw_abi", dir, target, NULL);
12945ac8c355SJohn Johansen 		if (IS_ERR(dent))
12955ac8c355SJohn Johansen 			goto fail;
12965ac8c355SJohn Johansen 		profile->dents[AAFS_PROF_RAW_ABI] = dent;
12975ac8c355SJohn Johansen 
12985d5182caSJohn Johansen 		error = gen_symlink_name(target, sizeof(target), depth,
12995d5182caSJohn Johansen 					 profile->rawdata->name, "raw_data");
13005d5182caSJohn Johansen 		if (error < 0)
13015d5182caSJohn Johansen 			goto fail2;
1302c961ee5fSJohn Johansen 		dent = aafs_create_symlink("raw_data", dir, target, NULL);
13035ac8c355SJohn Johansen 		if (IS_ERR(dent))
13045ac8c355SJohn Johansen 			goto fail;
13055ac8c355SJohn Johansen 		profile->dents[AAFS_PROF_RAW_DATA] = dent;
13065ac8c355SJohn Johansen 	}
13075ac8c355SJohn Johansen 
13080d259f04SJohn Johansen 	list_for_each_entry(child, &profile->base.profiles, base.list) {
1309c97204baSJohn Johansen 		error = __aafs_profile_mkdir(child, prof_child_dir(profile));
13100d259f04SJohn Johansen 		if (error)
13110d259f04SJohn Johansen 			goto fail2;
13120d259f04SJohn Johansen 	}
13130d259f04SJohn Johansen 
13140d259f04SJohn Johansen 	return 0;
13150d259f04SJohn Johansen 
13160d259f04SJohn Johansen fail:
13170d259f04SJohn Johansen 	error = PTR_ERR(dent);
13180d259f04SJohn Johansen 
13190d259f04SJohn Johansen fail2:
1320c97204baSJohn Johansen 	__aafs_profile_rmdir(profile);
13210d259f04SJohn Johansen 
13220d259f04SJohn Johansen 	return error;
13230d259f04SJohn Johansen }
13240d259f04SJohn Johansen 
13254ae47f33SJohn Johansen static int ns_mkdir_op(struct inode *dir, struct dentry *dentry, umode_t mode)
13264ae47f33SJohn Johansen {
13274ae47f33SJohn Johansen 	struct aa_ns *ns, *parent;
13284ae47f33SJohn Johansen 	/* TODO: improve permission check */
13294ae47f33SJohn Johansen 	struct aa_profile *profile = aa_current_profile();
13304ae47f33SJohn Johansen 	int error = aa_may_manage_policy(profile, NULL, AA_MAY_LOAD_POLICY);
13314ae47f33SJohn Johansen 
13324ae47f33SJohn Johansen 	if (error)
13334ae47f33SJohn Johansen 		return error;
13344ae47f33SJohn Johansen 
13354ae47f33SJohn Johansen 	parent = aa_get_ns(dir->i_private);
13364ae47f33SJohn Johansen 	AA_BUG(d_inode(ns_subns_dir(parent)) != dir);
13374ae47f33SJohn Johansen 
13384ae47f33SJohn Johansen 	/* we have to unlock and then relock to get locking order right
13394ae47f33SJohn Johansen 	 * for pin_fs
13404ae47f33SJohn Johansen 	 */
13414ae47f33SJohn Johansen 	inode_unlock(dir);
13424ae47f33SJohn Johansen 	error = simple_pin_fs(&aafs_ops, &aafs_mnt, &aafs_count);
13434ae47f33SJohn Johansen 	mutex_lock(&parent->lock);
13444ae47f33SJohn Johansen 	inode_lock_nested(dir, I_MUTEX_PARENT);
13454ae47f33SJohn Johansen 	if (error)
13464ae47f33SJohn Johansen 		goto out;
13474ae47f33SJohn Johansen 
13484ae47f33SJohn Johansen 	error = __aafs_setup_d_inode(dir, dentry, mode | S_IFDIR,  NULL,
13494ae47f33SJohn Johansen 				     NULL, NULL, NULL);
13504ae47f33SJohn Johansen 	if (error)
13514ae47f33SJohn Johansen 		goto out_pin;
13524ae47f33SJohn Johansen 
13534ae47f33SJohn Johansen 	ns = __aa_find_or_create_ns(parent, READ_ONCE(dentry->d_name.name),
13544ae47f33SJohn Johansen 				    dentry);
13554ae47f33SJohn Johansen 	if (IS_ERR(ns)) {
13564ae47f33SJohn Johansen 		error = PTR_ERR(ns);
13574ae47f33SJohn Johansen 		ns = NULL;
13584ae47f33SJohn Johansen 	}
13594ae47f33SJohn Johansen 
13604ae47f33SJohn Johansen 	aa_put_ns(ns);		/* list ref remains */
13614ae47f33SJohn Johansen out_pin:
13624ae47f33SJohn Johansen 	if (error)
13634ae47f33SJohn Johansen 		simple_release_fs(&aafs_mnt, &aafs_count);
13644ae47f33SJohn Johansen out:
13654ae47f33SJohn Johansen 	mutex_unlock(&parent->lock);
13664ae47f33SJohn Johansen 	aa_put_ns(parent);
13674ae47f33SJohn Johansen 
13684ae47f33SJohn Johansen 	return error;
13694ae47f33SJohn Johansen }
13704ae47f33SJohn Johansen 
13714ae47f33SJohn Johansen static int ns_rmdir_op(struct inode *dir, struct dentry *dentry)
13724ae47f33SJohn Johansen {
13734ae47f33SJohn Johansen 	struct aa_ns *ns, *parent;
13744ae47f33SJohn Johansen 	/* TODO: improve permission check */
13754ae47f33SJohn Johansen 	struct aa_profile *profile = aa_current_profile();
13764ae47f33SJohn Johansen 	int error = aa_may_manage_policy(profile, NULL, AA_MAY_LOAD_POLICY);
13774ae47f33SJohn Johansen 
13784ae47f33SJohn Johansen 	if (error)
13794ae47f33SJohn Johansen 		return error;
13804ae47f33SJohn Johansen 
13814ae47f33SJohn Johansen 	parent = aa_get_ns(dir->i_private);
13824ae47f33SJohn Johansen 	/* rmdir calls the generic securityfs functions to remove files
13834ae47f33SJohn Johansen 	 * from the apparmor dir. It is up to the apparmor ns locking
13844ae47f33SJohn Johansen 	 * to avoid races.
13854ae47f33SJohn Johansen 	 */
13864ae47f33SJohn Johansen 	inode_unlock(dir);
13874ae47f33SJohn Johansen 	inode_unlock(dentry->d_inode);
13884ae47f33SJohn Johansen 
13894ae47f33SJohn Johansen 	mutex_lock(&parent->lock);
13904ae47f33SJohn Johansen 	ns = aa_get_ns(__aa_findn_ns(&parent->sub_ns, dentry->d_name.name,
13914ae47f33SJohn Johansen 				     dentry->d_name.len));
13924ae47f33SJohn Johansen 	if (!ns) {
13934ae47f33SJohn Johansen 		error = -ENOENT;
13944ae47f33SJohn Johansen 		goto out;
13954ae47f33SJohn Johansen 	}
13964ae47f33SJohn Johansen 	AA_BUG(ns_dir(ns) != dentry);
13974ae47f33SJohn Johansen 
13984ae47f33SJohn Johansen 	__aa_remove_ns(ns);
13994ae47f33SJohn Johansen 	aa_put_ns(ns);
14004ae47f33SJohn Johansen 
14014ae47f33SJohn Johansen out:
14024ae47f33SJohn Johansen 	mutex_unlock(&parent->lock);
14034ae47f33SJohn Johansen 	inode_lock_nested(dir, I_MUTEX_PARENT);
14044ae47f33SJohn Johansen 	inode_lock(dentry->d_inode);
14054ae47f33SJohn Johansen 	aa_put_ns(parent);
14064ae47f33SJohn Johansen 
14074ae47f33SJohn Johansen 	return error;
14084ae47f33SJohn Johansen }
14094ae47f33SJohn Johansen 
14104ae47f33SJohn Johansen static const struct inode_operations ns_dir_inode_operations = {
14114ae47f33SJohn Johansen 	.lookup		= simple_lookup,
14124ae47f33SJohn Johansen 	.mkdir		= ns_mkdir_op,
14134ae47f33SJohn Johansen 	.rmdir		= ns_rmdir_op,
14144ae47f33SJohn Johansen };
14154ae47f33SJohn Johansen 
14165d5182caSJohn Johansen static void __aa_fs_list_remove_rawdata(struct aa_ns *ns)
14175d5182caSJohn Johansen {
14185d5182caSJohn Johansen 	struct aa_loaddata *ent, *tmp;
14195d5182caSJohn Johansen 
14205d5182caSJohn Johansen 	AA_BUG(!mutex_is_locked(&ns->lock));
14215d5182caSJohn Johansen 
14225d5182caSJohn Johansen 	list_for_each_entry_safe(ent, tmp, &ns->rawdata_list, list)
14235d5182caSJohn Johansen 		__aa_fs_remove_rawdata(ent);
14245d5182caSJohn Johansen }
14255d5182caSJohn Johansen 
1426c97204baSJohn Johansen /**
1427c97204baSJohn Johansen  *
1428c97204baSJohn Johansen  * Requires: @ns->lock held
1429c97204baSJohn Johansen  */
1430c97204baSJohn Johansen void __aafs_ns_rmdir(struct aa_ns *ns)
14310d259f04SJohn Johansen {
143298849dffSJohn Johansen 	struct aa_ns *sub;
14330d259f04SJohn Johansen 	struct aa_profile *child;
14340d259f04SJohn Johansen 	int i;
14350d259f04SJohn Johansen 
14360d259f04SJohn Johansen 	if (!ns)
14370d259f04SJohn Johansen 		return;
14380d259f04SJohn Johansen 
14390d259f04SJohn Johansen 	list_for_each_entry(child, &ns->base.profiles, base.list)
1440c97204baSJohn Johansen 		__aafs_profile_rmdir(child);
14410d259f04SJohn Johansen 
14420d259f04SJohn Johansen 	list_for_each_entry(sub, &ns->sub_ns, base.list) {
14430d259f04SJohn Johansen 		mutex_lock(&sub->lock);
1444c97204baSJohn Johansen 		__aafs_ns_rmdir(sub);
14450d259f04SJohn Johansen 		mutex_unlock(&sub->lock);
14460d259f04SJohn Johansen 	}
14470d259f04SJohn Johansen 
14485d5182caSJohn Johansen 	__aa_fs_list_remove_rawdata(ns);
14495d5182caSJohn Johansen 
1450b7fd2c03SJohn Johansen 	if (ns_subns_dir(ns)) {
1451b7fd2c03SJohn Johansen 		sub = d_inode(ns_subns_dir(ns))->i_private;
1452b7fd2c03SJohn Johansen 		aa_put_ns(sub);
1453b7fd2c03SJohn Johansen 	}
1454b7fd2c03SJohn Johansen 	if (ns_subload(ns)) {
1455b7fd2c03SJohn Johansen 		sub = d_inode(ns_subload(ns))->i_private;
1456b7fd2c03SJohn Johansen 		aa_put_ns(sub);
1457b7fd2c03SJohn Johansen 	}
1458b7fd2c03SJohn Johansen 	if (ns_subreplace(ns)) {
1459b7fd2c03SJohn Johansen 		sub = d_inode(ns_subreplace(ns))->i_private;
1460b7fd2c03SJohn Johansen 		aa_put_ns(sub);
1461b7fd2c03SJohn Johansen 	}
1462b7fd2c03SJohn Johansen 	if (ns_subremove(ns)) {
1463b7fd2c03SJohn Johansen 		sub = d_inode(ns_subremove(ns))->i_private;
1464b7fd2c03SJohn Johansen 		aa_put_ns(sub);
1465b7fd2c03SJohn Johansen 	}
1466d9bf2c26SJohn Johansen 	if (ns_subrevision(ns)) {
1467d9bf2c26SJohn Johansen 		sub = d_inode(ns_subrevision(ns))->i_private;
1468d9bf2c26SJohn Johansen 		aa_put_ns(sub);
1469d9bf2c26SJohn Johansen 	}
1470b7fd2c03SJohn Johansen 
14710d259f04SJohn Johansen 	for (i = AAFS_NS_SIZEOF - 1; i >= 0; --i) {
1472c961ee5fSJohn Johansen 		aafs_remove(ns->dents[i]);
14730d259f04SJohn Johansen 		ns->dents[i] = NULL;
14740d259f04SJohn Johansen 	}
14750d259f04SJohn Johansen }
14760d259f04SJohn Johansen 
1477b7fd2c03SJohn Johansen /* assumes cleanup in caller */
1478c97204baSJohn Johansen static int __aafs_ns_mkdir_entries(struct aa_ns *ns, struct dentry *dir)
1479b7fd2c03SJohn Johansen {
1480b7fd2c03SJohn Johansen 	struct dentry *dent;
1481b7fd2c03SJohn Johansen 
1482b7fd2c03SJohn Johansen 	AA_BUG(!ns);
1483b7fd2c03SJohn Johansen 	AA_BUG(!dir);
1484b7fd2c03SJohn Johansen 
1485c961ee5fSJohn Johansen 	dent = aafs_create_dir("profiles", dir);
1486b7fd2c03SJohn Johansen 	if (IS_ERR(dent))
1487b7fd2c03SJohn Johansen 		return PTR_ERR(dent);
1488b7fd2c03SJohn Johansen 	ns_subprofs_dir(ns) = dent;
1489b7fd2c03SJohn Johansen 
1490c961ee5fSJohn Johansen 	dent = aafs_create_dir("raw_data", dir);
1491b7fd2c03SJohn Johansen 	if (IS_ERR(dent))
1492b7fd2c03SJohn Johansen 		return PTR_ERR(dent);
1493b7fd2c03SJohn Johansen 	ns_subdata_dir(ns) = dent;
1494b7fd2c03SJohn Johansen 
1495d9bf2c26SJohn Johansen 	dent = aafs_create_file("revision", 0444, dir, ns,
1496d9bf2c26SJohn Johansen 				&aa_fs_ns_revision_fops);
1497d9bf2c26SJohn Johansen 	if (IS_ERR(dent))
1498d9bf2c26SJohn Johansen 		return PTR_ERR(dent);
1499d9bf2c26SJohn Johansen 	aa_get_ns(ns);
1500d9bf2c26SJohn Johansen 	ns_subrevision(ns) = dent;
1501d9bf2c26SJohn Johansen 
1502c961ee5fSJohn Johansen 	dent = aafs_create_file(".load", 0640, dir, ns,
1503b7fd2c03SJohn Johansen 				      &aa_fs_profile_load);
1504b7fd2c03SJohn Johansen 	if (IS_ERR(dent))
1505b7fd2c03SJohn Johansen 		return PTR_ERR(dent);
1506b7fd2c03SJohn Johansen 	aa_get_ns(ns);
1507b7fd2c03SJohn Johansen 	ns_subload(ns) = dent;
1508b7fd2c03SJohn Johansen 
1509c961ee5fSJohn Johansen 	dent = aafs_create_file(".replace", 0640, dir, ns,
1510b7fd2c03SJohn Johansen 				      &aa_fs_profile_replace);
1511b7fd2c03SJohn Johansen 	if (IS_ERR(dent))
1512b7fd2c03SJohn Johansen 		return PTR_ERR(dent);
1513b7fd2c03SJohn Johansen 	aa_get_ns(ns);
1514b7fd2c03SJohn Johansen 	ns_subreplace(ns) = dent;
1515b7fd2c03SJohn Johansen 
1516c961ee5fSJohn Johansen 	dent = aafs_create_file(".remove", 0640, dir, ns,
1517b7fd2c03SJohn Johansen 				      &aa_fs_profile_remove);
1518b7fd2c03SJohn Johansen 	if (IS_ERR(dent))
1519b7fd2c03SJohn Johansen 		return PTR_ERR(dent);
1520b7fd2c03SJohn Johansen 	aa_get_ns(ns);
1521b7fd2c03SJohn Johansen 	ns_subremove(ns) = dent;
1522b7fd2c03SJohn Johansen 
15234ae47f33SJohn Johansen 	  /* use create_dentry so we can supply private data */
15244ae47f33SJohn Johansen 	dent = aafs_create("namespaces", S_IFDIR | 0755, dir, ns, NULL, NULL,
15254ae47f33SJohn Johansen 			   &ns_dir_inode_operations);
1526b7fd2c03SJohn Johansen 	if (IS_ERR(dent))
1527b7fd2c03SJohn Johansen 		return PTR_ERR(dent);
1528b7fd2c03SJohn Johansen 	aa_get_ns(ns);
1529b7fd2c03SJohn Johansen 	ns_subns_dir(ns) = dent;
1530b7fd2c03SJohn Johansen 
1531b7fd2c03SJohn Johansen 	return 0;
1532b7fd2c03SJohn Johansen }
1533b7fd2c03SJohn Johansen 
1534c97204baSJohn Johansen /*
1535c97204baSJohn Johansen  * Requires: @ns->lock held
1536c97204baSJohn Johansen  */
153798407f0aSJohn Johansen int __aafs_ns_mkdir(struct aa_ns *ns, struct dentry *parent, const char *name,
153898407f0aSJohn Johansen 		    struct dentry *dent)
15390d259f04SJohn Johansen {
154098849dffSJohn Johansen 	struct aa_ns *sub;
15410d259f04SJohn Johansen 	struct aa_profile *child;
154298407f0aSJohn Johansen 	struct dentry *dir;
15430d259f04SJohn Johansen 	int error;
15440d259f04SJohn Johansen 
1545b7fd2c03SJohn Johansen 	AA_BUG(!ns);
1546b7fd2c03SJohn Johansen 	AA_BUG(!parent);
1547b7fd2c03SJohn Johansen 	AA_BUG(!mutex_is_locked(&ns->lock));
1548b7fd2c03SJohn Johansen 
15490d259f04SJohn Johansen 	if (!name)
15500d259f04SJohn Johansen 		name = ns->base.name;
15510d259f04SJohn Johansen 
1552c961ee5fSJohn Johansen 	if (!dent) {
1553b7fd2c03SJohn Johansen 		/* create ns dir if it doesn't already exist */
1554c961ee5fSJohn Johansen 		dent = aafs_create_dir(name, parent);
15550d259f04SJohn Johansen 		if (IS_ERR(dent))
15560d259f04SJohn Johansen 			goto fail;
1557c961ee5fSJohn Johansen 	} else
1558c961ee5fSJohn Johansen 		dget(dent);
15590d259f04SJohn Johansen 	ns_dir(ns) = dir = dent;
1560c97204baSJohn Johansen 	error = __aafs_ns_mkdir_entries(ns, dir);
1561b7fd2c03SJohn Johansen 	if (error)
1562b7fd2c03SJohn Johansen 		goto fail2;
15630d259f04SJohn Johansen 
1564b7fd2c03SJohn Johansen 	/* profiles */
15650d259f04SJohn Johansen 	list_for_each_entry(child, &ns->base.profiles, base.list) {
1566c97204baSJohn Johansen 		error = __aafs_profile_mkdir(child, ns_subprofs_dir(ns));
15670d259f04SJohn Johansen 		if (error)
15680d259f04SJohn Johansen 			goto fail2;
15690d259f04SJohn Johansen 	}
15700d259f04SJohn Johansen 
1571b7fd2c03SJohn Johansen 	/* subnamespaces */
15720d259f04SJohn Johansen 	list_for_each_entry(sub, &ns->sub_ns, base.list) {
15730d259f04SJohn Johansen 		mutex_lock(&sub->lock);
157498407f0aSJohn Johansen 		error = __aafs_ns_mkdir(sub, ns_subns_dir(ns), NULL, NULL);
15750d259f04SJohn Johansen 		mutex_unlock(&sub->lock);
15760d259f04SJohn Johansen 		if (error)
15770d259f04SJohn Johansen 			goto fail2;
15780d259f04SJohn Johansen 	}
15790d259f04SJohn Johansen 
15800d259f04SJohn Johansen 	return 0;
15810d259f04SJohn Johansen 
15820d259f04SJohn Johansen fail:
15830d259f04SJohn Johansen 	error = PTR_ERR(dent);
15840d259f04SJohn Johansen 
15850d259f04SJohn Johansen fail2:
1586c97204baSJohn Johansen 	__aafs_ns_rmdir(ns);
15870d259f04SJohn Johansen 
15880d259f04SJohn Johansen 	return error;
15890d259f04SJohn Johansen }
15900d259f04SJohn Johansen 
15910d259f04SJohn Johansen 
159229b3822fSJohn Johansen #define list_entry_is_head(pos, head, member) (&pos->member == (head))
159329b3822fSJohn Johansen 
159429b3822fSJohn Johansen /**
159598849dffSJohn Johansen  * __next_ns - find the next namespace to list
159629b3822fSJohn Johansen  * @root: root namespace to stop search at (NOT NULL)
159729b3822fSJohn Johansen  * @ns: current ns position (NOT NULL)
159829b3822fSJohn Johansen  *
159929b3822fSJohn Johansen  * Find the next namespace from @ns under @root and handle all locking needed
160029b3822fSJohn Johansen  * while switching current namespace.
160129b3822fSJohn Johansen  *
160229b3822fSJohn Johansen  * Returns: next namespace or NULL if at last namespace under @root
160329b3822fSJohn Johansen  * Requires: ns->parent->lock to be held
160429b3822fSJohn Johansen  * NOTE: will not unlock root->lock
160529b3822fSJohn Johansen  */
160698849dffSJohn Johansen static struct aa_ns *__next_ns(struct aa_ns *root, struct aa_ns *ns)
160729b3822fSJohn Johansen {
160898849dffSJohn Johansen 	struct aa_ns *parent, *next;
160929b3822fSJohn Johansen 
161029b3822fSJohn Johansen 	/* is next namespace a child */
161129b3822fSJohn Johansen 	if (!list_empty(&ns->sub_ns)) {
161229b3822fSJohn Johansen 		next = list_first_entry(&ns->sub_ns, typeof(*ns), base.list);
161329b3822fSJohn Johansen 		mutex_lock(&next->lock);
161429b3822fSJohn Johansen 		return next;
161529b3822fSJohn Johansen 	}
161629b3822fSJohn Johansen 
161729b3822fSJohn Johansen 	/* check if the next ns is a sibling, parent, gp, .. */
161829b3822fSJohn Johansen 	parent = ns->parent;
1619ed2c7da3SJohn Johansen 	while (ns != root) {
162029b3822fSJohn Johansen 		mutex_unlock(&ns->lock);
162138dbd7d8SGeliang Tang 		next = list_next_entry(ns, base.list);
162229b3822fSJohn Johansen 		if (!list_entry_is_head(next, &parent->sub_ns, base.list)) {
162329b3822fSJohn Johansen 			mutex_lock(&next->lock);
162429b3822fSJohn Johansen 			return next;
162529b3822fSJohn Johansen 		}
162629b3822fSJohn Johansen 		ns = parent;
162729b3822fSJohn Johansen 		parent = parent->parent;
162829b3822fSJohn Johansen 	}
162929b3822fSJohn Johansen 
163029b3822fSJohn Johansen 	return NULL;
163129b3822fSJohn Johansen }
163229b3822fSJohn Johansen 
163329b3822fSJohn Johansen /**
163429b3822fSJohn Johansen  * __first_profile - find the first profile in a namespace
163529b3822fSJohn Johansen  * @root: namespace that is root of profiles being displayed (NOT NULL)
163629b3822fSJohn Johansen  * @ns: namespace to start in   (NOT NULL)
163729b3822fSJohn Johansen  *
163829b3822fSJohn Johansen  * Returns: unrefcounted profile or NULL if no profile
163929b3822fSJohn Johansen  * Requires: profile->ns.lock to be held
164029b3822fSJohn Johansen  */
164198849dffSJohn Johansen static struct aa_profile *__first_profile(struct aa_ns *root,
164298849dffSJohn Johansen 					  struct aa_ns *ns)
164329b3822fSJohn Johansen {
164498849dffSJohn Johansen 	for (; ns; ns = __next_ns(root, ns)) {
164529b3822fSJohn Johansen 		if (!list_empty(&ns->base.profiles))
164629b3822fSJohn Johansen 			return list_first_entry(&ns->base.profiles,
164729b3822fSJohn Johansen 						struct aa_profile, base.list);
164829b3822fSJohn Johansen 	}
164929b3822fSJohn Johansen 	return NULL;
165029b3822fSJohn Johansen }
165129b3822fSJohn Johansen 
165229b3822fSJohn Johansen /**
165329b3822fSJohn Johansen  * __next_profile - step to the next profile in a profile tree
165429b3822fSJohn Johansen  * @profile: current profile in tree (NOT NULL)
165529b3822fSJohn Johansen  *
165629b3822fSJohn Johansen  * Perform a depth first traversal on the profile tree in a namespace
165729b3822fSJohn Johansen  *
165829b3822fSJohn Johansen  * Returns: next profile or NULL if done
165929b3822fSJohn Johansen  * Requires: profile->ns.lock to be held
166029b3822fSJohn Johansen  */
166129b3822fSJohn Johansen static struct aa_profile *__next_profile(struct aa_profile *p)
166229b3822fSJohn Johansen {
166329b3822fSJohn Johansen 	struct aa_profile *parent;
166498849dffSJohn Johansen 	struct aa_ns *ns = p->ns;
166529b3822fSJohn Johansen 
166629b3822fSJohn Johansen 	/* is next profile a child */
166729b3822fSJohn Johansen 	if (!list_empty(&p->base.profiles))
166829b3822fSJohn Johansen 		return list_first_entry(&p->base.profiles, typeof(*p),
166929b3822fSJohn Johansen 					base.list);
167029b3822fSJohn Johansen 
167129b3822fSJohn Johansen 	/* is next profile a sibling, parent sibling, gp, sibling, .. */
167229b3822fSJohn Johansen 	parent = rcu_dereference_protected(p->parent,
167329b3822fSJohn Johansen 					   mutex_is_locked(&p->ns->lock));
167429b3822fSJohn Johansen 	while (parent) {
167538dbd7d8SGeliang Tang 		p = list_next_entry(p, base.list);
167629b3822fSJohn Johansen 		if (!list_entry_is_head(p, &parent->base.profiles, base.list))
167729b3822fSJohn Johansen 			return p;
167829b3822fSJohn Johansen 		p = parent;
167929b3822fSJohn Johansen 		parent = rcu_dereference_protected(parent->parent,
168029b3822fSJohn Johansen 					    mutex_is_locked(&parent->ns->lock));
168129b3822fSJohn Johansen 	}
168229b3822fSJohn Johansen 
168329b3822fSJohn Johansen 	/* is next another profile in the namespace */
168438dbd7d8SGeliang Tang 	p = list_next_entry(p, base.list);
168529b3822fSJohn Johansen 	if (!list_entry_is_head(p, &ns->base.profiles, base.list))
168629b3822fSJohn Johansen 		return p;
168729b3822fSJohn Johansen 
168829b3822fSJohn Johansen 	return NULL;
168929b3822fSJohn Johansen }
169029b3822fSJohn Johansen 
169129b3822fSJohn Johansen /**
169229b3822fSJohn Johansen  * next_profile - step to the next profile in where ever it may be
169329b3822fSJohn Johansen  * @root: root namespace  (NOT NULL)
169429b3822fSJohn Johansen  * @profile: current profile  (NOT NULL)
169529b3822fSJohn Johansen  *
169629b3822fSJohn Johansen  * Returns: next profile or NULL if there isn't one
169729b3822fSJohn Johansen  */
169898849dffSJohn Johansen static struct aa_profile *next_profile(struct aa_ns *root,
169929b3822fSJohn Johansen 				       struct aa_profile *profile)
170029b3822fSJohn Johansen {
170129b3822fSJohn Johansen 	struct aa_profile *next = __next_profile(profile);
170229b3822fSJohn Johansen 	if (next)
170329b3822fSJohn Johansen 		return next;
170429b3822fSJohn Johansen 
170529b3822fSJohn Johansen 	/* finished all profiles in namespace move to next namespace */
170698849dffSJohn Johansen 	return __first_profile(root, __next_ns(root, profile->ns));
170729b3822fSJohn Johansen }
170829b3822fSJohn Johansen 
170929b3822fSJohn Johansen /**
171029b3822fSJohn Johansen  * p_start - start a depth first traversal of profile tree
171129b3822fSJohn Johansen  * @f: seq_file to fill
171229b3822fSJohn Johansen  * @pos: current position
171329b3822fSJohn Johansen  *
171429b3822fSJohn Johansen  * Returns: first profile under current namespace or NULL if none found
171529b3822fSJohn Johansen  *
171629b3822fSJohn Johansen  * acquires first ns->lock
171729b3822fSJohn Johansen  */
171829b3822fSJohn Johansen static void *p_start(struct seq_file *f, loff_t *pos)
171929b3822fSJohn Johansen {
172029b3822fSJohn Johansen 	struct aa_profile *profile = NULL;
172198849dffSJohn Johansen 	struct aa_ns *root = aa_current_profile()->ns;
172229b3822fSJohn Johansen 	loff_t l = *pos;
172398849dffSJohn Johansen 	f->private = aa_get_ns(root);
172429b3822fSJohn Johansen 
172529b3822fSJohn Johansen 
172629b3822fSJohn Johansen 	/* find the first profile */
172729b3822fSJohn Johansen 	mutex_lock(&root->lock);
172829b3822fSJohn Johansen 	profile = __first_profile(root, root);
172929b3822fSJohn Johansen 
173029b3822fSJohn Johansen 	/* skip to position */
173129b3822fSJohn Johansen 	for (; profile && l > 0; l--)
173229b3822fSJohn Johansen 		profile = next_profile(root, profile);
173329b3822fSJohn Johansen 
173429b3822fSJohn Johansen 	return profile;
173529b3822fSJohn Johansen }
173629b3822fSJohn Johansen 
173729b3822fSJohn Johansen /**
173829b3822fSJohn Johansen  * p_next - read the next profile entry
173929b3822fSJohn Johansen  * @f: seq_file to fill
174029b3822fSJohn Johansen  * @p: profile previously returned
174129b3822fSJohn Johansen  * @pos: current position
174229b3822fSJohn Johansen  *
174329b3822fSJohn Johansen  * Returns: next profile after @p or NULL if none
174429b3822fSJohn Johansen  *
174529b3822fSJohn Johansen  * may acquire/release locks in namespace tree as necessary
174629b3822fSJohn Johansen  */
174729b3822fSJohn Johansen static void *p_next(struct seq_file *f, void *p, loff_t *pos)
174829b3822fSJohn Johansen {
174929b3822fSJohn Johansen 	struct aa_profile *profile = p;
175098849dffSJohn Johansen 	struct aa_ns *ns = f->private;
175129b3822fSJohn Johansen 	(*pos)++;
175229b3822fSJohn Johansen 
175329b3822fSJohn Johansen 	return next_profile(ns, profile);
175429b3822fSJohn Johansen }
175529b3822fSJohn Johansen 
175629b3822fSJohn Johansen /**
175729b3822fSJohn Johansen  * p_stop - stop depth first traversal
175829b3822fSJohn Johansen  * @f: seq_file we are filling
175929b3822fSJohn Johansen  * @p: the last profile writen
176029b3822fSJohn Johansen  *
176129b3822fSJohn Johansen  * Release all locking done by p_start/p_next on namespace tree
176229b3822fSJohn Johansen  */
176329b3822fSJohn Johansen static void p_stop(struct seq_file *f, void *p)
176429b3822fSJohn Johansen {
176529b3822fSJohn Johansen 	struct aa_profile *profile = p;
176698849dffSJohn Johansen 	struct aa_ns *root = f->private, *ns;
176729b3822fSJohn Johansen 
176829b3822fSJohn Johansen 	if (profile) {
176929b3822fSJohn Johansen 		for (ns = profile->ns; ns && ns != root; ns = ns->parent)
177029b3822fSJohn Johansen 			mutex_unlock(&ns->lock);
177129b3822fSJohn Johansen 	}
177229b3822fSJohn Johansen 	mutex_unlock(&root->lock);
177398849dffSJohn Johansen 	aa_put_ns(root);
177429b3822fSJohn Johansen }
177529b3822fSJohn Johansen 
177629b3822fSJohn Johansen /**
177729b3822fSJohn Johansen  * seq_show_profile - show a profile entry
177829b3822fSJohn Johansen  * @f: seq_file to file
177929b3822fSJohn Johansen  * @p: current position (profile)    (NOT NULL)
178029b3822fSJohn Johansen  *
178129b3822fSJohn Johansen  * Returns: error on failure
178229b3822fSJohn Johansen  */
178329b3822fSJohn Johansen static int seq_show_profile(struct seq_file *f, void *p)
178429b3822fSJohn Johansen {
178529b3822fSJohn Johansen 	struct aa_profile *profile = (struct aa_profile *)p;
178698849dffSJohn Johansen 	struct aa_ns *root = f->private;
178729b3822fSJohn Johansen 
178829b3822fSJohn Johansen 	if (profile->ns != root)
178992b6d8efSJohn Johansen 		seq_printf(f, ":%s://", aa_ns_name(root, profile->ns, true));
179029b3822fSJohn Johansen 	seq_printf(f, "%s (%s)\n", profile->base.hname,
179129b3822fSJohn Johansen 		   aa_profile_mode_names[profile->mode]);
179229b3822fSJohn Johansen 
179329b3822fSJohn Johansen 	return 0;
179429b3822fSJohn Johansen }
179529b3822fSJohn Johansen 
1796c97204baSJohn Johansen static const struct seq_operations aa_sfs_profiles_op = {
179729b3822fSJohn Johansen 	.start = p_start,
179829b3822fSJohn Johansen 	.next = p_next,
179929b3822fSJohn Johansen 	.stop = p_stop,
180029b3822fSJohn Johansen 	.show = seq_show_profile,
180129b3822fSJohn Johansen };
180229b3822fSJohn Johansen 
180329b3822fSJohn Johansen static int profiles_open(struct inode *inode, struct file *file)
180429b3822fSJohn Johansen {
18055ac8c355SJohn Johansen 	if (!policy_view_capable(NULL))
18065ac8c355SJohn Johansen 		return -EACCES;
18075ac8c355SJohn Johansen 
1808c97204baSJohn Johansen 	return seq_open(file, &aa_sfs_profiles_op);
180929b3822fSJohn Johansen }
181029b3822fSJohn Johansen 
181129b3822fSJohn Johansen static int profiles_release(struct inode *inode, struct file *file)
181229b3822fSJohn Johansen {
181329b3822fSJohn Johansen 	return seq_release(inode, file);
181429b3822fSJohn Johansen }
181529b3822fSJohn Johansen 
1816c97204baSJohn Johansen static const struct file_operations aa_sfs_profiles_fops = {
181729b3822fSJohn Johansen 	.open = profiles_open,
181829b3822fSJohn Johansen 	.read = seq_read,
181929b3822fSJohn Johansen 	.llseek = seq_lseek,
182029b3822fSJohn Johansen 	.release = profiles_release,
182129b3822fSJohn Johansen };
182229b3822fSJohn Johansen 
182329b3822fSJohn Johansen 
18240d259f04SJohn Johansen /** Base file system setup **/
1825c97204baSJohn Johansen static struct aa_sfs_entry aa_sfs_entry_file[] = {
1826c97204baSJohn Johansen 	AA_SFS_FILE_STRING("mask",
1827c97204baSJohn Johansen 			   "create read write exec append mmap_exec link lock"),
1828a9bf8e9fSKees Cook 	{ }
1829a9bf8e9fSKees Cook };
1830a9bf8e9fSKees Cook 
1831c97204baSJohn Johansen static struct aa_sfs_entry aa_sfs_entry_domain[] = {
1832c97204baSJohn Johansen 	AA_SFS_FILE_BOOLEAN("change_hat",	1),
1833c97204baSJohn Johansen 	AA_SFS_FILE_BOOLEAN("change_hatv",	1),
1834c97204baSJohn Johansen 	AA_SFS_FILE_BOOLEAN("change_onexec",	1),
1835c97204baSJohn Johansen 	AA_SFS_FILE_BOOLEAN("change_profile",	1),
1836c97204baSJohn Johansen 	AA_SFS_FILE_BOOLEAN("fix_binfmt_elf_mmap",	1),
1837c97204baSJohn Johansen 	AA_SFS_FILE_STRING("version", "1.2"),
1838e74abcf3SKees Cook 	{ }
1839e74abcf3SKees Cook };
1840e74abcf3SKees Cook 
1841c97204baSJohn Johansen static struct aa_sfs_entry aa_sfs_entry_versions[] = {
1842c97204baSJohn Johansen 	AA_SFS_FILE_BOOLEAN("v5",	1),
1843474d6b75SJohn Johansen 	{ }
1844474d6b75SJohn Johansen };
1845474d6b75SJohn Johansen 
1846c97204baSJohn Johansen static struct aa_sfs_entry aa_sfs_entry_policy[] = {
1847c97204baSJohn Johansen 	AA_SFS_DIR("versions",			aa_sfs_entry_versions),
1848c97204baSJohn Johansen 	AA_SFS_FILE_BOOLEAN("set_load",		1),
18499d910a3bSJohn Johansen 	{ }
18509d910a3bSJohn Johansen };
18519d910a3bSJohn Johansen 
1852a83bd86eSJohn Johansen static struct aa_sfs_entry aa_sfs_entry_query_label[] = {
1853a83bd86eSJohn Johansen 	AA_SFS_FILE_BOOLEAN("data",		1),
1854a83bd86eSJohn Johansen 	{ }
1855a83bd86eSJohn Johansen };
1856a83bd86eSJohn Johansen 
1857a83bd86eSJohn Johansen static struct aa_sfs_entry aa_sfs_entry_query[] = {
1858a83bd86eSJohn Johansen 	AA_SFS_DIR("label",			aa_sfs_entry_query_label),
1859a83bd86eSJohn Johansen 	{ }
1860a83bd86eSJohn Johansen };
1861c97204baSJohn Johansen static struct aa_sfs_entry aa_sfs_entry_features[] = {
1862c97204baSJohn Johansen 	AA_SFS_DIR("policy",			aa_sfs_entry_policy),
1863c97204baSJohn Johansen 	AA_SFS_DIR("domain",			aa_sfs_entry_domain),
1864c97204baSJohn Johansen 	AA_SFS_DIR("file",			aa_sfs_entry_file),
1865c97204baSJohn Johansen 	AA_SFS_FILE_U64("capability",		VFS_CAP_FLAGS_MASK),
1866c97204baSJohn Johansen 	AA_SFS_DIR("rlimit",			aa_sfs_entry_rlimit),
1867c97204baSJohn Johansen 	AA_SFS_DIR("caps",			aa_sfs_entry_caps),
1868a83bd86eSJohn Johansen 	AA_SFS_DIR("query",			aa_sfs_entry_query),
1869e74abcf3SKees Cook 	{ }
1870e74abcf3SKees Cook };
1871e74abcf3SKees Cook 
1872c97204baSJohn Johansen static struct aa_sfs_entry aa_sfs_entry_apparmor[] = {
1873c97204baSJohn Johansen 	AA_SFS_FILE_FOPS(".access", 0640, &aa_sfs_access),
1874c97204baSJohn Johansen 	AA_SFS_FILE_FOPS(".ns_level", 0666, &seq_ns_level_fops),
1875c97204baSJohn Johansen 	AA_SFS_FILE_FOPS(".ns_name", 0640, &seq_ns_name_fops),
1876c97204baSJohn Johansen 	AA_SFS_FILE_FOPS("profiles", 0440, &aa_sfs_profiles_fops),
1877c97204baSJohn Johansen 	AA_SFS_DIR("features", aa_sfs_entry_features),
18789acd494bSKees Cook 	{ }
18799acd494bSKees Cook };
188063e2b423SJohn Johansen 
1881c97204baSJohn Johansen static struct aa_sfs_entry aa_sfs_entry =
1882c97204baSJohn Johansen 	AA_SFS_DIR("apparmor", aa_sfs_entry_apparmor);
18839acd494bSKees Cook 
18849acd494bSKees Cook /**
1885a481f4d9SJohn Johansen  * entry_create_file - create a file entry in the apparmor securityfs
1886c97204baSJohn Johansen  * @fs_file: aa_sfs_entry to build an entry for (NOT NULL)
18879acd494bSKees Cook  * @parent: the parent dentry in the securityfs
18889acd494bSKees Cook  *
1889a481f4d9SJohn Johansen  * Use entry_remove_file to remove entries created with this fn.
18909acd494bSKees Cook  */
1891c97204baSJohn Johansen static int __init entry_create_file(struct aa_sfs_entry *fs_file,
18929acd494bSKees Cook 				    struct dentry *parent)
189363e2b423SJohn Johansen {
18949acd494bSKees Cook 	int error = 0;
189563e2b423SJohn Johansen 
18969acd494bSKees Cook 	fs_file->dentry = securityfs_create_file(fs_file->name,
18979acd494bSKees Cook 						 S_IFREG | fs_file->mode,
18989acd494bSKees Cook 						 parent, fs_file,
18999acd494bSKees Cook 						 fs_file->file_ops);
19009acd494bSKees Cook 	if (IS_ERR(fs_file->dentry)) {
19019acd494bSKees Cook 		error = PTR_ERR(fs_file->dentry);
19029acd494bSKees Cook 		fs_file->dentry = NULL;
190363e2b423SJohn Johansen 	}
19049acd494bSKees Cook 	return error;
190563e2b423SJohn Johansen }
190663e2b423SJohn Johansen 
1907c97204baSJohn Johansen static void __init entry_remove_dir(struct aa_sfs_entry *fs_dir);
190863e2b423SJohn Johansen /**
1909a481f4d9SJohn Johansen  * entry_create_dir - recursively create a directory entry in the securityfs
1910c97204baSJohn Johansen  * @fs_dir: aa_sfs_entry (and all child entries) to build (NOT NULL)
19119acd494bSKees Cook  * @parent: the parent dentry in the securityfs
191263e2b423SJohn Johansen  *
1913a481f4d9SJohn Johansen  * Use entry_remove_dir to remove entries created with this fn.
191463e2b423SJohn Johansen  */
1915c97204baSJohn Johansen static int __init entry_create_dir(struct aa_sfs_entry *fs_dir,
19169acd494bSKees Cook 				   struct dentry *parent)
191763e2b423SJohn Johansen {
1918c97204baSJohn Johansen 	struct aa_sfs_entry *fs_file;
19190d259f04SJohn Johansen 	struct dentry *dir;
19200d259f04SJohn Johansen 	int error;
192163e2b423SJohn Johansen 
19220d259f04SJohn Johansen 	dir = securityfs_create_dir(fs_dir->name, parent);
19230d259f04SJohn Johansen 	if (IS_ERR(dir))
19240d259f04SJohn Johansen 		return PTR_ERR(dir);
19250d259f04SJohn Johansen 	fs_dir->dentry = dir;
192663e2b423SJohn Johansen 
19270d259f04SJohn Johansen 	for (fs_file = fs_dir->v.files; fs_file && fs_file->name; ++fs_file) {
1928c97204baSJohn Johansen 		if (fs_file->v_type == AA_SFS_TYPE_DIR)
1929a481f4d9SJohn Johansen 			error = entry_create_dir(fs_file, fs_dir->dentry);
19309acd494bSKees Cook 		else
1931a481f4d9SJohn Johansen 			error = entry_create_file(fs_file, fs_dir->dentry);
19329acd494bSKees Cook 		if (error)
19339acd494bSKees Cook 			goto failed;
19349acd494bSKees Cook 	}
19359acd494bSKees Cook 
19369acd494bSKees Cook 	return 0;
19379acd494bSKees Cook 
19389acd494bSKees Cook failed:
1939a481f4d9SJohn Johansen 	entry_remove_dir(fs_dir);
19400d259f04SJohn Johansen 
19419acd494bSKees Cook 	return error;
19429acd494bSKees Cook }
19439acd494bSKees Cook 
19449acd494bSKees Cook /**
1945c97204baSJohn Johansen  * entry_remove_file - drop a single file entry in the apparmor securityfs
1946c97204baSJohn Johansen  * @fs_file: aa_sfs_entry to detach from the securityfs (NOT NULL)
19479acd494bSKees Cook  */
1948c97204baSJohn Johansen static void __init entry_remove_file(struct aa_sfs_entry *fs_file)
19499acd494bSKees Cook {
19509acd494bSKees Cook 	if (!fs_file->dentry)
19519acd494bSKees Cook 		return;
19529acd494bSKees Cook 
19539acd494bSKees Cook 	securityfs_remove(fs_file->dentry);
19549acd494bSKees Cook 	fs_file->dentry = NULL;
19559acd494bSKees Cook }
19569acd494bSKees Cook 
19579acd494bSKees Cook /**
1958a481f4d9SJohn Johansen  * entry_remove_dir - recursively drop a directory entry from the securityfs
1959c97204baSJohn Johansen  * @fs_dir: aa_sfs_entry (and all child entries) to detach (NOT NULL)
19609acd494bSKees Cook  */
1961c97204baSJohn Johansen static void __init entry_remove_dir(struct aa_sfs_entry *fs_dir)
19629acd494bSKees Cook {
1963c97204baSJohn Johansen 	struct aa_sfs_entry *fs_file;
19649acd494bSKees Cook 
19650d259f04SJohn Johansen 	for (fs_file = fs_dir->v.files; fs_file && fs_file->name; ++fs_file) {
1966c97204baSJohn Johansen 		if (fs_file->v_type == AA_SFS_TYPE_DIR)
1967a481f4d9SJohn Johansen 			entry_remove_dir(fs_file);
19689acd494bSKees Cook 		else
1969c97204baSJohn Johansen 			entry_remove_file(fs_file);
19709acd494bSKees Cook 	}
19719acd494bSKees Cook 
1972c97204baSJohn Johansen 	entry_remove_file(fs_dir);
197363e2b423SJohn Johansen }
197463e2b423SJohn Johansen 
197563e2b423SJohn Johansen /**
197663e2b423SJohn Johansen  * aa_destroy_aafs - cleanup and free aafs
197763e2b423SJohn Johansen  *
197863e2b423SJohn Johansen  * releases dentries allocated by aa_create_aafs
197963e2b423SJohn Johansen  */
198063e2b423SJohn Johansen void __init aa_destroy_aafs(void)
198163e2b423SJohn Johansen {
1982c97204baSJohn Johansen 	entry_remove_dir(&aa_sfs_entry);
198363e2b423SJohn Johansen }
198463e2b423SJohn Johansen 
1985a71ada30SJohn Johansen 
1986a71ada30SJohn Johansen #define NULL_FILE_NAME ".null"
1987a71ada30SJohn Johansen struct path aa_null;
1988a71ada30SJohn Johansen 
1989a71ada30SJohn Johansen static int aa_mk_null_file(struct dentry *parent)
1990a71ada30SJohn Johansen {
1991a71ada30SJohn Johansen 	struct vfsmount *mount = NULL;
1992a71ada30SJohn Johansen 	struct dentry *dentry;
1993a71ada30SJohn Johansen 	struct inode *inode;
1994a71ada30SJohn Johansen 	int count = 0;
1995a71ada30SJohn Johansen 	int error = simple_pin_fs(parent->d_sb->s_type, &mount, &count);
1996a71ada30SJohn Johansen 
1997a71ada30SJohn Johansen 	if (error)
1998a71ada30SJohn Johansen 		return error;
1999a71ada30SJohn Johansen 
2000a71ada30SJohn Johansen 	inode_lock(d_inode(parent));
2001a71ada30SJohn Johansen 	dentry = lookup_one_len(NULL_FILE_NAME, parent, strlen(NULL_FILE_NAME));
2002a71ada30SJohn Johansen 	if (IS_ERR(dentry)) {
2003a71ada30SJohn Johansen 		error = PTR_ERR(dentry);
2004a71ada30SJohn Johansen 		goto out;
2005a71ada30SJohn Johansen 	}
2006a71ada30SJohn Johansen 	inode = new_inode(parent->d_inode->i_sb);
2007a71ada30SJohn Johansen 	if (!inode) {
2008a71ada30SJohn Johansen 		error = -ENOMEM;
2009a71ada30SJohn Johansen 		goto out1;
2010a71ada30SJohn Johansen 	}
2011a71ada30SJohn Johansen 
2012a71ada30SJohn Johansen 	inode->i_ino = get_next_ino();
2013a71ada30SJohn Johansen 	inode->i_mode = S_IFCHR | S_IRUGO | S_IWUGO;
201424d0d03cSDeepa Dinamani 	inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
2015a71ada30SJohn Johansen 	init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO,
2016a71ada30SJohn Johansen 			   MKDEV(MEM_MAJOR, 3));
2017a71ada30SJohn Johansen 	d_instantiate(dentry, inode);
2018a71ada30SJohn Johansen 	aa_null.dentry = dget(dentry);
2019a71ada30SJohn Johansen 	aa_null.mnt = mntget(mount);
2020a71ada30SJohn Johansen 
2021a71ada30SJohn Johansen 	error = 0;
2022a71ada30SJohn Johansen 
2023a71ada30SJohn Johansen out1:
2024a71ada30SJohn Johansen 	dput(dentry);
2025a71ada30SJohn Johansen out:
2026a71ada30SJohn Johansen 	inode_unlock(d_inode(parent));
2027a71ada30SJohn Johansen 	simple_release_fs(&mount, &count);
2028a71ada30SJohn Johansen 	return error;
2029a71ada30SJohn Johansen }
2030a71ada30SJohn Johansen 
2031a481f4d9SJohn Johansen 
2032a481f4d9SJohn Johansen 
2033a481f4d9SJohn Johansen static const char *policy_get_link(struct dentry *dentry,
2034a481f4d9SJohn Johansen 				   struct inode *inode,
2035a481f4d9SJohn Johansen 				   struct delayed_call *done)
2036a481f4d9SJohn Johansen {
2037a481f4d9SJohn Johansen 	struct aa_ns *ns;
2038a481f4d9SJohn Johansen 	struct path path;
2039a481f4d9SJohn Johansen 
2040a481f4d9SJohn Johansen 	if (!dentry)
2041a481f4d9SJohn Johansen 		return ERR_PTR(-ECHILD);
2042a481f4d9SJohn Johansen 	ns = aa_get_current_ns();
2043a481f4d9SJohn Johansen 	path.mnt = mntget(aafs_mnt);
2044a481f4d9SJohn Johansen 	path.dentry = dget(ns_dir(ns));
2045a481f4d9SJohn Johansen 	nd_jump_link(&path);
2046a481f4d9SJohn Johansen 	aa_put_ns(ns);
2047a481f4d9SJohn Johansen 
2048a481f4d9SJohn Johansen 	return NULL;
2049a481f4d9SJohn Johansen }
2050a481f4d9SJohn Johansen 
2051a481f4d9SJohn Johansen static int ns_get_name(char *buf, size_t size, struct aa_ns *ns,
2052a481f4d9SJohn Johansen 		       struct inode *inode)
2053a481f4d9SJohn Johansen {
2054a481f4d9SJohn Johansen 	int res = snprintf(buf, size, "%s:[%lu]", AAFS_NAME, inode->i_ino);
2055a481f4d9SJohn Johansen 
2056a481f4d9SJohn Johansen 	if (res < 0 || res >= size)
2057a481f4d9SJohn Johansen 		res = -ENOENT;
2058a481f4d9SJohn Johansen 
2059a481f4d9SJohn Johansen 	return res;
2060a481f4d9SJohn Johansen }
2061a481f4d9SJohn Johansen 
2062a481f4d9SJohn Johansen static int policy_readlink(struct dentry *dentry, char __user *buffer,
2063a481f4d9SJohn Johansen 			   int buflen)
2064a481f4d9SJohn Johansen {
2065a481f4d9SJohn Johansen 	struct aa_ns *ns;
2066a481f4d9SJohn Johansen 	char name[32];
2067a481f4d9SJohn Johansen 	int res;
2068a481f4d9SJohn Johansen 
2069a481f4d9SJohn Johansen 	ns = aa_get_current_ns();
2070a481f4d9SJohn Johansen 	res = ns_get_name(name, sizeof(name), ns, d_inode(dentry));
2071a481f4d9SJohn Johansen 	if (res >= 0)
2072a481f4d9SJohn Johansen 		res = readlink_copy(buffer, buflen, name);
2073a481f4d9SJohn Johansen 	aa_put_ns(ns);
2074a481f4d9SJohn Johansen 
2075a481f4d9SJohn Johansen 	return res;
2076a481f4d9SJohn Johansen }
2077a481f4d9SJohn Johansen 
2078a481f4d9SJohn Johansen static const struct inode_operations policy_link_iops = {
2079a481f4d9SJohn Johansen 	.readlink	= policy_readlink,
2080a481f4d9SJohn Johansen 	.get_link	= policy_get_link,
2081a481f4d9SJohn Johansen };
2082a481f4d9SJohn Johansen 
2083a481f4d9SJohn Johansen 
208463e2b423SJohn Johansen /**
208563e2b423SJohn Johansen  * aa_create_aafs - create the apparmor security filesystem
208663e2b423SJohn Johansen  *
208763e2b423SJohn Johansen  * dentries created here are released by aa_destroy_aafs
208863e2b423SJohn Johansen  *
208963e2b423SJohn Johansen  * Returns: error on failure
209063e2b423SJohn Johansen  */
20913417d8d5SJames Morris static int __init aa_create_aafs(void)
209263e2b423SJohn Johansen {
2093b7fd2c03SJohn Johansen 	struct dentry *dent;
209463e2b423SJohn Johansen 	int error;
209563e2b423SJohn Johansen 
209663e2b423SJohn Johansen 	if (!apparmor_initialized)
209763e2b423SJohn Johansen 		return 0;
209863e2b423SJohn Johansen 
2099c97204baSJohn Johansen 	if (aa_sfs_entry.dentry) {
210063e2b423SJohn Johansen 		AA_ERROR("%s: AppArmor securityfs already exists\n", __func__);
210163e2b423SJohn Johansen 		return -EEXIST;
210263e2b423SJohn Johansen 	}
210363e2b423SJohn Johansen 
2104a481f4d9SJohn Johansen 	/* setup apparmorfs used to virtualize policy/ */
2105a481f4d9SJohn Johansen 	aafs_mnt = kern_mount(&aafs_ops);
2106a481f4d9SJohn Johansen 	if (IS_ERR(aafs_mnt))
2107a481f4d9SJohn Johansen 		panic("can't set apparmorfs up\n");
2108a481f4d9SJohn Johansen 	aafs_mnt->mnt_sb->s_flags &= ~MS_NOUSER;
2109a481f4d9SJohn Johansen 
21109acd494bSKees Cook 	/* Populate fs tree. */
2111c97204baSJohn Johansen 	error = entry_create_dir(&aa_sfs_entry, NULL);
211263e2b423SJohn Johansen 	if (error)
211363e2b423SJohn Johansen 		goto error;
211463e2b423SJohn Johansen 
2115c97204baSJohn Johansen 	dent = securityfs_create_file(".load", 0666, aa_sfs_entry.dentry,
2116b7fd2c03SJohn Johansen 				      NULL, &aa_fs_profile_load);
2117b7fd2c03SJohn Johansen 	if (IS_ERR(dent)) {
2118b7fd2c03SJohn Johansen 		error = PTR_ERR(dent);
2119b7fd2c03SJohn Johansen 		goto error;
2120b7fd2c03SJohn Johansen 	}
2121b7fd2c03SJohn Johansen 	ns_subload(root_ns) = dent;
2122b7fd2c03SJohn Johansen 
2123c97204baSJohn Johansen 	dent = securityfs_create_file(".replace", 0666, aa_sfs_entry.dentry,
2124b7fd2c03SJohn Johansen 				      NULL, &aa_fs_profile_replace);
2125b7fd2c03SJohn Johansen 	if (IS_ERR(dent)) {
2126b7fd2c03SJohn Johansen 		error = PTR_ERR(dent);
2127b7fd2c03SJohn Johansen 		goto error;
2128b7fd2c03SJohn Johansen 	}
2129b7fd2c03SJohn Johansen 	ns_subreplace(root_ns) = dent;
2130b7fd2c03SJohn Johansen 
2131c97204baSJohn Johansen 	dent = securityfs_create_file(".remove", 0666, aa_sfs_entry.dentry,
2132b7fd2c03SJohn Johansen 				      NULL, &aa_fs_profile_remove);
2133b7fd2c03SJohn Johansen 	if (IS_ERR(dent)) {
2134b7fd2c03SJohn Johansen 		error = PTR_ERR(dent);
2135b7fd2c03SJohn Johansen 		goto error;
2136b7fd2c03SJohn Johansen 	}
2137b7fd2c03SJohn Johansen 	ns_subremove(root_ns) = dent;
2138b7fd2c03SJohn Johansen 
2139d9bf2c26SJohn Johansen 	dent = securityfs_create_file("revision", 0444, aa_sfs_entry.dentry,
2140d9bf2c26SJohn Johansen 				      NULL, &aa_fs_ns_revision_fops);
2141d9bf2c26SJohn Johansen 	if (IS_ERR(dent)) {
2142d9bf2c26SJohn Johansen 		error = PTR_ERR(dent);
2143d9bf2c26SJohn Johansen 		goto error;
2144d9bf2c26SJohn Johansen 	}
2145d9bf2c26SJohn Johansen 	ns_subrevision(root_ns) = dent;
2146d9bf2c26SJohn Johansen 
2147d9bf2c26SJohn Johansen 	/* policy tree referenced by magic policy symlink */
2148b7fd2c03SJohn Johansen 	mutex_lock(&root_ns->lock);
2149c961ee5fSJohn Johansen 	error = __aafs_ns_mkdir(root_ns, aafs_mnt->mnt_root, ".policy",
2150c961ee5fSJohn Johansen 				aafs_mnt->mnt_root);
2151b7fd2c03SJohn Johansen 	mutex_unlock(&root_ns->lock);
21520d259f04SJohn Johansen 	if (error)
21530d259f04SJohn Johansen 		goto error;
21540d259f04SJohn Johansen 
2155c961ee5fSJohn Johansen 	/* magic symlink similar to nsfs redirects based on task policy */
2156c961ee5fSJohn Johansen 	dent = securityfs_create_symlink("policy", aa_sfs_entry.dentry,
2157c961ee5fSJohn Johansen 					 NULL, &policy_link_iops);
2158c961ee5fSJohn Johansen 	if (IS_ERR(dent)) {
2159c961ee5fSJohn Johansen 		error = PTR_ERR(dent);
2160c961ee5fSJohn Johansen 		goto error;
2161c961ee5fSJohn Johansen 	}
2162c961ee5fSJohn Johansen 
2163c97204baSJohn Johansen 	error = aa_mk_null_file(aa_sfs_entry.dentry);
2164a71ada30SJohn Johansen 	if (error)
2165a71ada30SJohn Johansen 		goto error;
2166a71ada30SJohn Johansen 
2167a71ada30SJohn Johansen 	/* TODO: add default profile to apparmorfs */
216863e2b423SJohn Johansen 
216963e2b423SJohn Johansen 	/* Report that AppArmor fs is enabled */
217063e2b423SJohn Johansen 	aa_info_message("AppArmor Filesystem Enabled");
217163e2b423SJohn Johansen 	return 0;
217263e2b423SJohn Johansen 
217363e2b423SJohn Johansen error:
217463e2b423SJohn Johansen 	aa_destroy_aafs();
217563e2b423SJohn Johansen 	AA_ERROR("Error creating AppArmor securityfs\n");
217663e2b423SJohn Johansen 	return error;
217763e2b423SJohn Johansen }
217863e2b423SJohn Johansen 
217963e2b423SJohn Johansen fs_initcall(aa_create_aafs);
2180