blob: 7f3049300ce3db10e9d0a92b46ae34b69f37fb2c [file] [log] [blame]
John Johansen63e2b422010-07-29 14:48:03 -07001/*
2 * AppArmor security module
3 *
4 * This file contains AppArmor /sys/kernel/security/apparmor interface functions
5 *
6 * Copyright (C) 1998-2008 Novell/SUSE
7 * Copyright 2009-2010 Canonical Ltd.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation, version 2 of the
12 * License.
13 */
14
John Johansen0d259f02013-07-10 21:13:43 -070015#include <linux/ctype.h>
John Johansen63e2b422010-07-29 14:48:03 -070016#include <linux/security.h>
17#include <linux/vmalloc.h>
18#include <linux/module.h>
19#include <linux/seq_file.h>
20#include <linux/uaccess.h>
John Johansena71ada32017-01-16 00:42:45 -080021#include <linux/mount.h>
John Johansen63e2b422010-07-29 14:48:03 -070022#include <linux/namei.h>
Kees Cooke74abcf2012-01-26 16:29:21 -080023#include <linux/capability.h>
John Johansen29b38222013-07-10 21:18:43 -070024#include <linux/rcupdate.h>
John Johansena71ada32017-01-16 00:42:45 -080025#include <linux/fs.h>
John Johansend9bf2c22017-05-26 16:27:58 -070026#include <linux/poll.h>
John Johansena481f4d2017-05-25 05:52:56 -070027#include <uapi/linux/major.h>
28#include <uapi/linux/magic.h>
John Johansen63e2b422010-07-29 14:48:03 -070029
30#include "include/apparmor.h"
31#include "include/apparmorfs.h"
32#include "include/audit.h"
33#include "include/context.h"
John Johansenf8eb8a12013-08-14 11:27:36 -070034#include "include/crypto.h"
John Johansend9bf2c22017-05-26 16:27:58 -070035#include "include/policy_ns.h"
John Johansen63e2b422010-07-29 14:48:03 -070036#include "include/policy.h"
John Johansencff281f2017-01-16 00:42:15 -080037#include "include/policy_ns.h"
Kees Cookd384b0a2012-01-26 16:29:23 -080038#include "include/resource.h"
John Johansen5ac8c352017-01-16 00:42:55 -080039#include "include/policy_unpack.h"
John Johansen63e2b422010-07-29 14:48:03 -070040
John Johansenc97204b2017-05-25 06:23:42 -070041/*
42 * The apparmor filesystem interface used for policy load and introspection
43 * The interface is split into two main components based on their function
44 * a securityfs component:
45 * used for static files that are always available, and which allows
46 * userspace to specificy the location of the security filesystem.
47 *
48 * fns and data are prefixed with
49 * aa_sfs_
50 *
51 * an apparmorfs component:
52 * used loaded policy content and introspection. It is not part of a
53 * regular mounted filesystem and is available only through the magic
54 * policy symlink in the root of the securityfs apparmor/ directory.
55 * Tasks queries will be magically redirected to the correct portion
56 * of the policy tree based on their confinement.
57 *
58 * fns and data are prefixed with
59 * aafs_
60 *
61 * The aa_fs_ prefix is used to indicate the fn is used by both the
62 * securityfs and apparmorfs filesystems.
63 */
64
65
66/*
67 * support fns
68 */
69
John Johansen63e2b422010-07-29 14:48:03 -070070/**
John Johansen0d259f02013-07-10 21:13:43 -070071 * aa_mangle_name - mangle a profile name to std profile layout form
72 * @name: profile name to mangle (NOT NULL)
73 * @target: buffer to store mangled name, same length as @name (MAYBE NULL)
74 *
75 * Returns: length of mangled name
76 */
John Johansenbbe4a7c2017-01-16 00:42:30 -080077static int mangle_name(const char *name, char *target)
John Johansen0d259f02013-07-10 21:13:43 -070078{
79 char *t = target;
80
81 while (*name == '/' || *name == '.')
82 name++;
83
84 if (target) {
85 for (; *name; name++) {
86 if (*name == '/')
87 *(t)++ = '.';
88 else if (isspace(*name))
89 *(t)++ = '_';
90 else if (isalnum(*name) || strchr("._-", *name))
91 *(t)++ = *name;
92 }
93
94 *t = 0;
95 } else {
96 int len = 0;
97 for (; *name; name++) {
98 if (isalnum(*name) || isspace(*name) ||
99 strchr("/._-", *name))
100 len++;
101 }
102
103 return len;
104 }
105
106 return t - target;
107}
108
John Johansena481f4d2017-05-25 05:52:56 -0700109
110/*
111 * aafs - core fns and data for the policy tree
112 */
113
114#define AAFS_NAME "apparmorfs"
115static struct vfsmount *aafs_mnt;
116static int aafs_count;
117
118
119static int aafs_show_path(struct seq_file *seq, struct dentry *dentry)
120{
121 struct inode *inode = d_inode(dentry);
122
123 seq_printf(seq, "%s:[%lu]", AAFS_NAME, inode->i_ino);
124 return 0;
125}
126
127static void aafs_evict_inode(struct inode *inode)
128{
129 truncate_inode_pages_final(&inode->i_data);
130 clear_inode(inode);
131 if (S_ISLNK(inode->i_mode))
132 kfree(inode->i_link);
133}
134
135static const struct super_operations aafs_super_ops = {
136 .statfs = simple_statfs,
137 .evict_inode = aafs_evict_inode,
138 .show_path = aafs_show_path,
139};
140
141static int fill_super(struct super_block *sb, void *data, int silent)
142{
143 static struct tree_descr files[] = { {""} };
144 int error;
145
146 error = simple_fill_super(sb, AAFS_MAGIC, files);
147 if (error)
148 return error;
149 sb->s_op = &aafs_super_ops;
150
151 return 0;
152}
153
154static struct dentry *aafs_mount(struct file_system_type *fs_type,
155 int flags, const char *dev_name, void *data)
156{
157 return mount_single(fs_type, flags, data, fill_super);
158}
159
160static struct file_system_type aafs_ops = {
161 .owner = THIS_MODULE,
162 .name = AAFS_NAME,
163 .mount = aafs_mount,
164 .kill_sb = kill_anon_super,
165};
166
167/**
168 * __aafs_setup_d_inode - basic inode setup for apparmorfs
169 * @dir: parent directory for the dentry
170 * @dentry: dentry we are seting the inode up for
171 * @mode: permissions the file should have
172 * @data: data to store on inode.i_private, available in open()
173 * @link: if symlink, symlink target string
174 * @fops: struct file_operations that should be used
175 * @iops: struct of inode_operations that should be used
176 */
177static int __aafs_setup_d_inode(struct inode *dir, struct dentry *dentry,
178 umode_t mode, void *data, char *link,
179 const struct file_operations *fops,
180 const struct inode_operations *iops)
181{
182 struct inode *inode = new_inode(dir->i_sb);
183
184 AA_BUG(!dir);
185 AA_BUG(!dentry);
186
187 if (!inode)
188 return -ENOMEM;
189
190 inode->i_ino = get_next_ino();
191 inode->i_mode = mode;
192 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
193 inode->i_private = data;
194 if (S_ISDIR(mode)) {
195 inode->i_op = iops ? iops : &simple_dir_inode_operations;
196 inode->i_fop = &simple_dir_operations;
197 inc_nlink(inode);
198 inc_nlink(dir);
199 } else if (S_ISLNK(mode)) {
200 inode->i_op = iops ? iops : &simple_symlink_inode_operations;
201 inode->i_link = link;
202 } else {
203 inode->i_fop = fops;
204 }
205 d_instantiate(dentry, inode);
206 dget(dentry);
207
208 return 0;
209}
210
211/**
212 * aafs_create - create a dentry in the apparmorfs filesystem
213 *
214 * @name: name of dentry to create
215 * @mode: permissions the file should have
216 * @parent: parent directory for this dentry
217 * @data: data to store on inode.i_private, available in open()
218 * @link: if symlink, symlink target string
219 * @fops: struct file_operations that should be used for
220 * @iops: struct of inode_operations that should be used
221 *
222 * This is the basic "create a xxx" function for apparmorfs.
223 *
224 * Returns a pointer to a dentry if it succeeds, that must be free with
225 * aafs_remove(). Will return ERR_PTR on failure.
226 */
227static struct dentry *aafs_create(const char *name, umode_t mode,
228 struct dentry *parent, void *data, void *link,
229 const struct file_operations *fops,
230 const struct inode_operations *iops)
231{
232 struct dentry *dentry;
233 struct inode *dir;
234 int error;
235
236 AA_BUG(!name);
237 AA_BUG(!parent);
238
239 if (!(mode & S_IFMT))
240 mode = (mode & S_IALLUGO) | S_IFREG;
241
242 error = simple_pin_fs(&aafs_ops, &aafs_mnt, &aafs_count);
243 if (error)
244 return ERR_PTR(error);
245
246 dir = d_inode(parent);
247
248 inode_lock(dir);
249 dentry = lookup_one_len(name, parent, strlen(name));
250 if (IS_ERR(dentry))
251 goto fail_lock;
252
253 if (d_really_is_positive(dentry)) {
254 error = -EEXIST;
255 goto fail_dentry;
256 }
257
258 error = __aafs_setup_d_inode(dir, dentry, mode, data, link, fops, iops);
259 if (error)
260 goto fail_dentry;
261 inode_unlock(dir);
262
263 return dentry;
264
265fail_dentry:
266 dput(dentry);
267
268fail_lock:
269 inode_unlock(dir);
270 simple_release_fs(&aafs_mnt, &aafs_count);
271
272 return ERR_PTR(error);
273}
274
275/**
276 * aafs_create_file - create a file in the apparmorfs filesystem
277 *
278 * @name: name of dentry to create
279 * @mode: permissions the file should have
280 * @parent: parent directory for this dentry
281 * @data: data to store on inode.i_private, available in open()
282 * @fops: struct file_operations that should be used for
283 *
284 * see aafs_create
285 */
286static struct dentry *aafs_create_file(const char *name, umode_t mode,
287 struct dentry *parent, void *data,
288 const struct file_operations *fops)
289{
290 return aafs_create(name, mode, parent, data, NULL, fops, NULL);
291}
292
293/**
294 * aafs_create_dir - create a directory in the apparmorfs filesystem
295 *
296 * @name: name of dentry to create
297 * @parent: parent directory for this dentry
298 *
299 * see aafs_create
300 */
301static struct dentry *aafs_create_dir(const char *name, struct dentry *parent)
302{
303 return aafs_create(name, S_IFDIR | 0755, parent, NULL, NULL, NULL,
304 NULL);
305}
306
307/**
308 * aafs_create_symlink - create a symlink in the apparmorfs filesystem
309 * @name: name of dentry to create
310 * @parent: parent directory for this dentry
311 * @target: if symlink, symlink target string
312 * @iops: struct of inode_operations that should be used
313 *
314 * If @target parameter is %NULL, then the @iops parameter needs to be
315 * setup to handle .readlink and .get_link inode_operations.
316 */
317static struct dentry *aafs_create_symlink(const char *name,
318 struct dentry *parent,
319 const char *target,
320 const struct inode_operations *iops)
321{
322 struct dentry *dent;
323 char *link = NULL;
324
325 if (target) {
326 link = kstrdup(target, GFP_KERNEL);
327 if (!link)
328 return ERR_PTR(-ENOMEM);
329 }
330 dent = aafs_create(name, S_IFLNK | 0444, parent, NULL, link, NULL,
331 iops);
332 if (IS_ERR(dent))
333 kfree(link);
334
335 return dent;
336}
337
338/**
339 * aafs_remove - removes a file or directory from the apparmorfs filesystem
340 *
341 * @dentry: dentry of the file/directory/symlink to removed.
342 */
343static void aafs_remove(struct dentry *dentry)
344{
345 struct inode *dir;
346
347 if (!dentry || IS_ERR(dentry))
348 return;
349
350 dir = d_inode(dentry->d_parent);
351 inode_lock(dir);
352 if (simple_positive(dentry)) {
353 if (d_is_dir(dentry))
354 simple_rmdir(dir, dentry);
355 else
356 simple_unlink(dir, dentry);
357 dput(dentry);
358 }
359 inode_unlock(dir);
360 simple_release_fs(&aafs_mnt, &aafs_count);
361}
362
363
364/*
365 * aa_fs - policy load/replace/remove
366 */
367
John Johansen0d259f02013-07-10 21:13:43 -0700368/**
John Johansen63e2b422010-07-29 14:48:03 -0700369 * aa_simple_write_to_buffer - common routine for getting policy from user
John Johansen63e2b422010-07-29 14:48:03 -0700370 * @userbuf: user buffer to copy data from (NOT NULL)
John Johansen3ed02ad2010-10-09 00:47:53 -0700371 * @alloc_size: size of user buffer (REQUIRES: @alloc_size >= @copy_size)
John Johansen63e2b422010-07-29 14:48:03 -0700372 * @copy_size: size of data to copy from user buffer
373 * @pos: position write is at in the file (NOT NULL)
374 *
375 * Returns: kernel buffer containing copy of user buffer data or an
376 * ERR_PTR on failure.
377 */
John Johansen5ef50d02017-01-16 00:43:03 -0800378static struct aa_loaddata *aa_simple_write_to_buffer(const char __user *userbuf,
John Johansen5ac8c352017-01-16 00:42:55 -0800379 size_t alloc_size,
380 size_t copy_size,
381 loff_t *pos)
John Johansen63e2b422010-07-29 14:48:03 -0700382{
John Johansen5ac8c352017-01-16 00:42:55 -0800383 struct aa_loaddata *data;
John Johansen63e2b422010-07-29 14:48:03 -0700384
John Johansene6bfa252017-01-16 00:43:15 -0800385 AA_BUG(copy_size > alloc_size);
John Johansen3ed02ad2010-10-09 00:47:53 -0700386
John Johansen63e2b422010-07-29 14:48:03 -0700387 if (*pos != 0)
388 /* only writes from pos 0, that is complete writes */
389 return ERR_PTR(-ESPIPE);
390
John Johansen63e2b422010-07-29 14:48:03 -0700391 /* freed by caller to simple_write_to_buffer */
John Johansen5d5182ca2017-05-09 00:08:41 -0700392 data = aa_loaddata_alloc(alloc_size);
393 if (IS_ERR(data))
394 return data;
John Johansen63e2b422010-07-29 14:48:03 -0700395
John Johansen5d5182ca2017-05-09 00:08:41 -0700396 data->size = copy_size;
John Johansen5ac8c352017-01-16 00:42:55 -0800397 if (copy_from_user(data->data, userbuf, copy_size)) {
John Johansen63e2b422010-07-29 14:48:03 -0700398 kvfree(data);
399 return ERR_PTR(-EFAULT);
400 }
401
402 return data;
403}
404
John Johansen18e99f12017-05-26 01:45:08 -0700405static ssize_t policy_update(u32 mask, const char __user *buf, size_t size,
John Johansenb7fd2c02017-01-16 00:42:58 -0800406 loff_t *pos, struct aa_ns *ns)
John Johansen5ac8c352017-01-16 00:42:55 -0800407{
408 ssize_t error;
409 struct aa_loaddata *data;
410 struct aa_profile *profile = aa_current_profile();
John Johansen5ac8c352017-01-16 00:42:55 -0800411 /* high level check about policy management - fine grained in
412 * below after unpack
413 */
John Johansen18e99f12017-05-26 01:45:08 -0700414 error = aa_may_manage_policy(profile, ns, mask);
John Johansen5ac8c352017-01-16 00:42:55 -0800415 if (error)
416 return error;
John Johansen63e2b422010-07-29 14:48:03 -0700417
John Johansen5ef50d02017-01-16 00:43:03 -0800418 data = aa_simple_write_to_buffer(buf, size, size, pos);
John Johansen5ac8c352017-01-16 00:42:55 -0800419 error = PTR_ERR(data);
420 if (!IS_ERR(data)) {
John Johansenb7fd2c02017-01-16 00:42:58 -0800421 error = aa_replace_profiles(ns ? ns : profile->ns, profile,
John Johansen18e99f12017-05-26 01:45:08 -0700422 mask, data);
John Johansen5ac8c352017-01-16 00:42:55 -0800423 aa_put_loaddata(data);
424 }
425
426 return error;
427}
428
John Johansenb7fd2c02017-01-16 00:42:58 -0800429/* .load file hook fn to load policy */
John Johansen63e2b422010-07-29 14:48:03 -0700430static ssize_t profile_load(struct file *f, const char __user *buf, size_t size,
431 loff_t *pos)
432{
John Johansenb7fd2c02017-01-16 00:42:58 -0800433 struct aa_ns *ns = aa_get_ns(f->f_inode->i_private);
John Johansen18e99f12017-05-26 01:45:08 -0700434 int error = policy_update(AA_MAY_LOAD_POLICY, buf, size, pos, ns);
John Johansenb7fd2c02017-01-16 00:42:58 -0800435
436 aa_put_ns(ns);
John Johansen63e2b422010-07-29 14:48:03 -0700437
438 return error;
439}
440
441static const struct file_operations aa_fs_profile_load = {
Arnd Bergmann6038f372010-08-15 18:52:59 +0200442 .write = profile_load,
443 .llseek = default_llseek,
John Johansen63e2b422010-07-29 14:48:03 -0700444};
445
446/* .replace file hook fn to load and/or replace policy */
447static ssize_t profile_replace(struct file *f, const char __user *buf,
448 size_t size, loff_t *pos)
449{
John Johansenb7fd2c02017-01-16 00:42:58 -0800450 struct aa_ns *ns = aa_get_ns(f->f_inode->i_private);
John Johansen18e99f12017-05-26 01:45:08 -0700451 int error = policy_update(AA_MAY_LOAD_POLICY | AA_MAY_REPLACE_POLICY,
452 buf, size, pos, ns);
John Johansenb7fd2c02017-01-16 00:42:58 -0800453 aa_put_ns(ns);
John Johansen63e2b422010-07-29 14:48:03 -0700454
455 return error;
456}
457
458static const struct file_operations aa_fs_profile_replace = {
Arnd Bergmann6038f372010-08-15 18:52:59 +0200459 .write = profile_replace,
460 .llseek = default_llseek,
John Johansen63e2b422010-07-29 14:48:03 -0700461};
462
John Johansenb7fd2c02017-01-16 00:42:58 -0800463/* .remove file hook fn to remove loaded policy */
John Johansen63e2b422010-07-29 14:48:03 -0700464static ssize_t profile_remove(struct file *f, const char __user *buf,
465 size_t size, loff_t *pos)
466{
John Johansen5ac8c352017-01-16 00:42:55 -0800467 struct aa_loaddata *data;
468 struct aa_profile *profile;
John Johansen63e2b422010-07-29 14:48:03 -0700469 ssize_t error;
John Johansenb7fd2c02017-01-16 00:42:58 -0800470 struct aa_ns *ns = aa_get_ns(f->f_inode->i_private);
John Johansen63e2b422010-07-29 14:48:03 -0700471
John Johansen5ac8c352017-01-16 00:42:55 -0800472 profile = aa_current_profile();
473 /* high level check about policy management - fine grained in
474 * below after unpack
475 */
John Johansen18e99f12017-05-26 01:45:08 -0700476 error = aa_may_manage_policy(profile, ns, AA_MAY_REMOVE_POLICY);
John Johansen5ac8c352017-01-16 00:42:55 -0800477 if (error)
478 goto out;
479
John Johansen63e2b422010-07-29 14:48:03 -0700480 /*
481 * aa_remove_profile needs a null terminated string so 1 extra
482 * byte is allocated and the copied data is null terminated.
483 */
John Johansen5ef50d02017-01-16 00:43:03 -0800484 data = aa_simple_write_to_buffer(buf, size + 1, size, pos);
John Johansen63e2b422010-07-29 14:48:03 -0700485
486 error = PTR_ERR(data);
487 if (!IS_ERR(data)) {
John Johansen5ac8c352017-01-16 00:42:55 -0800488 data->data[size] = 0;
John Johansenb7fd2c02017-01-16 00:42:58 -0800489 error = aa_remove_profiles(ns ? ns : profile->ns, profile,
490 data->data, size);
John Johansen5ac8c352017-01-16 00:42:55 -0800491 aa_put_loaddata(data);
John Johansen63e2b422010-07-29 14:48:03 -0700492 }
John Johansen5ac8c352017-01-16 00:42:55 -0800493 out:
John Johansenb7fd2c02017-01-16 00:42:58 -0800494 aa_put_ns(ns);
John Johansen63e2b422010-07-29 14:48:03 -0700495 return error;
496}
497
498static const struct file_operations aa_fs_profile_remove = {
Arnd Bergmann6038f372010-08-15 18:52:59 +0200499 .write = profile_remove,
500 .llseek = default_llseek,
John Johansen63e2b422010-07-29 14:48:03 -0700501};
502
John Johansend9bf2c22017-05-26 16:27:58 -0700503struct aa_revision {
504 struct aa_ns *ns;
505 long last_read;
506};
507
508/* revision file hook fn for policy loads */
509static int ns_revision_release(struct inode *inode, struct file *file)
510{
511 struct aa_revision *rev = file->private_data;
512
513 if (rev) {
514 aa_put_ns(rev->ns);
515 kfree(rev);
516 }
517
518 return 0;
519}
520
521static ssize_t ns_revision_read(struct file *file, char __user *buf,
522 size_t size, loff_t *ppos)
523{
524 struct aa_revision *rev = file->private_data;
525 char buffer[32];
526 long last_read;
527 int avail;
528
529 mutex_lock(&rev->ns->lock);
530 last_read = rev->last_read;
531 if (last_read == rev->ns->revision) {
532 mutex_unlock(&rev->ns->lock);
533 if (file->f_flags & O_NONBLOCK)
534 return -EAGAIN;
535 if (wait_event_interruptible(rev->ns->wait,
536 last_read !=
537 READ_ONCE(rev->ns->revision)))
538 return -ERESTARTSYS;
539 mutex_lock(&rev->ns->lock);
540 }
541
542 avail = sprintf(buffer, "%ld\n", rev->ns->revision);
543 if (*ppos + size > avail) {
544 rev->last_read = rev->ns->revision;
545 *ppos = 0;
546 }
547 mutex_unlock(&rev->ns->lock);
548
549 return simple_read_from_buffer(buf, size, ppos, buffer, avail);
550}
551
552static int ns_revision_open(struct inode *inode, struct file *file)
553{
554 struct aa_revision *rev = kzalloc(sizeof(*rev), GFP_KERNEL);
555
556 if (!rev)
557 return -ENOMEM;
558
559 rev->ns = aa_get_ns(inode->i_private);
560 if (!rev->ns)
561 rev->ns = aa_get_current_ns();
562 file->private_data = rev;
563
564 return 0;
565}
566
567static unsigned int ns_revision_poll(struct file *file, poll_table *pt)
568{
569 struct aa_revision *rev = file->private_data;
570 unsigned int mask = 0;
571
572 if (rev) {
573 mutex_lock(&rev->ns->lock);
574 poll_wait(file, &rev->ns->wait, pt);
575 if (rev->last_read < rev->ns->revision)
576 mask |= POLLIN | POLLRDNORM;
577 mutex_unlock(&rev->ns->lock);
578 }
579
580 return mask;
581}
582
John Johansen5d5182ca2017-05-09 00:08:41 -0700583void __aa_bump_ns_revision(struct aa_ns *ns)
584{
585 ns->revision++;
John Johansend9bf2c22017-05-26 16:27:58 -0700586 wake_up_interruptible(&ns->wait);
John Johansen5d5182ca2017-05-09 00:08:41 -0700587}
588
John Johansend9bf2c22017-05-26 16:27:58 -0700589static const struct file_operations aa_fs_ns_revision_fops = {
590 .owner = THIS_MODULE,
591 .open = ns_revision_open,
592 .poll = ns_revision_poll,
593 .read = ns_revision_read,
594 .llseek = generic_file_llseek,
595 .release = ns_revision_release,
596};
597
William Huae025be02017-01-15 16:49:28 -0800598/**
599 * query_data - queries a policy and writes its data to buf
600 * @buf: the resulting data is stored here (NOT NULL)
601 * @buf_len: size of buf
602 * @query: query string used to retrieve data
603 * @query_len: size of query including second NUL byte
604 *
605 * The buffers pointed to by buf and query may overlap. The query buffer is
606 * parsed before buf is written to.
607 *
608 * The query should look like "<LABEL>\0<KEY>\0", where <LABEL> is the name of
609 * the security confinement context and <KEY> is the name of the data to
610 * retrieve. <LABEL> and <KEY> must not be NUL-terminated.
611 *
612 * Don't expect the contents of buf to be preserved on failure.
613 *
614 * Returns: number of characters written to buf or -errno on failure
615 */
616static ssize_t query_data(char *buf, size_t buf_len,
617 char *query, size_t query_len)
618{
619 char *out;
620 const char *key;
621 struct aa_profile *profile;
622 struct aa_data *data;
623 u32 bytes, blocks;
624 __le32 outle32;
625
626 if (!query_len)
627 return -EINVAL; /* need a query */
628
629 key = query + strnlen(query, query_len) + 1;
630 if (key + 1 >= query + query_len)
631 return -EINVAL; /* not enough space for a non-empty key */
632 if (key + strnlen(key, query + query_len - key) >= query + query_len)
633 return -EINVAL; /* must end with NUL */
634
635 if (buf_len < sizeof(bytes) + sizeof(blocks))
636 return -EINVAL; /* not enough space */
637
638 profile = aa_current_profile();
639
640 /* We are going to leave space for two numbers. The first is the total
641 * number of bytes we are writing after the first number. This is so
642 * users can read the full output without reallocation.
643 *
644 * The second number is the number of data blocks we're writing. An
645 * application might be confined by multiple policies having data in
646 * the same key.
647 */
648 memset(buf, 0, sizeof(bytes) + sizeof(blocks));
649 out = buf + sizeof(bytes) + sizeof(blocks);
650
651 blocks = 0;
652 if (profile->data) {
653 data = rhashtable_lookup_fast(profile->data, &key,
654 profile->data->p);
655
656 if (data) {
657 if (out + sizeof(outle32) + data->size > buf + buf_len)
658 return -EINVAL; /* not enough space */
659 outle32 = __cpu_to_le32(data->size);
660 memcpy(out, &outle32, sizeof(outle32));
661 out += sizeof(outle32);
662 memcpy(out, data->data, data->size);
663 out += data->size;
664 blocks++;
665 }
666 }
667
668 outle32 = __cpu_to_le32(out - buf - sizeof(bytes));
669 memcpy(buf, &outle32, sizeof(outle32));
670 outle32 = __cpu_to_le32(blocks);
671 memcpy(buf + sizeof(bytes), &outle32, sizeof(outle32));
672
673 return out - buf;
674}
675
676#define QUERY_CMD_DATA "data\0"
677#define QUERY_CMD_DATA_LEN 5
678
679/**
680 * aa_write_access - generic permissions and data query
681 * @file: pointer to open apparmorfs/access file
682 * @ubuf: user buffer containing the complete query string (NOT NULL)
683 * @count: size of ubuf
684 * @ppos: position in the file (MUST BE ZERO)
685 *
686 * Allows for one permissions or data query per open(), write(), and read()
687 * sequence. The only queries currently supported are label-based queries for
688 * permissions or data.
689 *
690 * For permissions queries, ubuf must begin with "label\0", followed by the
691 * profile query specific format described in the query_label() function
692 * documentation.
693 *
694 * For data queries, ubuf must have the form "data\0<LABEL>\0<KEY>\0", where
695 * <LABEL> is the name of the security confinement context and <KEY> is the
696 * name of the data to retrieve.
697 *
698 * Returns: number of bytes written or -errno on failure
699 */
700static ssize_t aa_write_access(struct file *file, const char __user *ubuf,
701 size_t count, loff_t *ppos)
702{
703 char *buf;
704 ssize_t len;
705
706 if (*ppos)
707 return -ESPIPE;
708
709 buf = simple_transaction_get(file, ubuf, count);
710 if (IS_ERR(buf))
711 return PTR_ERR(buf);
712
713 if (count > QUERY_CMD_DATA_LEN &&
714 !memcmp(buf, QUERY_CMD_DATA, QUERY_CMD_DATA_LEN)) {
715 len = query_data(buf, SIMPLE_TRANSACTION_LIMIT,
716 buf + QUERY_CMD_DATA_LEN,
717 count - QUERY_CMD_DATA_LEN);
718 } else
719 len = -EINVAL;
720
721 if (len < 0)
722 return len;
723
724 simple_transaction_set(file, len);
725
726 return count;
727}
728
John Johansenc97204b2017-05-25 06:23:42 -0700729static const struct file_operations aa_sfs_access = {
William Huae025be02017-01-15 16:49:28 -0800730 .write = aa_write_access,
731 .read = simple_transaction_read,
732 .release = simple_transaction_release,
733 .llseek = generic_file_llseek,
734};
735
John Johansenc97204b2017-05-25 06:23:42 -0700736static int aa_sfs_seq_show(struct seq_file *seq, void *v)
Kees Cooke74abcf2012-01-26 16:29:21 -0800737{
John Johansenc97204b2017-05-25 06:23:42 -0700738 struct aa_sfs_entry *fs_file = seq->private;
Kees Cooke74abcf2012-01-26 16:29:21 -0800739
740 if (!fs_file)
741 return 0;
742
743 switch (fs_file->v_type) {
John Johansenc97204b2017-05-25 06:23:42 -0700744 case AA_SFS_TYPE_BOOLEAN:
Kees Cooke74abcf2012-01-26 16:29:21 -0800745 seq_printf(seq, "%s\n", fs_file->v.boolean ? "yes" : "no");
746 break;
John Johansenc97204b2017-05-25 06:23:42 -0700747 case AA_SFS_TYPE_STRING:
Kees Cooka9bf8e92012-01-26 16:29:22 -0800748 seq_printf(seq, "%s\n", fs_file->v.string);
749 break;
John Johansenc97204b2017-05-25 06:23:42 -0700750 case AA_SFS_TYPE_U64:
Kees Cooke74abcf2012-01-26 16:29:21 -0800751 seq_printf(seq, "%#08lx\n", fs_file->v.u64);
752 break;
753 default:
754 /* Ignore unpritable entry types. */
755 break;
756 }
757
758 return 0;
759}
760
John Johansenc97204b2017-05-25 06:23:42 -0700761static int aa_sfs_seq_open(struct inode *inode, struct file *file)
Kees Cooke74abcf2012-01-26 16:29:21 -0800762{
John Johansenc97204b2017-05-25 06:23:42 -0700763 return single_open(file, aa_sfs_seq_show, inode->i_private);
Kees Cooke74abcf2012-01-26 16:29:21 -0800764}
765
John Johansenc97204b2017-05-25 06:23:42 -0700766const struct file_operations aa_sfs_seq_file_ops = {
Kees Cooke74abcf2012-01-26 16:29:21 -0800767 .owner = THIS_MODULE,
John Johansenc97204b2017-05-25 06:23:42 -0700768 .open = aa_sfs_seq_open,
Kees Cooke74abcf2012-01-26 16:29:21 -0800769 .read = seq_read,
770 .llseek = seq_lseek,
771 .release = single_release,
772};
773
John Johansen52b97de2017-05-25 04:35:09 -0700774/*
775 * profile based file operations
776 * policy/profiles/XXXX/profiles/ *
777 */
778
779#define SEQ_PROFILE_FOPS(NAME) \
780static int seq_profile_ ##NAME ##_open(struct inode *inode, struct file *file)\
781{ \
782 return seq_profile_open(inode, file, seq_profile_ ##NAME ##_show); \
783} \
784 \
785static const struct file_operations seq_profile_ ##NAME ##_fops = { \
786 .owner = THIS_MODULE, \
787 .open = seq_profile_ ##NAME ##_open, \
788 .read = seq_read, \
789 .llseek = seq_lseek, \
790 .release = seq_profile_release, \
791} \
792
793static int seq_profile_open(struct inode *inode, struct file *file,
794 int (*show)(struct seq_file *, void *))
John Johansen0d259f02013-07-10 21:13:43 -0700795{
John Johansen83995882017-01-16 00:42:19 -0800796 struct aa_proxy *proxy = aa_get_proxy(inode->i_private);
797 int error = single_open(file, show, proxy);
John Johansen63e2b422010-07-29 14:48:03 -0700798
John Johansen0d259f02013-07-10 21:13:43 -0700799 if (error) {
800 file->private_data = NULL;
John Johansen83995882017-01-16 00:42:19 -0800801 aa_put_proxy(proxy);
John Johansen0d259f02013-07-10 21:13:43 -0700802 }
803
804 return error;
805}
806
John Johansen52b97de2017-05-25 04:35:09 -0700807static int seq_profile_release(struct inode *inode, struct file *file)
John Johansen0d259f02013-07-10 21:13:43 -0700808{
809 struct seq_file *seq = (struct seq_file *) file->private_data;
810 if (seq)
John Johansen83995882017-01-16 00:42:19 -0800811 aa_put_proxy(seq->private);
John Johansen0d259f02013-07-10 21:13:43 -0700812 return single_release(inode, file);
813}
814
John Johansen52b97de2017-05-25 04:35:09 -0700815static int seq_profile_name_show(struct seq_file *seq, void *v)
John Johansen0d259f02013-07-10 21:13:43 -0700816{
John Johansen83995882017-01-16 00:42:19 -0800817 struct aa_proxy *proxy = seq->private;
818 struct aa_profile *profile = aa_get_profile_rcu(&proxy->profile);
John Johansen0d259f02013-07-10 21:13:43 -0700819 seq_printf(seq, "%s\n", profile->base.name);
820 aa_put_profile(profile);
821
822 return 0;
823}
824
John Johansen52b97de2017-05-25 04:35:09 -0700825static int seq_profile_mode_show(struct seq_file *seq, void *v)
John Johansen0d259f02013-07-10 21:13:43 -0700826{
John Johansen83995882017-01-16 00:42:19 -0800827 struct aa_proxy *proxy = seq->private;
828 struct aa_profile *profile = aa_get_profile_rcu(&proxy->profile);
John Johansen0d259f02013-07-10 21:13:43 -0700829 seq_printf(seq, "%s\n", aa_profile_mode_names[profile->mode]);
830 aa_put_profile(profile);
831
832 return 0;
833}
834
John Johansen52b97de2017-05-25 04:35:09 -0700835static int seq_profile_attach_show(struct seq_file *seq, void *v)
John Johansen556d0be2013-07-10 21:17:43 -0700836{
John Johansen83995882017-01-16 00:42:19 -0800837 struct aa_proxy *proxy = seq->private;
838 struct aa_profile *profile = aa_get_profile_rcu(&proxy->profile);
John Johansen556d0be2013-07-10 21:17:43 -0700839 if (profile->attach)
840 seq_printf(seq, "%s\n", profile->attach);
841 else if (profile->xmatch)
842 seq_puts(seq, "<unknown>\n");
843 else
844 seq_printf(seq, "%s\n", profile->base.name);
845 aa_put_profile(profile);
846
847 return 0;
848}
849
John Johansen52b97de2017-05-25 04:35:09 -0700850static int seq_profile_hash_show(struct seq_file *seq, void *v)
John Johansenf8eb8a12013-08-14 11:27:36 -0700851{
John Johansen83995882017-01-16 00:42:19 -0800852 struct aa_proxy *proxy = seq->private;
853 struct aa_profile *profile = aa_get_profile_rcu(&proxy->profile);
John Johansenf8eb8a12013-08-14 11:27:36 -0700854 unsigned int i, size = aa_hash_size();
855
856 if (profile->hash) {
857 for (i = 0; i < size; i++)
858 seq_printf(seq, "%.2x", profile->hash[i]);
Markus Elfring47dbd1c2017-05-07 13:50:28 +0200859 seq_putc(seq, '\n');
John Johansenf8eb8a12013-08-14 11:27:36 -0700860 }
John Johansen0b938a22015-11-18 11:41:05 -0800861 aa_put_profile(profile);
John Johansenf8eb8a12013-08-14 11:27:36 -0700862
863 return 0;
864}
865
John Johansen52b97de2017-05-25 04:35:09 -0700866SEQ_PROFILE_FOPS(name);
867SEQ_PROFILE_FOPS(mode);
868SEQ_PROFILE_FOPS(attach);
869SEQ_PROFILE_FOPS(hash);
John Johansenf8eb8a12013-08-14 11:27:36 -0700870
John Johansen64c86972017-05-25 07:27:35 -0700871/*
872 * namespace based files
873 * several root files and
874 * policy/ *
875 */
John Johansenf8eb8a12013-08-14 11:27:36 -0700876
John Johansen64c86972017-05-25 07:27:35 -0700877#define SEQ_NS_FOPS(NAME) \
878static int seq_ns_ ##NAME ##_open(struct inode *inode, struct file *file) \
879{ \
880 return single_open(file, seq_ns_ ##NAME ##_show, inode->i_private); \
881} \
882 \
883static const struct file_operations seq_ns_ ##NAME ##_fops = { \
884 .owner = THIS_MODULE, \
885 .open = seq_ns_ ##NAME ##_open, \
886 .read = seq_read, \
887 .llseek = seq_lseek, \
888 .release = single_release, \
889} \
John Johansen3e3e5692017-01-16 00:42:48 -0800890
John Johansen64c86972017-05-25 07:27:35 -0700891static int seq_ns_level_show(struct seq_file *seq, void *v)
John Johansena71ada32017-01-16 00:42:45 -0800892{
893 struct aa_ns *ns = aa_current_profile()->ns;
894
895 seq_printf(seq, "%d\n", ns->level);
896
897 return 0;
898}
899
John Johansen64c86972017-05-25 07:27:35 -0700900static int seq_ns_name_show(struct seq_file *seq, void *v)
John Johansen3e3e5692017-01-16 00:42:48 -0800901{
902 struct aa_ns *ns = aa_current_profile()->ns;
903
904 seq_printf(seq, "%s\n", ns->base.name);
905
906 return 0;
907}
908
John Johansen64c86972017-05-25 07:27:35 -0700909SEQ_NS_FOPS(level);
910SEQ_NS_FOPS(name);
John Johansen3e3e5692017-01-16 00:42:48 -0800911
John Johansen5d5182ca2017-05-09 00:08:41 -0700912
913/* policy/raw_data/ * file ops */
914
915#define SEQ_RAWDATA_FOPS(NAME) \
916static int seq_rawdata_ ##NAME ##_open(struct inode *inode, struct file *file)\
917{ \
918 return seq_rawdata_open(inode, file, seq_rawdata_ ##NAME ##_show); \
919} \
920 \
921static const struct file_operations seq_rawdata_ ##NAME ##_fops = { \
922 .owner = THIS_MODULE, \
923 .open = seq_rawdata_ ##NAME ##_open, \
924 .read = seq_read, \
925 .llseek = seq_lseek, \
926 .release = seq_rawdata_release, \
927} \
928
929static int seq_rawdata_open(struct inode *inode, struct file *file,
930 int (*show)(struct seq_file *, void *))
John Johansen5ac8c352017-01-16 00:42:55 -0800931{
John Johansen5d5182ca2017-05-09 00:08:41 -0700932 struct aa_loaddata *data = __aa_get_loaddata(inode->i_private);
933 int error;
934
935 if (!data)
936 /* lost race this ent is being reaped */
937 return -ENOENT;
938
939 error = single_open(file, show, data);
940 if (error) {
941 AA_BUG(file->private_data &&
942 ((struct seq_file *)file->private_data)->private);
943 aa_put_loaddata(data);
944 }
945
946 return error;
947}
948
949static int seq_rawdata_release(struct inode *inode, struct file *file)
950{
951 struct seq_file *seq = (struct seq_file *) file->private_data;
952
953 if (seq)
954 aa_put_loaddata(seq->private);
955
956 return single_release(inode, file);
957}
958
959static int seq_rawdata_abi_show(struct seq_file *seq, void *v)
960{
961 struct aa_loaddata *data = seq->private;
962
963 seq_printf(seq, "v%d\n", data->abi);
John Johansen5ac8c352017-01-16 00:42:55 -0800964
965 return 0;
966}
967
John Johansen5d5182ca2017-05-09 00:08:41 -0700968static int seq_rawdata_revision_show(struct seq_file *seq, void *v)
John Johansen5ac8c352017-01-16 00:42:55 -0800969{
John Johansen5d5182ca2017-05-09 00:08:41 -0700970 struct aa_loaddata *data = seq->private;
John Johansen5ac8c352017-01-16 00:42:55 -0800971
John Johansen5d5182ca2017-05-09 00:08:41 -0700972 seq_printf(seq, "%ld\n", data->revision);
John Johansen5ac8c352017-01-16 00:42:55 -0800973
974 return 0;
975}
976
John Johansen5d5182ca2017-05-09 00:08:41 -0700977static int seq_rawdata_hash_show(struct seq_file *seq, void *v)
John Johansen5ac8c352017-01-16 00:42:55 -0800978{
John Johansen5d5182ca2017-05-09 00:08:41 -0700979 struct aa_loaddata *data = seq->private;
John Johansen5ac8c352017-01-16 00:42:55 -0800980 unsigned int i, size = aa_hash_size();
981
John Johansen5d5182ca2017-05-09 00:08:41 -0700982 if (data->hash) {
John Johansen5ac8c352017-01-16 00:42:55 -0800983 for (i = 0; i < size; i++)
John Johansen5d5182ca2017-05-09 00:08:41 -0700984 seq_printf(seq, "%.2x", data->hash[i]);
Markus Elfring47dbd1c2017-05-07 13:50:28 +0200985 seq_putc(seq, '\n');
John Johansen5ac8c352017-01-16 00:42:55 -0800986 }
John Johansen5ac8c352017-01-16 00:42:55 -0800987
988 return 0;
989}
990
John Johansen5d5182ca2017-05-09 00:08:41 -0700991SEQ_RAWDATA_FOPS(abi);
992SEQ_RAWDATA_FOPS(revision);
993SEQ_RAWDATA_FOPS(hash);
John Johansen5ac8c352017-01-16 00:42:55 -0800994
995static ssize_t rawdata_read(struct file *file, char __user *buf, size_t size,
996 loff_t *ppos)
997{
998 struct aa_loaddata *rawdata = file->private_data;
999
1000 return simple_read_from_buffer(buf, size, ppos, rawdata->data,
1001 rawdata->size);
1002}
1003
John Johansen5d5182ca2017-05-09 00:08:41 -07001004static int rawdata_release(struct inode *inode, struct file *file)
John Johansen5ac8c352017-01-16 00:42:55 -08001005{
John Johansen5d5182ca2017-05-09 00:08:41 -07001006 aa_put_loaddata(file->private_data);
John Johansen5ac8c352017-01-16 00:42:55 -08001007
1008 return 0;
1009}
1010
John Johansen5d5182ca2017-05-09 00:08:41 -07001011static int rawdata_open(struct inode *inode, struct file *file)
1012{
1013 if (!policy_view_capable(NULL))
1014 return -EACCES;
1015 file->private_data = __aa_get_loaddata(inode->i_private);
1016 if (!file->private_data)
1017 /* lost race: this entry is being reaped */
1018 return -ENOENT;
1019
1020 return 0;
1021}
1022
1023static const struct file_operations rawdata_fops = {
John Johansen5ac8c352017-01-16 00:42:55 -08001024 .open = rawdata_open,
1025 .read = rawdata_read,
1026 .llseek = generic_file_llseek,
1027 .release = rawdata_release,
1028};
1029
John Johansen5d5182ca2017-05-09 00:08:41 -07001030static void remove_rawdata_dents(struct aa_loaddata *rawdata)
1031{
1032 int i;
1033
1034 for (i = 0; i < AAFS_LOADDATA_NDENTS; i++) {
1035 if (!IS_ERR_OR_NULL(rawdata->dents[i])) {
1036 /* no refcounts on i_private */
John Johansenc961ee52017-05-25 06:35:38 -07001037 aafs_remove(rawdata->dents[i]);
John Johansen5d5182ca2017-05-09 00:08:41 -07001038 rawdata->dents[i] = NULL;
1039 }
1040 }
1041}
1042
1043void __aa_fs_remove_rawdata(struct aa_loaddata *rawdata)
1044{
1045 AA_BUG(rawdata->ns && !mutex_is_locked(&rawdata->ns->lock));
1046
1047 if (rawdata->ns) {
1048 remove_rawdata_dents(rawdata);
1049 list_del_init(&rawdata->list);
1050 aa_put_ns(rawdata->ns);
1051 rawdata->ns = NULL;
1052 }
1053}
1054
1055int __aa_fs_create_rawdata(struct aa_ns *ns, struct aa_loaddata *rawdata)
1056{
1057 struct dentry *dent, *dir;
1058
1059 AA_BUG(!ns);
1060 AA_BUG(!rawdata);
1061 AA_BUG(!mutex_is_locked(&ns->lock));
1062 AA_BUG(!ns_subdata_dir(ns));
1063
1064 /*
1065 * just use ns revision dir was originally created at. This is
1066 * under ns->lock and if load is successful revision will be
1067 * bumped and is guaranteed to be unique
1068 */
1069 rawdata->name = kasprintf(GFP_KERNEL, "%ld", ns->revision);
1070 if (!rawdata->name)
1071 return -ENOMEM;
1072
John Johansenc961ee52017-05-25 06:35:38 -07001073 dir = aafs_create_dir(rawdata->name, ns_subdata_dir(ns));
John Johansen5d5182ca2017-05-09 00:08:41 -07001074 if (IS_ERR(dir))
1075 /* ->name freed when rawdata freed */
1076 return PTR_ERR(dir);
1077 rawdata->dents[AAFS_LOADDATA_DIR] = dir;
1078
John Johansenc961ee52017-05-25 06:35:38 -07001079 dent = aafs_create_file("abi", S_IFREG | 0444, dir, rawdata,
John Johansen5d5182ca2017-05-09 00:08:41 -07001080 &seq_rawdata_abi_fops);
1081 if (IS_ERR(dent))
1082 goto fail;
1083 rawdata->dents[AAFS_LOADDATA_ABI] = dent;
1084
John Johansenc961ee52017-05-25 06:35:38 -07001085 dent = aafs_create_file("revision", S_IFREG | 0444, dir, rawdata,
John Johansen5d5182ca2017-05-09 00:08:41 -07001086 &seq_rawdata_revision_fops);
1087 if (IS_ERR(dent))
1088 goto fail;
1089 rawdata->dents[AAFS_LOADDATA_REVISION] = dent;
1090
1091 if (aa_g_hash_policy) {
John Johansenc961ee52017-05-25 06:35:38 -07001092 dent = aafs_create_file("sha1", S_IFREG | 0444, dir,
John Johansen5d5182ca2017-05-09 00:08:41 -07001093 rawdata, &seq_rawdata_hash_fops);
1094 if (IS_ERR(dent))
1095 goto fail;
1096 rawdata->dents[AAFS_LOADDATA_HASH] = dent;
1097 }
1098
John Johansenc961ee52017-05-25 06:35:38 -07001099 dent = aafs_create_file("raw_data", S_IFREG | 0444,
John Johansen5d5182ca2017-05-09 00:08:41 -07001100 dir, rawdata, &rawdata_fops);
1101 if (IS_ERR(dent))
1102 goto fail;
1103 rawdata->dents[AAFS_LOADDATA_DATA] = dent;
1104 d_inode(dent)->i_size = rawdata->size;
1105
1106 rawdata->ns = aa_get_ns(ns);
1107 list_add(&rawdata->list, &ns->rawdata_list);
1108 /* no refcount on inode rawdata */
1109
1110 return 0;
1111
1112fail:
1113 remove_rawdata_dents(rawdata);
1114
1115 return PTR_ERR(dent);
1116}
1117
John Johansen0d259f02013-07-10 21:13:43 -07001118/** fns to setup dynamic per profile/namespace files **/
John Johansenc97204b2017-05-25 06:23:42 -07001119
1120/**
1121 *
1122 * Requires: @profile->ns->lock held
1123 */
1124void __aafs_profile_rmdir(struct aa_profile *profile)
John Johansen0d259f02013-07-10 21:13:43 -07001125{
1126 struct aa_profile *child;
1127 int i;
1128
1129 if (!profile)
1130 return;
1131
1132 list_for_each_entry(child, &profile->base.profiles, base.list)
John Johansenc97204b2017-05-25 06:23:42 -07001133 __aafs_profile_rmdir(child);
John Johansen0d259f02013-07-10 21:13:43 -07001134
1135 for (i = AAFS_PROF_SIZEOF - 1; i >= 0; --i) {
John Johansen83995882017-01-16 00:42:19 -08001136 struct aa_proxy *proxy;
John Johansen0d259f02013-07-10 21:13:43 -07001137 if (!profile->dents[i])
1138 continue;
1139
John Johansen83995882017-01-16 00:42:19 -08001140 proxy = d_inode(profile->dents[i])->i_private;
John Johansenc961ee52017-05-25 06:35:38 -07001141 aafs_remove(profile->dents[i]);
John Johansen83995882017-01-16 00:42:19 -08001142 aa_put_proxy(proxy);
John Johansen0d259f02013-07-10 21:13:43 -07001143 profile->dents[i] = NULL;
1144 }
1145}
1146
John Johansenc97204b2017-05-25 06:23:42 -07001147/**
1148 *
1149 * Requires: @old->ns->lock held
1150 */
1151void __aafs_profile_migrate_dents(struct aa_profile *old,
1152 struct aa_profile *new)
John Johansen0d259f02013-07-10 21:13:43 -07001153{
1154 int i;
1155
1156 for (i = 0; i < AAFS_PROF_SIZEOF; i++) {
1157 new->dents[i] = old->dents[i];
John Johansend671e8902014-07-25 04:01:56 -07001158 if (new->dents[i])
Deepa Dinamani078cd822016-09-14 07:48:04 -07001159 new->dents[i]->d_inode->i_mtime = current_time(new->dents[i]->d_inode);
John Johansen0d259f02013-07-10 21:13:43 -07001160 old->dents[i] = NULL;
1161 }
1162}
1163
1164static struct dentry *create_profile_file(struct dentry *dir, const char *name,
1165 struct aa_profile *profile,
1166 const struct file_operations *fops)
1167{
John Johansen83995882017-01-16 00:42:19 -08001168 struct aa_proxy *proxy = aa_get_proxy(profile->proxy);
John Johansen0d259f02013-07-10 21:13:43 -07001169 struct dentry *dent;
1170
John Johansenc961ee52017-05-25 06:35:38 -07001171 dent = aafs_create_file(name, S_IFREG | 0444, dir, proxy, fops);
John Johansen0d259f02013-07-10 21:13:43 -07001172 if (IS_ERR(dent))
John Johansen83995882017-01-16 00:42:19 -08001173 aa_put_proxy(proxy);
John Johansen0d259f02013-07-10 21:13:43 -07001174
1175 return dent;
1176}
1177
John Johansen5d5182ca2017-05-09 00:08:41 -07001178static int profile_depth(struct aa_profile *profile)
1179{
1180 int depth = 0;
1181
1182 rcu_read_lock();
1183 for (depth = 0; profile; profile = rcu_access_pointer(profile->parent))
1184 depth++;
1185 rcu_read_unlock();
1186
1187 return depth;
1188}
1189
1190static int gen_symlink_name(char *buffer, size_t bsize, int depth,
1191 const char *dirname, const char *fname)
1192{
1193 int error;
1194
1195 for (; depth > 0; depth--) {
1196 if (bsize < 7)
1197 return -ENAMETOOLONG;
1198 strcpy(buffer, "../../");
1199 buffer += 6;
1200 bsize -= 6;
1201 }
1202
1203 error = snprintf(buffer, bsize, "raw_data/%s/%s", dirname, fname);
1204 if (error >= bsize || error < 0)
1205 return -ENAMETOOLONG;
1206
1207 return 0;
1208}
1209
1210/*
1211 * Requires: @profile->ns->lock held
1212 */
John Johansenc97204b2017-05-25 06:23:42 -07001213int __aafs_profile_mkdir(struct aa_profile *profile, struct dentry *parent)
John Johansen0d259f02013-07-10 21:13:43 -07001214{
1215 struct aa_profile *child;
1216 struct dentry *dent = NULL, *dir;
1217 int error;
1218
1219 if (!parent) {
1220 struct aa_profile *p;
1221 p = aa_deref_parent(profile);
1222 dent = prof_dir(p);
1223 /* adding to parent that previously didn't have children */
John Johansenc961ee52017-05-25 06:35:38 -07001224 dent = aafs_create_dir("profiles", dent);
John Johansen0d259f02013-07-10 21:13:43 -07001225 if (IS_ERR(dent))
1226 goto fail;
1227 prof_child_dir(p) = parent = dent;
1228 }
1229
1230 if (!profile->dirname) {
1231 int len, id_len;
1232 len = mangle_name(profile->base.name, NULL);
1233 id_len = snprintf(NULL, 0, ".%ld", profile->ns->uniq_id);
1234
1235 profile->dirname = kmalloc(len + id_len + 1, GFP_KERNEL);
Dan Carpenterffac1de2017-05-23 17:33:46 +03001236 if (!profile->dirname) {
1237 error = -ENOMEM;
1238 goto fail2;
1239 }
John Johansen0d259f02013-07-10 21:13:43 -07001240
1241 mangle_name(profile->base.name, profile->dirname);
1242 sprintf(profile->dirname + len, ".%ld", profile->ns->uniq_id++);
1243 }
1244
John Johansenc961ee52017-05-25 06:35:38 -07001245 dent = aafs_create_dir(profile->dirname, parent);
John Johansen0d259f02013-07-10 21:13:43 -07001246 if (IS_ERR(dent))
1247 goto fail;
1248 prof_dir(profile) = dir = dent;
1249
John Johansen52b97de2017-05-25 04:35:09 -07001250 dent = create_profile_file(dir, "name", profile,
1251 &seq_profile_name_fops);
John Johansen0d259f02013-07-10 21:13:43 -07001252 if (IS_ERR(dent))
1253 goto fail;
1254 profile->dents[AAFS_PROF_NAME] = dent;
1255
John Johansen52b97de2017-05-25 04:35:09 -07001256 dent = create_profile_file(dir, "mode", profile,
1257 &seq_profile_mode_fops);
John Johansen0d259f02013-07-10 21:13:43 -07001258 if (IS_ERR(dent))
1259 goto fail;
1260 profile->dents[AAFS_PROF_MODE] = dent;
1261
John Johansen556d0be2013-07-10 21:17:43 -07001262 dent = create_profile_file(dir, "attach", profile,
John Johansen52b97de2017-05-25 04:35:09 -07001263 &seq_profile_attach_fops);
John Johansen556d0be2013-07-10 21:17:43 -07001264 if (IS_ERR(dent))
1265 goto fail;
1266 profile->dents[AAFS_PROF_ATTACH] = dent;
1267
John Johansenf8eb8a12013-08-14 11:27:36 -07001268 if (profile->hash) {
1269 dent = create_profile_file(dir, "sha1", profile,
John Johansen52b97de2017-05-25 04:35:09 -07001270 &seq_profile_hash_fops);
John Johansenf8eb8a12013-08-14 11:27:36 -07001271 if (IS_ERR(dent))
1272 goto fail;
1273 profile->dents[AAFS_PROF_HASH] = dent;
1274 }
1275
John Johansen5ac8c352017-01-16 00:42:55 -08001276 if (profile->rawdata) {
John Johansen5d5182ca2017-05-09 00:08:41 -07001277 char target[64];
1278 int depth = profile_depth(profile);
1279
1280 error = gen_symlink_name(target, sizeof(target), depth,
1281 profile->rawdata->name, "sha1");
1282 if (error < 0)
1283 goto fail2;
John Johansenc961ee52017-05-25 06:35:38 -07001284 dent = aafs_create_symlink("raw_sha1", dir, target, NULL);
John Johansen5ac8c352017-01-16 00:42:55 -08001285 if (IS_ERR(dent))
1286 goto fail;
1287 profile->dents[AAFS_PROF_RAW_HASH] = dent;
1288
John Johansen5d5182ca2017-05-09 00:08:41 -07001289 error = gen_symlink_name(target, sizeof(target), depth,
1290 profile->rawdata->name, "abi");
1291 if (error < 0)
1292 goto fail2;
John Johansenc961ee52017-05-25 06:35:38 -07001293 dent = aafs_create_symlink("raw_abi", dir, target, NULL);
John Johansen5ac8c352017-01-16 00:42:55 -08001294 if (IS_ERR(dent))
1295 goto fail;
1296 profile->dents[AAFS_PROF_RAW_ABI] = dent;
1297
John Johansen5d5182ca2017-05-09 00:08:41 -07001298 error = gen_symlink_name(target, sizeof(target), depth,
1299 profile->rawdata->name, "raw_data");
1300 if (error < 0)
1301 goto fail2;
John Johansenc961ee52017-05-25 06:35:38 -07001302 dent = aafs_create_symlink("raw_data", dir, target, NULL);
John Johansen5ac8c352017-01-16 00:42:55 -08001303 if (IS_ERR(dent))
1304 goto fail;
1305 profile->dents[AAFS_PROF_RAW_DATA] = dent;
John Johansen5ac8c352017-01-16 00:42:55 -08001306 }
1307
John Johansen0d259f02013-07-10 21:13:43 -07001308 list_for_each_entry(child, &profile->base.profiles, base.list) {
John Johansenc97204b2017-05-25 06:23:42 -07001309 error = __aafs_profile_mkdir(child, prof_child_dir(profile));
John Johansen0d259f02013-07-10 21:13:43 -07001310 if (error)
1311 goto fail2;
1312 }
1313
1314 return 0;
1315
1316fail:
1317 error = PTR_ERR(dent);
1318
1319fail2:
John Johansenc97204b2017-05-25 06:23:42 -07001320 __aafs_profile_rmdir(profile);
John Johansen0d259f02013-07-10 21:13:43 -07001321
1322 return error;
1323}
1324
John Johansen4ae47f32017-05-26 16:45:48 -07001325static int ns_mkdir_op(struct inode *dir, struct dentry *dentry, umode_t mode)
1326{
1327 struct aa_ns *ns, *parent;
1328 /* TODO: improve permission check */
1329 struct aa_profile *profile = aa_current_profile();
1330 int error = aa_may_manage_policy(profile, NULL, AA_MAY_LOAD_POLICY);
1331
1332 if (error)
1333 return error;
1334
1335 parent = aa_get_ns(dir->i_private);
1336 AA_BUG(d_inode(ns_subns_dir(parent)) != dir);
1337
1338 /* we have to unlock and then relock to get locking order right
1339 * for pin_fs
1340 */
1341 inode_unlock(dir);
1342 error = simple_pin_fs(&aafs_ops, &aafs_mnt, &aafs_count);
1343 mutex_lock(&parent->lock);
1344 inode_lock_nested(dir, I_MUTEX_PARENT);
1345 if (error)
1346 goto out;
1347
1348 error = __aafs_setup_d_inode(dir, dentry, mode | S_IFDIR, NULL,
1349 NULL, NULL, NULL);
1350 if (error)
1351 goto out_pin;
1352
1353 ns = __aa_find_or_create_ns(parent, READ_ONCE(dentry->d_name.name),
1354 dentry);
1355 if (IS_ERR(ns)) {
1356 error = PTR_ERR(ns);
1357 ns = NULL;
1358 }
1359
1360 aa_put_ns(ns); /* list ref remains */
1361out_pin:
1362 if (error)
1363 simple_release_fs(&aafs_mnt, &aafs_count);
1364out:
1365 mutex_unlock(&parent->lock);
1366 aa_put_ns(parent);
1367
1368 return error;
1369}
1370
1371static int ns_rmdir_op(struct inode *dir, struct dentry *dentry)
1372{
1373 struct aa_ns *ns, *parent;
1374 /* TODO: improve permission check */
1375 struct aa_profile *profile = aa_current_profile();
1376 int error = aa_may_manage_policy(profile, NULL, AA_MAY_LOAD_POLICY);
1377
1378 if (error)
1379 return error;
1380
1381 parent = aa_get_ns(dir->i_private);
1382 /* rmdir calls the generic securityfs functions to remove files
1383 * from the apparmor dir. It is up to the apparmor ns locking
1384 * to avoid races.
1385 */
1386 inode_unlock(dir);
1387 inode_unlock(dentry->d_inode);
1388
1389 mutex_lock(&parent->lock);
1390 ns = aa_get_ns(__aa_findn_ns(&parent->sub_ns, dentry->d_name.name,
1391 dentry->d_name.len));
1392 if (!ns) {
1393 error = -ENOENT;
1394 goto out;
1395 }
1396 AA_BUG(ns_dir(ns) != dentry);
1397
1398 __aa_remove_ns(ns);
1399 aa_put_ns(ns);
1400
1401out:
1402 mutex_unlock(&parent->lock);
1403 inode_lock_nested(dir, I_MUTEX_PARENT);
1404 inode_lock(dentry->d_inode);
1405 aa_put_ns(parent);
1406
1407 return error;
1408}
1409
1410static const struct inode_operations ns_dir_inode_operations = {
1411 .lookup = simple_lookup,
1412 .mkdir = ns_mkdir_op,
1413 .rmdir = ns_rmdir_op,
1414};
1415
John Johansen5d5182ca2017-05-09 00:08:41 -07001416static void __aa_fs_list_remove_rawdata(struct aa_ns *ns)
1417{
1418 struct aa_loaddata *ent, *tmp;
1419
1420 AA_BUG(!mutex_is_locked(&ns->lock));
1421
1422 list_for_each_entry_safe(ent, tmp, &ns->rawdata_list, list)
1423 __aa_fs_remove_rawdata(ent);
1424}
1425
John Johansenc97204b2017-05-25 06:23:42 -07001426/**
1427 *
1428 * Requires: @ns->lock held
1429 */
1430void __aafs_ns_rmdir(struct aa_ns *ns)
John Johansen0d259f02013-07-10 21:13:43 -07001431{
John Johansen98849df2017-01-16 00:42:16 -08001432 struct aa_ns *sub;
John Johansen0d259f02013-07-10 21:13:43 -07001433 struct aa_profile *child;
1434 int i;
1435
1436 if (!ns)
1437 return;
1438
1439 list_for_each_entry(child, &ns->base.profiles, base.list)
John Johansenc97204b2017-05-25 06:23:42 -07001440 __aafs_profile_rmdir(child);
John Johansen0d259f02013-07-10 21:13:43 -07001441
1442 list_for_each_entry(sub, &ns->sub_ns, base.list) {
1443 mutex_lock(&sub->lock);
John Johansenc97204b2017-05-25 06:23:42 -07001444 __aafs_ns_rmdir(sub);
John Johansen0d259f02013-07-10 21:13:43 -07001445 mutex_unlock(&sub->lock);
1446 }
1447
John Johansen5d5182ca2017-05-09 00:08:41 -07001448 __aa_fs_list_remove_rawdata(ns);
1449
John Johansenb7fd2c02017-01-16 00:42:58 -08001450 if (ns_subns_dir(ns)) {
1451 sub = d_inode(ns_subns_dir(ns))->i_private;
1452 aa_put_ns(sub);
1453 }
1454 if (ns_subload(ns)) {
1455 sub = d_inode(ns_subload(ns))->i_private;
1456 aa_put_ns(sub);
1457 }
1458 if (ns_subreplace(ns)) {
1459 sub = d_inode(ns_subreplace(ns))->i_private;
1460 aa_put_ns(sub);
1461 }
1462 if (ns_subremove(ns)) {
1463 sub = d_inode(ns_subremove(ns))->i_private;
1464 aa_put_ns(sub);
1465 }
John Johansend9bf2c22017-05-26 16:27:58 -07001466 if (ns_subrevision(ns)) {
1467 sub = d_inode(ns_subrevision(ns))->i_private;
1468 aa_put_ns(sub);
1469 }
John Johansenb7fd2c02017-01-16 00:42:58 -08001470
John Johansen0d259f02013-07-10 21:13:43 -07001471 for (i = AAFS_NS_SIZEOF - 1; i >= 0; --i) {
John Johansenc961ee52017-05-25 06:35:38 -07001472 aafs_remove(ns->dents[i]);
John Johansen0d259f02013-07-10 21:13:43 -07001473 ns->dents[i] = NULL;
1474 }
1475}
1476
John Johansenb7fd2c02017-01-16 00:42:58 -08001477/* assumes cleanup in caller */
John Johansenc97204b2017-05-25 06:23:42 -07001478static int __aafs_ns_mkdir_entries(struct aa_ns *ns, struct dentry *dir)
John Johansenb7fd2c02017-01-16 00:42:58 -08001479{
1480 struct dentry *dent;
1481
1482 AA_BUG(!ns);
1483 AA_BUG(!dir);
1484
John Johansenc961ee52017-05-25 06:35:38 -07001485 dent = aafs_create_dir("profiles", dir);
John Johansenb7fd2c02017-01-16 00:42:58 -08001486 if (IS_ERR(dent))
1487 return PTR_ERR(dent);
1488 ns_subprofs_dir(ns) = dent;
1489
John Johansenc961ee52017-05-25 06:35:38 -07001490 dent = aafs_create_dir("raw_data", dir);
John Johansenb7fd2c02017-01-16 00:42:58 -08001491 if (IS_ERR(dent))
1492 return PTR_ERR(dent);
1493 ns_subdata_dir(ns) = dent;
1494
John Johansend9bf2c22017-05-26 16:27:58 -07001495 dent = aafs_create_file("revision", 0444, dir, ns,
1496 &aa_fs_ns_revision_fops);
1497 if (IS_ERR(dent))
1498 return PTR_ERR(dent);
1499 aa_get_ns(ns);
1500 ns_subrevision(ns) = dent;
1501
John Johansenc961ee52017-05-25 06:35:38 -07001502 dent = aafs_create_file(".load", 0640, dir, ns,
John Johansenb7fd2c02017-01-16 00:42:58 -08001503 &aa_fs_profile_load);
1504 if (IS_ERR(dent))
1505 return PTR_ERR(dent);
1506 aa_get_ns(ns);
1507 ns_subload(ns) = dent;
1508
John Johansenc961ee52017-05-25 06:35:38 -07001509 dent = aafs_create_file(".replace", 0640, dir, ns,
John Johansenb7fd2c02017-01-16 00:42:58 -08001510 &aa_fs_profile_replace);
1511 if (IS_ERR(dent))
1512 return PTR_ERR(dent);
1513 aa_get_ns(ns);
1514 ns_subreplace(ns) = dent;
1515
John Johansenc961ee52017-05-25 06:35:38 -07001516 dent = aafs_create_file(".remove", 0640, dir, ns,
John Johansenb7fd2c02017-01-16 00:42:58 -08001517 &aa_fs_profile_remove);
1518 if (IS_ERR(dent))
1519 return PTR_ERR(dent);
1520 aa_get_ns(ns);
1521 ns_subremove(ns) = dent;
1522
John Johansen4ae47f32017-05-26 16:45:48 -07001523 /* use create_dentry so we can supply private data */
1524 dent = aafs_create("namespaces", S_IFDIR | 0755, dir, ns, NULL, NULL,
1525 &ns_dir_inode_operations);
John Johansenb7fd2c02017-01-16 00:42:58 -08001526 if (IS_ERR(dent))
1527 return PTR_ERR(dent);
1528 aa_get_ns(ns);
1529 ns_subns_dir(ns) = dent;
1530
1531 return 0;
1532}
1533
John Johansenc97204b2017-05-25 06:23:42 -07001534/*
1535 * Requires: @ns->lock held
1536 */
John Johansen98407f02017-05-25 06:31:46 -07001537int __aafs_ns_mkdir(struct aa_ns *ns, struct dentry *parent, const char *name,
1538 struct dentry *dent)
John Johansen0d259f02013-07-10 21:13:43 -07001539{
John Johansen98849df2017-01-16 00:42:16 -08001540 struct aa_ns *sub;
John Johansen0d259f02013-07-10 21:13:43 -07001541 struct aa_profile *child;
John Johansen98407f02017-05-25 06:31:46 -07001542 struct dentry *dir;
John Johansen0d259f02013-07-10 21:13:43 -07001543 int error;
1544
John Johansenb7fd2c02017-01-16 00:42:58 -08001545 AA_BUG(!ns);
1546 AA_BUG(!parent);
1547 AA_BUG(!mutex_is_locked(&ns->lock));
1548
John Johansen0d259f02013-07-10 21:13:43 -07001549 if (!name)
1550 name = ns->base.name;
1551
John Johansenc961ee52017-05-25 06:35:38 -07001552 if (!dent) {
1553 /* create ns dir if it doesn't already exist */
1554 dent = aafs_create_dir(name, parent);
1555 if (IS_ERR(dent))
1556 goto fail;
1557 } else
1558 dget(dent);
John Johansen0d259f02013-07-10 21:13:43 -07001559 ns_dir(ns) = dir = dent;
John Johansenc97204b2017-05-25 06:23:42 -07001560 error = __aafs_ns_mkdir_entries(ns, dir);
John Johansenb7fd2c02017-01-16 00:42:58 -08001561 if (error)
1562 goto fail2;
John Johansen0d259f02013-07-10 21:13:43 -07001563
John Johansenb7fd2c02017-01-16 00:42:58 -08001564 /* profiles */
John Johansen0d259f02013-07-10 21:13:43 -07001565 list_for_each_entry(child, &ns->base.profiles, base.list) {
John Johansenc97204b2017-05-25 06:23:42 -07001566 error = __aafs_profile_mkdir(child, ns_subprofs_dir(ns));
John Johansen0d259f02013-07-10 21:13:43 -07001567 if (error)
1568 goto fail2;
1569 }
1570
John Johansenb7fd2c02017-01-16 00:42:58 -08001571 /* subnamespaces */
John Johansen0d259f02013-07-10 21:13:43 -07001572 list_for_each_entry(sub, &ns->sub_ns, base.list) {
1573 mutex_lock(&sub->lock);
John Johansen98407f02017-05-25 06:31:46 -07001574 error = __aafs_ns_mkdir(sub, ns_subns_dir(ns), NULL, NULL);
John Johansen0d259f02013-07-10 21:13:43 -07001575 mutex_unlock(&sub->lock);
1576 if (error)
1577 goto fail2;
1578 }
1579
1580 return 0;
1581
1582fail:
1583 error = PTR_ERR(dent);
1584
1585fail2:
John Johansenc97204b2017-05-25 06:23:42 -07001586 __aafs_ns_rmdir(ns);
John Johansen0d259f02013-07-10 21:13:43 -07001587
1588 return error;
1589}
1590
1591
John Johansen29b38222013-07-10 21:18:43 -07001592#define list_entry_is_head(pos, head, member) (&pos->member == (head))
1593
1594/**
John Johansen98849df2017-01-16 00:42:16 -08001595 * __next_ns - find the next namespace to list
John Johansen29b38222013-07-10 21:18:43 -07001596 * @root: root namespace to stop search at (NOT NULL)
1597 * @ns: current ns position (NOT NULL)
1598 *
1599 * Find the next namespace from @ns under @root and handle all locking needed
1600 * while switching current namespace.
1601 *
1602 * Returns: next namespace or NULL if at last namespace under @root
1603 * Requires: ns->parent->lock to be held
1604 * NOTE: will not unlock root->lock
1605 */
John Johansen98849df2017-01-16 00:42:16 -08001606static struct aa_ns *__next_ns(struct aa_ns *root, struct aa_ns *ns)
John Johansen29b38222013-07-10 21:18:43 -07001607{
John Johansen98849df2017-01-16 00:42:16 -08001608 struct aa_ns *parent, *next;
John Johansen29b38222013-07-10 21:18:43 -07001609
1610 /* is next namespace a child */
1611 if (!list_empty(&ns->sub_ns)) {
1612 next = list_first_entry(&ns->sub_ns, typeof(*ns), base.list);
1613 mutex_lock(&next->lock);
1614 return next;
1615 }
1616
1617 /* check if the next ns is a sibling, parent, gp, .. */
1618 parent = ns->parent;
John Johansened2c7da2013-10-14 11:46:27 -07001619 while (ns != root) {
John Johansen29b38222013-07-10 21:18:43 -07001620 mutex_unlock(&ns->lock);
Geliang Tang38dbd7d2015-11-16 21:46:33 +08001621 next = list_next_entry(ns, base.list);
John Johansen29b38222013-07-10 21:18:43 -07001622 if (!list_entry_is_head(next, &parent->sub_ns, base.list)) {
1623 mutex_lock(&next->lock);
1624 return next;
1625 }
John Johansen29b38222013-07-10 21:18:43 -07001626 ns = parent;
1627 parent = parent->parent;
1628 }
1629
1630 return NULL;
1631}
1632
1633/**
1634 * __first_profile - find the first profile in a namespace
1635 * @root: namespace that is root of profiles being displayed (NOT NULL)
1636 * @ns: namespace to start in (NOT NULL)
1637 *
1638 * Returns: unrefcounted profile or NULL if no profile
1639 * Requires: profile->ns.lock to be held
1640 */
John Johansen98849df2017-01-16 00:42:16 -08001641static struct aa_profile *__first_profile(struct aa_ns *root,
1642 struct aa_ns *ns)
John Johansen29b38222013-07-10 21:18:43 -07001643{
John Johansen98849df2017-01-16 00:42:16 -08001644 for (; ns; ns = __next_ns(root, ns)) {
John Johansen29b38222013-07-10 21:18:43 -07001645 if (!list_empty(&ns->base.profiles))
1646 return list_first_entry(&ns->base.profiles,
1647 struct aa_profile, base.list);
1648 }
1649 return NULL;
1650}
1651
1652/**
1653 * __next_profile - step to the next profile in a profile tree
1654 * @profile: current profile in tree (NOT NULL)
1655 *
1656 * Perform a depth first traversal on the profile tree in a namespace
1657 *
1658 * Returns: next profile or NULL if done
1659 * Requires: profile->ns.lock to be held
1660 */
1661static struct aa_profile *__next_profile(struct aa_profile *p)
1662{
1663 struct aa_profile *parent;
John Johansen98849df2017-01-16 00:42:16 -08001664 struct aa_ns *ns = p->ns;
John Johansen29b38222013-07-10 21:18:43 -07001665
1666 /* is next profile a child */
1667 if (!list_empty(&p->base.profiles))
1668 return list_first_entry(&p->base.profiles, typeof(*p),
1669 base.list);
1670
1671 /* is next profile a sibling, parent sibling, gp, sibling, .. */
1672 parent = rcu_dereference_protected(p->parent,
1673 mutex_is_locked(&p->ns->lock));
1674 while (parent) {
Geliang Tang38dbd7d2015-11-16 21:46:33 +08001675 p = list_next_entry(p, base.list);
John Johansen29b38222013-07-10 21:18:43 -07001676 if (!list_entry_is_head(p, &parent->base.profiles, base.list))
1677 return p;
1678 p = parent;
1679 parent = rcu_dereference_protected(parent->parent,
1680 mutex_is_locked(&parent->ns->lock));
1681 }
1682
1683 /* is next another profile in the namespace */
Geliang Tang38dbd7d2015-11-16 21:46:33 +08001684 p = list_next_entry(p, base.list);
John Johansen29b38222013-07-10 21:18:43 -07001685 if (!list_entry_is_head(p, &ns->base.profiles, base.list))
1686 return p;
1687
1688 return NULL;
1689}
1690
1691/**
1692 * next_profile - step to the next profile in where ever it may be
1693 * @root: root namespace (NOT NULL)
1694 * @profile: current profile (NOT NULL)
1695 *
1696 * Returns: next profile or NULL if there isn't one
1697 */
John Johansen98849df2017-01-16 00:42:16 -08001698static struct aa_profile *next_profile(struct aa_ns *root,
John Johansen29b38222013-07-10 21:18:43 -07001699 struct aa_profile *profile)
1700{
1701 struct aa_profile *next = __next_profile(profile);
1702 if (next)
1703 return next;
1704
1705 /* finished all profiles in namespace move to next namespace */
John Johansen98849df2017-01-16 00:42:16 -08001706 return __first_profile(root, __next_ns(root, profile->ns));
John Johansen29b38222013-07-10 21:18:43 -07001707}
1708
1709/**
1710 * p_start - start a depth first traversal of profile tree
1711 * @f: seq_file to fill
1712 * @pos: current position
1713 *
1714 * Returns: first profile under current namespace or NULL if none found
1715 *
1716 * acquires first ns->lock
1717 */
1718static void *p_start(struct seq_file *f, loff_t *pos)
1719{
1720 struct aa_profile *profile = NULL;
John Johansen98849df2017-01-16 00:42:16 -08001721 struct aa_ns *root = aa_current_profile()->ns;
John Johansen29b38222013-07-10 21:18:43 -07001722 loff_t l = *pos;
John Johansen98849df2017-01-16 00:42:16 -08001723 f->private = aa_get_ns(root);
John Johansen29b38222013-07-10 21:18:43 -07001724
1725
1726 /* find the first profile */
1727 mutex_lock(&root->lock);
1728 profile = __first_profile(root, root);
1729
1730 /* skip to position */
1731 for (; profile && l > 0; l--)
1732 profile = next_profile(root, profile);
1733
1734 return profile;
1735}
1736
1737/**
1738 * p_next - read the next profile entry
1739 * @f: seq_file to fill
1740 * @p: profile previously returned
1741 * @pos: current position
1742 *
1743 * Returns: next profile after @p or NULL if none
1744 *
1745 * may acquire/release locks in namespace tree as necessary
1746 */
1747static void *p_next(struct seq_file *f, void *p, loff_t *pos)
1748{
1749 struct aa_profile *profile = p;
John Johansen98849df2017-01-16 00:42:16 -08001750 struct aa_ns *ns = f->private;
John Johansen29b38222013-07-10 21:18:43 -07001751 (*pos)++;
1752
1753 return next_profile(ns, profile);
1754}
1755
1756/**
1757 * p_stop - stop depth first traversal
1758 * @f: seq_file we are filling
1759 * @p: the last profile writen
1760 *
1761 * Release all locking done by p_start/p_next on namespace tree
1762 */
1763static void p_stop(struct seq_file *f, void *p)
1764{
1765 struct aa_profile *profile = p;
John Johansen98849df2017-01-16 00:42:16 -08001766 struct aa_ns *root = f->private, *ns;
John Johansen29b38222013-07-10 21:18:43 -07001767
1768 if (profile) {
1769 for (ns = profile->ns; ns && ns != root; ns = ns->parent)
1770 mutex_unlock(&ns->lock);
1771 }
1772 mutex_unlock(&root->lock);
John Johansen98849df2017-01-16 00:42:16 -08001773 aa_put_ns(root);
John Johansen29b38222013-07-10 21:18:43 -07001774}
1775
1776/**
1777 * seq_show_profile - show a profile entry
1778 * @f: seq_file to file
1779 * @p: current position (profile) (NOT NULL)
1780 *
1781 * Returns: error on failure
1782 */
1783static int seq_show_profile(struct seq_file *f, void *p)
1784{
1785 struct aa_profile *profile = (struct aa_profile *)p;
John Johansen98849df2017-01-16 00:42:16 -08001786 struct aa_ns *root = f->private;
John Johansen29b38222013-07-10 21:18:43 -07001787
1788 if (profile->ns != root)
John Johansen92b6d8e2017-01-16 00:42:25 -08001789 seq_printf(f, ":%s://", aa_ns_name(root, profile->ns, true));
John Johansen29b38222013-07-10 21:18:43 -07001790 seq_printf(f, "%s (%s)\n", profile->base.hname,
1791 aa_profile_mode_names[profile->mode]);
1792
1793 return 0;
1794}
1795
John Johansenc97204b2017-05-25 06:23:42 -07001796static const struct seq_operations aa_sfs_profiles_op = {
John Johansen29b38222013-07-10 21:18:43 -07001797 .start = p_start,
1798 .next = p_next,
1799 .stop = p_stop,
1800 .show = seq_show_profile,
1801};
1802
1803static int profiles_open(struct inode *inode, struct file *file)
1804{
John Johansen5ac8c352017-01-16 00:42:55 -08001805 if (!policy_view_capable(NULL))
1806 return -EACCES;
1807
John Johansenc97204b2017-05-25 06:23:42 -07001808 return seq_open(file, &aa_sfs_profiles_op);
John Johansen29b38222013-07-10 21:18:43 -07001809}
1810
1811static int profiles_release(struct inode *inode, struct file *file)
1812{
1813 return seq_release(inode, file);
1814}
1815
John Johansenc97204b2017-05-25 06:23:42 -07001816static const struct file_operations aa_sfs_profiles_fops = {
John Johansen29b38222013-07-10 21:18:43 -07001817 .open = profiles_open,
1818 .read = seq_read,
1819 .llseek = seq_lseek,
1820 .release = profiles_release,
1821};
1822
1823
John Johansen0d259f02013-07-10 21:13:43 -07001824/** Base file system setup **/
John Johansenc97204b2017-05-25 06:23:42 -07001825static struct aa_sfs_entry aa_sfs_entry_file[] = {
1826 AA_SFS_FILE_STRING("mask",
1827 "create read write exec append mmap_exec link lock"),
Kees Cooka9bf8e92012-01-26 16:29:22 -08001828 { }
1829};
1830
John Johansenc97204b2017-05-25 06:23:42 -07001831static struct aa_sfs_entry aa_sfs_entry_domain[] = {
1832 AA_SFS_FILE_BOOLEAN("change_hat", 1),
1833 AA_SFS_FILE_BOOLEAN("change_hatv", 1),
1834 AA_SFS_FILE_BOOLEAN("change_onexec", 1),
1835 AA_SFS_FILE_BOOLEAN("change_profile", 1),
1836 AA_SFS_FILE_BOOLEAN("fix_binfmt_elf_mmap", 1),
1837 AA_SFS_FILE_STRING("version", "1.2"),
Kees Cooke74abcf2012-01-26 16:29:21 -08001838 { }
1839};
1840
John Johansenc97204b2017-05-25 06:23:42 -07001841static struct aa_sfs_entry aa_sfs_entry_versions[] = {
1842 AA_SFS_FILE_BOOLEAN("v5", 1),
John Johansen474d6b752017-01-16 00:42:39 -08001843 { }
1844};
1845
John Johansenc97204b2017-05-25 06:23:42 -07001846static struct aa_sfs_entry aa_sfs_entry_policy[] = {
1847 AA_SFS_DIR("versions", aa_sfs_entry_versions),
1848 AA_SFS_FILE_BOOLEAN("set_load", 1),
John Johansen474d6b752017-01-16 00:42:39 -08001849 { }
John Johansen9d910a32013-07-10 21:04:43 -07001850};
1851
John Johansenc97204b2017-05-25 06:23:42 -07001852static struct aa_sfs_entry aa_sfs_entry_features[] = {
1853 AA_SFS_DIR("policy", aa_sfs_entry_policy),
1854 AA_SFS_DIR("domain", aa_sfs_entry_domain),
1855 AA_SFS_DIR("file", aa_sfs_entry_file),
1856 AA_SFS_FILE_U64("capability", VFS_CAP_FLAGS_MASK),
1857 AA_SFS_DIR("rlimit", aa_sfs_entry_rlimit),
1858 AA_SFS_DIR("caps", aa_sfs_entry_caps),
Kees Cooke74abcf2012-01-26 16:29:21 -08001859 { }
1860};
1861
John Johansenc97204b2017-05-25 06:23:42 -07001862static struct aa_sfs_entry aa_sfs_entry_apparmor[] = {
1863 AA_SFS_FILE_FOPS(".access", 0640, &aa_sfs_access),
1864 AA_SFS_FILE_FOPS(".ns_level", 0666, &seq_ns_level_fops),
1865 AA_SFS_FILE_FOPS(".ns_name", 0640, &seq_ns_name_fops),
1866 AA_SFS_FILE_FOPS("profiles", 0440, &aa_sfs_profiles_fops),
1867 AA_SFS_DIR("features", aa_sfs_entry_features),
Kees Cook9acd4942012-01-26 16:29:20 -08001868 { }
1869};
John Johansen63e2b422010-07-29 14:48:03 -07001870
John Johansenc97204b2017-05-25 06:23:42 -07001871static struct aa_sfs_entry aa_sfs_entry =
1872 AA_SFS_DIR("apparmor", aa_sfs_entry_apparmor);
Kees Cook9acd4942012-01-26 16:29:20 -08001873
1874/**
John Johansena481f4d2017-05-25 05:52:56 -07001875 * entry_create_file - create a file entry in the apparmor securityfs
John Johansenc97204b2017-05-25 06:23:42 -07001876 * @fs_file: aa_sfs_entry to build an entry for (NOT NULL)
Kees Cook9acd4942012-01-26 16:29:20 -08001877 * @parent: the parent dentry in the securityfs
1878 *
John Johansena481f4d2017-05-25 05:52:56 -07001879 * Use entry_remove_file to remove entries created with this fn.
Kees Cook9acd4942012-01-26 16:29:20 -08001880 */
John Johansenc97204b2017-05-25 06:23:42 -07001881static int __init entry_create_file(struct aa_sfs_entry *fs_file,
John Johansena481f4d2017-05-25 05:52:56 -07001882 struct dentry *parent)
John Johansen63e2b422010-07-29 14:48:03 -07001883{
Kees Cook9acd4942012-01-26 16:29:20 -08001884 int error = 0;
John Johansen63e2b422010-07-29 14:48:03 -07001885
Kees Cook9acd4942012-01-26 16:29:20 -08001886 fs_file->dentry = securityfs_create_file(fs_file->name,
1887 S_IFREG | fs_file->mode,
1888 parent, fs_file,
1889 fs_file->file_ops);
1890 if (IS_ERR(fs_file->dentry)) {
1891 error = PTR_ERR(fs_file->dentry);
1892 fs_file->dentry = NULL;
John Johansen63e2b422010-07-29 14:48:03 -07001893 }
Kees Cook9acd4942012-01-26 16:29:20 -08001894 return error;
John Johansen63e2b422010-07-29 14:48:03 -07001895}
1896
John Johansenc97204b2017-05-25 06:23:42 -07001897static void __init entry_remove_dir(struct aa_sfs_entry *fs_dir);
John Johansen63e2b422010-07-29 14:48:03 -07001898/**
John Johansena481f4d2017-05-25 05:52:56 -07001899 * entry_create_dir - recursively create a directory entry in the securityfs
John Johansenc97204b2017-05-25 06:23:42 -07001900 * @fs_dir: aa_sfs_entry (and all child entries) to build (NOT NULL)
Kees Cook9acd4942012-01-26 16:29:20 -08001901 * @parent: the parent dentry in the securityfs
John Johansen63e2b422010-07-29 14:48:03 -07001902 *
John Johansena481f4d2017-05-25 05:52:56 -07001903 * Use entry_remove_dir to remove entries created with this fn.
John Johansen63e2b422010-07-29 14:48:03 -07001904 */
John Johansenc97204b2017-05-25 06:23:42 -07001905static int __init entry_create_dir(struct aa_sfs_entry *fs_dir,
1906 struct dentry *parent)
John Johansen63e2b422010-07-29 14:48:03 -07001907{
John Johansenc97204b2017-05-25 06:23:42 -07001908 struct aa_sfs_entry *fs_file;
John Johansen0d259f02013-07-10 21:13:43 -07001909 struct dentry *dir;
1910 int error;
John Johansen63e2b422010-07-29 14:48:03 -07001911
John Johansen0d259f02013-07-10 21:13:43 -07001912 dir = securityfs_create_dir(fs_dir->name, parent);
1913 if (IS_ERR(dir))
1914 return PTR_ERR(dir);
1915 fs_dir->dentry = dir;
John Johansen63e2b422010-07-29 14:48:03 -07001916
John Johansen0d259f02013-07-10 21:13:43 -07001917 for (fs_file = fs_dir->v.files; fs_file && fs_file->name; ++fs_file) {
John Johansenc97204b2017-05-25 06:23:42 -07001918 if (fs_file->v_type == AA_SFS_TYPE_DIR)
John Johansena481f4d2017-05-25 05:52:56 -07001919 error = entry_create_dir(fs_file, fs_dir->dentry);
Kees Cook9acd4942012-01-26 16:29:20 -08001920 else
John Johansena481f4d2017-05-25 05:52:56 -07001921 error = entry_create_file(fs_file, fs_dir->dentry);
Kees Cook9acd4942012-01-26 16:29:20 -08001922 if (error)
1923 goto failed;
1924 }
1925
1926 return 0;
1927
1928failed:
John Johansena481f4d2017-05-25 05:52:56 -07001929 entry_remove_dir(fs_dir);
John Johansen0d259f02013-07-10 21:13:43 -07001930
Kees Cook9acd4942012-01-26 16:29:20 -08001931 return error;
1932}
1933
1934/**
John Johansenc97204b2017-05-25 06:23:42 -07001935 * entry_remove_file - drop a single file entry in the apparmor securityfs
1936 * @fs_file: aa_sfs_entry to detach from the securityfs (NOT NULL)
Kees Cook9acd4942012-01-26 16:29:20 -08001937 */
John Johansenc97204b2017-05-25 06:23:42 -07001938static void __init entry_remove_file(struct aa_sfs_entry *fs_file)
Kees Cook9acd4942012-01-26 16:29:20 -08001939{
1940 if (!fs_file->dentry)
1941 return;
1942
1943 securityfs_remove(fs_file->dentry);
1944 fs_file->dentry = NULL;
1945}
1946
1947/**
John Johansena481f4d2017-05-25 05:52:56 -07001948 * entry_remove_dir - recursively drop a directory entry from the securityfs
John Johansenc97204b2017-05-25 06:23:42 -07001949 * @fs_dir: aa_sfs_entry (and all child entries) to detach (NOT NULL)
Kees Cook9acd4942012-01-26 16:29:20 -08001950 */
John Johansenc97204b2017-05-25 06:23:42 -07001951static void __init entry_remove_dir(struct aa_sfs_entry *fs_dir)
Kees Cook9acd4942012-01-26 16:29:20 -08001952{
John Johansenc97204b2017-05-25 06:23:42 -07001953 struct aa_sfs_entry *fs_file;
Kees Cook9acd4942012-01-26 16:29:20 -08001954
John Johansen0d259f02013-07-10 21:13:43 -07001955 for (fs_file = fs_dir->v.files; fs_file && fs_file->name; ++fs_file) {
John Johansenc97204b2017-05-25 06:23:42 -07001956 if (fs_file->v_type == AA_SFS_TYPE_DIR)
John Johansena481f4d2017-05-25 05:52:56 -07001957 entry_remove_dir(fs_file);
Kees Cook9acd4942012-01-26 16:29:20 -08001958 else
John Johansenc97204b2017-05-25 06:23:42 -07001959 entry_remove_file(fs_file);
Kees Cook9acd4942012-01-26 16:29:20 -08001960 }
1961
John Johansenc97204b2017-05-25 06:23:42 -07001962 entry_remove_file(fs_dir);
John Johansen63e2b422010-07-29 14:48:03 -07001963}
1964
1965/**
1966 * aa_destroy_aafs - cleanup and free aafs
1967 *
1968 * releases dentries allocated by aa_create_aafs
1969 */
1970void __init aa_destroy_aafs(void)
1971{
John Johansenc97204b2017-05-25 06:23:42 -07001972 entry_remove_dir(&aa_sfs_entry);
John Johansen63e2b422010-07-29 14:48:03 -07001973}
1974
John Johansena71ada32017-01-16 00:42:45 -08001975
1976#define NULL_FILE_NAME ".null"
1977struct path aa_null;
1978
1979static int aa_mk_null_file(struct dentry *parent)
1980{
1981 struct vfsmount *mount = NULL;
1982 struct dentry *dentry;
1983 struct inode *inode;
1984 int count = 0;
1985 int error = simple_pin_fs(parent->d_sb->s_type, &mount, &count);
1986
1987 if (error)
1988 return error;
1989
1990 inode_lock(d_inode(parent));
1991 dentry = lookup_one_len(NULL_FILE_NAME, parent, strlen(NULL_FILE_NAME));
1992 if (IS_ERR(dentry)) {
1993 error = PTR_ERR(dentry);
1994 goto out;
1995 }
1996 inode = new_inode(parent->d_inode->i_sb);
1997 if (!inode) {
1998 error = -ENOMEM;
1999 goto out1;
2000 }
2001
2002 inode->i_ino = get_next_ino();
2003 inode->i_mode = S_IFCHR | S_IRUGO | S_IWUGO;
Deepa Dinamani24d0d032017-05-08 15:59:31 -07002004 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
John Johansena71ada32017-01-16 00:42:45 -08002005 init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO,
2006 MKDEV(MEM_MAJOR, 3));
2007 d_instantiate(dentry, inode);
2008 aa_null.dentry = dget(dentry);
2009 aa_null.mnt = mntget(mount);
2010
2011 error = 0;
2012
2013out1:
2014 dput(dentry);
2015out:
2016 inode_unlock(d_inode(parent));
2017 simple_release_fs(&mount, &count);
2018 return error;
2019}
2020
John Johansena481f4d2017-05-25 05:52:56 -07002021
2022
2023static const char *policy_get_link(struct dentry *dentry,
2024 struct inode *inode,
2025 struct delayed_call *done)
2026{
2027 struct aa_ns *ns;
2028 struct path path;
2029
2030 if (!dentry)
2031 return ERR_PTR(-ECHILD);
2032 ns = aa_get_current_ns();
2033 path.mnt = mntget(aafs_mnt);
2034 path.dentry = dget(ns_dir(ns));
2035 nd_jump_link(&path);
2036 aa_put_ns(ns);
2037
2038 return NULL;
2039}
2040
2041static int ns_get_name(char *buf, size_t size, struct aa_ns *ns,
2042 struct inode *inode)
2043{
2044 int res = snprintf(buf, size, "%s:[%lu]", AAFS_NAME, inode->i_ino);
2045
2046 if (res < 0 || res >= size)
2047 res = -ENOENT;
2048
2049 return res;
2050}
2051
2052static int policy_readlink(struct dentry *dentry, char __user *buffer,
2053 int buflen)
2054{
2055 struct aa_ns *ns;
2056 char name[32];
2057 int res;
2058
2059 ns = aa_get_current_ns();
2060 res = ns_get_name(name, sizeof(name), ns, d_inode(dentry));
2061 if (res >= 0)
2062 res = readlink_copy(buffer, buflen, name);
2063 aa_put_ns(ns);
2064
2065 return res;
2066}
2067
2068static const struct inode_operations policy_link_iops = {
2069 .readlink = policy_readlink,
2070 .get_link = policy_get_link,
2071};
2072
2073
John Johansen63e2b422010-07-29 14:48:03 -07002074/**
2075 * aa_create_aafs - create the apparmor security filesystem
2076 *
2077 * dentries created here are released by aa_destroy_aafs
2078 *
2079 * Returns: error on failure
2080 */
James Morris3417d8d2011-08-17 11:05:21 +10002081static int __init aa_create_aafs(void)
John Johansen63e2b422010-07-29 14:48:03 -07002082{
John Johansenb7fd2c02017-01-16 00:42:58 -08002083 struct dentry *dent;
John Johansen63e2b422010-07-29 14:48:03 -07002084 int error;
2085
2086 if (!apparmor_initialized)
2087 return 0;
2088
John Johansenc97204b2017-05-25 06:23:42 -07002089 if (aa_sfs_entry.dentry) {
John Johansen63e2b422010-07-29 14:48:03 -07002090 AA_ERROR("%s: AppArmor securityfs already exists\n", __func__);
2091 return -EEXIST;
2092 }
2093
John Johansena481f4d2017-05-25 05:52:56 -07002094 /* setup apparmorfs used to virtualize policy/ */
2095 aafs_mnt = kern_mount(&aafs_ops);
2096 if (IS_ERR(aafs_mnt))
2097 panic("can't set apparmorfs up\n");
2098 aafs_mnt->mnt_sb->s_flags &= ~MS_NOUSER;
2099
Kees Cook9acd4942012-01-26 16:29:20 -08002100 /* Populate fs tree. */
John Johansenc97204b2017-05-25 06:23:42 -07002101 error = entry_create_dir(&aa_sfs_entry, NULL);
John Johansen63e2b422010-07-29 14:48:03 -07002102 if (error)
2103 goto error;
2104
John Johansenc97204b2017-05-25 06:23:42 -07002105 dent = securityfs_create_file(".load", 0666, aa_sfs_entry.dentry,
John Johansenb7fd2c02017-01-16 00:42:58 -08002106 NULL, &aa_fs_profile_load);
2107 if (IS_ERR(dent)) {
2108 error = PTR_ERR(dent);
2109 goto error;
2110 }
2111 ns_subload(root_ns) = dent;
2112
John Johansenc97204b2017-05-25 06:23:42 -07002113 dent = securityfs_create_file(".replace", 0666, aa_sfs_entry.dentry,
John Johansenb7fd2c02017-01-16 00:42:58 -08002114 NULL, &aa_fs_profile_replace);
2115 if (IS_ERR(dent)) {
2116 error = PTR_ERR(dent);
2117 goto error;
2118 }
2119 ns_subreplace(root_ns) = dent;
2120
John Johansenc97204b2017-05-25 06:23:42 -07002121 dent = securityfs_create_file(".remove", 0666, aa_sfs_entry.dentry,
John Johansenb7fd2c02017-01-16 00:42:58 -08002122 NULL, &aa_fs_profile_remove);
2123 if (IS_ERR(dent)) {
2124 error = PTR_ERR(dent);
2125 goto error;
2126 }
2127 ns_subremove(root_ns) = dent;
2128
John Johansend9bf2c22017-05-26 16:27:58 -07002129 dent = securityfs_create_file("revision", 0444, aa_sfs_entry.dentry,
2130 NULL, &aa_fs_ns_revision_fops);
2131 if (IS_ERR(dent)) {
2132 error = PTR_ERR(dent);
2133 goto error;
2134 }
2135 ns_subrevision(root_ns) = dent;
2136
2137 /* policy tree referenced by magic policy symlink */
John Johansenb7fd2c02017-01-16 00:42:58 -08002138 mutex_lock(&root_ns->lock);
John Johansenc961ee52017-05-25 06:35:38 -07002139 error = __aafs_ns_mkdir(root_ns, aafs_mnt->mnt_root, ".policy",
2140 aafs_mnt->mnt_root);
John Johansenb7fd2c02017-01-16 00:42:58 -08002141 mutex_unlock(&root_ns->lock);
John Johansen0d259f02013-07-10 21:13:43 -07002142 if (error)
2143 goto error;
2144
John Johansenc961ee52017-05-25 06:35:38 -07002145 /* magic symlink similar to nsfs redirects based on task policy */
2146 dent = securityfs_create_symlink("policy", aa_sfs_entry.dentry,
2147 NULL, &policy_link_iops);
2148 if (IS_ERR(dent)) {
2149 error = PTR_ERR(dent);
2150 goto error;
2151 }
2152
John Johansenc97204b2017-05-25 06:23:42 -07002153 error = aa_mk_null_file(aa_sfs_entry.dentry);
John Johansena71ada32017-01-16 00:42:45 -08002154 if (error)
2155 goto error;
2156
2157 /* TODO: add default profile to apparmorfs */
John Johansen63e2b422010-07-29 14:48:03 -07002158
2159 /* Report that AppArmor fs is enabled */
2160 aa_info_message("AppArmor Filesystem Enabled");
2161 return 0;
2162
2163error:
2164 aa_destroy_aafs();
2165 AA_ERROR("Error creating AppArmor securityfs\n");
2166 return error;
2167}
2168
2169fs_initcall(aa_create_aafs);