blob: 976af6da45c330ca26d82d7cd975dc243544e3f3 [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{
John Johansen5ac8c352017-01-16 00:42:55 -0800408 struct aa_loaddata *data;
John Johansen637f6882017-06-09 08:14:28 -0700409 struct aa_label *label;
410 ssize_t error;
John Johansencf797c02017-06-09 02:08:28 -0700411
John Johansen637f6882017-06-09 08:14:28 -0700412 label = begin_current_label_crit_section();
John Johansencf797c02017-06-09 02:08:28 -0700413
John Johansen5ac8c352017-01-16 00:42:55 -0800414 /* high level check about policy management - fine grained in
415 * below after unpack
416 */
John Johansen637f6882017-06-09 08:14:28 -0700417 error = aa_may_manage_policy(label, ns, mask);
John Johansen5ac8c352017-01-16 00:42:55 -0800418 if (error)
419 return error;
John Johansen63e2b422010-07-29 14:48:03 -0700420
John Johansen5ef50d02017-01-16 00:43:03 -0800421 data = aa_simple_write_to_buffer(buf, size, size, pos);
John Johansen5ac8c352017-01-16 00:42:55 -0800422 error = PTR_ERR(data);
423 if (!IS_ERR(data)) {
John Johansen637f6882017-06-09 08:14:28 -0700424 error = aa_replace_profiles(ns, label, mask, data);
John Johansen5ac8c352017-01-16 00:42:55 -0800425 aa_put_loaddata(data);
426 }
John Johansen637f6882017-06-09 08:14:28 -0700427 end_current_label_crit_section(label);
John Johansen5ac8c352017-01-16 00:42:55 -0800428
429 return error;
430}
431
John Johansenb7fd2c02017-01-16 00:42:58 -0800432/* .load file hook fn to load policy */
John Johansen63e2b422010-07-29 14:48:03 -0700433static ssize_t profile_load(struct file *f, const char __user *buf, size_t size,
434 loff_t *pos)
435{
John Johansenb7fd2c02017-01-16 00:42:58 -0800436 struct aa_ns *ns = aa_get_ns(f->f_inode->i_private);
John Johansen18e99f12017-05-26 01:45:08 -0700437 int error = policy_update(AA_MAY_LOAD_POLICY, buf, size, pos, ns);
John Johansenb7fd2c02017-01-16 00:42:58 -0800438
439 aa_put_ns(ns);
John Johansen63e2b422010-07-29 14:48:03 -0700440
441 return error;
442}
443
444static const struct file_operations aa_fs_profile_load = {
Arnd Bergmann6038f372010-08-15 18:52:59 +0200445 .write = profile_load,
446 .llseek = default_llseek,
John Johansen63e2b422010-07-29 14:48:03 -0700447};
448
449/* .replace file hook fn to load and/or replace policy */
450static ssize_t profile_replace(struct file *f, const char __user *buf,
451 size_t size, loff_t *pos)
452{
John Johansenb7fd2c02017-01-16 00:42:58 -0800453 struct aa_ns *ns = aa_get_ns(f->f_inode->i_private);
John Johansen18e99f12017-05-26 01:45:08 -0700454 int error = policy_update(AA_MAY_LOAD_POLICY | AA_MAY_REPLACE_POLICY,
455 buf, size, pos, ns);
John Johansenb7fd2c02017-01-16 00:42:58 -0800456 aa_put_ns(ns);
John Johansen63e2b422010-07-29 14:48:03 -0700457
458 return error;
459}
460
461static const struct file_operations aa_fs_profile_replace = {
Arnd Bergmann6038f372010-08-15 18:52:59 +0200462 .write = profile_replace,
463 .llseek = default_llseek,
John Johansen63e2b422010-07-29 14:48:03 -0700464};
465
John Johansenb7fd2c02017-01-16 00:42:58 -0800466/* .remove file hook fn to remove loaded policy */
John Johansen63e2b422010-07-29 14:48:03 -0700467static ssize_t profile_remove(struct file *f, const char __user *buf,
468 size_t size, loff_t *pos)
469{
John Johansen5ac8c352017-01-16 00:42:55 -0800470 struct aa_loaddata *data;
John Johansen637f6882017-06-09 08:14:28 -0700471 struct aa_label *label;
John Johansen63e2b422010-07-29 14:48:03 -0700472 ssize_t error;
John Johansenb7fd2c02017-01-16 00:42:58 -0800473 struct aa_ns *ns = aa_get_ns(f->f_inode->i_private);
John Johansen63e2b422010-07-29 14:48:03 -0700474
John Johansen637f6882017-06-09 08:14:28 -0700475 label = begin_current_label_crit_section();
John Johansen5ac8c352017-01-16 00:42:55 -0800476 /* high level check about policy management - fine grained in
477 * below after unpack
478 */
John Johansen637f6882017-06-09 08:14:28 -0700479 error = aa_may_manage_policy(label, ns, AA_MAY_REMOVE_POLICY);
John Johansen5ac8c352017-01-16 00:42:55 -0800480 if (error)
481 goto out;
482
John Johansen63e2b422010-07-29 14:48:03 -0700483 /*
484 * aa_remove_profile needs a null terminated string so 1 extra
485 * byte is allocated and the copied data is null terminated.
486 */
John Johansen5ef50d02017-01-16 00:43:03 -0800487 data = aa_simple_write_to_buffer(buf, size + 1, size, pos);
John Johansen63e2b422010-07-29 14:48:03 -0700488
489 error = PTR_ERR(data);
490 if (!IS_ERR(data)) {
John Johansen5ac8c352017-01-16 00:42:55 -0800491 data->data[size] = 0;
John Johansen637f6882017-06-09 08:14:28 -0700492 error = aa_remove_profiles(ns, label, data->data, size);
John Johansen5ac8c352017-01-16 00:42:55 -0800493 aa_put_loaddata(data);
John Johansen63e2b422010-07-29 14:48:03 -0700494 }
John Johansen5ac8c352017-01-16 00:42:55 -0800495 out:
John Johansen637f6882017-06-09 08:14:28 -0700496 end_current_label_crit_section(label);
John Johansenb7fd2c02017-01-16 00:42:58 -0800497 aa_put_ns(ns);
John Johansen63e2b422010-07-29 14:48:03 -0700498 return error;
499}
500
501static const struct file_operations aa_fs_profile_remove = {
Arnd Bergmann6038f372010-08-15 18:52:59 +0200502 .write = profile_remove,
503 .llseek = default_llseek,
John Johansen63e2b422010-07-29 14:48:03 -0700504};
505
John Johansend9bf2c22017-05-26 16:27:58 -0700506struct aa_revision {
507 struct aa_ns *ns;
508 long last_read;
509};
510
511/* revision file hook fn for policy loads */
512static int ns_revision_release(struct inode *inode, struct file *file)
513{
514 struct aa_revision *rev = file->private_data;
515
516 if (rev) {
517 aa_put_ns(rev->ns);
518 kfree(rev);
519 }
520
521 return 0;
522}
523
524static ssize_t ns_revision_read(struct file *file, char __user *buf,
525 size_t size, loff_t *ppos)
526{
527 struct aa_revision *rev = file->private_data;
528 char buffer[32];
529 long last_read;
530 int avail;
531
532 mutex_lock(&rev->ns->lock);
533 last_read = rev->last_read;
534 if (last_read == rev->ns->revision) {
535 mutex_unlock(&rev->ns->lock);
536 if (file->f_flags & O_NONBLOCK)
537 return -EAGAIN;
538 if (wait_event_interruptible(rev->ns->wait,
539 last_read !=
540 READ_ONCE(rev->ns->revision)))
541 return -ERESTARTSYS;
542 mutex_lock(&rev->ns->lock);
543 }
544
545 avail = sprintf(buffer, "%ld\n", rev->ns->revision);
546 if (*ppos + size > avail) {
547 rev->last_read = rev->ns->revision;
548 *ppos = 0;
549 }
550 mutex_unlock(&rev->ns->lock);
551
552 return simple_read_from_buffer(buf, size, ppos, buffer, avail);
553}
554
555static int ns_revision_open(struct inode *inode, struct file *file)
556{
557 struct aa_revision *rev = kzalloc(sizeof(*rev), GFP_KERNEL);
558
559 if (!rev)
560 return -ENOMEM;
561
562 rev->ns = aa_get_ns(inode->i_private);
563 if (!rev->ns)
564 rev->ns = aa_get_current_ns();
565 file->private_data = rev;
566
567 return 0;
568}
569
570static unsigned int ns_revision_poll(struct file *file, poll_table *pt)
571{
572 struct aa_revision *rev = file->private_data;
573 unsigned int mask = 0;
574
575 if (rev) {
576 mutex_lock(&rev->ns->lock);
577 poll_wait(file, &rev->ns->wait, pt);
578 if (rev->last_read < rev->ns->revision)
579 mask |= POLLIN | POLLRDNORM;
580 mutex_unlock(&rev->ns->lock);
581 }
582
583 return mask;
584}
585
John Johansen5d5182ca2017-05-09 00:08:41 -0700586void __aa_bump_ns_revision(struct aa_ns *ns)
587{
588 ns->revision++;
John Johansend9bf2c22017-05-26 16:27:58 -0700589 wake_up_interruptible(&ns->wait);
John Johansen5d5182ca2017-05-09 00:08:41 -0700590}
591
John Johansend9bf2c22017-05-26 16:27:58 -0700592static const struct file_operations aa_fs_ns_revision_fops = {
593 .owner = THIS_MODULE,
594 .open = ns_revision_open,
595 .poll = ns_revision_poll,
596 .read = ns_revision_read,
597 .llseek = generic_file_llseek,
598 .release = ns_revision_release,
599};
600
John Johansen4f3b3f22017-05-26 18:35:29 -0700601static void profile_query_cb(struct aa_profile *profile, struct aa_perms *perms,
602 const char *match_str, size_t match_len)
603{
604 struct aa_perms tmp;
605 struct aa_dfa *dfa;
606 unsigned int state = 0;
607
John Johansen637f6882017-06-09 08:14:28 -0700608 if (profile_unconfined(profile))
John Johansen4f3b3f22017-05-26 18:35:29 -0700609 return;
610 if (profile->file.dfa && *match_str == AA_CLASS_FILE) {
611 dfa = profile->file.dfa;
612 state = aa_dfa_match_len(dfa, profile->file.start,
613 match_str + 1, match_len - 1);
614 tmp = nullperms;
615 if (state) {
616 struct path_cond cond = { };
617
618 tmp = aa_compute_fperms(dfa, state, &cond);
619 }
620 } else if (profile->policy.dfa) {
621 if (!PROFILE_MEDIATES_SAFE(profile, *match_str))
622 return; /* no change to current perms */
623 dfa = profile->policy.dfa;
624 state = aa_dfa_match_len(dfa, profile->policy.start[0],
625 match_str, match_len);
626 if (state)
627 aa_compute_perms(dfa, state, &tmp);
628 else
629 tmp = nullperms;
630 }
631 aa_apply_modes_to_perms(profile, &tmp);
632}
633
634
William Huae025be02017-01-15 16:49:28 -0800635/**
636 * query_data - queries a policy and writes its data to buf
637 * @buf: the resulting data is stored here (NOT NULL)
638 * @buf_len: size of buf
639 * @query: query string used to retrieve data
640 * @query_len: size of query including second NUL byte
641 *
642 * The buffers pointed to by buf and query may overlap. The query buffer is
643 * parsed before buf is written to.
644 *
645 * The query should look like "<LABEL>\0<KEY>\0", where <LABEL> is the name of
646 * the security confinement context and <KEY> is the name of the data to
647 * retrieve. <LABEL> and <KEY> must not be NUL-terminated.
648 *
649 * Don't expect the contents of buf to be preserved on failure.
650 *
651 * Returns: number of characters written to buf or -errno on failure
652 */
653static ssize_t query_data(char *buf, size_t buf_len,
654 char *query, size_t query_len)
655{
656 char *out;
657 const char *key;
John Johansen637f6882017-06-09 08:14:28 -0700658 struct aa_label *label, *curr;
William Huae025be02017-01-15 16:49:28 -0800659 struct aa_data *data;
660 u32 bytes, blocks;
661 __le32 outle32;
662
663 if (!query_len)
664 return -EINVAL; /* need a query */
665
666 key = query + strnlen(query, query_len) + 1;
667 if (key + 1 >= query + query_len)
668 return -EINVAL; /* not enough space for a non-empty key */
669 if (key + strnlen(key, query + query_len - key) >= query + query_len)
670 return -EINVAL; /* must end with NUL */
671
672 if (buf_len < sizeof(bytes) + sizeof(blocks))
673 return -EINVAL; /* not enough space */
674
John Johansen637f6882017-06-09 08:14:28 -0700675 curr = begin_current_label_crit_section();
676 label = aa_label_parse(curr, query, GFP_KERNEL, false, false);
677 end_current_label_crit_section(curr);
678 if (IS_ERR(label))
679 return PTR_ERR(label);
William Huae025be02017-01-15 16:49:28 -0800680
681 /* We are going to leave space for two numbers. The first is the total
682 * number of bytes we are writing after the first number. This is so
683 * users can read the full output without reallocation.
684 *
685 * The second number is the number of data blocks we're writing. An
686 * application might be confined by multiple policies having data in
687 * the same key.
688 */
689 memset(buf, 0, sizeof(bytes) + sizeof(blocks));
690 out = buf + sizeof(bytes) + sizeof(blocks);
691
692 blocks = 0;
John Johansen637f6882017-06-09 08:14:28 -0700693 if (labels_profile(label)->data) {
694 data = rhashtable_lookup_fast(labels_profile(label)->data, &key,
695 labels_profile(label)->data->p);
William Huae025be02017-01-15 16:49:28 -0800696
697 if (data) {
John Johansen637f6882017-06-09 08:14:28 -0700698 if (out + sizeof(outle32) + data->size >
699 buf + buf_len) {
700 aa_put_label(label);
William Huae025be02017-01-15 16:49:28 -0800701 return -EINVAL; /* not enough space */
John Johansen637f6882017-06-09 08:14:28 -0700702 }
William Huae025be02017-01-15 16:49:28 -0800703 outle32 = __cpu_to_le32(data->size);
704 memcpy(out, &outle32, sizeof(outle32));
705 out += sizeof(outle32);
706 memcpy(out, data->data, data->size);
707 out += data->size;
708 blocks++;
709 }
710 }
John Johansen637f6882017-06-09 08:14:28 -0700711 aa_put_label(label);
William Huae025be02017-01-15 16:49:28 -0800712
713 outle32 = __cpu_to_le32(out - buf - sizeof(bytes));
714 memcpy(buf, &outle32, sizeof(outle32));
715 outle32 = __cpu_to_le32(blocks);
716 memcpy(buf + sizeof(bytes), &outle32, sizeof(outle32));
717
718 return out - buf;
719}
720
John Johansen4f3b3f22017-05-26 18:35:29 -0700721/**
722 * query_label - queries a label and writes permissions to buf
723 * @buf: the resulting permissions string is stored here (NOT NULL)
724 * @buf_len: size of buf
725 * @query: binary query string to match against the dfa
726 * @query_len: size of query
727 * @view_only: only compute for querier's view
728 *
729 * The buffers pointed to by buf and query may overlap. The query buffer is
730 * parsed before buf is written to.
731 *
732 * The query should look like "LABEL_NAME\0DFA_STRING" where LABEL_NAME is
733 * the name of the label, in the current namespace, that is to be queried and
734 * DFA_STRING is a binary string to match against the label(s)'s DFA.
735 *
736 * LABEL_NAME must be NUL terminated. DFA_STRING may contain NUL characters
737 * but must *not* be NUL terminated.
738 *
739 * Returns: number of characters written to buf or -errno on failure
740 */
741static ssize_t query_label(char *buf, size_t buf_len,
742 char *query, size_t query_len, bool view_only)
743{
John Johansen637f6882017-06-09 08:14:28 -0700744 struct aa_label *label, *curr;
John Johansen4f3b3f22017-05-26 18:35:29 -0700745 char *label_name, *match_str;
746 size_t label_name_len, match_len;
747 struct aa_perms perms;
748
749 if (!query_len)
750 return -EINVAL;
751
752 label_name = query;
753 label_name_len = strnlen(query, query_len);
754 if (!label_name_len || label_name_len == query_len)
755 return -EINVAL;
756
757 /**
758 * The extra byte is to account for the null byte between the
759 * profile name and dfa string. profile_name_len is greater
760 * than zero and less than query_len, so a byte can be safely
761 * added or subtracted.
762 */
763 match_str = label_name + label_name_len + 1;
764 match_len = query_len - label_name_len - 1;
765
John Johansen637f6882017-06-09 08:14:28 -0700766 curr = begin_current_label_crit_section();
767 label = aa_label_parse(curr, label_name, GFP_KERNEL, false, false);
768 end_current_label_crit_section(curr);
769 if (IS_ERR(label))
770 return PTR_ERR(label);
John Johansen4f3b3f22017-05-26 18:35:29 -0700771
772 perms = allperms;
John Johansen637f6882017-06-09 08:14:28 -0700773 profile_query_cb(labels_profile(label), &perms, match_str, match_len);
John Johansen4f3b3f22017-05-26 18:35:29 -0700774
775 return scnprintf(buf, buf_len,
776 "allow 0x%08x\ndeny 0x%08x\naudit 0x%08x\nquiet 0x%08x\n",
777 perms.allow, perms.deny, perms.audit, perms.quiet);
778}
779
John Johansen1dea3b42017-05-26 17:23:23 -0700780/*
781 * Transaction based IO.
782 * The file expects a write which triggers the transaction, and then
783 * possibly a read(s) which collects the result - which is stored in a
784 * file-local buffer. Once a new write is performed, a new set of results
785 * are stored in the file-local buffer.
786 */
787struct multi_transaction {
788 struct kref count;
789 ssize_t size;
790 char data[0];
791};
792
793#define MULTI_TRANSACTION_LIMIT (PAGE_SIZE - sizeof(struct multi_transaction))
794/* TODO: replace with per file lock */
795static DEFINE_SPINLOCK(multi_transaction_lock);
796
797static void multi_transaction_kref(struct kref *kref)
798{
799 struct multi_transaction *t;
800
801 t = container_of(kref, struct multi_transaction, count);
802 free_page((unsigned long) t);
803}
804
805static struct multi_transaction *
806get_multi_transaction(struct multi_transaction *t)
807{
808 if (t)
809 kref_get(&(t->count));
810
811 return t;
812}
813
814static void put_multi_transaction(struct multi_transaction *t)
815{
816 if (t)
817 kref_put(&(t->count), multi_transaction_kref);
818}
819
820/* does not increment @new's count */
821static void multi_transaction_set(struct file *file,
822 struct multi_transaction *new, size_t n)
823{
824 struct multi_transaction *old;
825
826 AA_BUG(n > MULTI_TRANSACTION_LIMIT);
827
828 new->size = n;
829 spin_lock(&multi_transaction_lock);
830 old = (struct multi_transaction *) file->private_data;
831 file->private_data = new;
832 spin_unlock(&multi_transaction_lock);
833 put_multi_transaction(old);
834}
835
836static struct multi_transaction *multi_transaction_new(struct file *file,
837 const char __user *buf,
838 size_t size)
839{
840 struct multi_transaction *t;
841
842 if (size > MULTI_TRANSACTION_LIMIT - 1)
843 return ERR_PTR(-EFBIG);
844
845 t = (struct multi_transaction *)get_zeroed_page(GFP_KERNEL);
846 if (!t)
847 return ERR_PTR(-ENOMEM);
848 kref_init(&t->count);
849 if (copy_from_user(t->data, buf, size))
850 return ERR_PTR(-EFAULT);
851
852 return t;
853}
854
855static ssize_t multi_transaction_read(struct file *file, char __user *buf,
856 size_t size, loff_t *pos)
857{
858 struct multi_transaction *t;
859 ssize_t ret;
860
861 spin_lock(&multi_transaction_lock);
862 t = get_multi_transaction(file->private_data);
863 spin_unlock(&multi_transaction_lock);
864 if (!t)
865 return 0;
866
867 ret = simple_read_from_buffer(buf, size, pos, t->data, t->size);
868 put_multi_transaction(t);
869
870 return ret;
871}
872
873static int multi_transaction_release(struct inode *inode, struct file *file)
874{
875 put_multi_transaction(file->private_data);
876
877 return 0;
878}
879
John Johansen4f3b3f22017-05-26 18:35:29 -0700880#define QUERY_CMD_PROFILE "profile\0"
881#define QUERY_CMD_PROFILE_LEN 8
882
William Huae025be02017-01-15 16:49:28 -0800883#define QUERY_CMD_DATA "data\0"
884#define QUERY_CMD_DATA_LEN 5
885
886/**
887 * aa_write_access - generic permissions and data query
888 * @file: pointer to open apparmorfs/access file
889 * @ubuf: user buffer containing the complete query string (NOT NULL)
890 * @count: size of ubuf
891 * @ppos: position in the file (MUST BE ZERO)
892 *
893 * Allows for one permissions or data query per open(), write(), and read()
894 * sequence. The only queries currently supported are label-based queries for
895 * permissions or data.
896 *
897 * For permissions queries, ubuf must begin with "label\0", followed by the
898 * profile query specific format described in the query_label() function
899 * documentation.
900 *
901 * For data queries, ubuf must have the form "data\0<LABEL>\0<KEY>\0", where
902 * <LABEL> is the name of the security confinement context and <KEY> is the
903 * name of the data to retrieve.
904 *
905 * Returns: number of bytes written or -errno on failure
906 */
907static ssize_t aa_write_access(struct file *file, const char __user *ubuf,
908 size_t count, loff_t *ppos)
909{
John Johansen1dea3b42017-05-26 17:23:23 -0700910 struct multi_transaction *t;
William Huae025be02017-01-15 16:49:28 -0800911 ssize_t len;
912
913 if (*ppos)
914 return -ESPIPE;
915
John Johansen1dea3b42017-05-26 17:23:23 -0700916 t = multi_transaction_new(file, ubuf, count);
917 if (IS_ERR(t))
918 return PTR_ERR(t);
William Huae025be02017-01-15 16:49:28 -0800919
John Johansen4f3b3f22017-05-26 18:35:29 -0700920 if (count > QUERY_CMD_PROFILE_LEN &&
921 !memcmp(t->data, QUERY_CMD_PROFILE, QUERY_CMD_PROFILE_LEN)) {
922 len = query_label(t->data, MULTI_TRANSACTION_LIMIT,
923 t->data + QUERY_CMD_PROFILE_LEN,
924 count - QUERY_CMD_PROFILE_LEN, true);
925 } else if (count > QUERY_CMD_DATA_LEN &&
John Johansen1dea3b42017-05-26 17:23:23 -0700926 !memcmp(t->data, QUERY_CMD_DATA, QUERY_CMD_DATA_LEN)) {
927 len = query_data(t->data, MULTI_TRANSACTION_LIMIT,
928 t->data + QUERY_CMD_DATA_LEN,
William Huae025be02017-01-15 16:49:28 -0800929 count - QUERY_CMD_DATA_LEN);
930 } else
931 len = -EINVAL;
932
John Johansen1dea3b42017-05-26 17:23:23 -0700933 if (len < 0) {
934 put_multi_transaction(t);
William Huae025be02017-01-15 16:49:28 -0800935 return len;
John Johansen1dea3b42017-05-26 17:23:23 -0700936 }
William Huae025be02017-01-15 16:49:28 -0800937
John Johansen1dea3b42017-05-26 17:23:23 -0700938 multi_transaction_set(file, t, len);
William Huae025be02017-01-15 16:49:28 -0800939
940 return count;
941}
942
John Johansenc97204b2017-05-25 06:23:42 -0700943static const struct file_operations aa_sfs_access = {
William Huae025be02017-01-15 16:49:28 -0800944 .write = aa_write_access,
John Johansen1dea3b42017-05-26 17:23:23 -0700945 .read = multi_transaction_read,
946 .release = multi_transaction_release,
William Huae025be02017-01-15 16:49:28 -0800947 .llseek = generic_file_llseek,
948};
949
John Johansenc97204b2017-05-25 06:23:42 -0700950static int aa_sfs_seq_show(struct seq_file *seq, void *v)
Kees Cooke74abcf2012-01-26 16:29:21 -0800951{
John Johansenc97204b2017-05-25 06:23:42 -0700952 struct aa_sfs_entry *fs_file = seq->private;
Kees Cooke74abcf2012-01-26 16:29:21 -0800953
954 if (!fs_file)
955 return 0;
956
957 switch (fs_file->v_type) {
John Johansenc97204b2017-05-25 06:23:42 -0700958 case AA_SFS_TYPE_BOOLEAN:
Kees Cooke74abcf2012-01-26 16:29:21 -0800959 seq_printf(seq, "%s\n", fs_file->v.boolean ? "yes" : "no");
960 break;
John Johansenc97204b2017-05-25 06:23:42 -0700961 case AA_SFS_TYPE_STRING:
Kees Cooka9bf8e92012-01-26 16:29:22 -0800962 seq_printf(seq, "%s\n", fs_file->v.string);
963 break;
John Johansenc97204b2017-05-25 06:23:42 -0700964 case AA_SFS_TYPE_U64:
Kees Cooke74abcf2012-01-26 16:29:21 -0800965 seq_printf(seq, "%#08lx\n", fs_file->v.u64);
966 break;
967 default:
968 /* Ignore unpritable entry types. */
969 break;
970 }
971
972 return 0;
973}
974
John Johansenc97204b2017-05-25 06:23:42 -0700975static int aa_sfs_seq_open(struct inode *inode, struct file *file)
Kees Cooke74abcf2012-01-26 16:29:21 -0800976{
John Johansenc97204b2017-05-25 06:23:42 -0700977 return single_open(file, aa_sfs_seq_show, inode->i_private);
Kees Cooke74abcf2012-01-26 16:29:21 -0800978}
979
John Johansenc97204b2017-05-25 06:23:42 -0700980const struct file_operations aa_sfs_seq_file_ops = {
Kees Cooke74abcf2012-01-26 16:29:21 -0800981 .owner = THIS_MODULE,
John Johansenc97204b2017-05-25 06:23:42 -0700982 .open = aa_sfs_seq_open,
Kees Cooke74abcf2012-01-26 16:29:21 -0800983 .read = seq_read,
984 .llseek = seq_lseek,
985 .release = single_release,
986};
987
John Johansen52b97de2017-05-25 04:35:09 -0700988/*
989 * profile based file operations
990 * policy/profiles/XXXX/profiles/ *
991 */
992
993#define SEQ_PROFILE_FOPS(NAME) \
994static int seq_profile_ ##NAME ##_open(struct inode *inode, struct file *file)\
995{ \
996 return seq_profile_open(inode, file, seq_profile_ ##NAME ##_show); \
997} \
998 \
999static const struct file_operations seq_profile_ ##NAME ##_fops = { \
1000 .owner = THIS_MODULE, \
1001 .open = seq_profile_ ##NAME ##_open, \
1002 .read = seq_read, \
1003 .llseek = seq_lseek, \
1004 .release = seq_profile_release, \
1005} \
1006
1007static int seq_profile_open(struct inode *inode, struct file *file,
1008 int (*show)(struct seq_file *, void *))
John Johansen0d259f02013-07-10 21:13:43 -07001009{
John Johansen83995882017-01-16 00:42:19 -08001010 struct aa_proxy *proxy = aa_get_proxy(inode->i_private);
1011 int error = single_open(file, show, proxy);
John Johansen63e2b422010-07-29 14:48:03 -07001012
John Johansen0d259f02013-07-10 21:13:43 -07001013 if (error) {
1014 file->private_data = NULL;
John Johansen83995882017-01-16 00:42:19 -08001015 aa_put_proxy(proxy);
John Johansen0d259f02013-07-10 21:13:43 -07001016 }
1017
1018 return error;
1019}
1020
John Johansen52b97de2017-05-25 04:35:09 -07001021static int seq_profile_release(struct inode *inode, struct file *file)
John Johansen0d259f02013-07-10 21:13:43 -07001022{
1023 struct seq_file *seq = (struct seq_file *) file->private_data;
1024 if (seq)
John Johansen83995882017-01-16 00:42:19 -08001025 aa_put_proxy(seq->private);
John Johansen0d259f02013-07-10 21:13:43 -07001026 return single_release(inode, file);
1027}
1028
John Johansen52b97de2017-05-25 04:35:09 -07001029static int seq_profile_name_show(struct seq_file *seq, void *v)
John Johansen0d259f02013-07-10 21:13:43 -07001030{
John Johansen83995882017-01-16 00:42:19 -08001031 struct aa_proxy *proxy = seq->private;
John Johansen637f6882017-06-09 08:14:28 -07001032 struct aa_label *label = aa_get_label_rcu(&proxy->label);
1033 struct aa_profile *profile = labels_profile(label);
John Johansen0d259f02013-07-10 21:13:43 -07001034 seq_printf(seq, "%s\n", profile->base.name);
John Johansen637f6882017-06-09 08:14:28 -07001035 aa_put_label(label);
John Johansen0d259f02013-07-10 21:13:43 -07001036
1037 return 0;
1038}
1039
John Johansen52b97de2017-05-25 04:35:09 -07001040static int seq_profile_mode_show(struct seq_file *seq, void *v)
John Johansen0d259f02013-07-10 21:13:43 -07001041{
John Johansen83995882017-01-16 00:42:19 -08001042 struct aa_proxy *proxy = seq->private;
John Johansen637f6882017-06-09 08:14:28 -07001043 struct aa_label *label = aa_get_label_rcu(&proxy->label);
1044 struct aa_profile *profile = labels_profile(label);
John Johansen0d259f02013-07-10 21:13:43 -07001045 seq_printf(seq, "%s\n", aa_profile_mode_names[profile->mode]);
John Johansen637f6882017-06-09 08:14:28 -07001046 aa_put_label(label);
John Johansen0d259f02013-07-10 21:13:43 -07001047
1048 return 0;
1049}
1050
John Johansen52b97de2017-05-25 04:35:09 -07001051static int seq_profile_attach_show(struct seq_file *seq, void *v)
John Johansen556d0be2013-07-10 21:17:43 -07001052{
John Johansen83995882017-01-16 00:42:19 -08001053 struct aa_proxy *proxy = seq->private;
John Johansen637f6882017-06-09 08:14:28 -07001054 struct aa_label *label = aa_get_label_rcu(&proxy->label);
1055 struct aa_profile *profile = labels_profile(label);
John Johansen556d0be2013-07-10 21:17:43 -07001056 if (profile->attach)
1057 seq_printf(seq, "%s\n", profile->attach);
1058 else if (profile->xmatch)
1059 seq_puts(seq, "<unknown>\n");
1060 else
1061 seq_printf(seq, "%s\n", profile->base.name);
John Johansen637f6882017-06-09 08:14:28 -07001062 aa_put_label(label);
John Johansen556d0be2013-07-10 21:17:43 -07001063
1064 return 0;
1065}
1066
John Johansen52b97de2017-05-25 04:35:09 -07001067static int seq_profile_hash_show(struct seq_file *seq, void *v)
John Johansenf8eb8a12013-08-14 11:27:36 -07001068{
John Johansen83995882017-01-16 00:42:19 -08001069 struct aa_proxy *proxy = seq->private;
John Johansen637f6882017-06-09 08:14:28 -07001070 struct aa_label *label = aa_get_label_rcu(&proxy->label);
1071 struct aa_profile *profile = labels_profile(label);
John Johansenf8eb8a12013-08-14 11:27:36 -07001072 unsigned int i, size = aa_hash_size();
1073
1074 if (profile->hash) {
1075 for (i = 0; i < size; i++)
1076 seq_printf(seq, "%.2x", profile->hash[i]);
Markus Elfring47dbd1c2017-05-07 13:50:28 +02001077 seq_putc(seq, '\n');
John Johansenf8eb8a12013-08-14 11:27:36 -07001078 }
John Johansen637f6882017-06-09 08:14:28 -07001079 aa_put_label(label);
John Johansenf8eb8a12013-08-14 11:27:36 -07001080
1081 return 0;
1082}
1083
John Johansen52b97de2017-05-25 04:35:09 -07001084SEQ_PROFILE_FOPS(name);
1085SEQ_PROFILE_FOPS(mode);
1086SEQ_PROFILE_FOPS(attach);
1087SEQ_PROFILE_FOPS(hash);
John Johansenf8eb8a12013-08-14 11:27:36 -07001088
John Johansen64c86972017-05-25 07:27:35 -07001089/*
1090 * namespace based files
1091 * several root files and
1092 * policy/ *
1093 */
John Johansenf8eb8a12013-08-14 11:27:36 -07001094
John Johansen64c86972017-05-25 07:27:35 -07001095#define SEQ_NS_FOPS(NAME) \
1096static int seq_ns_ ##NAME ##_open(struct inode *inode, struct file *file) \
1097{ \
1098 return single_open(file, seq_ns_ ##NAME ##_show, inode->i_private); \
1099} \
1100 \
1101static const struct file_operations seq_ns_ ##NAME ##_fops = { \
1102 .owner = THIS_MODULE, \
1103 .open = seq_ns_ ##NAME ##_open, \
1104 .read = seq_read, \
1105 .llseek = seq_lseek, \
1106 .release = single_release, \
1107} \
John Johansen3e3e5692017-01-16 00:42:48 -08001108
John Johansen64c86972017-05-25 07:27:35 -07001109static int seq_ns_level_show(struct seq_file *seq, void *v)
John Johansena71ada32017-01-16 00:42:45 -08001110{
John Johansen637f6882017-06-09 08:14:28 -07001111 struct aa_label *label;
John Johansena71ada32017-01-16 00:42:45 -08001112
John Johansen637f6882017-06-09 08:14:28 -07001113 label = begin_current_label_crit_section();
1114 seq_printf(seq, "%d\n", labels_ns(label)->level);
1115 end_current_label_crit_section(label);
John Johansena71ada32017-01-16 00:42:45 -08001116
1117 return 0;
1118}
1119
John Johansen64c86972017-05-25 07:27:35 -07001120static int seq_ns_name_show(struct seq_file *seq, void *v)
John Johansen3e3e5692017-01-16 00:42:48 -08001121{
John Johansen637f6882017-06-09 08:14:28 -07001122 struct aa_label *label = begin_current_label_crit_section();
John Johansen3e3e5692017-01-16 00:42:48 -08001123
John Johansen637f6882017-06-09 08:14:28 -07001124 seq_printf(seq, "%s\n", aa_ns_name(labels_ns(label),
1125 labels_ns(label), true));
1126 end_current_label_crit_section(label);
John Johansen3e3e5692017-01-16 00:42:48 -08001127
1128 return 0;
1129}
1130
John Johansen64c86972017-05-25 07:27:35 -07001131SEQ_NS_FOPS(level);
1132SEQ_NS_FOPS(name);
John Johansen3e3e5692017-01-16 00:42:48 -08001133
John Johansen5d5182ca2017-05-09 00:08:41 -07001134
1135/* policy/raw_data/ * file ops */
1136
1137#define SEQ_RAWDATA_FOPS(NAME) \
1138static int seq_rawdata_ ##NAME ##_open(struct inode *inode, struct file *file)\
1139{ \
1140 return seq_rawdata_open(inode, file, seq_rawdata_ ##NAME ##_show); \
1141} \
1142 \
1143static const struct file_operations seq_rawdata_ ##NAME ##_fops = { \
1144 .owner = THIS_MODULE, \
1145 .open = seq_rawdata_ ##NAME ##_open, \
1146 .read = seq_read, \
1147 .llseek = seq_lseek, \
1148 .release = seq_rawdata_release, \
1149} \
1150
1151static int seq_rawdata_open(struct inode *inode, struct file *file,
1152 int (*show)(struct seq_file *, void *))
John Johansen5ac8c352017-01-16 00:42:55 -08001153{
John Johansen5d5182ca2017-05-09 00:08:41 -07001154 struct aa_loaddata *data = __aa_get_loaddata(inode->i_private);
1155 int error;
1156
1157 if (!data)
1158 /* lost race this ent is being reaped */
1159 return -ENOENT;
1160
1161 error = single_open(file, show, data);
1162 if (error) {
1163 AA_BUG(file->private_data &&
1164 ((struct seq_file *)file->private_data)->private);
1165 aa_put_loaddata(data);
1166 }
1167
1168 return error;
1169}
1170
1171static int seq_rawdata_release(struct inode *inode, struct file *file)
1172{
1173 struct seq_file *seq = (struct seq_file *) file->private_data;
1174
1175 if (seq)
1176 aa_put_loaddata(seq->private);
1177
1178 return single_release(inode, file);
1179}
1180
1181static int seq_rawdata_abi_show(struct seq_file *seq, void *v)
1182{
1183 struct aa_loaddata *data = seq->private;
1184
1185 seq_printf(seq, "v%d\n", data->abi);
John Johansen5ac8c352017-01-16 00:42:55 -08001186
1187 return 0;
1188}
1189
John Johansen5d5182ca2017-05-09 00:08:41 -07001190static int seq_rawdata_revision_show(struct seq_file *seq, void *v)
John Johansen5ac8c352017-01-16 00:42:55 -08001191{
John Johansen5d5182ca2017-05-09 00:08:41 -07001192 struct aa_loaddata *data = seq->private;
John Johansen5ac8c352017-01-16 00:42:55 -08001193
John Johansen5d5182ca2017-05-09 00:08:41 -07001194 seq_printf(seq, "%ld\n", data->revision);
John Johansen5ac8c352017-01-16 00:42:55 -08001195
1196 return 0;
1197}
1198
John Johansen5d5182ca2017-05-09 00:08:41 -07001199static int seq_rawdata_hash_show(struct seq_file *seq, void *v)
John Johansen5ac8c352017-01-16 00:42:55 -08001200{
John Johansen5d5182ca2017-05-09 00:08:41 -07001201 struct aa_loaddata *data = seq->private;
John Johansen5ac8c352017-01-16 00:42:55 -08001202 unsigned int i, size = aa_hash_size();
1203
John Johansen5d5182ca2017-05-09 00:08:41 -07001204 if (data->hash) {
John Johansen5ac8c352017-01-16 00:42:55 -08001205 for (i = 0; i < size; i++)
John Johansen5d5182ca2017-05-09 00:08:41 -07001206 seq_printf(seq, "%.2x", data->hash[i]);
Markus Elfring47dbd1c2017-05-07 13:50:28 +02001207 seq_putc(seq, '\n');
John Johansen5ac8c352017-01-16 00:42:55 -08001208 }
John Johansen5ac8c352017-01-16 00:42:55 -08001209
1210 return 0;
1211}
1212
John Johansen5d5182ca2017-05-09 00:08:41 -07001213SEQ_RAWDATA_FOPS(abi);
1214SEQ_RAWDATA_FOPS(revision);
1215SEQ_RAWDATA_FOPS(hash);
John Johansen5ac8c352017-01-16 00:42:55 -08001216
1217static ssize_t rawdata_read(struct file *file, char __user *buf, size_t size,
1218 loff_t *ppos)
1219{
1220 struct aa_loaddata *rawdata = file->private_data;
1221
1222 return simple_read_from_buffer(buf, size, ppos, rawdata->data,
1223 rawdata->size);
1224}
1225
John Johansen5d5182ca2017-05-09 00:08:41 -07001226static int rawdata_release(struct inode *inode, struct file *file)
John Johansen5ac8c352017-01-16 00:42:55 -08001227{
John Johansen5d5182ca2017-05-09 00:08:41 -07001228 aa_put_loaddata(file->private_data);
John Johansen5ac8c352017-01-16 00:42:55 -08001229
1230 return 0;
1231}
1232
John Johansen5d5182ca2017-05-09 00:08:41 -07001233static int rawdata_open(struct inode *inode, struct file *file)
1234{
1235 if (!policy_view_capable(NULL))
1236 return -EACCES;
1237 file->private_data = __aa_get_loaddata(inode->i_private);
1238 if (!file->private_data)
1239 /* lost race: this entry is being reaped */
1240 return -ENOENT;
1241
1242 return 0;
1243}
1244
1245static const struct file_operations rawdata_fops = {
John Johansen5ac8c352017-01-16 00:42:55 -08001246 .open = rawdata_open,
1247 .read = rawdata_read,
1248 .llseek = generic_file_llseek,
1249 .release = rawdata_release,
1250};
1251
John Johansen5d5182ca2017-05-09 00:08:41 -07001252static void remove_rawdata_dents(struct aa_loaddata *rawdata)
1253{
1254 int i;
1255
1256 for (i = 0; i < AAFS_LOADDATA_NDENTS; i++) {
1257 if (!IS_ERR_OR_NULL(rawdata->dents[i])) {
1258 /* no refcounts on i_private */
John Johansenc961ee52017-05-25 06:35:38 -07001259 aafs_remove(rawdata->dents[i]);
John Johansen5d5182ca2017-05-09 00:08:41 -07001260 rawdata->dents[i] = NULL;
1261 }
1262 }
1263}
1264
1265void __aa_fs_remove_rawdata(struct aa_loaddata *rawdata)
1266{
1267 AA_BUG(rawdata->ns && !mutex_is_locked(&rawdata->ns->lock));
1268
1269 if (rawdata->ns) {
1270 remove_rawdata_dents(rawdata);
1271 list_del_init(&rawdata->list);
1272 aa_put_ns(rawdata->ns);
1273 rawdata->ns = NULL;
1274 }
1275}
1276
1277int __aa_fs_create_rawdata(struct aa_ns *ns, struct aa_loaddata *rawdata)
1278{
1279 struct dentry *dent, *dir;
1280
1281 AA_BUG(!ns);
1282 AA_BUG(!rawdata);
1283 AA_BUG(!mutex_is_locked(&ns->lock));
1284 AA_BUG(!ns_subdata_dir(ns));
1285
1286 /*
1287 * just use ns revision dir was originally created at. This is
1288 * under ns->lock and if load is successful revision will be
1289 * bumped and is guaranteed to be unique
1290 */
1291 rawdata->name = kasprintf(GFP_KERNEL, "%ld", ns->revision);
1292 if (!rawdata->name)
1293 return -ENOMEM;
1294
John Johansenc961ee52017-05-25 06:35:38 -07001295 dir = aafs_create_dir(rawdata->name, ns_subdata_dir(ns));
John Johansen5d5182ca2017-05-09 00:08:41 -07001296 if (IS_ERR(dir))
1297 /* ->name freed when rawdata freed */
1298 return PTR_ERR(dir);
1299 rawdata->dents[AAFS_LOADDATA_DIR] = dir;
1300
John Johansenc961ee52017-05-25 06:35:38 -07001301 dent = aafs_create_file("abi", S_IFREG | 0444, dir, rawdata,
John Johansen5d5182ca2017-05-09 00:08:41 -07001302 &seq_rawdata_abi_fops);
1303 if (IS_ERR(dent))
1304 goto fail;
1305 rawdata->dents[AAFS_LOADDATA_ABI] = dent;
1306
John Johansenc961ee52017-05-25 06:35:38 -07001307 dent = aafs_create_file("revision", S_IFREG | 0444, dir, rawdata,
John Johansen5d5182ca2017-05-09 00:08:41 -07001308 &seq_rawdata_revision_fops);
1309 if (IS_ERR(dent))
1310 goto fail;
1311 rawdata->dents[AAFS_LOADDATA_REVISION] = dent;
1312
1313 if (aa_g_hash_policy) {
John Johansenc961ee52017-05-25 06:35:38 -07001314 dent = aafs_create_file("sha1", S_IFREG | 0444, dir,
John Johansen5d5182ca2017-05-09 00:08:41 -07001315 rawdata, &seq_rawdata_hash_fops);
1316 if (IS_ERR(dent))
1317 goto fail;
1318 rawdata->dents[AAFS_LOADDATA_HASH] = dent;
1319 }
1320
John Johansenc961ee52017-05-25 06:35:38 -07001321 dent = aafs_create_file("raw_data", S_IFREG | 0444,
John Johansen5d5182ca2017-05-09 00:08:41 -07001322 dir, rawdata, &rawdata_fops);
1323 if (IS_ERR(dent))
1324 goto fail;
1325 rawdata->dents[AAFS_LOADDATA_DATA] = dent;
1326 d_inode(dent)->i_size = rawdata->size;
1327
1328 rawdata->ns = aa_get_ns(ns);
1329 list_add(&rawdata->list, &ns->rawdata_list);
1330 /* no refcount on inode rawdata */
1331
1332 return 0;
1333
1334fail:
1335 remove_rawdata_dents(rawdata);
1336
1337 return PTR_ERR(dent);
1338}
1339
John Johansen0d259f02013-07-10 21:13:43 -07001340/** fns to setup dynamic per profile/namespace files **/
John Johansenc97204b2017-05-25 06:23:42 -07001341
1342/**
1343 *
1344 * Requires: @profile->ns->lock held
1345 */
1346void __aafs_profile_rmdir(struct aa_profile *profile)
John Johansen0d259f02013-07-10 21:13:43 -07001347{
1348 struct aa_profile *child;
1349 int i;
1350
1351 if (!profile)
1352 return;
1353
1354 list_for_each_entry(child, &profile->base.profiles, base.list)
John Johansenc97204b2017-05-25 06:23:42 -07001355 __aafs_profile_rmdir(child);
John Johansen0d259f02013-07-10 21:13:43 -07001356
1357 for (i = AAFS_PROF_SIZEOF - 1; i >= 0; --i) {
John Johansen83995882017-01-16 00:42:19 -08001358 struct aa_proxy *proxy;
John Johansen0d259f02013-07-10 21:13:43 -07001359 if (!profile->dents[i])
1360 continue;
1361
John Johansen83995882017-01-16 00:42:19 -08001362 proxy = d_inode(profile->dents[i])->i_private;
John Johansenc961ee52017-05-25 06:35:38 -07001363 aafs_remove(profile->dents[i]);
John Johansen83995882017-01-16 00:42:19 -08001364 aa_put_proxy(proxy);
John Johansen0d259f02013-07-10 21:13:43 -07001365 profile->dents[i] = NULL;
1366 }
1367}
1368
John Johansenc97204b2017-05-25 06:23:42 -07001369/**
1370 *
1371 * Requires: @old->ns->lock held
1372 */
1373void __aafs_profile_migrate_dents(struct aa_profile *old,
1374 struct aa_profile *new)
John Johansen0d259f02013-07-10 21:13:43 -07001375{
1376 int i;
1377
1378 for (i = 0; i < AAFS_PROF_SIZEOF; i++) {
1379 new->dents[i] = old->dents[i];
John Johansend671e8902014-07-25 04:01:56 -07001380 if (new->dents[i])
Deepa Dinamani078cd822016-09-14 07:48:04 -07001381 new->dents[i]->d_inode->i_mtime = current_time(new->dents[i]->d_inode);
John Johansen0d259f02013-07-10 21:13:43 -07001382 old->dents[i] = NULL;
1383 }
1384}
1385
1386static struct dentry *create_profile_file(struct dentry *dir, const char *name,
1387 struct aa_profile *profile,
1388 const struct file_operations *fops)
1389{
John Johansen637f6882017-06-09 08:14:28 -07001390 struct aa_proxy *proxy = aa_get_proxy(profile->label.proxy);
John Johansen0d259f02013-07-10 21:13:43 -07001391 struct dentry *dent;
1392
John Johansenc961ee52017-05-25 06:35:38 -07001393 dent = aafs_create_file(name, S_IFREG | 0444, dir, proxy, fops);
John Johansen0d259f02013-07-10 21:13:43 -07001394 if (IS_ERR(dent))
John Johansen83995882017-01-16 00:42:19 -08001395 aa_put_proxy(proxy);
John Johansen0d259f02013-07-10 21:13:43 -07001396
1397 return dent;
1398}
1399
John Johansen5d5182ca2017-05-09 00:08:41 -07001400static int profile_depth(struct aa_profile *profile)
1401{
1402 int depth = 0;
1403
1404 rcu_read_lock();
1405 for (depth = 0; profile; profile = rcu_access_pointer(profile->parent))
1406 depth++;
1407 rcu_read_unlock();
1408
1409 return depth;
1410}
1411
1412static int gen_symlink_name(char *buffer, size_t bsize, int depth,
1413 const char *dirname, const char *fname)
1414{
1415 int error;
1416
1417 for (; depth > 0; depth--) {
1418 if (bsize < 7)
1419 return -ENAMETOOLONG;
1420 strcpy(buffer, "../../");
1421 buffer += 6;
1422 bsize -= 6;
1423 }
1424
1425 error = snprintf(buffer, bsize, "raw_data/%s/%s", dirname, fname);
1426 if (error >= bsize || error < 0)
1427 return -ENAMETOOLONG;
1428
1429 return 0;
1430}
1431
1432/*
1433 * Requires: @profile->ns->lock held
1434 */
John Johansenc97204b2017-05-25 06:23:42 -07001435int __aafs_profile_mkdir(struct aa_profile *profile, struct dentry *parent)
John Johansen0d259f02013-07-10 21:13:43 -07001436{
1437 struct aa_profile *child;
1438 struct dentry *dent = NULL, *dir;
1439 int error;
1440
1441 if (!parent) {
1442 struct aa_profile *p;
1443 p = aa_deref_parent(profile);
1444 dent = prof_dir(p);
1445 /* adding to parent that previously didn't have children */
John Johansenc961ee52017-05-25 06:35:38 -07001446 dent = aafs_create_dir("profiles", dent);
John Johansen0d259f02013-07-10 21:13:43 -07001447 if (IS_ERR(dent))
1448 goto fail;
1449 prof_child_dir(p) = parent = dent;
1450 }
1451
1452 if (!profile->dirname) {
1453 int len, id_len;
1454 len = mangle_name(profile->base.name, NULL);
1455 id_len = snprintf(NULL, 0, ".%ld", profile->ns->uniq_id);
1456
1457 profile->dirname = kmalloc(len + id_len + 1, GFP_KERNEL);
Dan Carpenterffac1de2017-05-23 17:33:46 +03001458 if (!profile->dirname) {
1459 error = -ENOMEM;
1460 goto fail2;
1461 }
John Johansen0d259f02013-07-10 21:13:43 -07001462
1463 mangle_name(profile->base.name, profile->dirname);
1464 sprintf(profile->dirname + len, ".%ld", profile->ns->uniq_id++);
1465 }
1466
John Johansenc961ee52017-05-25 06:35:38 -07001467 dent = aafs_create_dir(profile->dirname, parent);
John Johansen0d259f02013-07-10 21:13:43 -07001468 if (IS_ERR(dent))
1469 goto fail;
1470 prof_dir(profile) = dir = dent;
1471
John Johansen52b97de2017-05-25 04:35:09 -07001472 dent = create_profile_file(dir, "name", profile,
1473 &seq_profile_name_fops);
John Johansen0d259f02013-07-10 21:13:43 -07001474 if (IS_ERR(dent))
1475 goto fail;
1476 profile->dents[AAFS_PROF_NAME] = dent;
1477
John Johansen52b97de2017-05-25 04:35:09 -07001478 dent = create_profile_file(dir, "mode", profile,
1479 &seq_profile_mode_fops);
John Johansen0d259f02013-07-10 21:13:43 -07001480 if (IS_ERR(dent))
1481 goto fail;
1482 profile->dents[AAFS_PROF_MODE] = dent;
1483
John Johansen556d0be2013-07-10 21:17:43 -07001484 dent = create_profile_file(dir, "attach", profile,
John Johansen52b97de2017-05-25 04:35:09 -07001485 &seq_profile_attach_fops);
John Johansen556d0be2013-07-10 21:17:43 -07001486 if (IS_ERR(dent))
1487 goto fail;
1488 profile->dents[AAFS_PROF_ATTACH] = dent;
1489
John Johansenf8eb8a12013-08-14 11:27:36 -07001490 if (profile->hash) {
1491 dent = create_profile_file(dir, "sha1", profile,
John Johansen52b97de2017-05-25 04:35:09 -07001492 &seq_profile_hash_fops);
John Johansenf8eb8a12013-08-14 11:27:36 -07001493 if (IS_ERR(dent))
1494 goto fail;
1495 profile->dents[AAFS_PROF_HASH] = dent;
1496 }
1497
John Johansen5ac8c352017-01-16 00:42:55 -08001498 if (profile->rawdata) {
John Johansen5d5182ca2017-05-09 00:08:41 -07001499 char target[64];
1500 int depth = profile_depth(profile);
1501
1502 error = gen_symlink_name(target, sizeof(target), depth,
1503 profile->rawdata->name, "sha1");
1504 if (error < 0)
1505 goto fail2;
John Johansenc961ee52017-05-25 06:35:38 -07001506 dent = aafs_create_symlink("raw_sha1", dir, target, NULL);
John Johansen5ac8c352017-01-16 00:42:55 -08001507 if (IS_ERR(dent))
1508 goto fail;
1509 profile->dents[AAFS_PROF_RAW_HASH] = dent;
1510
John Johansen5d5182ca2017-05-09 00:08:41 -07001511 error = gen_symlink_name(target, sizeof(target), depth,
1512 profile->rawdata->name, "abi");
1513 if (error < 0)
1514 goto fail2;
John Johansenc961ee52017-05-25 06:35:38 -07001515 dent = aafs_create_symlink("raw_abi", dir, target, NULL);
John Johansen5ac8c352017-01-16 00:42:55 -08001516 if (IS_ERR(dent))
1517 goto fail;
1518 profile->dents[AAFS_PROF_RAW_ABI] = dent;
1519
John Johansen5d5182ca2017-05-09 00:08:41 -07001520 error = gen_symlink_name(target, sizeof(target), depth,
1521 profile->rawdata->name, "raw_data");
1522 if (error < 0)
1523 goto fail2;
John Johansenc961ee52017-05-25 06:35:38 -07001524 dent = aafs_create_symlink("raw_data", dir, target, NULL);
John Johansen5ac8c352017-01-16 00:42:55 -08001525 if (IS_ERR(dent))
1526 goto fail;
1527 profile->dents[AAFS_PROF_RAW_DATA] = dent;
John Johansen5ac8c352017-01-16 00:42:55 -08001528 }
1529
John Johansen0d259f02013-07-10 21:13:43 -07001530 list_for_each_entry(child, &profile->base.profiles, base.list) {
John Johansenc97204b2017-05-25 06:23:42 -07001531 error = __aafs_profile_mkdir(child, prof_child_dir(profile));
John Johansen0d259f02013-07-10 21:13:43 -07001532 if (error)
1533 goto fail2;
1534 }
1535
1536 return 0;
1537
1538fail:
1539 error = PTR_ERR(dent);
1540
1541fail2:
John Johansenc97204b2017-05-25 06:23:42 -07001542 __aafs_profile_rmdir(profile);
John Johansen0d259f02013-07-10 21:13:43 -07001543
1544 return error;
1545}
1546
John Johansen4ae47f32017-05-26 16:45:48 -07001547static int ns_mkdir_op(struct inode *dir, struct dentry *dentry, umode_t mode)
1548{
1549 struct aa_ns *ns, *parent;
1550 /* TODO: improve permission check */
John Johansen637f6882017-06-09 08:14:28 -07001551 struct aa_label *label;
1552 int error;
1553
1554 label = begin_current_label_crit_section();
1555 error = aa_may_manage_policy(label, NULL, AA_MAY_LOAD_POLICY);
1556 end_current_label_crit_section(label);
John Johansen4ae47f32017-05-26 16:45:48 -07001557 if (error)
1558 return error;
1559
1560 parent = aa_get_ns(dir->i_private);
1561 AA_BUG(d_inode(ns_subns_dir(parent)) != dir);
1562
1563 /* we have to unlock and then relock to get locking order right
1564 * for pin_fs
1565 */
1566 inode_unlock(dir);
1567 error = simple_pin_fs(&aafs_ops, &aafs_mnt, &aafs_count);
1568 mutex_lock(&parent->lock);
1569 inode_lock_nested(dir, I_MUTEX_PARENT);
1570 if (error)
1571 goto out;
1572
1573 error = __aafs_setup_d_inode(dir, dentry, mode | S_IFDIR, NULL,
1574 NULL, NULL, NULL);
1575 if (error)
1576 goto out_pin;
1577
1578 ns = __aa_find_or_create_ns(parent, READ_ONCE(dentry->d_name.name),
1579 dentry);
1580 if (IS_ERR(ns)) {
1581 error = PTR_ERR(ns);
1582 ns = NULL;
1583 }
1584
1585 aa_put_ns(ns); /* list ref remains */
1586out_pin:
1587 if (error)
1588 simple_release_fs(&aafs_mnt, &aafs_count);
1589out:
1590 mutex_unlock(&parent->lock);
1591 aa_put_ns(parent);
1592
1593 return error;
1594}
1595
1596static int ns_rmdir_op(struct inode *dir, struct dentry *dentry)
1597{
1598 struct aa_ns *ns, *parent;
1599 /* TODO: improve permission check */
John Johansen637f6882017-06-09 08:14:28 -07001600 struct aa_label *label;
1601 int error;
1602
1603 label = begin_current_label_crit_section();
1604 error = aa_may_manage_policy(label, NULL, AA_MAY_LOAD_POLICY);
1605 end_current_label_crit_section(label);
John Johansen4ae47f32017-05-26 16:45:48 -07001606 if (error)
1607 return error;
1608
John Johansen637f6882017-06-09 08:14:28 -07001609 parent = aa_get_ns(dir->i_private);
John Johansen4ae47f32017-05-26 16:45:48 -07001610 /* rmdir calls the generic securityfs functions to remove files
1611 * from the apparmor dir. It is up to the apparmor ns locking
1612 * to avoid races.
1613 */
1614 inode_unlock(dir);
1615 inode_unlock(dentry->d_inode);
1616
1617 mutex_lock(&parent->lock);
1618 ns = aa_get_ns(__aa_findn_ns(&parent->sub_ns, dentry->d_name.name,
1619 dentry->d_name.len));
1620 if (!ns) {
1621 error = -ENOENT;
1622 goto out;
1623 }
1624 AA_BUG(ns_dir(ns) != dentry);
1625
1626 __aa_remove_ns(ns);
1627 aa_put_ns(ns);
1628
1629out:
1630 mutex_unlock(&parent->lock);
1631 inode_lock_nested(dir, I_MUTEX_PARENT);
1632 inode_lock(dentry->d_inode);
1633 aa_put_ns(parent);
1634
1635 return error;
1636}
1637
1638static const struct inode_operations ns_dir_inode_operations = {
1639 .lookup = simple_lookup,
1640 .mkdir = ns_mkdir_op,
1641 .rmdir = ns_rmdir_op,
1642};
1643
John Johansen5d5182ca2017-05-09 00:08:41 -07001644static void __aa_fs_list_remove_rawdata(struct aa_ns *ns)
1645{
1646 struct aa_loaddata *ent, *tmp;
1647
1648 AA_BUG(!mutex_is_locked(&ns->lock));
1649
1650 list_for_each_entry_safe(ent, tmp, &ns->rawdata_list, list)
1651 __aa_fs_remove_rawdata(ent);
1652}
1653
John Johansenc97204b2017-05-25 06:23:42 -07001654/**
1655 *
1656 * Requires: @ns->lock held
1657 */
1658void __aafs_ns_rmdir(struct aa_ns *ns)
John Johansen0d259f02013-07-10 21:13:43 -07001659{
John Johansen98849df2017-01-16 00:42:16 -08001660 struct aa_ns *sub;
John Johansen0d259f02013-07-10 21:13:43 -07001661 struct aa_profile *child;
1662 int i;
1663
1664 if (!ns)
1665 return;
1666
1667 list_for_each_entry(child, &ns->base.profiles, base.list)
John Johansenc97204b2017-05-25 06:23:42 -07001668 __aafs_profile_rmdir(child);
John Johansen0d259f02013-07-10 21:13:43 -07001669
1670 list_for_each_entry(sub, &ns->sub_ns, base.list) {
1671 mutex_lock(&sub->lock);
John Johansenc97204b2017-05-25 06:23:42 -07001672 __aafs_ns_rmdir(sub);
John Johansen0d259f02013-07-10 21:13:43 -07001673 mutex_unlock(&sub->lock);
1674 }
1675
John Johansen5d5182ca2017-05-09 00:08:41 -07001676 __aa_fs_list_remove_rawdata(ns);
1677
John Johansenb7fd2c02017-01-16 00:42:58 -08001678 if (ns_subns_dir(ns)) {
1679 sub = d_inode(ns_subns_dir(ns))->i_private;
1680 aa_put_ns(sub);
1681 }
1682 if (ns_subload(ns)) {
1683 sub = d_inode(ns_subload(ns))->i_private;
1684 aa_put_ns(sub);
1685 }
1686 if (ns_subreplace(ns)) {
1687 sub = d_inode(ns_subreplace(ns))->i_private;
1688 aa_put_ns(sub);
1689 }
1690 if (ns_subremove(ns)) {
1691 sub = d_inode(ns_subremove(ns))->i_private;
1692 aa_put_ns(sub);
1693 }
John Johansend9bf2c22017-05-26 16:27:58 -07001694 if (ns_subrevision(ns)) {
1695 sub = d_inode(ns_subrevision(ns))->i_private;
1696 aa_put_ns(sub);
1697 }
John Johansenb7fd2c02017-01-16 00:42:58 -08001698
John Johansen0d259f02013-07-10 21:13:43 -07001699 for (i = AAFS_NS_SIZEOF - 1; i >= 0; --i) {
John Johansenc961ee52017-05-25 06:35:38 -07001700 aafs_remove(ns->dents[i]);
John Johansen0d259f02013-07-10 21:13:43 -07001701 ns->dents[i] = NULL;
1702 }
1703}
1704
John Johansenb7fd2c02017-01-16 00:42:58 -08001705/* assumes cleanup in caller */
John Johansenc97204b2017-05-25 06:23:42 -07001706static int __aafs_ns_mkdir_entries(struct aa_ns *ns, struct dentry *dir)
John Johansenb7fd2c02017-01-16 00:42:58 -08001707{
1708 struct dentry *dent;
1709
1710 AA_BUG(!ns);
1711 AA_BUG(!dir);
1712
John Johansenc961ee52017-05-25 06:35:38 -07001713 dent = aafs_create_dir("profiles", dir);
John Johansenb7fd2c02017-01-16 00:42:58 -08001714 if (IS_ERR(dent))
1715 return PTR_ERR(dent);
1716 ns_subprofs_dir(ns) = dent;
1717
John Johansenc961ee52017-05-25 06:35:38 -07001718 dent = aafs_create_dir("raw_data", dir);
John Johansenb7fd2c02017-01-16 00:42:58 -08001719 if (IS_ERR(dent))
1720 return PTR_ERR(dent);
1721 ns_subdata_dir(ns) = dent;
1722
John Johansend9bf2c22017-05-26 16:27:58 -07001723 dent = aafs_create_file("revision", 0444, dir, ns,
1724 &aa_fs_ns_revision_fops);
1725 if (IS_ERR(dent))
1726 return PTR_ERR(dent);
1727 aa_get_ns(ns);
1728 ns_subrevision(ns) = dent;
1729
John Johansenc961ee52017-05-25 06:35:38 -07001730 dent = aafs_create_file(".load", 0640, dir, ns,
John Johansenb7fd2c02017-01-16 00:42:58 -08001731 &aa_fs_profile_load);
1732 if (IS_ERR(dent))
1733 return PTR_ERR(dent);
1734 aa_get_ns(ns);
1735 ns_subload(ns) = dent;
1736
John Johansenc961ee52017-05-25 06:35:38 -07001737 dent = aafs_create_file(".replace", 0640, dir, ns,
John Johansenb7fd2c02017-01-16 00:42:58 -08001738 &aa_fs_profile_replace);
1739 if (IS_ERR(dent))
1740 return PTR_ERR(dent);
1741 aa_get_ns(ns);
1742 ns_subreplace(ns) = dent;
1743
John Johansenc961ee52017-05-25 06:35:38 -07001744 dent = aafs_create_file(".remove", 0640, dir, ns,
John Johansenb7fd2c02017-01-16 00:42:58 -08001745 &aa_fs_profile_remove);
1746 if (IS_ERR(dent))
1747 return PTR_ERR(dent);
1748 aa_get_ns(ns);
1749 ns_subremove(ns) = dent;
1750
John Johansen4ae47f32017-05-26 16:45:48 -07001751 /* use create_dentry so we can supply private data */
1752 dent = aafs_create("namespaces", S_IFDIR | 0755, dir, ns, NULL, NULL,
1753 &ns_dir_inode_operations);
John Johansenb7fd2c02017-01-16 00:42:58 -08001754 if (IS_ERR(dent))
1755 return PTR_ERR(dent);
1756 aa_get_ns(ns);
1757 ns_subns_dir(ns) = dent;
1758
1759 return 0;
1760}
1761
John Johansenc97204b2017-05-25 06:23:42 -07001762/*
1763 * Requires: @ns->lock held
1764 */
John Johansen98407f02017-05-25 06:31:46 -07001765int __aafs_ns_mkdir(struct aa_ns *ns, struct dentry *parent, const char *name,
1766 struct dentry *dent)
John Johansen0d259f02013-07-10 21:13:43 -07001767{
John Johansen98849df2017-01-16 00:42:16 -08001768 struct aa_ns *sub;
John Johansen0d259f02013-07-10 21:13:43 -07001769 struct aa_profile *child;
John Johansen98407f02017-05-25 06:31:46 -07001770 struct dentry *dir;
John Johansen0d259f02013-07-10 21:13:43 -07001771 int error;
1772
John Johansenb7fd2c02017-01-16 00:42:58 -08001773 AA_BUG(!ns);
1774 AA_BUG(!parent);
1775 AA_BUG(!mutex_is_locked(&ns->lock));
1776
John Johansen0d259f02013-07-10 21:13:43 -07001777 if (!name)
1778 name = ns->base.name;
1779
John Johansenc961ee52017-05-25 06:35:38 -07001780 if (!dent) {
1781 /* create ns dir if it doesn't already exist */
1782 dent = aafs_create_dir(name, parent);
1783 if (IS_ERR(dent))
1784 goto fail;
1785 } else
1786 dget(dent);
John Johansen0d259f02013-07-10 21:13:43 -07001787 ns_dir(ns) = dir = dent;
John Johansenc97204b2017-05-25 06:23:42 -07001788 error = __aafs_ns_mkdir_entries(ns, dir);
John Johansenb7fd2c02017-01-16 00:42:58 -08001789 if (error)
1790 goto fail2;
John Johansen0d259f02013-07-10 21:13:43 -07001791
John Johansenb7fd2c02017-01-16 00:42:58 -08001792 /* profiles */
John Johansen0d259f02013-07-10 21:13:43 -07001793 list_for_each_entry(child, &ns->base.profiles, base.list) {
John Johansenc97204b2017-05-25 06:23:42 -07001794 error = __aafs_profile_mkdir(child, ns_subprofs_dir(ns));
John Johansen0d259f02013-07-10 21:13:43 -07001795 if (error)
1796 goto fail2;
1797 }
1798
John Johansenb7fd2c02017-01-16 00:42:58 -08001799 /* subnamespaces */
John Johansen0d259f02013-07-10 21:13:43 -07001800 list_for_each_entry(sub, &ns->sub_ns, base.list) {
1801 mutex_lock(&sub->lock);
John Johansen98407f02017-05-25 06:31:46 -07001802 error = __aafs_ns_mkdir(sub, ns_subns_dir(ns), NULL, NULL);
John Johansen0d259f02013-07-10 21:13:43 -07001803 mutex_unlock(&sub->lock);
1804 if (error)
1805 goto fail2;
1806 }
1807
1808 return 0;
1809
1810fail:
1811 error = PTR_ERR(dent);
1812
1813fail2:
John Johansenc97204b2017-05-25 06:23:42 -07001814 __aafs_ns_rmdir(ns);
John Johansen0d259f02013-07-10 21:13:43 -07001815
1816 return error;
1817}
1818
1819
John Johansen29b38222013-07-10 21:18:43 -07001820#define list_entry_is_head(pos, head, member) (&pos->member == (head))
1821
1822/**
John Johansen98849df2017-01-16 00:42:16 -08001823 * __next_ns - find the next namespace to list
John Johansen29b38222013-07-10 21:18:43 -07001824 * @root: root namespace to stop search at (NOT NULL)
1825 * @ns: current ns position (NOT NULL)
1826 *
1827 * Find the next namespace from @ns under @root and handle all locking needed
1828 * while switching current namespace.
1829 *
1830 * Returns: next namespace or NULL if at last namespace under @root
1831 * Requires: ns->parent->lock to be held
1832 * NOTE: will not unlock root->lock
1833 */
John Johansen98849df2017-01-16 00:42:16 -08001834static struct aa_ns *__next_ns(struct aa_ns *root, struct aa_ns *ns)
John Johansen29b38222013-07-10 21:18:43 -07001835{
John Johansen98849df2017-01-16 00:42:16 -08001836 struct aa_ns *parent, *next;
John Johansen29b38222013-07-10 21:18:43 -07001837
1838 /* is next namespace a child */
1839 if (!list_empty(&ns->sub_ns)) {
1840 next = list_first_entry(&ns->sub_ns, typeof(*ns), base.list);
1841 mutex_lock(&next->lock);
1842 return next;
1843 }
1844
1845 /* check if the next ns is a sibling, parent, gp, .. */
1846 parent = ns->parent;
John Johansened2c7da2013-10-14 11:46:27 -07001847 while (ns != root) {
John Johansen29b38222013-07-10 21:18:43 -07001848 mutex_unlock(&ns->lock);
Geliang Tang38dbd7d2015-11-16 21:46:33 +08001849 next = list_next_entry(ns, base.list);
John Johansen29b38222013-07-10 21:18:43 -07001850 if (!list_entry_is_head(next, &parent->sub_ns, base.list)) {
1851 mutex_lock(&next->lock);
1852 return next;
1853 }
John Johansen29b38222013-07-10 21:18:43 -07001854 ns = parent;
1855 parent = parent->parent;
1856 }
1857
1858 return NULL;
1859}
1860
1861/**
1862 * __first_profile - find the first profile in a namespace
1863 * @root: namespace that is root of profiles being displayed (NOT NULL)
1864 * @ns: namespace to start in (NOT NULL)
1865 *
1866 * Returns: unrefcounted profile or NULL if no profile
1867 * Requires: profile->ns.lock to be held
1868 */
John Johansen98849df2017-01-16 00:42:16 -08001869static struct aa_profile *__first_profile(struct aa_ns *root,
1870 struct aa_ns *ns)
John Johansen29b38222013-07-10 21:18:43 -07001871{
John Johansen98849df2017-01-16 00:42:16 -08001872 for (; ns; ns = __next_ns(root, ns)) {
John Johansen29b38222013-07-10 21:18:43 -07001873 if (!list_empty(&ns->base.profiles))
1874 return list_first_entry(&ns->base.profiles,
1875 struct aa_profile, base.list);
1876 }
1877 return NULL;
1878}
1879
1880/**
1881 * __next_profile - step to the next profile in a profile tree
1882 * @profile: current profile in tree (NOT NULL)
1883 *
1884 * Perform a depth first traversal on the profile tree in a namespace
1885 *
1886 * Returns: next profile or NULL if done
1887 * Requires: profile->ns.lock to be held
1888 */
1889static struct aa_profile *__next_profile(struct aa_profile *p)
1890{
1891 struct aa_profile *parent;
John Johansen98849df2017-01-16 00:42:16 -08001892 struct aa_ns *ns = p->ns;
John Johansen29b38222013-07-10 21:18:43 -07001893
1894 /* is next profile a child */
1895 if (!list_empty(&p->base.profiles))
1896 return list_first_entry(&p->base.profiles, typeof(*p),
1897 base.list);
1898
1899 /* is next profile a sibling, parent sibling, gp, sibling, .. */
1900 parent = rcu_dereference_protected(p->parent,
1901 mutex_is_locked(&p->ns->lock));
1902 while (parent) {
Geliang Tang38dbd7d2015-11-16 21:46:33 +08001903 p = list_next_entry(p, base.list);
John Johansen29b38222013-07-10 21:18:43 -07001904 if (!list_entry_is_head(p, &parent->base.profiles, base.list))
1905 return p;
1906 p = parent;
1907 parent = rcu_dereference_protected(parent->parent,
1908 mutex_is_locked(&parent->ns->lock));
1909 }
1910
1911 /* is next another profile in the namespace */
Geliang Tang38dbd7d2015-11-16 21:46:33 +08001912 p = list_next_entry(p, base.list);
John Johansen29b38222013-07-10 21:18:43 -07001913 if (!list_entry_is_head(p, &ns->base.profiles, base.list))
1914 return p;
1915
1916 return NULL;
1917}
1918
1919/**
1920 * next_profile - step to the next profile in where ever it may be
1921 * @root: root namespace (NOT NULL)
1922 * @profile: current profile (NOT NULL)
1923 *
1924 * Returns: next profile or NULL if there isn't one
1925 */
John Johansen98849df2017-01-16 00:42:16 -08001926static struct aa_profile *next_profile(struct aa_ns *root,
John Johansen29b38222013-07-10 21:18:43 -07001927 struct aa_profile *profile)
1928{
1929 struct aa_profile *next = __next_profile(profile);
1930 if (next)
1931 return next;
1932
1933 /* finished all profiles in namespace move to next namespace */
John Johansen98849df2017-01-16 00:42:16 -08001934 return __first_profile(root, __next_ns(root, profile->ns));
John Johansen29b38222013-07-10 21:18:43 -07001935}
1936
1937/**
1938 * p_start - start a depth first traversal of profile tree
1939 * @f: seq_file to fill
1940 * @pos: current position
1941 *
1942 * Returns: first profile under current namespace or NULL if none found
1943 *
1944 * acquires first ns->lock
1945 */
1946static void *p_start(struct seq_file *f, loff_t *pos)
1947{
1948 struct aa_profile *profile = NULL;
John Johansencf797c02017-06-09 02:08:28 -07001949 struct aa_ns *root = aa_get_current_ns();
John Johansen29b38222013-07-10 21:18:43 -07001950 loff_t l = *pos;
John Johansencf797c02017-06-09 02:08:28 -07001951 f->private = root;
John Johansen29b38222013-07-10 21:18:43 -07001952
1953 /* find the first profile */
1954 mutex_lock(&root->lock);
1955 profile = __first_profile(root, root);
1956
1957 /* skip to position */
1958 for (; profile && l > 0; l--)
1959 profile = next_profile(root, profile);
1960
1961 return profile;
1962}
1963
1964/**
1965 * p_next - read the next profile entry
1966 * @f: seq_file to fill
1967 * @p: profile previously returned
1968 * @pos: current position
1969 *
1970 * Returns: next profile after @p or NULL if none
1971 *
1972 * may acquire/release locks in namespace tree as necessary
1973 */
1974static void *p_next(struct seq_file *f, void *p, loff_t *pos)
1975{
1976 struct aa_profile *profile = p;
John Johansen98849df2017-01-16 00:42:16 -08001977 struct aa_ns *ns = f->private;
John Johansen29b38222013-07-10 21:18:43 -07001978 (*pos)++;
1979
1980 return next_profile(ns, profile);
1981}
1982
1983/**
1984 * p_stop - stop depth first traversal
1985 * @f: seq_file we are filling
1986 * @p: the last profile writen
1987 *
1988 * Release all locking done by p_start/p_next on namespace tree
1989 */
1990static void p_stop(struct seq_file *f, void *p)
1991{
1992 struct aa_profile *profile = p;
John Johansen98849df2017-01-16 00:42:16 -08001993 struct aa_ns *root = f->private, *ns;
John Johansen29b38222013-07-10 21:18:43 -07001994
1995 if (profile) {
1996 for (ns = profile->ns; ns && ns != root; ns = ns->parent)
1997 mutex_unlock(&ns->lock);
1998 }
1999 mutex_unlock(&root->lock);
John Johansen98849df2017-01-16 00:42:16 -08002000 aa_put_ns(root);
John Johansen29b38222013-07-10 21:18:43 -07002001}
2002
2003/**
2004 * seq_show_profile - show a profile entry
2005 * @f: seq_file to file
2006 * @p: current position (profile) (NOT NULL)
2007 *
2008 * Returns: error on failure
2009 */
2010static int seq_show_profile(struct seq_file *f, void *p)
2011{
2012 struct aa_profile *profile = (struct aa_profile *)p;
John Johansen98849df2017-01-16 00:42:16 -08002013 struct aa_ns *root = f->private;
John Johansen29b38222013-07-10 21:18:43 -07002014
John Johansen637f6882017-06-09 08:14:28 -07002015 aa_label_seq_xprint(f, root, &profile->label,
2016 FLAG_SHOW_MODE | FLAG_VIEW_SUBNS, GFP_KERNEL);
2017 seq_putc(f, '\n');
John Johansen29b38222013-07-10 21:18:43 -07002018
2019 return 0;
2020}
2021
John Johansenc97204b2017-05-25 06:23:42 -07002022static const struct seq_operations aa_sfs_profiles_op = {
John Johansen29b38222013-07-10 21:18:43 -07002023 .start = p_start,
2024 .next = p_next,
2025 .stop = p_stop,
2026 .show = seq_show_profile,
2027};
2028
2029static int profiles_open(struct inode *inode, struct file *file)
2030{
John Johansen5ac8c352017-01-16 00:42:55 -08002031 if (!policy_view_capable(NULL))
2032 return -EACCES;
2033
John Johansenc97204b2017-05-25 06:23:42 -07002034 return seq_open(file, &aa_sfs_profiles_op);
John Johansen29b38222013-07-10 21:18:43 -07002035}
2036
2037static int profiles_release(struct inode *inode, struct file *file)
2038{
2039 return seq_release(inode, file);
2040}
2041
John Johansenc97204b2017-05-25 06:23:42 -07002042static const struct file_operations aa_sfs_profiles_fops = {
John Johansen29b38222013-07-10 21:18:43 -07002043 .open = profiles_open,
2044 .read = seq_read,
2045 .llseek = seq_lseek,
2046 .release = profiles_release,
2047};
2048
2049
John Johansen0d259f02013-07-10 21:13:43 -07002050/** Base file system setup **/
John Johansenc97204b2017-05-25 06:23:42 -07002051static struct aa_sfs_entry aa_sfs_entry_file[] = {
2052 AA_SFS_FILE_STRING("mask",
2053 "create read write exec append mmap_exec link lock"),
Kees Cooka9bf8e92012-01-26 16:29:22 -08002054 { }
2055};
2056
John Johansenc97204b2017-05-25 06:23:42 -07002057static struct aa_sfs_entry aa_sfs_entry_domain[] = {
2058 AA_SFS_FILE_BOOLEAN("change_hat", 1),
2059 AA_SFS_FILE_BOOLEAN("change_hatv", 1),
2060 AA_SFS_FILE_BOOLEAN("change_onexec", 1),
2061 AA_SFS_FILE_BOOLEAN("change_profile", 1),
2062 AA_SFS_FILE_BOOLEAN("fix_binfmt_elf_mmap", 1),
2063 AA_SFS_FILE_STRING("version", "1.2"),
Kees Cooke74abcf2012-01-26 16:29:21 -08002064 { }
2065};
2066
John Johansenc97204b2017-05-25 06:23:42 -07002067static struct aa_sfs_entry aa_sfs_entry_versions[] = {
2068 AA_SFS_FILE_BOOLEAN("v5", 1),
John Johansen474d6b752017-01-16 00:42:39 -08002069 { }
2070};
2071
John Johansenc97204b2017-05-25 06:23:42 -07002072static struct aa_sfs_entry aa_sfs_entry_policy[] = {
2073 AA_SFS_DIR("versions", aa_sfs_entry_versions),
2074 AA_SFS_FILE_BOOLEAN("set_load", 1),
John Johansen474d6b752017-01-16 00:42:39 -08002075 { }
John Johansen9d910a32013-07-10 21:04:43 -07002076};
2077
John Johansena83bd862017-05-26 18:49:04 -07002078static struct aa_sfs_entry aa_sfs_entry_query_label[] = {
John Johansen4f3b3f22017-05-26 18:35:29 -07002079 AA_SFS_FILE_STRING("perms", "allow deny audit quiet"),
John Johansena83bd862017-05-26 18:49:04 -07002080 AA_SFS_FILE_BOOLEAN("data", 1),
John Johansen1dea3b42017-05-26 17:23:23 -07002081 AA_SFS_FILE_BOOLEAN("multi_transaction", 1),
John Johansena83bd862017-05-26 18:49:04 -07002082 { }
2083};
2084
2085static struct aa_sfs_entry aa_sfs_entry_query[] = {
2086 AA_SFS_DIR("label", aa_sfs_entry_query_label),
2087 { }
2088};
John Johansenc97204b2017-05-25 06:23:42 -07002089static struct aa_sfs_entry aa_sfs_entry_features[] = {
2090 AA_SFS_DIR("policy", aa_sfs_entry_policy),
2091 AA_SFS_DIR("domain", aa_sfs_entry_domain),
2092 AA_SFS_DIR("file", aa_sfs_entry_file),
2093 AA_SFS_FILE_U64("capability", VFS_CAP_FLAGS_MASK),
2094 AA_SFS_DIR("rlimit", aa_sfs_entry_rlimit),
2095 AA_SFS_DIR("caps", aa_sfs_entry_caps),
John Johansena83bd862017-05-26 18:49:04 -07002096 AA_SFS_DIR("query", aa_sfs_entry_query),
Kees Cooke74abcf2012-01-26 16:29:21 -08002097 { }
2098};
2099
John Johansenc97204b2017-05-25 06:23:42 -07002100static struct aa_sfs_entry aa_sfs_entry_apparmor[] = {
2101 AA_SFS_FILE_FOPS(".access", 0640, &aa_sfs_access),
2102 AA_SFS_FILE_FOPS(".ns_level", 0666, &seq_ns_level_fops),
2103 AA_SFS_FILE_FOPS(".ns_name", 0640, &seq_ns_name_fops),
2104 AA_SFS_FILE_FOPS("profiles", 0440, &aa_sfs_profiles_fops),
2105 AA_SFS_DIR("features", aa_sfs_entry_features),
Kees Cook9acd4942012-01-26 16:29:20 -08002106 { }
2107};
John Johansen63e2b422010-07-29 14:48:03 -07002108
John Johansenc97204b2017-05-25 06:23:42 -07002109static struct aa_sfs_entry aa_sfs_entry =
2110 AA_SFS_DIR("apparmor", aa_sfs_entry_apparmor);
Kees Cook9acd4942012-01-26 16:29:20 -08002111
2112/**
John Johansena481f4d2017-05-25 05:52:56 -07002113 * entry_create_file - create a file entry in the apparmor securityfs
John Johansenc97204b2017-05-25 06:23:42 -07002114 * @fs_file: aa_sfs_entry to build an entry for (NOT NULL)
Kees Cook9acd4942012-01-26 16:29:20 -08002115 * @parent: the parent dentry in the securityfs
2116 *
John Johansena481f4d2017-05-25 05:52:56 -07002117 * Use entry_remove_file to remove entries created with this fn.
Kees Cook9acd4942012-01-26 16:29:20 -08002118 */
John Johansenc97204b2017-05-25 06:23:42 -07002119static int __init entry_create_file(struct aa_sfs_entry *fs_file,
John Johansena481f4d2017-05-25 05:52:56 -07002120 struct dentry *parent)
John Johansen63e2b422010-07-29 14:48:03 -07002121{
Kees Cook9acd4942012-01-26 16:29:20 -08002122 int error = 0;
John Johansen63e2b422010-07-29 14:48:03 -07002123
Kees Cook9acd4942012-01-26 16:29:20 -08002124 fs_file->dentry = securityfs_create_file(fs_file->name,
2125 S_IFREG | fs_file->mode,
2126 parent, fs_file,
2127 fs_file->file_ops);
2128 if (IS_ERR(fs_file->dentry)) {
2129 error = PTR_ERR(fs_file->dentry);
2130 fs_file->dentry = NULL;
John Johansen63e2b422010-07-29 14:48:03 -07002131 }
Kees Cook9acd4942012-01-26 16:29:20 -08002132 return error;
John Johansen63e2b422010-07-29 14:48:03 -07002133}
2134
John Johansenc97204b2017-05-25 06:23:42 -07002135static void __init entry_remove_dir(struct aa_sfs_entry *fs_dir);
John Johansen63e2b422010-07-29 14:48:03 -07002136/**
John Johansena481f4d2017-05-25 05:52:56 -07002137 * entry_create_dir - recursively create a directory entry in the securityfs
John Johansenc97204b2017-05-25 06:23:42 -07002138 * @fs_dir: aa_sfs_entry (and all child entries) to build (NOT NULL)
Kees Cook9acd4942012-01-26 16:29:20 -08002139 * @parent: the parent dentry in the securityfs
John Johansen63e2b422010-07-29 14:48:03 -07002140 *
John Johansena481f4d2017-05-25 05:52:56 -07002141 * Use entry_remove_dir to remove entries created with this fn.
John Johansen63e2b422010-07-29 14:48:03 -07002142 */
John Johansenc97204b2017-05-25 06:23:42 -07002143static int __init entry_create_dir(struct aa_sfs_entry *fs_dir,
2144 struct dentry *parent)
John Johansen63e2b422010-07-29 14:48:03 -07002145{
John Johansenc97204b2017-05-25 06:23:42 -07002146 struct aa_sfs_entry *fs_file;
John Johansen0d259f02013-07-10 21:13:43 -07002147 struct dentry *dir;
2148 int error;
John Johansen63e2b422010-07-29 14:48:03 -07002149
John Johansen0d259f02013-07-10 21:13:43 -07002150 dir = securityfs_create_dir(fs_dir->name, parent);
2151 if (IS_ERR(dir))
2152 return PTR_ERR(dir);
2153 fs_dir->dentry = dir;
John Johansen63e2b422010-07-29 14:48:03 -07002154
John Johansen0d259f02013-07-10 21:13:43 -07002155 for (fs_file = fs_dir->v.files; fs_file && fs_file->name; ++fs_file) {
John Johansenc97204b2017-05-25 06:23:42 -07002156 if (fs_file->v_type == AA_SFS_TYPE_DIR)
John Johansena481f4d2017-05-25 05:52:56 -07002157 error = entry_create_dir(fs_file, fs_dir->dentry);
Kees Cook9acd4942012-01-26 16:29:20 -08002158 else
John Johansena481f4d2017-05-25 05:52:56 -07002159 error = entry_create_file(fs_file, fs_dir->dentry);
Kees Cook9acd4942012-01-26 16:29:20 -08002160 if (error)
2161 goto failed;
2162 }
2163
2164 return 0;
2165
2166failed:
John Johansena481f4d2017-05-25 05:52:56 -07002167 entry_remove_dir(fs_dir);
John Johansen0d259f02013-07-10 21:13:43 -07002168
Kees Cook9acd4942012-01-26 16:29:20 -08002169 return error;
2170}
2171
2172/**
John Johansenc97204b2017-05-25 06:23:42 -07002173 * entry_remove_file - drop a single file entry in the apparmor securityfs
2174 * @fs_file: aa_sfs_entry to detach from the securityfs (NOT NULL)
Kees Cook9acd4942012-01-26 16:29:20 -08002175 */
John Johansenc97204b2017-05-25 06:23:42 -07002176static void __init entry_remove_file(struct aa_sfs_entry *fs_file)
Kees Cook9acd4942012-01-26 16:29:20 -08002177{
2178 if (!fs_file->dentry)
2179 return;
2180
2181 securityfs_remove(fs_file->dentry);
2182 fs_file->dentry = NULL;
2183}
2184
2185/**
John Johansena481f4d2017-05-25 05:52:56 -07002186 * entry_remove_dir - recursively drop a directory entry from the securityfs
John Johansenc97204b2017-05-25 06:23:42 -07002187 * @fs_dir: aa_sfs_entry (and all child entries) to detach (NOT NULL)
Kees Cook9acd4942012-01-26 16:29:20 -08002188 */
John Johansenc97204b2017-05-25 06:23:42 -07002189static void __init entry_remove_dir(struct aa_sfs_entry *fs_dir)
Kees Cook9acd4942012-01-26 16:29:20 -08002190{
John Johansenc97204b2017-05-25 06:23:42 -07002191 struct aa_sfs_entry *fs_file;
Kees Cook9acd4942012-01-26 16:29:20 -08002192
John Johansen0d259f02013-07-10 21:13:43 -07002193 for (fs_file = fs_dir->v.files; fs_file && fs_file->name; ++fs_file) {
John Johansenc97204b2017-05-25 06:23:42 -07002194 if (fs_file->v_type == AA_SFS_TYPE_DIR)
John Johansena481f4d2017-05-25 05:52:56 -07002195 entry_remove_dir(fs_file);
Kees Cook9acd4942012-01-26 16:29:20 -08002196 else
John Johansenc97204b2017-05-25 06:23:42 -07002197 entry_remove_file(fs_file);
Kees Cook9acd4942012-01-26 16:29:20 -08002198 }
2199
John Johansenc97204b2017-05-25 06:23:42 -07002200 entry_remove_file(fs_dir);
John Johansen63e2b422010-07-29 14:48:03 -07002201}
2202
2203/**
2204 * aa_destroy_aafs - cleanup and free aafs
2205 *
2206 * releases dentries allocated by aa_create_aafs
2207 */
2208void __init aa_destroy_aafs(void)
2209{
John Johansenc97204b2017-05-25 06:23:42 -07002210 entry_remove_dir(&aa_sfs_entry);
John Johansen63e2b422010-07-29 14:48:03 -07002211}
2212
John Johansena71ada32017-01-16 00:42:45 -08002213
2214#define NULL_FILE_NAME ".null"
2215struct path aa_null;
2216
2217static int aa_mk_null_file(struct dentry *parent)
2218{
2219 struct vfsmount *mount = NULL;
2220 struct dentry *dentry;
2221 struct inode *inode;
2222 int count = 0;
2223 int error = simple_pin_fs(parent->d_sb->s_type, &mount, &count);
2224
2225 if (error)
2226 return error;
2227
2228 inode_lock(d_inode(parent));
2229 dentry = lookup_one_len(NULL_FILE_NAME, parent, strlen(NULL_FILE_NAME));
2230 if (IS_ERR(dentry)) {
2231 error = PTR_ERR(dentry);
2232 goto out;
2233 }
2234 inode = new_inode(parent->d_inode->i_sb);
2235 if (!inode) {
2236 error = -ENOMEM;
2237 goto out1;
2238 }
2239
2240 inode->i_ino = get_next_ino();
2241 inode->i_mode = S_IFCHR | S_IRUGO | S_IWUGO;
Deepa Dinamani24d0d032017-05-08 15:59:31 -07002242 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
John Johansena71ada32017-01-16 00:42:45 -08002243 init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO,
2244 MKDEV(MEM_MAJOR, 3));
2245 d_instantiate(dentry, inode);
2246 aa_null.dentry = dget(dentry);
2247 aa_null.mnt = mntget(mount);
2248
2249 error = 0;
2250
2251out1:
2252 dput(dentry);
2253out:
2254 inode_unlock(d_inode(parent));
2255 simple_release_fs(&mount, &count);
2256 return error;
2257}
2258
John Johansena481f4d2017-05-25 05:52:56 -07002259
2260
2261static const char *policy_get_link(struct dentry *dentry,
2262 struct inode *inode,
2263 struct delayed_call *done)
2264{
2265 struct aa_ns *ns;
2266 struct path path;
2267
2268 if (!dentry)
2269 return ERR_PTR(-ECHILD);
2270 ns = aa_get_current_ns();
2271 path.mnt = mntget(aafs_mnt);
2272 path.dentry = dget(ns_dir(ns));
2273 nd_jump_link(&path);
2274 aa_put_ns(ns);
2275
2276 return NULL;
2277}
2278
2279static int ns_get_name(char *buf, size_t size, struct aa_ns *ns,
2280 struct inode *inode)
2281{
2282 int res = snprintf(buf, size, "%s:[%lu]", AAFS_NAME, inode->i_ino);
2283
2284 if (res < 0 || res >= size)
2285 res = -ENOENT;
2286
2287 return res;
2288}
2289
2290static int policy_readlink(struct dentry *dentry, char __user *buffer,
2291 int buflen)
2292{
2293 struct aa_ns *ns;
2294 char name[32];
2295 int res;
2296
2297 ns = aa_get_current_ns();
2298 res = ns_get_name(name, sizeof(name), ns, d_inode(dentry));
2299 if (res >= 0)
2300 res = readlink_copy(buffer, buflen, name);
2301 aa_put_ns(ns);
2302
2303 return res;
2304}
2305
2306static const struct inode_operations policy_link_iops = {
2307 .readlink = policy_readlink,
2308 .get_link = policy_get_link,
2309};
2310
2311
John Johansen63e2b422010-07-29 14:48:03 -07002312/**
2313 * aa_create_aafs - create the apparmor security filesystem
2314 *
2315 * dentries created here are released by aa_destroy_aafs
2316 *
2317 * Returns: error on failure
2318 */
James Morris3417d8d2011-08-17 11:05:21 +10002319static int __init aa_create_aafs(void)
John Johansen63e2b422010-07-29 14:48:03 -07002320{
John Johansenb7fd2c02017-01-16 00:42:58 -08002321 struct dentry *dent;
John Johansen63e2b422010-07-29 14:48:03 -07002322 int error;
2323
2324 if (!apparmor_initialized)
2325 return 0;
2326
John Johansenc97204b2017-05-25 06:23:42 -07002327 if (aa_sfs_entry.dentry) {
John Johansen63e2b422010-07-29 14:48:03 -07002328 AA_ERROR("%s: AppArmor securityfs already exists\n", __func__);
2329 return -EEXIST;
2330 }
2331
John Johansena481f4d2017-05-25 05:52:56 -07002332 /* setup apparmorfs used to virtualize policy/ */
2333 aafs_mnt = kern_mount(&aafs_ops);
2334 if (IS_ERR(aafs_mnt))
2335 panic("can't set apparmorfs up\n");
2336 aafs_mnt->mnt_sb->s_flags &= ~MS_NOUSER;
2337
Kees Cook9acd4942012-01-26 16:29:20 -08002338 /* Populate fs tree. */
John Johansenc97204b2017-05-25 06:23:42 -07002339 error = entry_create_dir(&aa_sfs_entry, NULL);
John Johansen63e2b422010-07-29 14:48:03 -07002340 if (error)
2341 goto error;
2342
John Johansenc97204b2017-05-25 06:23:42 -07002343 dent = securityfs_create_file(".load", 0666, aa_sfs_entry.dentry,
John Johansenb7fd2c02017-01-16 00:42:58 -08002344 NULL, &aa_fs_profile_load);
2345 if (IS_ERR(dent)) {
2346 error = PTR_ERR(dent);
2347 goto error;
2348 }
2349 ns_subload(root_ns) = dent;
2350
John Johansenc97204b2017-05-25 06:23:42 -07002351 dent = securityfs_create_file(".replace", 0666, aa_sfs_entry.dentry,
John Johansenb7fd2c02017-01-16 00:42:58 -08002352 NULL, &aa_fs_profile_replace);
2353 if (IS_ERR(dent)) {
2354 error = PTR_ERR(dent);
2355 goto error;
2356 }
2357 ns_subreplace(root_ns) = dent;
2358
John Johansenc97204b2017-05-25 06:23:42 -07002359 dent = securityfs_create_file(".remove", 0666, aa_sfs_entry.dentry,
John Johansenb7fd2c02017-01-16 00:42:58 -08002360 NULL, &aa_fs_profile_remove);
2361 if (IS_ERR(dent)) {
2362 error = PTR_ERR(dent);
2363 goto error;
2364 }
2365 ns_subremove(root_ns) = dent;
2366
John Johansend9bf2c22017-05-26 16:27:58 -07002367 dent = securityfs_create_file("revision", 0444, aa_sfs_entry.dentry,
2368 NULL, &aa_fs_ns_revision_fops);
2369 if (IS_ERR(dent)) {
2370 error = PTR_ERR(dent);
2371 goto error;
2372 }
2373 ns_subrevision(root_ns) = dent;
2374
2375 /* policy tree referenced by magic policy symlink */
John Johansenb7fd2c02017-01-16 00:42:58 -08002376 mutex_lock(&root_ns->lock);
John Johansenc961ee52017-05-25 06:35:38 -07002377 error = __aafs_ns_mkdir(root_ns, aafs_mnt->mnt_root, ".policy",
2378 aafs_mnt->mnt_root);
John Johansenb7fd2c02017-01-16 00:42:58 -08002379 mutex_unlock(&root_ns->lock);
John Johansen0d259f02013-07-10 21:13:43 -07002380 if (error)
2381 goto error;
2382
John Johansenc961ee52017-05-25 06:35:38 -07002383 /* magic symlink similar to nsfs redirects based on task policy */
2384 dent = securityfs_create_symlink("policy", aa_sfs_entry.dentry,
2385 NULL, &policy_link_iops);
2386 if (IS_ERR(dent)) {
2387 error = PTR_ERR(dent);
2388 goto error;
2389 }
2390
John Johansenc97204b2017-05-25 06:23:42 -07002391 error = aa_mk_null_file(aa_sfs_entry.dentry);
John Johansena71ada32017-01-16 00:42:45 -08002392 if (error)
2393 goto error;
2394
2395 /* TODO: add default profile to apparmorfs */
John Johansen63e2b422010-07-29 14:48:03 -07002396
2397 /* Report that AppArmor fs is enabled */
2398 aa_info_message("AppArmor Filesystem Enabled");
2399 return 0;
2400
2401error:
2402 aa_destroy_aafs();
2403 AA_ERROR("Error creating AppArmor securityfs\n");
2404 return error;
2405}
2406
2407fs_initcall(aa_create_aafs);