blob: c249ea0e6328ce5b4be2812c9b2677f0056d0107 [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>
William Huae025be02017-01-15 16:49:28 -080026#include <linux/kmemleak.h>
John Johansenb5e95b42010-07-29 14:48:07 -070027#include <net/sock.h>
28
29#include "include/apparmor.h"
30#include "include/apparmorfs.h"
31#include "include/audit.h"
32#include "include/capability.h"
33#include "include/context.h"
34#include "include/file.h"
35#include "include/ipc.h"
36#include "include/path.h"
37#include "include/policy.h"
John Johansencff281f2017-01-16 00:42:15 -080038#include "include/policy_ns.h"
John Johansenb5e95b42010-07-29 14:48:07 -070039#include "include/procattr.h"
40
41/* Flag indicating whether initialization completed */
42int apparmor_initialized __initdata;
43
John Johansend4669f02017-01-16 00:43:10 -080044DEFINE_PER_CPU(struct aa_buffers, aa_buffers);
45
46
John Johansenb5e95b42010-07-29 14:48:07 -070047/*
48 * LSM hook functions
49 */
50
51/*
John Johansen55a26eb2017-01-16 00:43:00 -080052 * free the associated aa_task_ctx and put its profiles
John Johansenb5e95b42010-07-29 14:48:07 -070053 */
54static void apparmor_cred_free(struct cred *cred)
55{
John Johansen55a26eb2017-01-16 00:43:00 -080056 aa_free_task_context(cred_ctx(cred));
57 cred_ctx(cred) = NULL;
John Johansenb5e95b42010-07-29 14:48:07 -070058}
59
60/*
61 * allocate the apparmor part of blank credentials
62 */
63static int apparmor_cred_alloc_blank(struct cred *cred, gfp_t gfp)
64{
65 /* freed by apparmor_cred_free */
John Johansen55a26eb2017-01-16 00:43:00 -080066 struct aa_task_ctx *ctx = aa_alloc_task_context(gfp);
67
68 if (!ctx)
John Johansenb5e95b42010-07-29 14:48:07 -070069 return -ENOMEM;
70
John Johansen55a26eb2017-01-16 00:43:00 -080071 cred_ctx(cred) = ctx;
John Johansenb5e95b42010-07-29 14:48:07 -070072 return 0;
73}
74
75/*
John Johansen55a26eb2017-01-16 00:43:00 -080076 * prepare new aa_task_ctx for modification by prepare_cred block
John Johansenb5e95b42010-07-29 14:48:07 -070077 */
78static int apparmor_cred_prepare(struct cred *new, const struct cred *old,
79 gfp_t gfp)
80{
81 /* freed by apparmor_cred_free */
John Johansen55a26eb2017-01-16 00:43:00 -080082 struct aa_task_ctx *ctx = aa_alloc_task_context(gfp);
83
84 if (!ctx)
John Johansenb5e95b42010-07-29 14:48:07 -070085 return -ENOMEM;
86
John Johansen55a26eb2017-01-16 00:43:00 -080087 aa_dup_task_context(ctx, cred_ctx(old));
88 cred_ctx(new) = ctx;
John Johansenb5e95b42010-07-29 14:48:07 -070089 return 0;
90}
91
92/*
93 * transfer the apparmor data to a blank set of creds
94 */
95static void apparmor_cred_transfer(struct cred *new, const struct cred *old)
96{
John Johansen55a26eb2017-01-16 00:43:00 -080097 const struct aa_task_ctx *old_ctx = cred_ctx(old);
98 struct aa_task_ctx *new_ctx = cred_ctx(new);
John Johansenb5e95b42010-07-29 14:48:07 -070099
John Johansen55a26eb2017-01-16 00:43:00 -0800100 aa_dup_task_context(new_ctx, old_ctx);
John Johansenb5e95b42010-07-29 14:48:07 -0700101}
102
103static int apparmor_ptrace_access_check(struct task_struct *child,
104 unsigned int mode)
105{
John Johansenb5e95b42010-07-29 14:48:07 -0700106 return aa_ptrace(current, child, mode);
107}
108
109static int apparmor_ptrace_traceme(struct task_struct *parent)
110{
John Johansenb5e95b42010-07-29 14:48:07 -0700111 return aa_ptrace(parent, current, PTRACE_MODE_ATTACH);
112}
113
114/* Derived from security/commoncap.c:cap_capget */
115static int apparmor_capget(struct task_struct *target, kernel_cap_t *effective,
116 kernel_cap_t *inheritable, kernel_cap_t *permitted)
117{
118 struct aa_profile *profile;
119 const struct cred *cred;
120
121 rcu_read_lock();
122 cred = __task_cred(target);
123 profile = aa_cred_profile(cred);
124
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -0700125 /*
126 * cap_capget is stacked ahead of this and will
127 * initialize effective and permitted.
128 */
John Johansen25e75df2011-06-25 16:57:07 +0100129 if (!unconfined(profile) && !COMPLAIN_MODE(profile)) {
John Johansenb5e95b42010-07-29 14:48:07 -0700130 *effective = cap_intersect(*effective, profile->caps.allow);
131 *permitted = cap_intersect(*permitted, profile->caps.allow);
132 }
133 rcu_read_unlock();
134
135 return 0;
136}
137
Eric Paris6a9de492012-01-03 12:25:14 -0500138static int apparmor_capable(const struct cred *cred, struct user_namespace *ns,
139 int cap, int audit)
John Johansenb5e95b42010-07-29 14:48:07 -0700140{
141 struct aa_profile *profile;
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -0700142 int error = 0;
143
144 profile = aa_cred_profile(cred);
145 if (!unconfined(profile))
146 error = aa_capable(profile, cap, audit);
John Johansenb5e95b42010-07-29 14:48:07 -0700147 return error;
148}
149
150/**
151 * common_perm - basic common permission check wrapper fn for paths
152 * @op: operation being checked
153 * @path: path to check permission of (NOT NULL)
154 * @mask: requested permissions mask
155 * @cond: conditional info for the permission request (NOT NULL)
156 *
157 * Returns: %0 else error code if error or permission denied
158 */
John Johansen47f6e5c2017-01-16 00:43:01 -0800159static int common_perm(const char *op, const struct path *path, u32 mask,
John Johansenb5e95b42010-07-29 14:48:07 -0700160 struct path_cond *cond)
161{
162 struct aa_profile *profile;
163 int error = 0;
164
165 profile = __aa_current_profile();
166 if (!unconfined(profile))
167 error = aa_path_perm(op, profile, path, 0, mask, cond);
168
169 return error;
170}
171
172/**
John Johansen31f75bf2017-01-16 00:43:07 -0800173 * common_perm_cond - common permission wrapper around inode cond
174 * @op: operation being checked
175 * @path: location to check (NOT NULL)
176 * @mask: requested permissions mask
177 *
178 * Returns: %0 else error code if error or permission denied
179 */
180static int common_perm_cond(const char *op, const struct path *path, u32 mask)
181{
182 struct path_cond cond = { d_backing_inode(path->dentry)->i_uid,
183 d_backing_inode(path->dentry)->i_mode
184 };
185
186 if (!path_mediated_fs(path->dentry))
187 return 0;
188
189 return common_perm(op, path, mask, &cond);
190}
191
192/**
John Johansenb5e95b42010-07-29 14:48:07 -0700193 * common_perm_dir_dentry - common permission wrapper when path is dir, dentry
194 * @op: operation being checked
195 * @dir: directory of the dentry (NOT NULL)
196 * @dentry: dentry to check (NOT NULL)
197 * @mask: requested permissions mask
198 * @cond: conditional info for the permission request (NOT NULL)
199 *
200 * Returns: %0 else error code if error or permission denied
201 */
John Johansen47f6e5c2017-01-16 00:43:01 -0800202static int common_perm_dir_dentry(const char *op, const struct path *dir,
John Johansenb5e95b42010-07-29 14:48:07 -0700203 struct dentry *dentry, u32 mask,
204 struct path_cond *cond)
205{
Kees Cook8486adf2016-12-16 17:04:13 -0800206 struct path path = { .mnt = dir->mnt, .dentry = dentry };
John Johansenb5e95b42010-07-29 14:48:07 -0700207
208 return common_perm(op, &path, mask, cond);
209}
210
211/**
John Johansenb5e95b42010-07-29 14:48:07 -0700212 * common_perm_rm - common permission wrapper for operations doing rm
213 * @op: operation being checked
214 * @dir: directory that the dentry is in (NOT NULL)
215 * @dentry: dentry being rm'd (NOT NULL)
216 * @mask: requested permission mask
217 *
218 * Returns: %0 else error code if error or permission denied
219 */
John Johansen47f6e5c2017-01-16 00:43:01 -0800220static int common_perm_rm(const char *op, const struct path *dir,
John Johansenb5e95b42010-07-29 14:48:07 -0700221 struct dentry *dentry, u32 mask)
222{
David Howellsc6f493d2015-03-17 22:26:22 +0000223 struct inode *inode = d_backing_inode(dentry);
John Johansenb5e95b42010-07-29 14:48:07 -0700224 struct path_cond cond = { };
225
John Johansenefeee832017-01-16 00:42:28 -0800226 if (!inode || !path_mediated_fs(dentry))
John Johansenb5e95b42010-07-29 14:48:07 -0700227 return 0;
228
229 cond.uid = inode->i_uid;
230 cond.mode = inode->i_mode;
231
232 return common_perm_dir_dentry(op, dir, dentry, mask, &cond);
233}
234
235/**
236 * common_perm_create - common permission wrapper for operations doing create
237 * @op: operation being checked
238 * @dir: directory that dentry will be created in (NOT NULL)
239 * @dentry: dentry to create (NOT NULL)
240 * @mask: request permission mask
241 * @mode: created file mode
242 *
243 * Returns: %0 else error code if error or permission denied
244 */
John Johansen47f6e5c2017-01-16 00:43:01 -0800245static int common_perm_create(const char *op, const struct path *dir,
Al Virod6b49f72016-03-25 15:10:04 -0400246 struct dentry *dentry, u32 mask, umode_t mode)
John Johansenb5e95b42010-07-29 14:48:07 -0700247{
248 struct path_cond cond = { current_fsuid(), mode };
249
John Johansenefeee832017-01-16 00:42:28 -0800250 if (!path_mediated_fs(dir->dentry))
John Johansenb5e95b42010-07-29 14:48:07 -0700251 return 0;
252
253 return common_perm_dir_dentry(op, dir, dentry, mask, &cond);
254}
255
Al Viro989f74e2016-03-25 15:13:39 -0400256static int apparmor_path_unlink(const struct path *dir, struct dentry *dentry)
John Johansenb5e95b42010-07-29 14:48:07 -0700257{
258 return common_perm_rm(OP_UNLINK, dir, dentry, AA_MAY_DELETE);
259}
260
Al Virod3607752016-03-25 15:21:09 -0400261static int apparmor_path_mkdir(const struct path *dir, struct dentry *dentry,
Al Viro4572bef2011-11-21 14:56:21 -0500262 umode_t mode)
John Johansenb5e95b42010-07-29 14:48:07 -0700263{
264 return common_perm_create(OP_MKDIR, dir, dentry, AA_MAY_CREATE,
265 S_IFDIR);
266}
267
Al Viro989f74e2016-03-25 15:13:39 -0400268static int apparmor_path_rmdir(const struct path *dir, struct dentry *dentry)
John Johansenb5e95b42010-07-29 14:48:07 -0700269{
270 return common_perm_rm(OP_RMDIR, dir, dentry, AA_MAY_DELETE);
271}
272
Al Virod3607752016-03-25 15:21:09 -0400273static int apparmor_path_mknod(const struct path *dir, struct dentry *dentry,
Al Viro04fc66e2011-11-21 14:58:38 -0500274 umode_t mode, unsigned int dev)
John Johansenb5e95b42010-07-29 14:48:07 -0700275{
276 return common_perm_create(OP_MKNOD, dir, dentry, AA_MAY_CREATE, mode);
277}
278
Al Viro81f4c502016-03-25 14:22:01 -0400279static int apparmor_path_truncate(const struct path *path)
John Johansenb5e95b42010-07-29 14:48:07 -0700280{
John Johansen31f75bf2017-01-16 00:43:07 -0800281 return common_perm_cond(OP_TRUNC, path, MAY_WRITE | AA_MAY_META_WRITE);
John Johansenb5e95b42010-07-29 14:48:07 -0700282}
283
Al Virod3607752016-03-25 15:21:09 -0400284static int apparmor_path_symlink(const struct path *dir, struct dentry *dentry,
John Johansenb5e95b42010-07-29 14:48:07 -0700285 const char *old_name)
286{
287 return common_perm_create(OP_SYMLINK, dir, dentry, AA_MAY_CREATE,
288 S_IFLNK);
289}
290
Al Viro3ccee462016-03-25 15:27:45 -0400291static int apparmor_path_link(struct dentry *old_dentry, const struct path *new_dir,
John Johansenb5e95b42010-07-29 14:48:07 -0700292 struct dentry *new_dentry)
293{
294 struct aa_profile *profile;
295 int error = 0;
296
John Johansenefeee832017-01-16 00:42:28 -0800297 if (!path_mediated_fs(old_dentry))
John Johansenb5e95b42010-07-29 14:48:07 -0700298 return 0;
299
300 profile = aa_current_profile();
301 if (!unconfined(profile))
302 error = aa_path_link(profile, old_dentry, new_dir, new_dentry);
303 return error;
304}
305
Al Viro3ccee462016-03-25 15:27:45 -0400306static int apparmor_path_rename(const struct path *old_dir, struct dentry *old_dentry,
307 const struct path *new_dir, struct dentry *new_dentry)
John Johansenb5e95b42010-07-29 14:48:07 -0700308{
309 struct aa_profile *profile;
310 int error = 0;
311
John Johansenefeee832017-01-16 00:42:28 -0800312 if (!path_mediated_fs(old_dentry))
John Johansenb5e95b42010-07-29 14:48:07 -0700313 return 0;
314
315 profile = aa_current_profile();
316 if (!unconfined(profile)) {
Kees Cook8486adf2016-12-16 17:04:13 -0800317 struct path old_path = { .mnt = old_dir->mnt,
318 .dentry = old_dentry };
319 struct path new_path = { .mnt = new_dir->mnt,
320 .dentry = new_dentry };
David Howellsc6f493d2015-03-17 22:26:22 +0000321 struct path_cond cond = { d_backing_inode(old_dentry)->i_uid,
322 d_backing_inode(old_dentry)->i_mode
John Johansenb5e95b42010-07-29 14:48:07 -0700323 };
324
325 error = aa_path_perm(OP_RENAME_SRC, profile, &old_path, 0,
326 MAY_READ | AA_MAY_META_READ | MAY_WRITE |
327 AA_MAY_META_WRITE | AA_MAY_DELETE,
328 &cond);
329 if (!error)
330 error = aa_path_perm(OP_RENAME_DEST, profile, &new_path,
331 0, MAY_WRITE | AA_MAY_META_WRITE |
332 AA_MAY_CREATE, &cond);
333
334 }
335 return error;
336}
337
Al Virobe01f9f2016-03-25 14:56:23 -0400338static int apparmor_path_chmod(const struct path *path, umode_t mode)
John Johansenb5e95b42010-07-29 14:48:07 -0700339{
John Johansen31f75bf2017-01-16 00:43:07 -0800340 return common_perm_cond(OP_CHMOD, path, AA_MAY_CHMOD);
John Johansenb5e95b42010-07-29 14:48:07 -0700341}
342
Al Viro7fd25da2016-03-25 14:44:41 -0400343static int apparmor_path_chown(const struct path *path, kuid_t uid, kgid_t gid)
John Johansenb5e95b42010-07-29 14:48:07 -0700344{
John Johansen31f75bf2017-01-16 00:43:07 -0800345 return common_perm_cond(OP_CHOWN, path, AA_MAY_CHOWN);
John Johansenb5e95b42010-07-29 14:48:07 -0700346}
347
Al Viro3f7036a2015-03-08 19:28:30 -0400348static int apparmor_inode_getattr(const struct path *path)
John Johansenb5e95b42010-07-29 14:48:07 -0700349{
John Johansen31f75bf2017-01-16 00:43:07 -0800350 return common_perm_cond(OP_GETATTR, path, AA_MAY_META_READ);
John Johansenb5e95b42010-07-29 14:48:07 -0700351}
352
Eric Paris83d49852012-04-04 13:45:40 -0400353static int apparmor_file_open(struct file *file, const struct cred *cred)
John Johansenb5e95b42010-07-29 14:48:07 -0700354{
John Johansen55a26eb2017-01-16 00:43:00 -0800355 struct aa_file_ctx *fctx = file->f_security;
John Johansenb5e95b42010-07-29 14:48:07 -0700356 struct aa_profile *profile;
357 int error = 0;
358
John Johansenefeee832017-01-16 00:42:28 -0800359 if (!path_mediated_fs(file->f_path.dentry))
John Johansenb5e95b42010-07-29 14:48:07 -0700360 return 0;
361
362 /* If in exec, permission is handled by bprm hooks.
363 * Cache permissions granted by the previous exec check, with
364 * implicit read and executable mmap which are required to
365 * actually execute the image.
366 */
367 if (current->in_execve) {
John Johansen55a26eb2017-01-16 00:43:00 -0800368 fctx->allow = MAY_EXEC | MAY_READ | AA_EXEC_MMAP;
John Johansenb5e95b42010-07-29 14:48:07 -0700369 return 0;
370 }
371
372 profile = aa_cred_profile(cred);
373 if (!unconfined(profile)) {
Al Viro496ad9a2013-01-23 17:07:38 -0500374 struct inode *inode = file_inode(file);
John Johansenb5e95b42010-07-29 14:48:07 -0700375 struct path_cond cond = { inode->i_uid, inode->i_mode };
376
377 error = aa_path_perm(OP_OPEN, profile, &file->f_path, 0,
378 aa_map_file_to_perms(file), &cond);
379 /* todo cache full allowed permissions set and state */
John Johansen55a26eb2017-01-16 00:43:00 -0800380 fctx->allow = aa_map_file_to_perms(file);
John Johansenb5e95b42010-07-29 14:48:07 -0700381 }
382
383 return error;
384}
385
386static int apparmor_file_alloc_security(struct file *file)
387{
388 /* freed by apparmor_file_free_security */
389 file->f_security = aa_alloc_file_context(GFP_KERNEL);
390 if (!file->f_security)
391 return -ENOMEM;
392 return 0;
393
394}
395
396static void apparmor_file_free_security(struct file *file)
397{
John Johansen55a26eb2017-01-16 00:43:00 -0800398 struct aa_file_ctx *ctx = file->f_security;
John Johansenb5e95b42010-07-29 14:48:07 -0700399
John Johansen55a26eb2017-01-16 00:43:00 -0800400 aa_free_file_context(ctx);
John Johansenb5e95b42010-07-29 14:48:07 -0700401}
402
John Johansen47f6e5c2017-01-16 00:43:01 -0800403static int common_file_perm(const char *op, struct file *file, u32 mask)
John Johansenb5e95b42010-07-29 14:48:07 -0700404{
John Johansen55a26eb2017-01-16 00:43:00 -0800405 struct aa_file_ctx *fctx = file->f_security;
John Johansenb5e95b42010-07-29 14:48:07 -0700406 struct aa_profile *profile, *fprofile = aa_cred_profile(file->f_cred);
407 int error = 0;
408
409 BUG_ON(!fprofile);
410
411 if (!file->f_path.mnt ||
John Johansenefeee832017-01-16 00:42:28 -0800412 !path_mediated_fs(file->f_path.dentry))
John Johansenb5e95b42010-07-29 14:48:07 -0700413 return 0;
414
415 profile = __aa_current_profile();
416
417 /* revalidate access, if task is unconfined, or the cached cred
418 * doesn't match or if the request is for more permissions than
419 * was granted.
420 *
421 * Note: the test for !unconfined(fprofile) is to handle file
422 * delegation from unconfined tasks
423 */
424 if (!unconfined(profile) && !unconfined(fprofile) &&
John Johansen55a26eb2017-01-16 00:43:00 -0800425 ((fprofile != profile) || (mask & ~fctx->allow)))
John Johansenb5e95b42010-07-29 14:48:07 -0700426 error = aa_file_perm(op, profile, file, mask);
427
428 return error;
429}
430
431static int apparmor_file_permission(struct file *file, int mask)
432{
433 return common_file_perm(OP_FPERM, file, mask);
434}
435
436static int apparmor_file_lock(struct file *file, unsigned int cmd)
437{
438 u32 mask = AA_MAY_LOCK;
439
440 if (cmd == F_WRLCK)
441 mask |= MAY_WRITE;
442
443 return common_file_perm(OP_FLOCK, file, mask);
444}
445
John Johansen47f6e5c2017-01-16 00:43:01 -0800446static int common_mmap(const char *op, struct file *file, unsigned long prot,
John Johansenb5e95b42010-07-29 14:48:07 -0700447 unsigned long flags)
448{
John Johansenb5e95b42010-07-29 14:48:07 -0700449 int mask = 0;
450
451 if (!file || !file->f_security)
452 return 0;
453
454 if (prot & PROT_READ)
455 mask |= MAY_READ;
456 /*
457 * Private mappings don't require write perms since they don't
458 * write back to the files
459 */
460 if ((prot & PROT_WRITE) && !(flags & MAP_PRIVATE))
461 mask |= MAY_WRITE;
462 if (prot & PROT_EXEC)
463 mask |= AA_EXEC_MMAP;
464
John Johansenb5e95b42010-07-29 14:48:07 -0700465 return common_file_perm(op, file, mask);
466}
467
Al Viroe5467852012-05-30 13:30:51 -0400468static int apparmor_mmap_file(struct file *file, unsigned long reqprot,
469 unsigned long prot, unsigned long flags)
John Johansenb5e95b42010-07-29 14:48:07 -0700470{
John Johansenb5e95b42010-07-29 14:48:07 -0700471 return common_mmap(OP_FMMAP, file, prot, flags);
472}
473
474static int apparmor_file_mprotect(struct vm_area_struct *vma,
475 unsigned long reqprot, unsigned long prot)
476{
477 return common_mmap(OP_FMPROT, vma->vm_file, prot,
478 !(vma->vm_flags & VM_SHARED) ? MAP_PRIVATE : 0);
479}
480
481static int apparmor_getprocattr(struct task_struct *task, char *name,
482 char **value)
483{
484 int error = -ENOENT;
John Johansenb5e95b42010-07-29 14:48:07 -0700485 /* released below */
486 const struct cred *cred = get_task_cred(task);
John Johansen55a26eb2017-01-16 00:43:00 -0800487 struct aa_task_ctx *ctx = cred_ctx(cred);
John Johansen77b071b2013-07-10 21:07:43 -0700488 struct aa_profile *profile = NULL;
John Johansenb5e95b42010-07-29 14:48:07 -0700489
490 if (strcmp(name, "current") == 0)
John Johansen55a26eb2017-01-16 00:43:00 -0800491 profile = aa_get_newest_profile(ctx->profile);
492 else if (strcmp(name, "prev") == 0 && ctx->previous)
493 profile = aa_get_newest_profile(ctx->previous);
494 else if (strcmp(name, "exec") == 0 && ctx->onexec)
495 profile = aa_get_newest_profile(ctx->onexec);
John Johansenb5e95b42010-07-29 14:48:07 -0700496 else
497 error = -EINVAL;
498
John Johansen77b071b2013-07-10 21:07:43 -0700499 if (profile)
500 error = aa_getprocattr(profile, value);
501
502 aa_put_profile(profile);
John Johansenb5e95b42010-07-29 14:48:07 -0700503 put_cred(cred);
504
505 return error;
506}
507
508static int apparmor_setprocattr(struct task_struct *task, char *name,
509 void *value, size_t size)
510{
Vegard Nossume89b8082016-07-07 13:41:11 -0700511 char *command, *largs = NULL, *args = value;
John Johansenb5e95b42010-07-29 14:48:07 -0700512 size_t arg_size;
513 int error;
John Johansenef88a7a2017-01-16 00:43:02 -0800514 DEFINE_AUDIT_DATA(sa, LSM_AUDIT_DATA_NONE, OP_SETPROCATTR);
John Johansenb5e95b42010-07-29 14:48:07 -0700515
516 if (size == 0)
517 return -EINVAL;
John Johansenb5e95b42010-07-29 14:48:07 -0700518 /* task can only write its own attributes */
519 if (current != task)
520 return -EACCES;
521
Vegard Nossume89b8082016-07-07 13:41:11 -0700522 /* AppArmor requires that the buffer must be null terminated atm */
523 if (args[size - 1] != '\0') {
524 /* null terminate */
525 largs = args = kmalloc(size + 1, GFP_KERNEL);
526 if (!args)
527 return -ENOMEM;
528 memcpy(args, value, size);
529 args[size] = '\0';
530 }
531
532 error = -EINVAL;
John Johansenb5e95b42010-07-29 14:48:07 -0700533 args = strim(args);
534 command = strsep(&args, " ");
535 if (!args)
Vegard Nossume89b8082016-07-07 13:41:11 -0700536 goto out;
John Johansenb5e95b42010-07-29 14:48:07 -0700537 args = skip_spaces(args);
538 if (!*args)
Vegard Nossume89b8082016-07-07 13:41:11 -0700539 goto out;
John Johansenb5e95b42010-07-29 14:48:07 -0700540
John Johansend4d03f72016-07-09 23:46:33 -0700541 arg_size = size - (args - (largs ? largs : (char *) value));
John Johansenb5e95b42010-07-29 14:48:07 -0700542 if (strcmp(name, "current") == 0) {
543 if (strcmp(command, "changehat") == 0) {
544 error = aa_setprocattr_changehat(args, arg_size,
545 !AA_DO_TEST);
546 } else if (strcmp(command, "permhat") == 0) {
547 error = aa_setprocattr_changehat(args, arg_size,
548 AA_DO_TEST);
549 } else if (strcmp(command, "changeprofile") == 0) {
John Johansenaa9a39a2017-01-16 00:43:06 -0800550 error = aa_change_profile(args, !AA_ONEXEC,
551 !AA_DO_TEST, false);
John Johansenb5e95b42010-07-29 14:48:07 -0700552 } else if (strcmp(command, "permprofile") == 0) {
John Johansenaa9a39a2017-01-16 00:43:06 -0800553 error = aa_change_profile(args, !AA_ONEXEC, AA_DO_TEST,
554 false);
John Johansen3eea57c2013-02-27 03:44:40 -0800555 } else
556 goto fail;
John Johansenb5e95b42010-07-29 14:48:07 -0700557 } else if (strcmp(name, "exec") == 0) {
John Johansen3eea57c2013-02-27 03:44:40 -0800558 if (strcmp(command, "exec") == 0)
John Johansenaa9a39a2017-01-16 00:43:06 -0800559 error = aa_change_profile(args, AA_ONEXEC, !AA_DO_TEST,
560 false);
John Johansen3eea57c2013-02-27 03:44:40 -0800561 else
562 goto fail;
563 } else
John Johansenb5e95b42010-07-29 14:48:07 -0700564 /* only support the "current" and "exec" process attributes */
Vegard Nossume89b8082016-07-07 13:41:11 -0700565 goto fail;
John Johansen3eea57c2013-02-27 03:44:40 -0800566
John Johansenb5e95b42010-07-29 14:48:07 -0700567 if (!error)
568 error = size;
Vegard Nossume89b8082016-07-07 13:41:11 -0700569out:
570 kfree(largs);
John Johansenb5e95b42010-07-29 14:48:07 -0700571 return error;
John Johansen3eea57c2013-02-27 03:44:40 -0800572
573fail:
John Johansenef88a7a2017-01-16 00:43:02 -0800574 aad(&sa)->profile = aa_current_profile();
575 aad(&sa)->info = name;
576 aad(&sa)->error = error = -EINVAL;
John Johansen3eea57c2013-02-27 03:44:40 -0800577 aa_audit_msg(AUDIT_APPARMOR_DENIED, &sa, NULL);
Vegard Nossume89b8082016-07-07 13:41:11 -0700578 goto out;
John Johansenb5e95b42010-07-29 14:48:07 -0700579}
580
Jiri Slaby7cb4dc92010-08-11 11:28:02 +0200581static int apparmor_task_setrlimit(struct task_struct *task,
582 unsigned int resource, struct rlimit *new_rlim)
John Johansenb5e95b42010-07-29 14:48:07 -0700583{
John Johansen1780f2d2011-06-08 15:07:47 -0700584 struct aa_profile *profile = __aa_current_profile();
John Johansenb5e95b42010-07-29 14:48:07 -0700585 int error = 0;
586
587 if (!unconfined(profile))
John Johansen3a2dc832010-09-06 10:10:20 -0700588 error = aa_task_setrlimit(profile, task, resource, new_rlim);
John Johansenb5e95b42010-07-29 14:48:07 -0700589
590 return error;
591}
592
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -0700593static struct security_hook_list apparmor_hooks[] = {
Casey Schauflere20b0432015-05-02 15:11:36 -0700594 LSM_HOOK_INIT(ptrace_access_check, apparmor_ptrace_access_check),
595 LSM_HOOK_INIT(ptrace_traceme, apparmor_ptrace_traceme),
596 LSM_HOOK_INIT(capget, apparmor_capget),
597 LSM_HOOK_INIT(capable, apparmor_capable),
John Johansenb5e95b42010-07-29 14:48:07 -0700598
Casey Schauflere20b0432015-05-02 15:11:36 -0700599 LSM_HOOK_INIT(path_link, apparmor_path_link),
600 LSM_HOOK_INIT(path_unlink, apparmor_path_unlink),
601 LSM_HOOK_INIT(path_symlink, apparmor_path_symlink),
602 LSM_HOOK_INIT(path_mkdir, apparmor_path_mkdir),
603 LSM_HOOK_INIT(path_rmdir, apparmor_path_rmdir),
604 LSM_HOOK_INIT(path_mknod, apparmor_path_mknod),
605 LSM_HOOK_INIT(path_rename, apparmor_path_rename),
606 LSM_HOOK_INIT(path_chmod, apparmor_path_chmod),
607 LSM_HOOK_INIT(path_chown, apparmor_path_chown),
608 LSM_HOOK_INIT(path_truncate, apparmor_path_truncate),
609 LSM_HOOK_INIT(inode_getattr, apparmor_inode_getattr),
John Johansenb5e95b42010-07-29 14:48:07 -0700610
Casey Schauflere20b0432015-05-02 15:11:36 -0700611 LSM_HOOK_INIT(file_open, apparmor_file_open),
612 LSM_HOOK_INIT(file_permission, apparmor_file_permission),
613 LSM_HOOK_INIT(file_alloc_security, apparmor_file_alloc_security),
614 LSM_HOOK_INIT(file_free_security, apparmor_file_free_security),
615 LSM_HOOK_INIT(mmap_file, apparmor_mmap_file),
Casey Schauflere20b0432015-05-02 15:11:36 -0700616 LSM_HOOK_INIT(file_mprotect, apparmor_file_mprotect),
617 LSM_HOOK_INIT(file_lock, apparmor_file_lock),
John Johansenb5e95b42010-07-29 14:48:07 -0700618
Casey Schauflere20b0432015-05-02 15:11:36 -0700619 LSM_HOOK_INIT(getprocattr, apparmor_getprocattr),
620 LSM_HOOK_INIT(setprocattr, apparmor_setprocattr),
John Johansenb5e95b42010-07-29 14:48:07 -0700621
Casey Schauflere20b0432015-05-02 15:11:36 -0700622 LSM_HOOK_INIT(cred_alloc_blank, apparmor_cred_alloc_blank),
623 LSM_HOOK_INIT(cred_free, apparmor_cred_free),
624 LSM_HOOK_INIT(cred_prepare, apparmor_cred_prepare),
625 LSM_HOOK_INIT(cred_transfer, apparmor_cred_transfer),
John Johansenb5e95b42010-07-29 14:48:07 -0700626
Casey Schauflere20b0432015-05-02 15:11:36 -0700627 LSM_HOOK_INIT(bprm_set_creds, apparmor_bprm_set_creds),
628 LSM_HOOK_INIT(bprm_committing_creds, apparmor_bprm_committing_creds),
629 LSM_HOOK_INIT(bprm_committed_creds, apparmor_bprm_committed_creds),
630 LSM_HOOK_INIT(bprm_secureexec, apparmor_bprm_secureexec),
John Johansenb5e95b42010-07-29 14:48:07 -0700631
Casey Schauflere20b0432015-05-02 15:11:36 -0700632 LSM_HOOK_INIT(task_setrlimit, apparmor_task_setrlimit),
John Johansenb5e95b42010-07-29 14:48:07 -0700633};
634
635/*
636 * AppArmor sysfs module parameters
637 */
638
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000639static int param_set_aabool(const char *val, const struct kernel_param *kp);
640static int param_get_aabool(char *buffer, const struct kernel_param *kp);
Rusty Russellb8aa09f2011-12-15 13:41:32 +1030641#define param_check_aabool param_check_bool
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930642static const struct kernel_param_ops param_ops_aabool = {
Jani Nikula6a4c2642014-08-27 06:21:23 +0930643 .flags = KERNEL_PARAM_OPS_FL_NOARG,
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000644 .set = param_set_aabool,
645 .get = param_get_aabool
646};
John Johansenb5e95b42010-07-29 14:48:07 -0700647
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000648static int param_set_aauint(const char *val, const struct kernel_param *kp);
649static int param_get_aauint(char *buffer, const struct kernel_param *kp);
Rusty Russellb8aa09f2011-12-15 13:41:32 +1030650#define param_check_aauint param_check_uint
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930651static const struct kernel_param_ops param_ops_aauint = {
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000652 .set = param_set_aauint,
653 .get = param_get_aauint
654};
John Johansenb5e95b42010-07-29 14:48:07 -0700655
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000656static int param_set_aalockpolicy(const char *val, const struct kernel_param *kp);
657static int param_get_aalockpolicy(char *buffer, const struct kernel_param *kp);
Rusty Russellb8aa09f2011-12-15 13:41:32 +1030658#define param_check_aalockpolicy param_check_bool
Luis R. Rodriguez9c278472015-05-27 11:09:38 +0930659static const struct kernel_param_ops param_ops_aalockpolicy = {
Jani Nikula6a4c2642014-08-27 06:21:23 +0930660 .flags = KERNEL_PARAM_OPS_FL_NOARG,
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000661 .set = param_set_aalockpolicy,
662 .get = param_get_aalockpolicy
663};
John Johansenb5e95b42010-07-29 14:48:07 -0700664
665static int param_set_audit(const char *val, struct kernel_param *kp);
666static int param_get_audit(char *buffer, struct kernel_param *kp);
John Johansenb5e95b42010-07-29 14:48:07 -0700667
668static int param_set_mode(const char *val, struct kernel_param *kp);
669static int param_get_mode(char *buffer, struct kernel_param *kp);
John Johansenb5e95b42010-07-29 14:48:07 -0700670
671/* Flag values, also controllable via /sys/module/apparmor/parameters
672 * We define special types as we want to do additional mediation.
673 */
674
675/* AppArmor global enforcement switch - complain, enforce, kill */
676enum profile_mode aa_g_profile_mode = APPARMOR_ENFORCE;
677module_param_call(mode, param_set_mode, param_get_mode,
678 &aa_g_profile_mode, S_IRUSR | S_IWUSR);
679
Arnd Bergmann7616ac72016-07-25 10:59:07 -0700680#ifdef CONFIG_SECURITY_APPARMOR_HASH
John Johansen6059f712014-10-24 09:16:14 -0700681/* whether policy verification hashing is enabled */
Arnd Bergmann7616ac72016-07-25 10:59:07 -0700682bool aa_g_hash_policy = IS_ENABLED(CONFIG_SECURITY_APPARMOR_HASH_DEFAULT);
John Johansen6059f712014-10-24 09:16:14 -0700683module_param_named(hash_policy, aa_g_hash_policy, aabool, S_IRUSR | S_IWUSR);
Arnd Bergmann7616ac72016-07-25 10:59:07 -0700684#endif
John Johansen6059f712014-10-24 09:16:14 -0700685
John Johansenb5e95b42010-07-29 14:48:07 -0700686/* Debug mode */
John Johansen680cd622017-01-16 00:42:27 -0800687bool aa_g_debug = IS_ENABLED(CONFIG_SECURITY_DEBUG_MESSAGES);
John Johansenb5e95b42010-07-29 14:48:07 -0700688module_param_named(debug, aa_g_debug, aabool, S_IRUSR | S_IWUSR);
689
690/* Audit mode */
691enum audit_mode aa_g_audit;
692module_param_call(audit, param_set_audit, param_get_audit,
693 &aa_g_audit, S_IRUSR | S_IWUSR);
694
695/* Determines if audit header is included in audited messages. This
696 * provides more context if the audit daemon is not running
697 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030698bool aa_g_audit_header = 1;
John Johansenb5e95b42010-07-29 14:48:07 -0700699module_param_named(audit_header, aa_g_audit_header, aabool,
700 S_IRUSR | S_IWUSR);
701
702/* lock out loading/removal of policy
703 * TODO: add in at boot loading of policy, which is the only way to
704 * load policy, if lock_policy is set
705 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030706bool aa_g_lock_policy;
John Johansenb5e95b42010-07-29 14:48:07 -0700707module_param_named(lock_policy, aa_g_lock_policy, aalockpolicy,
708 S_IRUSR | S_IWUSR);
709
710/* Syscall logging mode */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030711bool aa_g_logsyscall;
John Johansenb5e95b42010-07-29 14:48:07 -0700712module_param_named(logsyscall, aa_g_logsyscall, aabool, S_IRUSR | S_IWUSR);
713
714/* Maximum pathname length before accesses will start getting rejected */
715unsigned int aa_g_path_max = 2 * PATH_MAX;
716module_param_named(path_max, aa_g_path_max, aauint, S_IRUSR | S_IWUSR);
717
718/* Determines how paranoid loading of policy is and how much verification
719 * on the loaded policy is done.
John Johansenabbf8732017-01-16 00:42:37 -0800720 * DEPRECATED: read only as strict checking of load is always done now
721 * that none root users (user namespaces) can load policy.
John Johansenb5e95b42010-07-29 14:48:07 -0700722 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030723bool aa_g_paranoid_load = 1;
John Johansenabbf8732017-01-16 00:42:37 -0800724module_param_named(paranoid_load, aa_g_paranoid_load, aabool, S_IRUGO);
John Johansenb5e95b42010-07-29 14:48:07 -0700725
726/* Boot time disable flag */
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030727static bool apparmor_enabled = CONFIG_SECURITY_APPARMOR_BOOTPARAM_VALUE;
John Johansenc6116162013-07-10 21:03:43 -0700728module_param_named(enabled, apparmor_enabled, bool, S_IRUGO);
John Johansenb5e95b42010-07-29 14:48:07 -0700729
730static int __init apparmor_enabled_setup(char *str)
731{
732 unsigned long enabled;
Jingoo Han29707b22014-02-05 15:13:14 +0900733 int error = kstrtoul(str, 0, &enabled);
John Johansenb5e95b42010-07-29 14:48:07 -0700734 if (!error)
735 apparmor_enabled = enabled ? 1 : 0;
736 return 1;
737}
738
739__setup("apparmor=", apparmor_enabled_setup);
740
741/* set global flag turning off the ability to load policy */
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000742static int param_set_aalockpolicy(const char *val, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -0700743{
John Johansenfd2a8042017-01-16 00:42:51 -0800744 if (!policy_admin_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700745 return -EPERM;
John Johansenb5e95b42010-07-29 14:48:07 -0700746 return param_set_bool(val, kp);
747}
748
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000749static int param_get_aalockpolicy(char *buffer, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -0700750{
John Johansen2bd8dbb2017-01-16 00:42:50 -0800751 if (!policy_view_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700752 return -EPERM;
753 return param_get_bool(buffer, kp);
754}
755
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000756static int param_set_aabool(const char *val, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -0700757{
John Johansenfd2a8042017-01-16 00:42:51 -0800758 if (!policy_admin_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700759 return -EPERM;
760 return param_set_bool(val, kp);
761}
762
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000763static int param_get_aabool(char *buffer, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -0700764{
John Johansen2bd8dbb2017-01-16 00:42:50 -0800765 if (!policy_view_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700766 return -EPERM;
767 return param_get_bool(buffer, kp);
768}
769
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000770static int param_set_aauint(const char *val, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -0700771{
John Johansenfd2a8042017-01-16 00:42:51 -0800772 if (!policy_admin_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700773 return -EPERM;
774 return param_set_uint(val, kp);
775}
776
Stephen Rothwell101d6c82010-08-02 12:00:43 +1000777static int param_get_aauint(char *buffer, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -0700778{
John Johansen2bd8dbb2017-01-16 00:42:50 -0800779 if (!policy_view_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700780 return -EPERM;
781 return param_get_uint(buffer, kp);
782}
783
784static int param_get_audit(char *buffer, struct kernel_param *kp)
785{
John Johansen2bd8dbb2017-01-16 00:42:50 -0800786 if (!policy_view_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700787 return -EPERM;
788
789 if (!apparmor_enabled)
790 return -EINVAL;
791
792 return sprintf(buffer, "%s", audit_mode_names[aa_g_audit]);
793}
794
795static int param_set_audit(const char *val, struct kernel_param *kp)
796{
797 int i;
John Johansenfd2a8042017-01-16 00:42:51 -0800798 if (!policy_admin_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700799 return -EPERM;
800
801 if (!apparmor_enabled)
802 return -EINVAL;
803
804 if (!val)
805 return -EINVAL;
806
807 for (i = 0; i < AUDIT_MAX_INDEX; i++) {
808 if (strcmp(val, audit_mode_names[i]) == 0) {
809 aa_g_audit = i;
810 return 0;
811 }
812 }
813
814 return -EINVAL;
815}
816
817static int param_get_mode(char *buffer, struct kernel_param *kp)
818{
John Johansenfd2a8042017-01-16 00:42:51 -0800819 if (!policy_view_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700820 return -EPERM;
821
822 if (!apparmor_enabled)
823 return -EINVAL;
824
John Johansen0d259f02013-07-10 21:13:43 -0700825 return sprintf(buffer, "%s", aa_profile_mode_names[aa_g_profile_mode]);
John Johansenb5e95b42010-07-29 14:48:07 -0700826}
827
828static int param_set_mode(const char *val, struct kernel_param *kp)
829{
830 int i;
John Johansenfd2a8042017-01-16 00:42:51 -0800831 if (!policy_admin_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -0700832 return -EPERM;
833
834 if (!apparmor_enabled)
835 return -EINVAL;
836
837 if (!val)
838 return -EINVAL;
839
John Johansen0d259f02013-07-10 21:13:43 -0700840 for (i = 0; i < APPARMOR_MODE_NAMES_MAX_INDEX; i++) {
841 if (strcmp(val, aa_profile_mode_names[i]) == 0) {
John Johansenb5e95b42010-07-29 14:48:07 -0700842 aa_g_profile_mode = i;
843 return 0;
844 }
845 }
846
847 return -EINVAL;
848}
849
850/*
851 * AppArmor init functions
852 */
853
854/**
John Johansen55a26eb2017-01-16 00:43:00 -0800855 * set_init_ctx - set a task context and profile on the first task.
John Johansenb5e95b42010-07-29 14:48:07 -0700856 *
857 * TODO: allow setting an alternate profile than unconfined
858 */
John Johansen55a26eb2017-01-16 00:43:00 -0800859static int __init set_init_ctx(void)
John Johansenb5e95b42010-07-29 14:48:07 -0700860{
861 struct cred *cred = (struct cred *)current->real_cred;
John Johansen55a26eb2017-01-16 00:43:00 -0800862 struct aa_task_ctx *ctx;
John Johansenb5e95b42010-07-29 14:48:07 -0700863
John Johansen55a26eb2017-01-16 00:43:00 -0800864 ctx = aa_alloc_task_context(GFP_KERNEL);
865 if (!ctx)
John Johansenb5e95b42010-07-29 14:48:07 -0700866 return -ENOMEM;
867
John Johansen55a26eb2017-01-16 00:43:00 -0800868 ctx->profile = aa_get_profile(root_ns->unconfined);
869 cred_ctx(cred) = ctx;
John Johansenb5e95b42010-07-29 14:48:07 -0700870
871 return 0;
872}
873
John Johansend4669f02017-01-16 00:43:10 -0800874static void destroy_buffers(void)
875{
876 u32 i, j;
877
878 for_each_possible_cpu(i) {
879 for_each_cpu_buffer(j) {
880 kfree(per_cpu(aa_buffers, i).buf[j]);
881 per_cpu(aa_buffers, i).buf[j] = NULL;
882 }
883 }
884}
885
886static int __init alloc_buffers(void)
887{
888 u32 i, j;
889
890 for_each_possible_cpu(i) {
891 for_each_cpu_buffer(j) {
892 char *buffer;
893
894 if (cpu_to_node(i) > num_online_nodes())
895 /* fallback to kmalloc for offline nodes */
896 buffer = kmalloc(aa_g_path_max, GFP_KERNEL);
897 else
898 buffer = kmalloc_node(aa_g_path_max, GFP_KERNEL,
899 cpu_to_node(i));
900 if (!buffer) {
901 destroy_buffers();
902 return -ENOMEM;
903 }
904 per_cpu(aa_buffers, i).buf[j] = buffer;
905 }
906 }
907
908 return 0;
909}
910
Tyler Hickse3ea1ca2016-03-16 19:19:10 -0500911#ifdef CONFIG_SYSCTL
912static int apparmor_dointvec(struct ctl_table *table, int write,
913 void __user *buffer, size_t *lenp, loff_t *ppos)
914{
915 if (!policy_admin_capable(NULL))
916 return -EPERM;
917 if (!apparmor_enabled)
918 return -EINVAL;
919
920 return proc_dointvec(table, write, buffer, lenp, ppos);
921}
922
923static struct ctl_path apparmor_sysctl_path[] = {
924 { .procname = "kernel", },
925 { }
926};
927
928static struct ctl_table apparmor_sysctl_table[] = {
929 {
930 .procname = "unprivileged_userns_apparmor_policy",
931 .data = &unprivileged_userns_apparmor_policy,
932 .maxlen = sizeof(int),
933 .mode = 0600,
934 .proc_handler = apparmor_dointvec,
935 },
936 { }
937};
938
939static int __init apparmor_init_sysctl(void)
940{
941 return register_sysctl_paths(apparmor_sysctl_path,
942 apparmor_sysctl_table) ? 0 : -ENOMEM;
943}
944#else
945static inline int apparmor_init_sysctl(void)
946{
947 return 0;
948}
949#endif /* CONFIG_SYSCTL */
950
John Johansenb5e95b42010-07-29 14:48:07 -0700951static int __init apparmor_init(void)
952{
953 int error;
954
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -0700955 if (!apparmor_enabled || !security_module_enable("apparmor")) {
John Johansenb5e95b42010-07-29 14:48:07 -0700956 aa_info_message("AppArmor disabled by boot time parameter");
957 apparmor_enabled = 0;
958 return 0;
959 }
960
John Johansen11c236b2017-01-16 00:42:42 -0800961 error = aa_setup_dfa_engine();
962 if (error) {
963 AA_ERROR("Unable to setup dfa engine\n");
964 goto alloc_out;
965 }
966
John Johansenb5e95b42010-07-29 14:48:07 -0700967 error = aa_alloc_root_ns();
968 if (error) {
969 AA_ERROR("Unable to allocate default profile namespace\n");
970 goto alloc_out;
971 }
972
Tyler Hickse3ea1ca2016-03-16 19:19:10 -0500973 error = apparmor_init_sysctl();
974 if (error) {
975 AA_ERROR("Unable to register sysctls\n");
976 goto alloc_out;
977
978 }
979
John Johansend4669f02017-01-16 00:43:10 -0800980 error = alloc_buffers();
981 if (error) {
982 AA_ERROR("Unable to allocate work buffers\n");
983 goto buffers_out;
984 }
985
John Johansen55a26eb2017-01-16 00:43:00 -0800986 error = set_init_ctx();
John Johansenb5e95b42010-07-29 14:48:07 -0700987 if (error) {
988 AA_ERROR("Failed to set context on init task\n");
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -0700989 aa_free_root_ns();
John Johansend4669f02017-01-16 00:43:10 -0800990 goto buffers_out;
John Johansenb5e95b42010-07-29 14:48:07 -0700991 }
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -0700992 security_add_hooks(apparmor_hooks, ARRAY_SIZE(apparmor_hooks));
John Johansenb5e95b42010-07-29 14:48:07 -0700993
994 /* Report that AppArmor successfully initialized */
995 apparmor_initialized = 1;
996 if (aa_g_profile_mode == APPARMOR_COMPLAIN)
997 aa_info_message("AppArmor initialized: complain mode enabled");
998 else if (aa_g_profile_mode == APPARMOR_KILL)
999 aa_info_message("AppArmor initialized: kill mode enabled");
1000 else
1001 aa_info_message("AppArmor initialized");
1002
1003 return error;
1004
John Johansend4669f02017-01-16 00:43:10 -08001005buffers_out:
1006 destroy_buffers();
1007
John Johansenb5e95b42010-07-29 14:48:07 -07001008alloc_out:
1009 aa_destroy_aafs();
John Johansen11c236b2017-01-16 00:42:42 -08001010 aa_teardown_dfa_engine();
John Johansenb5e95b42010-07-29 14:48:07 -07001011
1012 apparmor_enabled = 0;
1013 return error;
John Johansenb5e95b42010-07-29 14:48:07 -07001014}
1015
1016security_initcall(apparmor_init);