securityfs: add the ability to support symlinks
[linux-block.git] / security / apparmor / apparmorfs.c
CommitLineData
63e2b423
JJ
1/*
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
0d259f04 15#include <linux/ctype.h>
63e2b423
JJ
16#include <linux/security.h>
17#include <linux/vmalloc.h>
18#include <linux/module.h>
19#include <linux/seq_file.h>
20#include <linux/uaccess.h>
a71ada30 21#include <linux/mount.h>
63e2b423 22#include <linux/namei.h>
e74abcf3 23#include <linux/capability.h>
29b3822f 24#include <linux/rcupdate.h>
a71ada30
JJ
25#include <uapi/linux/major.h>
26#include <linux/fs.h>
63e2b423
JJ
27
28#include "include/apparmor.h"
29#include "include/apparmorfs.h"
30#include "include/audit.h"
31#include "include/context.h"
f8eb8a13 32#include "include/crypto.h"
63e2b423 33#include "include/policy.h"
cff281f6 34#include "include/policy_ns.h"
d384b0a1 35#include "include/resource.h"
5ac8c355 36#include "include/policy_unpack.h"
63e2b423 37
0d259f04
JJ
38/**
39 * aa_mangle_name - mangle a profile name to std profile layout form
40 * @name: profile name to mangle (NOT NULL)
41 * @target: buffer to store mangled name, same length as @name (MAYBE NULL)
42 *
43 * Returns: length of mangled name
44 */
bbe4a7c8 45static int mangle_name(const char *name, char *target)
0d259f04
JJ
46{
47 char *t = target;
48
49 while (*name == '/' || *name == '.')
50 name++;
51
52 if (target) {
53 for (; *name; name++) {
54 if (*name == '/')
55 *(t)++ = '.';
56 else if (isspace(*name))
57 *(t)++ = '_';
58 else if (isalnum(*name) || strchr("._-", *name))
59 *(t)++ = *name;
60 }
61
62 *t = 0;
63 } else {
64 int len = 0;
65 for (; *name; name++) {
66 if (isalnum(*name) || isspace(*name) ||
67 strchr("/._-", *name))
68 len++;
69 }
70
71 return len;
72 }
73
74 return t - target;
75}
76
63e2b423
JJ
77/**
78 * aa_simple_write_to_buffer - common routine for getting policy from user
63e2b423 79 * @userbuf: user buffer to copy data from (NOT NULL)
3ed02ada 80 * @alloc_size: size of user buffer (REQUIRES: @alloc_size >= @copy_size)
63e2b423
JJ
81 * @copy_size: size of data to copy from user buffer
82 * @pos: position write is at in the file (NOT NULL)
83 *
84 * Returns: kernel buffer containing copy of user buffer data or an
85 * ERR_PTR on failure.
86 */
5ef50d01 87static struct aa_loaddata *aa_simple_write_to_buffer(const char __user *userbuf,
5ac8c355
JJ
88 size_t alloc_size,
89 size_t copy_size,
90 loff_t *pos)
63e2b423 91{
5ac8c355 92 struct aa_loaddata *data;
63e2b423 93
e6bfa25d 94 AA_BUG(copy_size > alloc_size);
3ed02ada 95
63e2b423
JJ
96 if (*pos != 0)
97 /* only writes from pos 0, that is complete writes */
98 return ERR_PTR(-ESPIPE);
99
63e2b423 100 /* freed by caller to simple_write_to_buffer */
a7c3e901 101 data = kvmalloc(sizeof(*data) + alloc_size, GFP_KERNEL);
63e2b423
JJ
102 if (data == NULL)
103 return ERR_PTR(-ENOMEM);
5ac8c355
JJ
104 kref_init(&data->count);
105 data->size = copy_size;
106 data->hash = NULL;
107 data->abi = 0;
63e2b423 108
5ac8c355 109 if (copy_from_user(data->data, userbuf, copy_size)) {
63e2b423
JJ
110 kvfree(data);
111 return ERR_PTR(-EFAULT);
112 }
113
114 return data;
115}
116
5ac8c355 117static ssize_t policy_update(int binop, const char __user *buf, size_t size,
b7fd2c03 118 loff_t *pos, struct aa_ns *ns)
63e2b423 119{
63e2b423 120 ssize_t error;
5ac8c355
JJ
121 struct aa_loaddata *data;
122 struct aa_profile *profile = aa_current_profile();
47f6e5cc 123 const char *op = binop == PROF_ADD ? OP_PROF_LOAD : OP_PROF_REPL;
5ac8c355
JJ
124 /* high level check about policy management - fine grained in
125 * below after unpack
126 */
b7fd2c03 127 error = aa_may_manage_policy(profile, ns, op);
5ac8c355
JJ
128 if (error)
129 return error;
63e2b423 130
5ef50d01 131 data = aa_simple_write_to_buffer(buf, size, size, pos);
63e2b423
JJ
132 error = PTR_ERR(data);
133 if (!IS_ERR(data)) {
b7fd2c03
JJ
134 error = aa_replace_profiles(ns ? ns : profile->ns, profile,
135 binop, data);
5ac8c355 136 aa_put_loaddata(data);
63e2b423
JJ
137 }
138
139 return error;
140}
141
b7fd2c03 142/* .load file hook fn to load policy */
5ac8c355
JJ
143static ssize_t profile_load(struct file *f, const char __user *buf, size_t size,
144 loff_t *pos)
145{
b7fd2c03
JJ
146 struct aa_ns *ns = aa_get_ns(f->f_inode->i_private);
147 int error = policy_update(PROF_ADD, buf, size, pos, ns);
148
149 aa_put_ns(ns);
5ac8c355
JJ
150
151 return error;
152}
153
63e2b423 154static const struct file_operations aa_fs_profile_load = {
6038f373
AB
155 .write = profile_load,
156 .llseek = default_llseek,
63e2b423
JJ
157};
158
159/* .replace file hook fn to load and/or replace policy */
160static ssize_t profile_replace(struct file *f, const char __user *buf,
161 size_t size, loff_t *pos)
162{
b7fd2c03
JJ
163 struct aa_ns *ns = aa_get_ns(f->f_inode->i_private);
164 int error = policy_update(PROF_REPLACE, buf, size, pos, ns);
165
166 aa_put_ns(ns);
63e2b423
JJ
167
168 return error;
169}
170
171static const struct file_operations aa_fs_profile_replace = {
6038f373
AB
172 .write = profile_replace,
173 .llseek = default_llseek,
63e2b423
JJ
174};
175
b7fd2c03 176/* .remove file hook fn to remove loaded policy */
63e2b423
JJ
177static ssize_t profile_remove(struct file *f, const char __user *buf,
178 size_t size, loff_t *pos)
179{
5ac8c355
JJ
180 struct aa_loaddata *data;
181 struct aa_profile *profile;
63e2b423 182 ssize_t error;
b7fd2c03 183 struct aa_ns *ns = aa_get_ns(f->f_inode->i_private);
63e2b423 184
5ac8c355
JJ
185 profile = aa_current_profile();
186 /* high level check about policy management - fine grained in
187 * below after unpack
188 */
b7fd2c03 189 error = aa_may_manage_policy(profile, ns, OP_PROF_RM);
5ac8c355
JJ
190 if (error)
191 goto out;
192
63e2b423
JJ
193 /*
194 * aa_remove_profile needs a null terminated string so 1 extra
195 * byte is allocated and the copied data is null terminated.
196 */
5ef50d01 197 data = aa_simple_write_to_buffer(buf, size + 1, size, pos);
63e2b423
JJ
198
199 error = PTR_ERR(data);
200 if (!IS_ERR(data)) {
5ac8c355 201 data->data[size] = 0;
b7fd2c03
JJ
202 error = aa_remove_profiles(ns ? ns : profile->ns, profile,
203 data->data, size);
5ac8c355 204 aa_put_loaddata(data);
63e2b423 205 }
5ac8c355 206 out:
b7fd2c03 207 aa_put_ns(ns);
63e2b423
JJ
208 return error;
209}
210
211static const struct file_operations aa_fs_profile_remove = {
6038f373
AB
212 .write = profile_remove,
213 .llseek = default_llseek,
63e2b423
JJ
214};
215
e025be0f
WH
216/**
217 * query_data - queries a policy and writes its data to buf
218 * @buf: the resulting data is stored here (NOT NULL)
219 * @buf_len: size of buf
220 * @query: query string used to retrieve data
221 * @query_len: size of query including second NUL byte
222 *
223 * The buffers pointed to by buf and query may overlap. The query buffer is
224 * parsed before buf is written to.
225 *
226 * The query should look like "<LABEL>\0<KEY>\0", where <LABEL> is the name of
227 * the security confinement context and <KEY> is the name of the data to
228 * retrieve. <LABEL> and <KEY> must not be NUL-terminated.
229 *
230 * Don't expect the contents of buf to be preserved on failure.
231 *
232 * Returns: number of characters written to buf or -errno on failure
233 */
234static ssize_t query_data(char *buf, size_t buf_len,
235 char *query, size_t query_len)
236{
237 char *out;
238 const char *key;
239 struct aa_profile *profile;
240 struct aa_data *data;
241 u32 bytes, blocks;
242 __le32 outle32;
243
244 if (!query_len)
245 return -EINVAL; /* need a query */
246
247 key = query + strnlen(query, query_len) + 1;
248 if (key + 1 >= query + query_len)
249 return -EINVAL; /* not enough space for a non-empty key */
250 if (key + strnlen(key, query + query_len - key) >= query + query_len)
251 return -EINVAL; /* must end with NUL */
252
253 if (buf_len < sizeof(bytes) + sizeof(blocks))
254 return -EINVAL; /* not enough space */
255
256 profile = aa_current_profile();
257
258 /* We are going to leave space for two numbers. The first is the total
259 * number of bytes we are writing after the first number. This is so
260 * users can read the full output without reallocation.
261 *
262 * The second number is the number of data blocks we're writing. An
263 * application might be confined by multiple policies having data in
264 * the same key.
265 */
266 memset(buf, 0, sizeof(bytes) + sizeof(blocks));
267 out = buf + sizeof(bytes) + sizeof(blocks);
268
269 blocks = 0;
270 if (profile->data) {
271 data = rhashtable_lookup_fast(profile->data, &key,
272 profile->data->p);
273
274 if (data) {
275 if (out + sizeof(outle32) + data->size > buf + buf_len)
276 return -EINVAL; /* not enough space */
277 outle32 = __cpu_to_le32(data->size);
278 memcpy(out, &outle32, sizeof(outle32));
279 out += sizeof(outle32);
280 memcpy(out, data->data, data->size);
281 out += data->size;
282 blocks++;
283 }
284 }
285
286 outle32 = __cpu_to_le32(out - buf - sizeof(bytes));
287 memcpy(buf, &outle32, sizeof(outle32));
288 outle32 = __cpu_to_le32(blocks);
289 memcpy(buf + sizeof(bytes), &outle32, sizeof(outle32));
290
291 return out - buf;
292}
293
294#define QUERY_CMD_DATA "data\0"
295#define QUERY_CMD_DATA_LEN 5
296
297/**
298 * aa_write_access - generic permissions and data query
299 * @file: pointer to open apparmorfs/access file
300 * @ubuf: user buffer containing the complete query string (NOT NULL)
301 * @count: size of ubuf
302 * @ppos: position in the file (MUST BE ZERO)
303 *
304 * Allows for one permissions or data query per open(), write(), and read()
305 * sequence. The only queries currently supported are label-based queries for
306 * permissions or data.
307 *
308 * For permissions queries, ubuf must begin with "label\0", followed by the
309 * profile query specific format described in the query_label() function
310 * documentation.
311 *
312 * For data queries, ubuf must have the form "data\0<LABEL>\0<KEY>\0", where
313 * <LABEL> is the name of the security confinement context and <KEY> is the
314 * name of the data to retrieve.
315 *
316 * Returns: number of bytes written or -errno on failure
317 */
318static ssize_t aa_write_access(struct file *file, const char __user *ubuf,
319 size_t count, loff_t *ppos)
320{
321 char *buf;
322 ssize_t len;
323
324 if (*ppos)
325 return -ESPIPE;
326
327 buf = simple_transaction_get(file, ubuf, count);
328 if (IS_ERR(buf))
329 return PTR_ERR(buf);
330
331 if (count > QUERY_CMD_DATA_LEN &&
332 !memcmp(buf, QUERY_CMD_DATA, QUERY_CMD_DATA_LEN)) {
333 len = query_data(buf, SIMPLE_TRANSACTION_LIMIT,
334 buf + QUERY_CMD_DATA_LEN,
335 count - QUERY_CMD_DATA_LEN);
336 } else
337 len = -EINVAL;
338
339 if (len < 0)
340 return len;
341
342 simple_transaction_set(file, len);
343
344 return count;
345}
346
347static const struct file_operations aa_fs_access = {
348 .write = aa_write_access,
349 .read = simple_transaction_read,
350 .release = simple_transaction_release,
351 .llseek = generic_file_llseek,
352};
353
e74abcf3
KC
354static int aa_fs_seq_show(struct seq_file *seq, void *v)
355{
356 struct aa_fs_entry *fs_file = seq->private;
357
358 if (!fs_file)
359 return 0;
360
361 switch (fs_file->v_type) {
362 case AA_FS_TYPE_BOOLEAN:
363 seq_printf(seq, "%s\n", fs_file->v.boolean ? "yes" : "no");
364 break;
a9bf8e9f
KC
365 case AA_FS_TYPE_STRING:
366 seq_printf(seq, "%s\n", fs_file->v.string);
367 break;
e74abcf3
KC
368 case AA_FS_TYPE_U64:
369 seq_printf(seq, "%#08lx\n", fs_file->v.u64);
370 break;
371 default:
372 /* Ignore unpritable entry types. */
373 break;
374 }
375
376 return 0;
377}
378
379static int aa_fs_seq_open(struct inode *inode, struct file *file)
380{
381 return single_open(file, aa_fs_seq_show, inode->i_private);
382}
383
384const struct file_operations aa_fs_seq_file_ops = {
385 .owner = THIS_MODULE,
386 .open = aa_fs_seq_open,
387 .read = seq_read,
388 .llseek = seq_lseek,
389 .release = single_release,
390};
391
0d259f04
JJ
392static int aa_fs_seq_profile_open(struct inode *inode, struct file *file,
393 int (*show)(struct seq_file *, void *))
394{
8399588a
JJ
395 struct aa_proxy *proxy = aa_get_proxy(inode->i_private);
396 int error = single_open(file, show, proxy);
0d259f04
JJ
397
398 if (error) {
399 file->private_data = NULL;
8399588a 400 aa_put_proxy(proxy);
0d259f04
JJ
401 }
402
403 return error;
404}
405
406static int aa_fs_seq_profile_release(struct inode *inode, struct file *file)
407{
408 struct seq_file *seq = (struct seq_file *) file->private_data;
409 if (seq)
8399588a 410 aa_put_proxy(seq->private);
0d259f04
JJ
411 return single_release(inode, file);
412}
413
414static int aa_fs_seq_profname_show(struct seq_file *seq, void *v)
415{
8399588a
JJ
416 struct aa_proxy *proxy = seq->private;
417 struct aa_profile *profile = aa_get_profile_rcu(&proxy->profile);
0d259f04
JJ
418 seq_printf(seq, "%s\n", profile->base.name);
419 aa_put_profile(profile);
420
421 return 0;
422}
423
424static int aa_fs_seq_profname_open(struct inode *inode, struct file *file)
425{
426 return aa_fs_seq_profile_open(inode, file, aa_fs_seq_profname_show);
427}
428
429static const struct file_operations aa_fs_profname_fops = {
430 .owner = THIS_MODULE,
431 .open = aa_fs_seq_profname_open,
432 .read = seq_read,
433 .llseek = seq_lseek,
434 .release = aa_fs_seq_profile_release,
435};
436
437static int aa_fs_seq_profmode_show(struct seq_file *seq, void *v)
438{
8399588a
JJ
439 struct aa_proxy *proxy = seq->private;
440 struct aa_profile *profile = aa_get_profile_rcu(&proxy->profile);
0d259f04
JJ
441 seq_printf(seq, "%s\n", aa_profile_mode_names[profile->mode]);
442 aa_put_profile(profile);
443
444 return 0;
445}
446
447static int aa_fs_seq_profmode_open(struct inode *inode, struct file *file)
448{
449 return aa_fs_seq_profile_open(inode, file, aa_fs_seq_profmode_show);
450}
451
452static const struct file_operations aa_fs_profmode_fops = {
453 .owner = THIS_MODULE,
454 .open = aa_fs_seq_profmode_open,
455 .read = seq_read,
456 .llseek = seq_lseek,
457 .release = aa_fs_seq_profile_release,
458};
459
556d0be7
JJ
460static int aa_fs_seq_profattach_show(struct seq_file *seq, void *v)
461{
8399588a
JJ
462 struct aa_proxy *proxy = seq->private;
463 struct aa_profile *profile = aa_get_profile_rcu(&proxy->profile);
556d0be7
JJ
464 if (profile->attach)
465 seq_printf(seq, "%s\n", profile->attach);
466 else if (profile->xmatch)
467 seq_puts(seq, "<unknown>\n");
468 else
469 seq_printf(seq, "%s\n", profile->base.name);
470 aa_put_profile(profile);
471
472 return 0;
473}
474
475static int aa_fs_seq_profattach_open(struct inode *inode, struct file *file)
476{
477 return aa_fs_seq_profile_open(inode, file, aa_fs_seq_profattach_show);
478}
479
480static const struct file_operations aa_fs_profattach_fops = {
481 .owner = THIS_MODULE,
482 .open = aa_fs_seq_profattach_open,
483 .read = seq_read,
484 .llseek = seq_lseek,
485 .release = aa_fs_seq_profile_release,
486};
487
f8eb8a13
JJ
488static int aa_fs_seq_hash_show(struct seq_file *seq, void *v)
489{
8399588a
JJ
490 struct aa_proxy *proxy = seq->private;
491 struct aa_profile *profile = aa_get_profile_rcu(&proxy->profile);
f8eb8a13
JJ
492 unsigned int i, size = aa_hash_size();
493
494 if (profile->hash) {
495 for (i = 0; i < size; i++)
496 seq_printf(seq, "%.2x", profile->hash[i]);
47dbd1cd 497 seq_putc(seq, '\n');
f8eb8a13 498 }
0b938a2e 499 aa_put_profile(profile);
f8eb8a13
JJ
500
501 return 0;
502}
503
504static int aa_fs_seq_hash_open(struct inode *inode, struct file *file)
505{
506 return single_open(file, aa_fs_seq_hash_show, inode->i_private);
507}
508
509static const struct file_operations aa_fs_seq_hash_fops = {
510 .owner = THIS_MODULE,
511 .open = aa_fs_seq_hash_open,
512 .read = seq_read,
513 .llseek = seq_lseek,
514 .release = single_release,
515};
516
3e3e5695 517
a71ada30
JJ
518static int aa_fs_seq_show_ns_level(struct seq_file *seq, void *v)
519{
520 struct aa_ns *ns = aa_current_profile()->ns;
521
522 seq_printf(seq, "%d\n", ns->level);
523
524 return 0;
525}
526
527static int aa_fs_seq_open_ns_level(struct inode *inode, struct file *file)
528{
529 return single_open(file, aa_fs_seq_show_ns_level, inode->i_private);
530}
531
532static const struct file_operations aa_fs_ns_level = {
533 .owner = THIS_MODULE,
534 .open = aa_fs_seq_open_ns_level,
535 .read = seq_read,
536 .llseek = seq_lseek,
537 .release = single_release,
538};
539
3e3e5695
JJ
540static int aa_fs_seq_show_ns_name(struct seq_file *seq, void *v)
541{
542 struct aa_ns *ns = aa_current_profile()->ns;
543
544 seq_printf(seq, "%s\n", ns->base.name);
545
546 return 0;
547}
548
549static int aa_fs_seq_open_ns_name(struct inode *inode, struct file *file)
550{
551 return single_open(file, aa_fs_seq_show_ns_name, inode->i_private);
552}
553
554static const struct file_operations aa_fs_ns_name = {
555 .owner = THIS_MODULE,
556 .open = aa_fs_seq_open_ns_name,
557 .read = seq_read,
558 .llseek = seq_lseek,
559 .release = single_release,
560};
561
5ac8c355
JJ
562static int rawdata_release(struct inode *inode, struct file *file)
563{
564 /* TODO: switch to loaddata when profile switched to symlink */
565 aa_put_loaddata(file->private_data);
566
567 return 0;
568}
569
570static int aa_fs_seq_raw_abi_show(struct seq_file *seq, void *v)
571{
572 struct aa_proxy *proxy = seq->private;
573 struct aa_profile *profile = aa_get_profile_rcu(&proxy->profile);
574
0ff3d97f
ME
575 if (profile->rawdata->abi)
576 seq_printf(seq, "v%d\n", profile->rawdata->abi);
577
5ac8c355
JJ
578 aa_put_profile(profile);
579
580 return 0;
581}
582
583static int aa_fs_seq_raw_abi_open(struct inode *inode, struct file *file)
584{
585 return aa_fs_seq_profile_open(inode, file, aa_fs_seq_raw_abi_show);
586}
587
588static const struct file_operations aa_fs_seq_raw_abi_fops = {
589 .owner = THIS_MODULE,
590 .open = aa_fs_seq_raw_abi_open,
591 .read = seq_read,
592 .llseek = seq_lseek,
593 .release = aa_fs_seq_profile_release,
594};
595
596static int aa_fs_seq_raw_hash_show(struct seq_file *seq, void *v)
597{
598 struct aa_proxy *proxy = seq->private;
599 struct aa_profile *profile = aa_get_profile_rcu(&proxy->profile);
600 unsigned int i, size = aa_hash_size();
601
602 if (profile->rawdata->hash) {
603 for (i = 0; i < size; i++)
604 seq_printf(seq, "%.2x", profile->rawdata->hash[i]);
47dbd1cd 605 seq_putc(seq, '\n');
5ac8c355
JJ
606 }
607 aa_put_profile(profile);
608
609 return 0;
610}
611
612static int aa_fs_seq_raw_hash_open(struct inode *inode, struct file *file)
613{
614 return aa_fs_seq_profile_open(inode, file, aa_fs_seq_raw_hash_show);
615}
616
617static const struct file_operations aa_fs_seq_raw_hash_fops = {
618 .owner = THIS_MODULE,
619 .open = aa_fs_seq_raw_hash_open,
620 .read = seq_read,
621 .llseek = seq_lseek,
622 .release = aa_fs_seq_profile_release,
623};
624
625static ssize_t rawdata_read(struct file *file, char __user *buf, size_t size,
626 loff_t *ppos)
627{
628 struct aa_loaddata *rawdata = file->private_data;
629
630 return simple_read_from_buffer(buf, size, ppos, rawdata->data,
631 rawdata->size);
632}
633
634static int rawdata_open(struct inode *inode, struct file *file)
635{
636 struct aa_proxy *proxy = inode->i_private;
637 struct aa_profile *profile;
638
639 if (!policy_view_capable(NULL))
640 return -EACCES;
641 profile = aa_get_profile_rcu(&proxy->profile);
642 file->private_data = aa_get_loaddata(profile->rawdata);
643 aa_put_profile(profile);
644
645 return 0;
646}
647
648static const struct file_operations aa_fs_rawdata_fops = {
649 .open = rawdata_open,
650 .read = rawdata_read,
651 .llseek = generic_file_llseek,
652 .release = rawdata_release,
653};
654
0d259f04
JJ
655/** fns to setup dynamic per profile/namespace files **/
656void __aa_fs_profile_rmdir(struct aa_profile *profile)
657{
658 struct aa_profile *child;
659 int i;
660
661 if (!profile)
662 return;
663
664 list_for_each_entry(child, &profile->base.profiles, base.list)
665 __aa_fs_profile_rmdir(child);
666
667 for (i = AAFS_PROF_SIZEOF - 1; i >= 0; --i) {
8399588a 668 struct aa_proxy *proxy;
0d259f04
JJ
669 if (!profile->dents[i])
670 continue;
671
8399588a 672 proxy = d_inode(profile->dents[i])->i_private;
0d259f04 673 securityfs_remove(profile->dents[i]);
8399588a 674 aa_put_proxy(proxy);
0d259f04
JJ
675 profile->dents[i] = NULL;
676 }
677}
678
679void __aa_fs_profile_migrate_dents(struct aa_profile *old,
680 struct aa_profile *new)
681{
682 int i;
683
684 for (i = 0; i < AAFS_PROF_SIZEOF; i++) {
685 new->dents[i] = old->dents[i];
d671e890 686 if (new->dents[i])
078cd827 687 new->dents[i]->d_inode->i_mtime = current_time(new->dents[i]->d_inode);
0d259f04
JJ
688 old->dents[i] = NULL;
689 }
690}
691
692static struct dentry *create_profile_file(struct dentry *dir, const char *name,
693 struct aa_profile *profile,
694 const struct file_operations *fops)
695{
8399588a 696 struct aa_proxy *proxy = aa_get_proxy(profile->proxy);
0d259f04
JJ
697 struct dentry *dent;
698
8399588a 699 dent = securityfs_create_file(name, S_IFREG | 0444, dir, proxy, fops);
0d259f04 700 if (IS_ERR(dent))
8399588a 701 aa_put_proxy(proxy);
0d259f04
JJ
702
703 return dent;
704}
705
706/* requires lock be held */
707int __aa_fs_profile_mkdir(struct aa_profile *profile, struct dentry *parent)
708{
709 struct aa_profile *child;
710 struct dentry *dent = NULL, *dir;
711 int error;
712
713 if (!parent) {
714 struct aa_profile *p;
715 p = aa_deref_parent(profile);
716 dent = prof_dir(p);
717 /* adding to parent that previously didn't have children */
718 dent = securityfs_create_dir("profiles", dent);
719 if (IS_ERR(dent))
720 goto fail;
721 prof_child_dir(p) = parent = dent;
722 }
723
724 if (!profile->dirname) {
725 int len, id_len;
726 len = mangle_name(profile->base.name, NULL);
727 id_len = snprintf(NULL, 0, ".%ld", profile->ns->uniq_id);
728
729 profile->dirname = kmalloc(len + id_len + 1, GFP_KERNEL);
ffac1de6
DC
730 if (!profile->dirname) {
731 error = -ENOMEM;
732 goto fail2;
733 }
0d259f04
JJ
734
735 mangle_name(profile->base.name, profile->dirname);
736 sprintf(profile->dirname + len, ".%ld", profile->ns->uniq_id++);
737 }
738
739 dent = securityfs_create_dir(profile->dirname, parent);
740 if (IS_ERR(dent))
741 goto fail;
742 prof_dir(profile) = dir = dent;
743
744 dent = create_profile_file(dir, "name", profile, &aa_fs_profname_fops);
745 if (IS_ERR(dent))
746 goto fail;
747 profile->dents[AAFS_PROF_NAME] = dent;
748
749 dent = create_profile_file(dir, "mode", profile, &aa_fs_profmode_fops);
750 if (IS_ERR(dent))
751 goto fail;
752 profile->dents[AAFS_PROF_MODE] = dent;
753
556d0be7
JJ
754 dent = create_profile_file(dir, "attach", profile,
755 &aa_fs_profattach_fops);
756 if (IS_ERR(dent))
757 goto fail;
758 profile->dents[AAFS_PROF_ATTACH] = dent;
759
f8eb8a13
JJ
760 if (profile->hash) {
761 dent = create_profile_file(dir, "sha1", profile,
762 &aa_fs_seq_hash_fops);
763 if (IS_ERR(dent))
764 goto fail;
765 profile->dents[AAFS_PROF_HASH] = dent;
766 }
767
5ac8c355
JJ
768 if (profile->rawdata) {
769 dent = create_profile_file(dir, "raw_sha1", profile,
770 &aa_fs_seq_raw_hash_fops);
771 if (IS_ERR(dent))
772 goto fail;
773 profile->dents[AAFS_PROF_RAW_HASH] = dent;
774
775 dent = create_profile_file(dir, "raw_abi", profile,
776 &aa_fs_seq_raw_abi_fops);
777 if (IS_ERR(dent))
778 goto fail;
779 profile->dents[AAFS_PROF_RAW_ABI] = dent;
780
781 dent = securityfs_create_file("raw_data", S_IFREG | 0444, dir,
782 profile->proxy,
783 &aa_fs_rawdata_fops);
784 if (IS_ERR(dent))
785 goto fail;
786 profile->dents[AAFS_PROF_RAW_DATA] = dent;
787 d_inode(dent)->i_size = profile->rawdata->size;
788 aa_get_proxy(profile->proxy);
789 }
790
0d259f04
JJ
791 list_for_each_entry(child, &profile->base.profiles, base.list) {
792 error = __aa_fs_profile_mkdir(child, prof_child_dir(profile));
793 if (error)
794 goto fail2;
795 }
796
797 return 0;
798
799fail:
800 error = PTR_ERR(dent);
801
802fail2:
803 __aa_fs_profile_rmdir(profile);
804
805 return error;
806}
807
98849dff 808void __aa_fs_ns_rmdir(struct aa_ns *ns)
0d259f04 809{
98849dff 810 struct aa_ns *sub;
0d259f04
JJ
811 struct aa_profile *child;
812 int i;
813
814 if (!ns)
815 return;
816
817 list_for_each_entry(child, &ns->base.profiles, base.list)
818 __aa_fs_profile_rmdir(child);
819
820 list_for_each_entry(sub, &ns->sub_ns, base.list) {
821 mutex_lock(&sub->lock);
98849dff 822 __aa_fs_ns_rmdir(sub);
0d259f04
JJ
823 mutex_unlock(&sub->lock);
824 }
825
b7fd2c03
JJ
826 if (ns_subns_dir(ns)) {
827 sub = d_inode(ns_subns_dir(ns))->i_private;
828 aa_put_ns(sub);
829 }
830 if (ns_subload(ns)) {
831 sub = d_inode(ns_subload(ns))->i_private;
832 aa_put_ns(sub);
833 }
834 if (ns_subreplace(ns)) {
835 sub = d_inode(ns_subreplace(ns))->i_private;
836 aa_put_ns(sub);
837 }
838 if (ns_subremove(ns)) {
839 sub = d_inode(ns_subremove(ns))->i_private;
840 aa_put_ns(sub);
841 }
842
0d259f04
JJ
843 for (i = AAFS_NS_SIZEOF - 1; i >= 0; --i) {
844 securityfs_remove(ns->dents[i]);
845 ns->dents[i] = NULL;
846 }
847}
848
b7fd2c03
JJ
849/* assumes cleanup in caller */
850static int __aa_fs_ns_mkdir_entries(struct aa_ns *ns, struct dentry *dir)
851{
852 struct dentry *dent;
853
854 AA_BUG(!ns);
855 AA_BUG(!dir);
856
857 dent = securityfs_create_dir("profiles", dir);
858 if (IS_ERR(dent))
859 return PTR_ERR(dent);
860 ns_subprofs_dir(ns) = dent;
861
862 dent = securityfs_create_dir("raw_data", dir);
863 if (IS_ERR(dent))
864 return PTR_ERR(dent);
865 ns_subdata_dir(ns) = dent;
866
867 dent = securityfs_create_file(".load", 0640, dir, ns,
868 &aa_fs_profile_load);
869 if (IS_ERR(dent))
870 return PTR_ERR(dent);
871 aa_get_ns(ns);
872 ns_subload(ns) = dent;
873
874 dent = securityfs_create_file(".replace", 0640, dir, ns,
875 &aa_fs_profile_replace);
876 if (IS_ERR(dent))
877 return PTR_ERR(dent);
878 aa_get_ns(ns);
879 ns_subreplace(ns) = dent;
880
881 dent = securityfs_create_file(".remove", 0640, dir, ns,
882 &aa_fs_profile_remove);
883 if (IS_ERR(dent))
884 return PTR_ERR(dent);
885 aa_get_ns(ns);
886 ns_subremove(ns) = dent;
887
888 dent = securityfs_create_dir("namespaces", dir);
889 if (IS_ERR(dent))
890 return PTR_ERR(dent);
891 aa_get_ns(ns);
892 ns_subns_dir(ns) = dent;
893
894 return 0;
895}
896
98849dff 897int __aa_fs_ns_mkdir(struct aa_ns *ns, struct dentry *parent, const char *name)
0d259f04 898{
98849dff 899 struct aa_ns *sub;
0d259f04
JJ
900 struct aa_profile *child;
901 struct dentry *dent, *dir;
902 int error;
903
b7fd2c03
JJ
904 AA_BUG(!ns);
905 AA_BUG(!parent);
906 AA_BUG(!mutex_is_locked(&ns->lock));
907
0d259f04
JJ
908 if (!name)
909 name = ns->base.name;
910
b7fd2c03 911 /* create ns dir if it doesn't already exist */
0d259f04
JJ
912 dent = securityfs_create_dir(name, parent);
913 if (IS_ERR(dent))
914 goto fail;
63e2b423 915
b7fd2c03
JJ
916 ns_dir(ns) = dir = dent;
917 error = __aa_fs_ns_mkdir_entries(ns, dir);
918 if (error)
919 goto fail2;
0d259f04 920
b7fd2c03 921 /* profiles */
0d259f04
JJ
922 list_for_each_entry(child, &ns->base.profiles, base.list) {
923 error = __aa_fs_profile_mkdir(child, ns_subprofs_dir(ns));
924 if (error)
925 goto fail2;
926 }
927
b7fd2c03 928 /* subnamespaces */
0d259f04
JJ
929 list_for_each_entry(sub, &ns->sub_ns, base.list) {
930 mutex_lock(&sub->lock);
98849dff 931 error = __aa_fs_ns_mkdir(sub, ns_subns_dir(ns), NULL);
0d259f04
JJ
932 mutex_unlock(&sub->lock);
933 if (error)
934 goto fail2;
935 }
936
937 return 0;
938
939fail:
940 error = PTR_ERR(dent);
941
942fail2:
98849dff 943 __aa_fs_ns_rmdir(ns);
0d259f04
JJ
944
945 return error;
946}
947
948
29b3822f
JJ
949#define list_entry_is_head(pos, head, member) (&pos->member == (head))
950
951/**
98849dff 952 * __next_ns - find the next namespace to list
29b3822f
JJ
953 * @root: root namespace to stop search at (NOT NULL)
954 * @ns: current ns position (NOT NULL)
955 *
956 * Find the next namespace from @ns under @root and handle all locking needed
957 * while switching current namespace.
958 *
959 * Returns: next namespace or NULL if at last namespace under @root
960 * Requires: ns->parent->lock to be held
961 * NOTE: will not unlock root->lock
962 */
98849dff 963static struct aa_ns *__next_ns(struct aa_ns *root, struct aa_ns *ns)
29b3822f 964{
98849dff 965 struct aa_ns *parent, *next;
29b3822f
JJ
966
967 /* is next namespace a child */
968 if (!list_empty(&ns->sub_ns)) {
969 next = list_first_entry(&ns->sub_ns, typeof(*ns), base.list);
970 mutex_lock(&next->lock);
971 return next;
972 }
973
974 /* check if the next ns is a sibling, parent, gp, .. */
975 parent = ns->parent;
ed2c7da3 976 while (ns != root) {
29b3822f 977 mutex_unlock(&ns->lock);
38dbd7d8 978 next = list_next_entry(ns, base.list);
29b3822f
JJ
979 if (!list_entry_is_head(next, &parent->sub_ns, base.list)) {
980 mutex_lock(&next->lock);
981 return next;
982 }
29b3822f
JJ
983 ns = parent;
984 parent = parent->parent;
985 }
986
987 return NULL;
988}
989
990/**
991 * __first_profile - find the first profile in a namespace
992 * @root: namespace that is root of profiles being displayed (NOT NULL)
993 * @ns: namespace to start in (NOT NULL)
994 *
995 * Returns: unrefcounted profile or NULL if no profile
996 * Requires: profile->ns.lock to be held
997 */
98849dff
JJ
998static struct aa_profile *__first_profile(struct aa_ns *root,
999 struct aa_ns *ns)
29b3822f 1000{
98849dff 1001 for (; ns; ns = __next_ns(root, ns)) {
29b3822f
JJ
1002 if (!list_empty(&ns->base.profiles))
1003 return list_first_entry(&ns->base.profiles,
1004 struct aa_profile, base.list);
1005 }
1006 return NULL;
1007}
1008
1009/**
1010 * __next_profile - step to the next profile in a profile tree
1011 * @profile: current profile in tree (NOT NULL)
1012 *
1013 * Perform a depth first traversal on the profile tree in a namespace
1014 *
1015 * Returns: next profile or NULL if done
1016 * Requires: profile->ns.lock to be held
1017 */
1018static struct aa_profile *__next_profile(struct aa_profile *p)
1019{
1020 struct aa_profile *parent;
98849dff 1021 struct aa_ns *ns = p->ns;
29b3822f
JJ
1022
1023 /* is next profile a child */
1024 if (!list_empty(&p->base.profiles))
1025 return list_first_entry(&p->base.profiles, typeof(*p),
1026 base.list);
1027
1028 /* is next profile a sibling, parent sibling, gp, sibling, .. */
1029 parent = rcu_dereference_protected(p->parent,
1030 mutex_is_locked(&p->ns->lock));
1031 while (parent) {
38dbd7d8 1032 p = list_next_entry(p, base.list);
29b3822f
JJ
1033 if (!list_entry_is_head(p, &parent->base.profiles, base.list))
1034 return p;
1035 p = parent;
1036 parent = rcu_dereference_protected(parent->parent,
1037 mutex_is_locked(&parent->ns->lock));
1038 }
1039
1040 /* is next another profile in the namespace */
38dbd7d8 1041 p = list_next_entry(p, base.list);
29b3822f
JJ
1042 if (!list_entry_is_head(p, &ns->base.profiles, base.list))
1043 return p;
1044
1045 return NULL;
1046}
1047
1048/**
1049 * next_profile - step to the next profile in where ever it may be
1050 * @root: root namespace (NOT NULL)
1051 * @profile: current profile (NOT NULL)
1052 *
1053 * Returns: next profile or NULL if there isn't one
1054 */
98849dff 1055static struct aa_profile *next_profile(struct aa_ns *root,
29b3822f
JJ
1056 struct aa_profile *profile)
1057{
1058 struct aa_profile *next = __next_profile(profile);
1059 if (next)
1060 return next;
1061
1062 /* finished all profiles in namespace move to next namespace */
98849dff 1063 return __first_profile(root, __next_ns(root, profile->ns));
29b3822f
JJ
1064}
1065
1066/**
1067 * p_start - start a depth first traversal of profile tree
1068 * @f: seq_file to fill
1069 * @pos: current position
1070 *
1071 * Returns: first profile under current namespace or NULL if none found
1072 *
1073 * acquires first ns->lock
1074 */
1075static void *p_start(struct seq_file *f, loff_t *pos)
1076{
1077 struct aa_profile *profile = NULL;
98849dff 1078 struct aa_ns *root = aa_current_profile()->ns;
29b3822f 1079 loff_t l = *pos;
98849dff 1080 f->private = aa_get_ns(root);
29b3822f
JJ
1081
1082
1083 /* find the first profile */
1084 mutex_lock(&root->lock);
1085 profile = __first_profile(root, root);
1086
1087 /* skip to position */
1088 for (; profile && l > 0; l--)
1089 profile = next_profile(root, profile);
1090
1091 return profile;
1092}
1093
1094/**
1095 * p_next - read the next profile entry
1096 * @f: seq_file to fill
1097 * @p: profile previously returned
1098 * @pos: current position
1099 *
1100 * Returns: next profile after @p or NULL if none
1101 *
1102 * may acquire/release locks in namespace tree as necessary
1103 */
1104static void *p_next(struct seq_file *f, void *p, loff_t *pos)
1105{
1106 struct aa_profile *profile = p;
98849dff 1107 struct aa_ns *ns = f->private;
29b3822f
JJ
1108 (*pos)++;
1109
1110 return next_profile(ns, profile);
1111}
1112
1113/**
1114 * p_stop - stop depth first traversal
1115 * @f: seq_file we are filling
1116 * @p: the last profile writen
1117 *
1118 * Release all locking done by p_start/p_next on namespace tree
1119 */
1120static void p_stop(struct seq_file *f, void *p)
1121{
1122 struct aa_profile *profile = p;
98849dff 1123 struct aa_ns *root = f->private, *ns;
29b3822f
JJ
1124
1125 if (profile) {
1126 for (ns = profile->ns; ns && ns != root; ns = ns->parent)
1127 mutex_unlock(&ns->lock);
1128 }
1129 mutex_unlock(&root->lock);
98849dff 1130 aa_put_ns(root);
29b3822f
JJ
1131}
1132
1133/**
1134 * seq_show_profile - show a profile entry
1135 * @f: seq_file to file
1136 * @p: current position (profile) (NOT NULL)
1137 *
1138 * Returns: error on failure
1139 */
1140static int seq_show_profile(struct seq_file *f, void *p)
1141{
1142 struct aa_profile *profile = (struct aa_profile *)p;
98849dff 1143 struct aa_ns *root = f->private;
29b3822f
JJ
1144
1145 if (profile->ns != root)
92b6d8ef 1146 seq_printf(f, ":%s://", aa_ns_name(root, profile->ns, true));
29b3822f
JJ
1147 seq_printf(f, "%s (%s)\n", profile->base.hname,
1148 aa_profile_mode_names[profile->mode]);
1149
1150 return 0;
1151}
1152
1153static const struct seq_operations aa_fs_profiles_op = {
1154 .start = p_start,
1155 .next = p_next,
1156 .stop = p_stop,
1157 .show = seq_show_profile,
1158};
1159
1160static int profiles_open(struct inode *inode, struct file *file)
1161{
5ac8c355
JJ
1162 if (!policy_view_capable(NULL))
1163 return -EACCES;
1164
29b3822f
JJ
1165 return seq_open(file, &aa_fs_profiles_op);
1166}
1167
1168static int profiles_release(struct inode *inode, struct file *file)
1169{
1170 return seq_release(inode, file);
1171}
1172
1173static const struct file_operations aa_fs_profiles_fops = {
1174 .open = profiles_open,
1175 .read = seq_read,
1176 .llseek = seq_lseek,
1177 .release = profiles_release,
1178};
1179
1180
0d259f04 1181/** Base file system setup **/
a9bf8e9f
KC
1182static struct aa_fs_entry aa_fs_entry_file[] = {
1183 AA_FS_FILE_STRING("mask", "create read write exec append mmap_exec " \
1184 "link lock"),
1185 { }
1186};
1187
e74abcf3
KC
1188static struct aa_fs_entry aa_fs_entry_domain[] = {
1189 AA_FS_FILE_BOOLEAN("change_hat", 1),
1190 AA_FS_FILE_BOOLEAN("change_hatv", 1),
1191 AA_FS_FILE_BOOLEAN("change_onexec", 1),
1192 AA_FS_FILE_BOOLEAN("change_profile", 1),
34c426ac 1193 AA_FS_FILE_BOOLEAN("fix_binfmt_elf_mmap", 1),
aa9a39ad 1194 AA_FS_FILE_STRING("version", "1.2"),
e74abcf3
KC
1195 { }
1196};
1197
474d6b75
JJ
1198static struct aa_fs_entry aa_fs_entry_versions[] = {
1199 AA_FS_FILE_BOOLEAN("v5", 1),
1200 { }
1201};
1202
9d910a3b 1203static struct aa_fs_entry aa_fs_entry_policy[] = {
474d6b75
JJ
1204 AA_FS_DIR("versions", aa_fs_entry_versions),
1205 AA_FS_FILE_BOOLEAN("set_load", 1),
1206 { }
9d910a3b
JJ
1207};
1208
e74abcf3 1209static struct aa_fs_entry aa_fs_entry_features[] = {
9d910a3b 1210 AA_FS_DIR("policy", aa_fs_entry_policy),
e74abcf3 1211 AA_FS_DIR("domain", aa_fs_entry_domain),
a9bf8e9f 1212 AA_FS_DIR("file", aa_fs_entry_file),
e74abcf3 1213 AA_FS_FILE_U64("capability", VFS_CAP_FLAGS_MASK),
d384b0a1 1214 AA_FS_DIR("rlimit", aa_fs_entry_rlimit),
84f1f787 1215 AA_FS_DIR("caps", aa_fs_entry_caps),
e74abcf3
KC
1216 { }
1217};
1218
9acd494b 1219static struct aa_fs_entry aa_fs_entry_apparmor[] = {
e025be0f 1220 AA_FS_FILE_FOPS(".access", 0640, &aa_fs_access),
a71ada30 1221 AA_FS_FILE_FOPS(".ns_level", 0666, &aa_fs_ns_level),
3e3e5695 1222 AA_FS_FILE_FOPS(".ns_name", 0640, &aa_fs_ns_name),
b7fd2c03 1223 AA_FS_FILE_FOPS("profiles", 0440, &aa_fs_profiles_fops),
e74abcf3 1224 AA_FS_DIR("features", aa_fs_entry_features),
9acd494b
KC
1225 { }
1226};
63e2b423 1227
9acd494b
KC
1228static struct aa_fs_entry aa_fs_entry =
1229 AA_FS_DIR("apparmor", aa_fs_entry_apparmor);
63e2b423 1230
9acd494b
KC
1231/**
1232 * aafs_create_file - create a file entry in the apparmor securityfs
1233 * @fs_file: aa_fs_entry to build an entry for (NOT NULL)
1234 * @parent: the parent dentry in the securityfs
1235 *
1236 * Use aafs_remove_file to remove entries created with this fn.
1237 */
1238static int __init aafs_create_file(struct aa_fs_entry *fs_file,
1239 struct dentry *parent)
1240{
1241 int error = 0;
1242
1243 fs_file->dentry = securityfs_create_file(fs_file->name,
1244 S_IFREG | fs_file->mode,
1245 parent, fs_file,
1246 fs_file->file_ops);
1247 if (IS_ERR(fs_file->dentry)) {
1248 error = PTR_ERR(fs_file->dentry);
1249 fs_file->dentry = NULL;
63e2b423 1250 }
9acd494b 1251 return error;
63e2b423
JJ
1252}
1253
0d259f04 1254static void __init aafs_remove_dir(struct aa_fs_entry *fs_dir);
63e2b423 1255/**
9acd494b
KC
1256 * aafs_create_dir - recursively create a directory entry in the securityfs
1257 * @fs_dir: aa_fs_entry (and all child entries) to build (NOT NULL)
1258 * @parent: the parent dentry in the securityfs
63e2b423 1259 *
9acd494b 1260 * Use aafs_remove_dir to remove entries created with this fn.
63e2b423 1261 */
9acd494b
KC
1262static int __init aafs_create_dir(struct aa_fs_entry *fs_dir,
1263 struct dentry *parent)
63e2b423 1264{
9acd494b 1265 struct aa_fs_entry *fs_file;
0d259f04
JJ
1266 struct dentry *dir;
1267 int error;
63e2b423 1268
0d259f04
JJ
1269 dir = securityfs_create_dir(fs_dir->name, parent);
1270 if (IS_ERR(dir))
1271 return PTR_ERR(dir);
1272 fs_dir->dentry = dir;
63e2b423 1273
0d259f04 1274 for (fs_file = fs_dir->v.files; fs_file && fs_file->name; ++fs_file) {
9acd494b
KC
1275 if (fs_file->v_type == AA_FS_TYPE_DIR)
1276 error = aafs_create_dir(fs_file, fs_dir->dentry);
1277 else
1278 error = aafs_create_file(fs_file, fs_dir->dentry);
1279 if (error)
1280 goto failed;
1281 }
1282
1283 return 0;
1284
1285failed:
0d259f04
JJ
1286 aafs_remove_dir(fs_dir);
1287
9acd494b
KC
1288 return error;
1289}
1290
1291/**
1292 * aafs_remove_file - drop a single file entry in the apparmor securityfs
1293 * @fs_file: aa_fs_entry to detach from the securityfs (NOT NULL)
1294 */
1295static void __init aafs_remove_file(struct aa_fs_entry *fs_file)
1296{
1297 if (!fs_file->dentry)
1298 return;
1299
1300 securityfs_remove(fs_file->dentry);
1301 fs_file->dentry = NULL;
1302}
1303
1304/**
1305 * aafs_remove_dir - recursively drop a directory entry from the securityfs
1306 * @fs_dir: aa_fs_entry (and all child entries) to detach (NOT NULL)
1307 */
1308static void __init aafs_remove_dir(struct aa_fs_entry *fs_dir)
1309{
1310 struct aa_fs_entry *fs_file;
1311
0d259f04 1312 for (fs_file = fs_dir->v.files; fs_file && fs_file->name; ++fs_file) {
9acd494b
KC
1313 if (fs_file->v_type == AA_FS_TYPE_DIR)
1314 aafs_remove_dir(fs_file);
1315 else
1316 aafs_remove_file(fs_file);
1317 }
1318
1319 aafs_remove_file(fs_dir);
63e2b423
JJ
1320}
1321
1322/**
1323 * aa_destroy_aafs - cleanup and free aafs
1324 *
1325 * releases dentries allocated by aa_create_aafs
1326 */
1327void __init aa_destroy_aafs(void)
1328{
9acd494b 1329 aafs_remove_dir(&aa_fs_entry);
63e2b423
JJ
1330}
1331
a71ada30
JJ
1332
1333#define NULL_FILE_NAME ".null"
1334struct path aa_null;
1335
1336static int aa_mk_null_file(struct dentry *parent)
1337{
1338 struct vfsmount *mount = NULL;
1339 struct dentry *dentry;
1340 struct inode *inode;
1341 int count = 0;
1342 int error = simple_pin_fs(parent->d_sb->s_type, &mount, &count);
1343
1344 if (error)
1345 return error;
1346
1347 inode_lock(d_inode(parent));
1348 dentry = lookup_one_len(NULL_FILE_NAME, parent, strlen(NULL_FILE_NAME));
1349 if (IS_ERR(dentry)) {
1350 error = PTR_ERR(dentry);
1351 goto out;
1352 }
1353 inode = new_inode(parent->d_inode->i_sb);
1354 if (!inode) {
1355 error = -ENOMEM;
1356 goto out1;
1357 }
1358
1359 inode->i_ino = get_next_ino();
1360 inode->i_mode = S_IFCHR | S_IRUGO | S_IWUGO;
24d0d03c 1361 inode->i_atime = inode->i_mtime = inode->i_ctime = current_time(inode);
a71ada30
JJ
1362 init_special_inode(inode, S_IFCHR | S_IRUGO | S_IWUGO,
1363 MKDEV(MEM_MAJOR, 3));
1364 d_instantiate(dentry, inode);
1365 aa_null.dentry = dget(dentry);
1366 aa_null.mnt = mntget(mount);
1367
1368 error = 0;
1369
1370out1:
1371 dput(dentry);
1372out:
1373 inode_unlock(d_inode(parent));
1374 simple_release_fs(&mount, &count);
1375 return error;
1376}
1377
63e2b423
JJ
1378/**
1379 * aa_create_aafs - create the apparmor security filesystem
1380 *
1381 * dentries created here are released by aa_destroy_aafs
1382 *
1383 * Returns: error on failure
1384 */
3417d8d5 1385static int __init aa_create_aafs(void)
63e2b423 1386{
b7fd2c03 1387 struct dentry *dent;
63e2b423
JJ
1388 int error;
1389
1390 if (!apparmor_initialized)
1391 return 0;
1392
9acd494b 1393 if (aa_fs_entry.dentry) {
63e2b423
JJ
1394 AA_ERROR("%s: AppArmor securityfs already exists\n", __func__);
1395 return -EEXIST;
1396 }
1397
9acd494b
KC
1398 /* Populate fs tree. */
1399 error = aafs_create_dir(&aa_fs_entry, NULL);
63e2b423
JJ
1400 if (error)
1401 goto error;
1402
b7fd2c03
JJ
1403 dent = securityfs_create_file(".load", 0666, aa_fs_entry.dentry,
1404 NULL, &aa_fs_profile_load);
1405 if (IS_ERR(dent)) {
1406 error = PTR_ERR(dent);
1407 goto error;
1408 }
1409 ns_subload(root_ns) = dent;
1410
1411 dent = securityfs_create_file(".replace", 0666, aa_fs_entry.dentry,
1412 NULL, &aa_fs_profile_replace);
1413 if (IS_ERR(dent)) {
1414 error = PTR_ERR(dent);
1415 goto error;
1416 }
1417 ns_subreplace(root_ns) = dent;
1418
1419 dent = securityfs_create_file(".remove", 0666, aa_fs_entry.dentry,
1420 NULL, &aa_fs_profile_remove);
1421 if (IS_ERR(dent)) {
1422 error = PTR_ERR(dent);
1423 goto error;
1424 }
1425 ns_subremove(root_ns) = dent;
1426
1427 mutex_lock(&root_ns->lock);
98849dff 1428 error = __aa_fs_ns_mkdir(root_ns, aa_fs_entry.dentry, "policy");
b7fd2c03
JJ
1429 mutex_unlock(&root_ns->lock);
1430
0d259f04
JJ
1431 if (error)
1432 goto error;
1433
a71ada30
JJ
1434 error = aa_mk_null_file(aa_fs_entry.dentry);
1435 if (error)
1436 goto error;
1437
1438 /* TODO: add default profile to apparmorfs */
63e2b423
JJ
1439
1440 /* Report that AppArmor fs is enabled */
1441 aa_info_message("AppArmor Filesystem Enabled");
1442 return 0;
1443
1444error:
1445 aa_destroy_aafs();
1446 AA_ERROR("Error creating AppArmor securityfs\n");
1447 return error;
1448}
1449
1450fs_initcall(aa_create_aafs);