blob: 84666114e9f517d06ef72429e43b1d7e9806987b [file] [log] [blame]
John Johansenb5e95b42010-07-29 14:48:07 -07001/*
2 * AppArmor security module
3 *
4 * This file contains AppArmor LSM hooks.
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
Casey Schaufler3c4ed7b2015-05-02 15:10:46 -070015#include <linux/lsm_hooks.h>
John Johansenb5e95b42010-07-29 14:48:07 -070016#include <linux/moduleparam.h>
17#include <linux/mm.h>
18#include <linux/mman.h>
19#include <linux/mount.h>
20#include <linux/namei.h>
21#include <linux/ptrace.h>
22#include <linux/ctype.h>
23#include <linux/sysctl.h>
24#include <linux/audit.h>
Serge E. Hallyn34867402011-03-23 16:43:17 -070025#include <linux/user_namespace.h>
John Johansenb5e95b42010-07-29 14:48:07 -070026#include <net/sock.h>
27
28#include "include/apparmor.h"
29#include "include/apparmorfs.h"
30#include "include/audit.h"
31#include "include/capability.h"
32#include "include/context.h"
33#include "include/file.h"
34#include "include/ipc.h"
35#include "include/path.h"
36#include "include/policy.h"
John Johansencff281f2017-01-16 00:42:15 -080037#include "include/policy_ns.h"
John Johansenb5e95b42010-07-29 14:48:07 -070038#include "include/procattr.h"
39
40/* Flag indicating whether initialization completed */
41int apparmor_initialized __initdata;
42
43/*
44 * LSM hook functions
45 */
46
47/*
John Johansen55a26eb2017-01-16 00:43:00 -080048 * free the associated aa_task_ctx and put its profiles
John Johansenb5e95b42010-07-29 14:48:07 -070049 */
50static void apparmor_cred_free(struct cred *cred)
51{
John Johansen55a26eb2017-01-16 00:43:00 -080052 aa_free_task_context(cred_ctx(cred));
53 cred_ctx(cred) = NULL;
John Johansenb5e95b42010-07-29 14:48:07 -070054}
55
56/*
57 * allocate the apparmor part of blank credentials
58 */
59static int apparmor_cred_alloc_blank(struct cred *cred, gfp_t gfp)
60{
61 /* freed by apparmor_cred_free */
John Johansen55a26eb2017-01-16 00:43:00 -080062 struct aa_task_ctx *ctx = aa_alloc_task_context(gfp);
63
64 if (!ctx)
John Johansenb5e95b42010-07-29 14:48:07 -070065 return -ENOMEM;
66
John Johansen55a26eb2017-01-16 00:43:00 -080067 cred_ctx(cred) = ctx;
John Johansenb5e95b42010-07-29 14:48:07 -070068 return 0;
69}
70
71/*
John Johansen55a26eb2017-01-16 00:43:00 -080072 * prepare new aa_task_ctx for modification by prepare_cred block
John Johansenb5e95b42010-07-29 14:48:07 -070073 */
74static int apparmor_cred_prepare(struct cred *new, const struct cred *old,
75 gfp_t gfp)
76{
77 /* freed by apparmor_cred_free */
John Johansen55a26eb2017-01-16 00:43:00 -080078 struct aa_task_ctx *ctx = aa_alloc_task_context(gfp);
79
80 if (!ctx)
John Johansenb5e95b42010-07-29 14:48:07 -070081 return -ENOMEM;
82
John Johansen55a26eb2017-01-16 00:43:00 -080083 aa_dup_task_context(ctx, cred_ctx(old));
84 cred_ctx(new) = ctx;
John Johansenb5e95b42010-07-29 14:48:07 -070085 return 0;
86}
87
88/*
89 * transfer the apparmor data to a blank set of creds
90 */
91static void apparmor_cred_transfer(struct cred *new, const struct cred *old)
92{
John Johansen55a26eb2017-01-16 00:43:00 -080093 const struct aa_task_ctx *old_ctx = cred_ctx(old);
94 struct aa_task_ctx *new_ctx = cred_ctx(new);
John Johansenb5e95b42010-07-29 14:48:07 -070095
John Johansen55a26eb2017-01-16 00:43:00 -080096 aa_dup_task_context(new_ctx, old_ctx);
John Johansenb5e95b42010-07-29 14:48:07 -070097}
98
99static int apparmor_ptrace_access_check(struct task_struct *child,
100 unsigned int mode)
101{
John Johansenb5e95b42010-07-29 14:48:07 -0700102 return aa_ptrace(current, child, mode);
103}
104
105static int apparmor_ptrace_traceme(struct task_struct *parent)
106{
John Johansenb5e95b42010-07-29 14:48:07 -0700107 return aa_ptrace(parent, current, PTRACE_MODE_ATTACH);
108}
109
110/* Derived from security/commoncap.c:cap_capget */
111static int apparmor_capget(struct task_struct *target, kernel_cap_t *effective,
112 kernel_cap_t *inheritable, kernel_cap_t *permitted)
113{
114 struct aa_profile *profile;
115 const struct cred *cred;
116
117 rcu_read_lock();
118 cred = __task_cred(target);
119 profile = aa_cred_profile(cred);
120
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -0700121 /*
122 * cap_capget is stacked ahead of this and will
123 * initialize effective and permitted.
124 */
John Johansen25e75df2011-06-25 16:57:07 +0100125 if (!unconfined(profile) && !COMPLAIN_MODE(profile)) {
John Johansenb5e95b42010-07-29 14:48:07 -0700126 *effective = cap_intersect(*effective, profile->caps.allow);
127 *permitted = cap_intersect(*permitted, profile->caps.allow);
128 }
129 rcu_read_unlock();
130
131 return 0;
132}
133
Eric Paris6a9de492012-01-03 12:25:14 -0500134static int apparmor_capable(const struct cred *cred, struct user_namespace *ns,
135 int cap, int audit)
John Johansenb5e95b42010-07-29 14:48:07 -0700136{
137 struct aa_profile *profile;
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -0700138 int error = 0;
139
140 profile = aa_cred_profile(cred);
141 if (!unconfined(profile))
142 error = aa_capable(profile, cap, audit);
John Johansenb5e95b42010-07-29 14:48:07 -0700143 return error;
144}
145
146/**
147 * common_perm - basic common permission check wrapper fn for paths
148 * @op: operation being checked
149 * @path: path to check permission of (NOT NULL)
150 * @mask: requested permissions mask
151 * @cond: conditional info for the permission request (NOT NULL)
152 *
153 * Returns: %0 else error code if error or permission denied
154 */
Al Viro2c7661f2016-03-25 14:18:14 -0400155static int common_perm(int op, const struct path *path, u32 mask,
John Johansenb5e95b42010-07-29 14:48:07 -0700156 struct path_cond *cond)
157{
158 struct aa_profile *profile;
159 int error = 0;
160
161 profile = __aa_current_profile();
162 if (!unconfined(profile))
163 error = aa_path_perm(op, profile, path, 0, mask, cond);
164
165 return error;
166}
167
168/**
169 * common_perm_dir_dentry - common permission wrapper when path is dir, dentry
170 * @op: operation being checked
171 * @dir: directory of the dentry (NOT NULL)
172 * @dentry: dentry to check (NOT NULL)
173 * @mask: requested permissions mask
174 * @cond: conditional info for the permission request (NOT NULL)
175 *
176 * Returns: %0 else error code if error or permission denied
177 */
Al Virod6b49f72016-03-25 15:10:04 -0400178static int common_perm_dir_dentry(int op, const struct path *dir,
John Johansenb5e95b42010-07-29 14:48:07 -0700179 struct dentry *dentry, u32 mask,
180 struct path_cond *cond)
181{
Kees Cook8486adf2016-12-16 17:04:13 -0800182 struct path path = { .mnt = dir->mnt, .dentry = dentry };
John Johansenb5e95b42010-07-29 14:48:07 -0700183
184 return common_perm(op, &path, mask, cond);
185}
186
187/**
Al Viro741aca72016-03-25 15:04:36 -0400188 * common_perm_path - common permission wrapper when mnt, dentry
John Johansenb5e95b42010-07-29 14:48:07 -0700189 * @op: operation being checked
Al Viro741aca72016-03-25 15:04:36 -0400190 * @path: location to check (NOT NULL)
John Johansenb5e95b42010-07-29 14:48:07 -0700191 * @mask: requested permissions mask
192 *
193 * Returns: %0 else error code if error or permission denied
194 */
Al Viro741aca72016-03-25 15:04:36 -0400195static inline int common_perm_path(int op, const struct path *path, u32 mask)
John Johansenb5e95b42010-07-29 14:48:07 -0700196{
Al Viro741aca72016-03-25 15:04:36 -0400197 struct path_cond cond = { d_backing_inode(path->dentry)->i_uid,
198 d_backing_inode(path->dentry)->i_mode
John Johansenb5e95b42010-07-29 14:48:07 -0700199 };
John Johansenefeee832017-01-16 00:42:28 -0800200 if (!path_mediated_fs(path->dentry))
Al Viro741aca72016-03-25 15:04:36 -0400201 return 0;
John Johansenb5e95b42010-07-29 14:48:07 -0700202
Al Viro741aca72016-03-25 15:04:36 -0400203 return common_perm(op, path, mask, &cond);
John Johansenb5e95b42010-07-29 14:48:07 -0700204}
205
206/**
207 * common_perm_rm - common permission wrapper for operations doing rm
208 * @op: operation being checked
209 * @dir: directory that the dentry is in (NOT NULL)
210 * @dentry: dentry being rm'd (NOT NULL)
211 * @mask: requested permission mask
212 *
213 * Returns: %0 else error code if error or permission denied
214 */
Al Virod6b49f72016-03-25 15:10:04 -0400215static int common_perm_rm(int op, const struct path *dir,
John Johansenb5e95b42010-07-29 14:48:07 -0700216 struct dentry *dentry, u32 mask)
217{
David Howellsc6f493d2015-03-17 22:26:22 +0000218 struct inode *inode = d_backing_inode(dentry);
John Johansenb5e95b42010-07-29 14:48:07 -0700219 struct path_cond cond = { };
220
John Johansenefeee832017-01-16 00:42:28 -0800221 if (!inode || !path_mediated_fs(dentry))
John Johansenb5e95b42010-07-29 14:48:07 -0700222 return 0;
223
224 cond.uid = inode->i_uid;
225 cond.mode = inode->i_mode;
226
227 return common_perm_dir_dentry(op, dir, dentry, mask, &cond);
228}
229
230/**
231 * common_perm_create - common permission wrapper for operations doing create
232 * @op: operation being checked
233 * @dir: directory that dentry will be created in (NOT NULL)
234 * @dentry: dentry to create (NOT NULL)
235 * @mask: request permission mask
236 * @mode: created file mode
237 *
238 * Returns: %0 else error code if error or permission denied
239 */
Al Virod6b49f72016-03-25 15:10:04 -0400240static int common_perm_create(int op, const struct path *dir,
241 struct dentry *dentry, u32 mask, umode_t mode)
John Johansenb5e95b42010-07-29 14:48:07 -0700242{
243 struct path_cond cond = { current_fsuid(), mode };
244
John Johansenefeee832017-01-16 00:42:28 -0800245 if (!path_mediated_fs(dir->dentry))
John Johansenb5e95b42010-07-29 14:48:07 -0700246 return 0;
247
248 return common_perm_dir_dentry(op, dir, dentry, mask, &cond);
249}
250
Al Viro989f74e2016-03-25 15:13:39 -0400251static int apparmor_path_unlink(const struct path *dir, struct dentry *dentry)
John Johansenb5e95b42010-07-29 14:48:07 -0700252{
253 return common_perm_rm(OP_UNLINK, dir, dentry, AA_MAY_DELETE);
254}
255
Al Virod3607752016-03-25 15:21:09 -0400256static int apparmor_path_mkdir(const struct path *dir, struct dentry *dentry,
Al Viro4572bef2011-11-21 14:56:21 -0500257 umode_t mode)
John Johansenb5e95b42010-07-29 14:48:07 -0700258{
259 return common_perm_create(OP_MKDIR, dir, dentry, AA_MAY_CREATE,
260 S_IFDIR);
261}
262
Al Viro989f74e2016-03-25 15:13:39 -0400263static int apparmor_path_rmdir(const struct path *dir, struct dentry *dentry)
John Johansenb5e95b42010-07-29 14:48:07 -0700264{
265 return common_perm_rm(OP_RMDIR, dir, dentry, AA_MAY_DELETE);
266}
267
Al Virod3607752016-03-25 15:21:09 -0400268static int apparmor_path_mknod(const struct path *dir, struct dentry *dentry,
Al Viro04fc66e2011-11-21 14:58:38 -0500269 umode_t mode, unsigned int dev)
John Johansenb5e95b42010-07-29 14:48:07 -0700270{
271 return common_perm_create(OP_MKNOD, dir, dentry, AA_MAY_CREATE, mode);
272}
273
Al Viro81f4c502016-03-25 14:22:01 -0400274static int apparmor_path_truncate(const struct path *path)
John Johansenb5e95b42010-07-29 14:48:07 -0700275{
Al Viro741aca72016-03-25 15:04:36 -0400276 return common_perm_path(OP_TRUNC, path, MAY_WRITE | AA_MAY_META_WRITE);
John Johansenb5e95b42010-07-29 14:48:07 -0700277}
278
Al Virod3607752016-03-25 15:21:09 -0400279static int apparmor_path_symlink(const struct path *dir, struct dentry *dentry,
John Johansenb5e95b42010-07-29 14:48:07 -0700280 const char *old_name)
281{
282 return common_perm_create(OP_SYMLINK, dir, dentry, AA_MAY_CREATE,
283 S_IFLNK);
284}
285
Al Viro3ccee462016-03-25 15:27:45 -0400286static int apparmor_path_link(struct dentry *old_dentry, const struct path *new_dir,
John Johansenb5e95b42010-07-29 14:48:07 -0700287 struct dentry *new_dentry)
288{
289 struct aa_profile *profile;
290 int error = 0;
291
John Johansenefeee832017-01-16 00:42:28 -0800292 if (!path_mediated_fs(old_dentry))
John Johansenb5e95b42010-07-29 14:48:07 -0700293 return 0;
294
295 profile = aa_current_profile();
296 if (!unconfined(profile))
297 error = aa_path_link(profile, old_dentry, new_dir, new_dentry);
298 return error;
299}
300
Al Viro3ccee462016-03-25 15:27:45 -0400301static int apparmor_path_rename(const struct path *old_dir, struct dentry *old_dentry,
302 const struct path *new_dir, struct dentry *new_dentry)
John Johansenb5e95b42010-07-29 14:48:07 -0700303{
304 struct aa_profile *profile;
305 int error = 0;
306
John Johansenefeee832017-01-16 00:42:28 -0800307 if (!path_mediated_fs(old_dentry))
John Johansenb5e95b42010-07-29 14:48:07 -0700308 return 0;
309
310 profile = aa_current_profile();
311 if (!unconfined(profile)) {
Kees Cook8486adf2016-12-16 17:04:13 -0800312 struct path old_path = { .mnt = old_dir->mnt,
313 .dentry = old_dentry };
314 struct path new_path = { .mnt = new_dir->mnt,
315 .dentry = new_dentry };
David Howellsc6f493d2015-03-17 22:26:22 +0000316 struct path_cond cond = { d_backing_inode(old_dentry)->i_uid,
317 d_backing_inode(old_dentry)->i_mode
John Johansenb5e95b42010-07-29 14:48:07 -0700318 };
319
320 error = aa_path_perm(OP_RENAME_SRC, profile, &old_path, 0,
321 MAY_READ | AA_MAY_META_READ | MAY_WRITE |
322 AA_MAY_META_WRITE | AA_MAY_DELETE,
323 &cond);
324 if (!error)
325 error = aa_path_perm(OP_RENAME_DEST, profile, &new_path,
326 0, MAY_WRITE | AA_MAY_META_WRITE |
327 AA_MAY_CREATE, &cond);
328
329 }
330 return error;
331}
332
Al Virobe01f9f2016-03-25 14:56:23 -0400333static int apparmor_path_chmod(const struct path *path, umode_t mode)
John Johansenb5e95b42010-07-29 14:48:07 -0700334{
Al Viro741aca72016-03-25 15:04:36 -0400335 return common_perm_path(OP_CHMOD, path, AA_MAY_CHMOD);
John Johansenb5e95b42010-07-29 14:48:07 -0700336}
337
Al Viro7fd25da2016-03-25 14:44:41 -0400338static int apparmor_path_chown(const struct path *path, kuid_t uid, kgid_t gid)
John Johansenb5e95b42010-07-29 14:48:07 -0700339{
Al Viro741aca72016-03-25 15:04:36 -0400340 return common_perm_path(OP_CHOWN, path, AA_MAY_CHOWN);
John Johansenb5e95b42010-07-29 14:48:07 -0700341}
342
Al Viro3f7036a2015-03-08 19:28:30 -0400343static int apparmor_inode_getattr(const struct path *path)
John Johansenb5e95b42010-07-29 14:48:07 -0700344{
Al Viro741aca72016-03-25 15:04:36 -0400345 return common_perm_path(OP_GETATTR, path, AA_MAY_META_READ);
John Johansenb5e95b42010-07-29 14:48:07 -0700346}
347
Eric Paris83d49852012-04-04 13:45:40 -0400348static int apparmor_file_open(struct file *file, const struct cred *cred)
John Johansenb5e95b42010-07-29 14:48:07 -0700349{
John Johansen55a26eb2017-01-16 00:43:00 -0800350 struct aa_file_ctx *fctx = file->f_security;
John Johansenb5e95b42010-07-29 14:48:07 -0700351 struct aa_profile *profile;
352 int error = 0;
353
John Johansenefeee832017-01-16 00:42:28 -0800354 if (!path_mediated_fs(file->f_path.dentry))
John Johansenb5e95b42010-07-29 14:48:07 -0700355 return 0;
356
357 /* If in exec, permission is handled by bprm hooks.
358 * Cache permissions granted by the previous exec check, with
359 * implicit read and executable mmap which are required to
360 * actually execute the image.
361 */
362 if (current->in_execve) {
John Johansen55a26eb2017-01-16 00:43:00 -0800363 fctx->allow = MAY_EXEC | MAY_READ | AA_EXEC_MMAP;
John Johansenb5e95b42010-07-29 14:48:07 -0700364 return 0;
365 }
366
367 profile = aa_cred_profile(cred);
368 if (!unconfined(profile)) {
Al Viro496ad9a2013-01-23 17:07:38 -0500369 struct inode *inode = file_inode(file);
John Johansenb5e95b42010-07-29 14:48:07 -0700370 struct path_cond cond = { inode->i_uid, inode->i_mode };
371
372 error = aa_path_perm(OP_OPEN, profile, &file->f_path, 0,
373 aa_map_file_to_perms(file), &cond);
374 /* todo cache full allowed permissions set and state */
John Johansen55a26eb2017-01-16 00:43:00 -0800375 fctx->allow = aa_map_file_to_perms(file);
John Johansenb5e95b42010-07-29 14:48:07 -0700376 }
377
378 return error;
379}
380
381static int apparmor_file_alloc_security(struct file *file)
382{
383 /* freed by apparmor_file_free_security */
384 file->f_security = aa_alloc_file_context(GFP_KERNEL);
385 if (!file->f_security)
386 return -ENOMEM;
387 return 0;
388
389}
390
391static void apparmor_file_free_security(struct file *file)
392{
John Johansen55a26eb2017-01-16 00:43:00 -0800393 struct aa_file_ctx *ctx = file->f_security;
John Johansenb5e95b42010-07-29 14:48:07 -0700394
John Johansen55a26eb2017-01-16 00:43:00 -0800395 aa_free_file_context(ctx);
John Johansenb5e95b42010-07-29 14:48:07 -0700396}
397
398static int common_file_perm(int op, struct file *file, u32 mask)
399{
John Johansen55a26eb2017-01-16 00:43:00 -0800400 struct aa_file_ctx *fctx = file->f_security;
John Johansenb5e95b42010-07-29 14:48:07 -0700401 struct aa_profile *profile, *fprofile = aa_cred_profile(file->f_cred);
402 int error = 0;
403
404 BUG_ON(!fprofile);
405
406 if (!file->f_path.mnt ||
John Johansenefeee832017-01-16 00:42:28 -0800407 !path_mediated_fs(file->f_path.dentry))
John Johansenb5e95b42010-07-29 14:48:07 -0700408 return 0;
409
410 profile = __aa_current_profile();
411
412 /* revalidate access, if task is unconfined, or the cached cred
413 * doesn't match or if the request is for more permissions than
414 * was granted.
415 *
416 * Note: the test for !unconfined(fprofile) is to handle file
417 * delegation from unconfined tasks
418 */
419 if (!unconfined(profile) && !unconfined(fprofile) &&
John Johansen55a26eb2017-01-16 00:43:00 -0800420 ((fprofile != profile) || (mask & ~fctx->allow)))
John Johansenb5e95b42010-07-29 14:48:07 -0700421 error = aa_file_perm(op, profile, file, mask);
422
423 return error;
424}
425
426static int apparmor_file_permission(struct file *file, int mask)
427{
428 return common_file_perm(OP_FPERM, file, mask);
429}
430
431static int apparmor_file_lock(struct file *file, unsigned int cmd)
432{
433 u32 mask = AA_MAY_LOCK;
434
435 if (cmd == F_WRLCK)
436 mask |= MAY_WRITE;
437
438 return common_file_perm(OP_FLOCK, file, mask);
439}
440
441static int common_mmap(int op, struct file *file, unsigned long prot,
442 unsigned long flags)
443{
John Johansenb5e95b42010-07-29 14:48:07 -0700444 int mask = 0;
445
446 if (!file || !file->f_security)
447 return 0;
448
449 if (prot & PROT_READ)
450 mask |= MAY_READ;
451 /*
452 * Private mappings don't require write perms since they don't
453 * write back to the files
454 */
455 if ((prot & PROT_WRITE) && !(flags & MAP_PRIVATE))
456 mask |= MAY_WRITE;
457 if (prot & PROT_EXEC)
458 mask |= AA_EXEC_MMAP;
459
John Johansenb5e95b42010-07-29 14:48:07 -0700460 return common_file_perm(op, file, mask);
461}
462
Al Viroe5467852012-05-30 13:30:51 -0400463static int apparmor_mmap_file(struct file *file, unsigned long reqprot,
464 unsigned long prot, unsigned long flags)
John Johansenb5e95b42010-07-29 14:48:07 -0700465{
John Johansenb5e95b42010-07-29 14:48:07 -0700466 return common_mmap(OP_FMMAP, file, prot, flags);
467}
468
469static int apparmor_file_mprotect(struct vm_area_struct *vma,
470 unsigned long reqprot, unsigned long prot)
471{
472 return common_mmap(OP_FMPROT, vma->vm_file, prot,
473 !(vma->vm_flags & VM_SHARED) ? MAP_PRIVATE : 0);
474}
475
476static int apparmor_getprocattr(struct task_struct *task, char *name,
477 char **value)
478{
479 int error = -ENOENT;
John Johansenb5e95b42010-07-29 14:48:07 -0700480 /* released below */
481 const struct cred *cred = get_task_cred(task);
John Johansen55a26eb2017-01-16 00:43:00 -0800482 struct aa_task_ctx *ctx = cred_ctx(cred);
John Johansen77b071b2013-07-10 21:07:43 -0700483 struct aa_profile *profile = NULL;
John Johansenb5e95b42010-07-29 14:48:07 -0700484
485 if (strcmp(name, "current") == 0)
John Johansen55a26eb2017-01-16 00:43:00 -0800486 profile = aa_get_newest_profile(ctx->profile);
487 else if (strcmp(name, "prev") == 0 && ctx->previous)
488 profile = aa_get_newest_profile(ctx->previous);
489 else if (strcmp(name, "exec") == 0 && ctx->onexec)
490 profile = aa_get_newest_profile(ctx->onexec);
John Johansenb5e95b42010-07-29 14:48:07 -0700491 else
492 error = -EINVAL;
493
John Johansen77b071b2013-07-10 21:07:43 -0700494 if (profile)
495 error = aa_getprocattr(profile, value);
496
497 aa_put_profile(profile);
John Johansenb5e95b42010-07-29 14:48:07 -0700498 put_cred(cred);
499
500 return error;
501}
502
503static int apparmor_setprocattr(struct task_struct *task, char *name,
504 void *value, size_t size)
505{
John Johansen3eea57c2013-02-27 03:44:40 -0800506 struct common_audit_data sa;
507 struct apparmor_audit_data aad = {0,};
Vegard Nossume89b8082016-07-07 13:41:11 -0700508 char *command, *largs = NULL, *args = value;
John Johansenb5e95b42010-07-29 14:48:07 -0700509 size_t arg_size;
510 int error;
511
512 if (size == 0)
513 return -EINVAL;
John Johansenb5e95b42010-07-29 14:48:07 -0700514 /* task can only write its own attributes */
515 if (current != task)
516 return -EACCES;
517
Vegard Nossume89b8082016-07-07 13:41:11 -0700518 /* AppArmor requires that the buffer must be null terminated atm */
519 if (args[size - 1] != '\0') {
520 /* null terminate */
521 largs = args = kmalloc(size + 1, GFP_KERNEL);
522 if (!args)
523 return -ENOMEM;
524 memcpy(args, value, size);
525 args[size] = '\0';
526 }
527
528 error = -EINVAL;
John Johansenb5e95b42010-07-29 14:48:07 -0700529 args = strim(args);
530 command = strsep(&args, " ");
531 if (!args)
Vegard Nossume89b8082016-07-07 13:41:11 -0700532 goto out;
John Johansenb5e95b42010-07-29 14:48:07 -0700533 args = skip_spaces(args);
534 if (!*args)
Vegard Nossume89b8082016-07-07 13:41:11 -0700535 goto out;
John Johansenb5e95b42010-07-29 14:48:07 -0700536
John Johansend4d03f72016-07-09 23:46:33 -0700537 arg_size = size - (args - (largs ? largs : (char *) value));
John Johansenb5e95b42010-07-29 14:48:07 -0700538 if (strcmp(name, "current") == 0) {
539 if (strcmp(command, "changehat") == 0) {
540 error = aa_setprocattr_changehat(args, arg_size,
541 !AA_DO_TEST);
542 } else if (strcmp(command, "permhat") == 0) {
543 error = aa_setprocattr_changehat(args, arg_size,
544 AA_DO_TEST);
545 } else if (strcmp(command, "changeprofile") == 0) {
546 error = aa_setprocattr_changeprofile(args, !AA_ONEXEC,
547 !AA_DO_TEST);
548 } else if (strcmp(command, "permprofile") == 0) {
549 error = aa_setprocattr_changeprofile(args, !AA_ONEXEC,
550 AA_DO_TEST);
John Johansen3eea57c2013-02-27 03:44:40 -0800551 } else
552 goto fail;
John Johansenb5e95b42010-07-29 14:48:07 -0700553 } else if (strcmp(name, "exec") == 0) {
John Johansen3eea57c2013-02-27 03:44:40 -0800554 if (strcmp(command, "exec") == 0)
555 error = aa_setprocattr_changeprofile(args, AA_ONEXEC,
556 !AA_DO_TEST);
557 else
558 goto fail;
559 } else
John Johansenb5e95b42010-07-29 14:48:07 -0700560 /* only support the "current" and "exec" process attributes */
Vegard Nossume89b8082016-07-07 13:41:11 -0700561 goto fail;
John Johansen3eea57c2013-02-27 03:44:40 -0800562
John Johansenb5e95b42010-07-29 14:48:07 -0700563 if (!error)
564 error = size;
Vegard Nossume89b8082016-07-07 13:41:11 -0700565out:
566 kfree(largs);
John Johansenb5e95b42010-07-29 14:48:07 -0700567 return error;
John Johansen3eea57c2013-02-27 03:44:40 -0800568
569fail:
570 sa.type = LSM_AUDIT_DATA_NONE;
571 sa.aad = &aad;
572 aad.profile = aa_current_profile();
573 aad.op = OP_SETPROCATTR;
574 aad.info = name;
Vegard Nossume89b8082016-07-07 13:41:11 -0700575 aad.error = error = -EINVAL;
John Johansen3eea57c2013-02-27 03:44:40 -0800576 aa_audit_msg(AUDIT_APPARMOR_DENIED, &sa, NULL);
Vegard Nossume89b8082016-07-07 13:41:11 -0700577 goto out;
John Johansenb5e95b42010-07-29 14:48:07 -0700578}
579
Jiri Slaby7cb4dc92010-08-11 11:28:02 +0200580static int apparmor_task_setrlimit(struct task_struct *task,
581 unsigned int resource, struct rlimit *new_rlim)
John Johansenb5e95b42010-07-29 14:48:07 -0700582{
John Johansen1780f2d2011-06-08 15:07:47 -0700583 struct aa_profile *profile = __aa_current_profile();
John Johansenb5e95b42010-07-29 14:48:07 -0700584 int error = 0;
585
586 if (!unconfined(profile))
John Johansen3a2dc832010-09-06 10:10:20 -0700587 error = aa_task_setrlimit(profile, task, resource, new_rlim);
John Johansenb5e95b42010-07-29 14:48:07 -0700588
589 return error;
590}
591
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -0700592static struct security_hook_list apparmor_hooks[] = {
Casey Schauflere20b0432015-05-02 15:11:36 -0700593 LSM_HOOK_INIT(ptrace_access_check, apparmor_ptrace_access_check),
594 LSM_HOOK_INIT(ptrace_traceme, apparmor_ptrace_traceme),
595 LSM_HOOK_INIT(capget, apparmor_capget),
596 LSM_HOOK_INIT(capable, apparmor_capable),
John Johansenb5e95b42010-07-29 14:48:07 -0700597
Casey Schauflere20b0432015-05-02 15:11:36 -0700598 LSM_HOOK_INIT(path_link, apparmor_path_link),
599 LSM_HOOK_INIT(path_unlink, apparmor_path_unlink),
600 LSM_HOOK_INIT(path_symlink, apparmor_path_symlink),
601 LSM_HOOK_INIT(path_mkdir, apparmor_path_mkdir),
602 LSM_HOOK_INIT(path_rmdir, apparmor_path_rmdir),
603 LSM_HOOK_INIT(path_mknod, apparmor_path_mknod),
604 LSM_HOOK_INIT(path_rename, apparmor_path_rename),
605 LSM_HOOK_INIT(path_chmod, apparmor_path_chmod),
606 LSM_HOOK_INIT(path_chown, apparmor_path_chown),
607 LSM_HOOK_INIT(path_truncate, apparmor_path_truncate),
608 LSM_HOOK_INIT(inode_getattr, apparmor_inode_getattr),
John Johansenb5e95b42010-07-29 14:48:07 -0700609
Casey Schauflere20b0432015-05-02 15:11:36 -0700610 LSM_HOOK_INIT(file_open, apparmor_file_open),
611 LSM_HOOK_INIT(file_permission, apparmor_file_permission),
612 LSM_HOOK_INIT(file_alloc_security, apparmor_file_alloc_security),
613 LSM_HOOK_INIT(file_free_security, apparmor_file_free_security),
614 LSM_HOOK_INIT(mmap_file, apparmor_mmap_file),
Casey Schauflere20b0432015-05-02 15:11:36 -0700615 LSM_HOOK_INIT(file_mprotect, apparmor_file_mprotect),
616 LSM_HOOK_INIT(file_lock, apparmor_file_lock),
John Johansenb5e95b42010-07-29 14:48:07 -0700617
Casey Schauflere20b0432015-05-02 15:11:36 -0700618 LSM_HOOK_INIT(getprocattr, apparmor_getprocattr),
619 LSM_HOOK_INIT(setprocattr, apparmor_setprocattr),
John Johansenb5e95b42010-07-29 14:48:07 -0700620
Casey Schauflere20b0432015-05-02 15:11:36 -0700621 LSM_HOOK_INIT(cred_alloc_blank, apparmor_cred_alloc_blank),
622 LSM_HOOK_INIT(cred_free, apparmor_cred_free),
623 LSM_HOOK_INIT(cred_prepare, apparmor_cred_prepare),
624 LSM_HOOK_INIT(cred_transfer, apparmor_cred_transfer),
John Johansenb5e95b42010-07-29 14:48:07 -0700625
Casey Schauflere20b0432015-05-02 15:11:36 -0700626 LSM_HOOK_INIT(bprm_set_creds, apparmor_bprm_set_creds),
627 LSM_HOOK_INIT(bprm_committing_creds, apparmor_bprm_committing_creds),
628 LSM_HOOK_INIT(bprm_committed_creds, apparmor_bprm_committed_creds),
629 LSM_HOOK_INIT(bprm_secureexec, apparmor_bprm_secureexec),
John Johansenb5e95b42010-07-29 14:48:07 -0700630
Casey Schauflere20b0432015-05-02 15:11:36 -0700631 LSM_HOOK_INIT(task_setrlimit, apparmor_task_setrlimit),
John Johansenb5e95b42010-07-29 14:48:07 -0700632};
633
634/*
635 * AppArmor sysfs module parameters
636 */
637
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000638static int param_set_aabool(const char *val, const struct kernel_param *kp);
639static int param_get_aabool(char *buffer, const struct kernel_param *kp);
Rusty Russellb8aa09f2011-12-15 13:41:32 +1030640#define param_check_aabool param_check_bool
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930641static const struct kernel_param_ops param_ops_aabool = {
Jani Nikula6a4c2642014-08-27 06:21:23 +0930642 .flags = KERNEL_PARAM_OPS_FL_NOARG,
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000643 .set = param_set_aabool,
644 .get = param_get_aabool
645};
John Johansenb5e95b42010-07-29 14:48:07 -0700646
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000647static int param_set_aauint(const char *val, const struct kernel_param *kp);
648static int param_get_aauint(char *buffer, const struct kernel_param *kp);
Rusty Russellb8aa09f2011-12-15 13:41:32 +1030649#define param_check_aauint param_check_uint
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930650static const struct kernel_param_ops param_ops_aauint = {
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000651 .set = param_set_aauint,
652 .get = param_get_aauint
653};
John Johansenb5e95b42010-07-29 14:48:07 -0700654
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000655static int param_set_aalockpolicy(const char *val, const struct kernel_param *kp);
656static int param_get_aalockpolicy(char *buffer, const struct kernel_param *kp);
Rusty Russellb8aa09f2011-12-15 13:41:32 +1030657#define param_check_aalockpolicy param_check_bool
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930658static const struct kernel_param_ops param_ops_aalockpolicy = {
Jani Nikula6a4c2642014-08-27 06:21:23 +0930659 .flags = KERNEL_PARAM_OPS_FL_NOARG,
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000660 .set = param_set_aalockpolicy,
661 .get = param_get_aalockpolicy
662};
John Johansenb5e95b42010-07-29 14:48:07 -0700663
664static int param_set_audit(const char *val, struct kernel_param *kp);
665static int param_get_audit(char *buffer, struct kernel_param *kp);
John Johansenb5e95b42010-07-29 14:48:07 -0700666
667static int param_set_mode(const char *val, struct kernel_param *kp);
668static int param_get_mode(char *buffer, struct kernel_param *kp);
John Johansenb5e95b42010-07-29 14:48:07 -0700669
670/* Flag values, also controllable via /sys/module/apparmor/parameters
671 * We define special types as we want to do additional mediation.
672 */
673
674/* AppArmor global enforcement switch - complain, enforce, kill */
675enum profile_mode aa_g_profile_mode = APPARMOR_ENFORCE;
676module_param_call(mode, param_set_mode, param_get_mode,
677 &aa_g_profile_mode, S_IRUSR | S_IWUSR);
678
Arnd Bergmann7616ac72016-07-25 10:59:07 -0700679#ifdef CONFIG_SECURITY_APPARMOR_HASH
John Johansen6059f712014-10-24 09:16:14 -0700680/* whether policy verification hashing is enabled */
Arnd Bergmann7616ac72016-07-25 10:59:07 -0700681bool aa_g_hash_policy = IS_ENABLED(CONFIG_SECURITY_APPARMOR_HASH_DEFAULT);
John Johansen6059f712014-10-24 09:16:14 -0700682module_param_named(hash_policy, aa_g_hash_policy, aabool, S_IRUSR | S_IWUSR);
Arnd Bergmann7616ac72016-07-25 10:59:07 -0700683#endif
John Johansen6059f712014-10-24 09:16:14 -0700684
John Johansenb5e95b42010-07-29 14:48:07 -0700685/* Debug mode */
John Johansen680cd622017-01-16 00:42:27 -0800686bool aa_g_debug = IS_ENABLED(CONFIG_SECURITY_DEBUG_MESSAGES);
John Johansenb5e95b42010-07-29 14:48:07 -0700687module_param_named(debug, aa_g_debug, aabool, S_IRUSR | S_IWUSR);
688
689/* Audit mode */
690enum audit_mode aa_g_audit;
691module_param_call(audit, param_set_audit, param_get_audit,
692 &aa_g_audit, S_IRUSR | S_IWUSR);
693
694/* Determines if audit header is included in audited messages. This
695 * provides more context if the audit daemon is not running
696 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030697bool aa_g_audit_header = 1;
John Johansenb5e95b42010-07-29 14:48:07 -0700698module_param_named(audit_header, aa_g_audit_header, aabool,
699 S_IRUSR | S_IWUSR);
700
701/* lock out loading/removal of policy
702 * TODO: add in at boot loading of policy, which is the only way to
703 * load policy, if lock_policy is set
704 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030705bool aa_g_lock_policy;
John Johansenb5e95b42010-07-29 14:48:07 -0700706module_param_named(lock_policy, aa_g_lock_policy, aalockpolicy,
707 S_IRUSR | S_IWUSR);
708
709/* Syscall logging mode */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030710bool aa_g_logsyscall;
John Johansenb5e95b42010-07-29 14:48:07 -0700711module_param_named(logsyscall, aa_g_logsyscall, aabool, S_IRUSR | S_IWUSR);
712
713/* Maximum pathname length before accesses will start getting rejected */
714unsigned int aa_g_path_max = 2 * PATH_MAX;
715module_param_named(path_max, aa_g_path_max, aauint, S_IRUSR | S_IWUSR);
716
717/* Determines how paranoid loading of policy is and how much verification
718 * on the loaded policy is done.
John Johansenabbf8732017-01-16 00:42:37 -0800719 * DEPRECATED: read only as strict checking of load is always done now
720 * that none root users (user namespaces) can load policy.
John Johansenb5e95b42010-07-29 14:48:07 -0700721 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030722bool aa_g_paranoid_load = 1;
John Johansenabbf8732017-01-16 00:42:37 -0800723module_param_named(paranoid_load, aa_g_paranoid_load, aabool, S_IRUGO);
John Johansenb5e95b42010-07-29 14:48:07 -0700724
725/* Boot time disable flag */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030726static bool apparmor_enabled = CONFIG_SECURITY_APPARMOR_BOOTPARAM_VALUE;
John Johansenc6116162013-07-10 21:03:43 -0700727module_param_named(enabled, apparmor_enabled, bool, S_IRUGO);
John Johansenb5e95b42010-07-29 14:48:07 -0700728
729static int __init apparmor_enabled_setup(char *str)
730{
731 unsigned long enabled;
Jingoo Han29707b22014-02-05 15:13:14 +0900732 int error = kstrtoul(str, 0, &enabled);
John Johansenb5e95b42010-07-29 14:48:07 -0700733 if (!error)
734 apparmor_enabled = enabled ? 1 : 0;
735 return 1;
736}
737
738__setup("apparmor=", apparmor_enabled_setup);
739
740/* set global flag turning off the ability to load policy */
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000741static int param_set_aalockpolicy(const char *val, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -0700742{
John Johansenfd2a8042017-01-16 00:42:51 -0800743 if (!policy_admin_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700744 return -EPERM;
John Johansenb5e95b42010-07-29 14:48:07 -0700745 return param_set_bool(val, kp);
746}
747
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000748static int param_get_aalockpolicy(char *buffer, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -0700749{
John Johansen2bd8dbb2017-01-16 00:42:50 -0800750 if (!policy_view_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700751 return -EPERM;
752 return param_get_bool(buffer, kp);
753}
754
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000755static int param_set_aabool(const char *val, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -0700756{
John Johansenfd2a8042017-01-16 00:42:51 -0800757 if (!policy_admin_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700758 return -EPERM;
759 return param_set_bool(val, kp);
760}
761
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000762static int param_get_aabool(char *buffer, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -0700763{
John Johansen2bd8dbb2017-01-16 00:42:50 -0800764 if (!policy_view_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700765 return -EPERM;
766 return param_get_bool(buffer, kp);
767}
768
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000769static int param_set_aauint(const char *val, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -0700770{
John Johansenfd2a8042017-01-16 00:42:51 -0800771 if (!policy_admin_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700772 return -EPERM;
773 return param_set_uint(val, kp);
774}
775
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000776static int param_get_aauint(char *buffer, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -0700777{
John Johansen2bd8dbb2017-01-16 00:42:50 -0800778 if (!policy_view_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700779 return -EPERM;
780 return param_get_uint(buffer, kp);
781}
782
783static int param_get_audit(char *buffer, struct kernel_param *kp)
784{
John Johansen2bd8dbb2017-01-16 00:42:50 -0800785 if (!policy_view_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700786 return -EPERM;
787
788 if (!apparmor_enabled)
789 return -EINVAL;
790
791 return sprintf(buffer, "%s", audit_mode_names[aa_g_audit]);
792}
793
794static int param_set_audit(const char *val, struct kernel_param *kp)
795{
796 int i;
John Johansenfd2a8042017-01-16 00:42:51 -0800797 if (!policy_admin_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700798 return -EPERM;
799
800 if (!apparmor_enabled)
801 return -EINVAL;
802
803 if (!val)
804 return -EINVAL;
805
806 for (i = 0; i < AUDIT_MAX_INDEX; i++) {
807 if (strcmp(val, audit_mode_names[i]) == 0) {
808 aa_g_audit = i;
809 return 0;
810 }
811 }
812
813 return -EINVAL;
814}
815
816static int param_get_mode(char *buffer, struct kernel_param *kp)
817{
John Johansenfd2a8042017-01-16 00:42:51 -0800818 if (!policy_view_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700819 return -EPERM;
820
821 if (!apparmor_enabled)
822 return -EINVAL;
823
John Johansen0d259f02013-07-10 21:13:43 -0700824 return sprintf(buffer, "%s", aa_profile_mode_names[aa_g_profile_mode]);
John Johansenb5e95b42010-07-29 14:48:07 -0700825}
826
827static int param_set_mode(const char *val, struct kernel_param *kp)
828{
829 int i;
John Johansenfd2a8042017-01-16 00:42:51 -0800830 if (!policy_admin_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700831 return -EPERM;
832
833 if (!apparmor_enabled)
834 return -EINVAL;
835
836 if (!val)
837 return -EINVAL;
838
John Johansen0d259f02013-07-10 21:13:43 -0700839 for (i = 0; i < APPARMOR_MODE_NAMES_MAX_INDEX; i++) {
840 if (strcmp(val, aa_profile_mode_names[i]) == 0) {
John Johansenb5e95b42010-07-29 14:48:07 -0700841 aa_g_profile_mode = i;
842 return 0;
843 }
844 }
845
846 return -EINVAL;
847}
848
849/*
850 * AppArmor init functions
851 */
852
853/**
John Johansen55a26eb2017-01-16 00:43:00 -0800854 * set_init_ctx - set a task context and profile on the first task.
John Johansenb5e95b42010-07-29 14:48:07 -0700855 *
856 * TODO: allow setting an alternate profile than unconfined
857 */
John Johansen55a26eb2017-01-16 00:43:00 -0800858static int __init set_init_ctx(void)
John Johansenb5e95b42010-07-29 14:48:07 -0700859{
860 struct cred *cred = (struct cred *)current->real_cred;
John Johansen55a26eb2017-01-16 00:43:00 -0800861 struct aa_task_ctx *ctx;
John Johansenb5e95b42010-07-29 14:48:07 -0700862
John Johansen55a26eb2017-01-16 00:43:00 -0800863 ctx = aa_alloc_task_context(GFP_KERNEL);
864 if (!ctx)
John Johansenb5e95b42010-07-29 14:48:07 -0700865 return -ENOMEM;
866
John Johansen55a26eb2017-01-16 00:43:00 -0800867 ctx->profile = aa_get_profile(root_ns->unconfined);
868 cred_ctx(cred) = ctx;
John Johansenb5e95b42010-07-29 14:48:07 -0700869
870 return 0;
871}
872
873static int __init apparmor_init(void)
874{
875 int error;
876
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -0700877 if (!apparmor_enabled || !security_module_enable("apparmor")) {
John Johansenb5e95b42010-07-29 14:48:07 -0700878 aa_info_message("AppArmor disabled by boot time parameter");
879 apparmor_enabled = 0;
880 return 0;
881 }
882
John Johansen11c236b2017-01-16 00:42:42 -0800883 error = aa_setup_dfa_engine();
884 if (error) {
885 AA_ERROR("Unable to setup dfa engine\n");
886 goto alloc_out;
887 }
888
John Johansenb5e95b42010-07-29 14:48:07 -0700889 error = aa_alloc_root_ns();
890 if (error) {
891 AA_ERROR("Unable to allocate default profile namespace\n");
892 goto alloc_out;
893 }
894
John Johansen55a26eb2017-01-16 00:43:00 -0800895 error = set_init_ctx();
John Johansenb5e95b42010-07-29 14:48:07 -0700896 if (error) {
897 AA_ERROR("Failed to set context on init task\n");
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -0700898 aa_free_root_ns();
899 goto alloc_out;
John Johansenb5e95b42010-07-29 14:48:07 -0700900 }
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -0700901 security_add_hooks(apparmor_hooks, ARRAY_SIZE(apparmor_hooks));
John Johansenb5e95b42010-07-29 14:48:07 -0700902
903 /* Report that AppArmor successfully initialized */
904 apparmor_initialized = 1;
905 if (aa_g_profile_mode == APPARMOR_COMPLAIN)
906 aa_info_message("AppArmor initialized: complain mode enabled");
907 else if (aa_g_profile_mode == APPARMOR_KILL)
908 aa_info_message("AppArmor initialized: kill mode enabled");
909 else
910 aa_info_message("AppArmor initialized");
911
912 return error;
913
John Johansenb5e95b42010-07-29 14:48:07 -0700914alloc_out:
915 aa_destroy_aafs();
John Johansen11c236b2017-01-16 00:42:42 -0800916 aa_teardown_dfa_engine();
John Johansenb5e95b42010-07-29 14:48:07 -0700917
918 apparmor_enabled = 0;
919 return error;
John Johansenb5e95b42010-07-29 14:48:07 -0700920}
921
922security_initcall(apparmor_init);