blob: f46a12b339bc408325f4cce510355d9cd640ff72 [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"
John Johansen651e28c2017-07-18 23:18:33 -070036#include "include/net.h"
John Johansenb5e95b42010-07-29 14:48:07 -070037#include "include/path.h"
John Johansen637f6882017-06-09 08:14:28 -070038#include "include/label.h"
John Johansenb5e95b42010-07-29 14:48:07 -070039#include "include/policy.h"
John Johansencff281f2017-01-16 00:42:15 -080040#include "include/policy_ns.h"
John Johansenb5e95b42010-07-29 14:48:07 -070041#include "include/procattr.h"
John Johansen2ea3ffb2017-07-18 23:04:47 -070042#include "include/mount.h"
John Johansenb5e95b42010-07-29 14:48:07 -070043
44/* Flag indicating whether initialization completed */
John Johansen545de8f2017-04-06 06:55:23 -070045int apparmor_initialized;
John Johansenb5e95b42010-07-29 14:48:07 -070046
John Johansend4669f02017-01-16 00:43:10 -080047DEFINE_PER_CPU(struct aa_buffers, aa_buffers);
48
49
John Johansenb5e95b42010-07-29 14:48:07 -070050/*
51 * LSM hook functions
52 */
53
54/*
John Johansen637f6882017-06-09 08:14:28 -070055 * free the associated aa_task_ctx and put its labels
John Johansenb5e95b42010-07-29 14:48:07 -070056 */
57static void apparmor_cred_free(struct cred *cred)
58{
John Johansen55a26eb2017-01-16 00:43:00 -080059 aa_free_task_context(cred_ctx(cred));
60 cred_ctx(cred) = NULL;
John Johansenb5e95b42010-07-29 14:48:07 -070061}
62
63/*
64 * allocate the apparmor part of blank credentials
65 */
66static int apparmor_cred_alloc_blank(struct cred *cred, gfp_t gfp)
67{
68 /* freed by apparmor_cred_free */
John Johansen55a26eb2017-01-16 00:43:00 -080069 struct aa_task_ctx *ctx = aa_alloc_task_context(gfp);
70
71 if (!ctx)
John Johansenb5e95b42010-07-29 14:48:07 -070072 return -ENOMEM;
73
John Johansen55a26eb2017-01-16 00:43:00 -080074 cred_ctx(cred) = ctx;
John Johansenb5e95b42010-07-29 14:48:07 -070075 return 0;
76}
77
78/*
John Johansen55a26eb2017-01-16 00:43:00 -080079 * prepare new aa_task_ctx for modification by prepare_cred block
John Johansenb5e95b42010-07-29 14:48:07 -070080 */
81static int apparmor_cred_prepare(struct cred *new, const struct cred *old,
82 gfp_t gfp)
83{
84 /* freed by apparmor_cred_free */
John Johansen55a26eb2017-01-16 00:43:00 -080085 struct aa_task_ctx *ctx = aa_alloc_task_context(gfp);
86
87 if (!ctx)
John Johansenb5e95b42010-07-29 14:48:07 -070088 return -ENOMEM;
89
John Johansen55a26eb2017-01-16 00:43:00 -080090 aa_dup_task_context(ctx, cred_ctx(old));
91 cred_ctx(new) = ctx;
John Johansenb5e95b42010-07-29 14:48:07 -070092 return 0;
93}
94
95/*
96 * transfer the apparmor data to a blank set of creds
97 */
98static void apparmor_cred_transfer(struct cred *new, const struct cred *old)
99{
John Johansen55a26eb2017-01-16 00:43:00 -0800100 const struct aa_task_ctx *old_ctx = cred_ctx(old);
101 struct aa_task_ctx *new_ctx = cred_ctx(new);
John Johansenb5e95b42010-07-29 14:48:07 -0700102
John Johansen55a26eb2017-01-16 00:43:00 -0800103 aa_dup_task_context(new_ctx, old_ctx);
John Johansenb5e95b42010-07-29 14:48:07 -0700104}
105
106static int apparmor_ptrace_access_check(struct task_struct *child,
107 unsigned int mode)
108{
John Johansenb2d09ae2017-06-09 14:22:14 -0700109 struct aa_label *tracer, *tracee;
110 int error;
111
112 tracer = begin_current_label_crit_section();
113 tracee = aa_get_task_label(child);
114 error = aa_may_ptrace(tracer, tracee,
115 mode == PTRACE_MODE_READ ? AA_PTRACE_READ : AA_PTRACE_TRACE);
116 aa_put_label(tracee);
117 end_current_label_crit_section(tracer);
118
119 return error;
John Johansenb5e95b42010-07-29 14:48:07 -0700120}
121
122static int apparmor_ptrace_traceme(struct task_struct *parent)
123{
John Johansenb2d09ae2017-06-09 14:22:14 -0700124 struct aa_label *tracer, *tracee;
125 int error;
126
127 tracee = begin_current_label_crit_section();
128 tracer = aa_get_task_label(parent);
129 error = aa_may_ptrace(tracer, tracee, AA_PTRACE_TRACE);
130 aa_put_label(tracer);
131 end_current_label_crit_section(tracee);
132
133 return error;
John Johansenb5e95b42010-07-29 14:48:07 -0700134}
135
136/* Derived from security/commoncap.c:cap_capget */
137static int apparmor_capget(struct task_struct *target, kernel_cap_t *effective,
138 kernel_cap_t *inheritable, kernel_cap_t *permitted)
139{
John Johansen637f6882017-06-09 08:14:28 -0700140 struct aa_label *label;
John Johansenb5e95b42010-07-29 14:48:07 -0700141 const struct cred *cred;
142
143 rcu_read_lock();
144 cred = __task_cred(target);
John Johansen637f6882017-06-09 08:14:28 -0700145 label = aa_get_newest_cred_label(cred);
John Johansenc70c86c2017-06-09 14:07:02 -0700146
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -0700147 /*
148 * cap_capget is stacked ahead of this and will
149 * initialize effective and permitted.
150 */
John Johansenc70c86c2017-06-09 14:07:02 -0700151 if (!unconfined(label)) {
152 struct aa_profile *profile;
153 struct label_it i;
154
155 label_for_each_confined(i, label, profile) {
156 if (COMPLAIN_MODE(profile))
157 continue;
158 *effective = cap_intersect(*effective,
159 profile->caps.allow);
160 *permitted = cap_intersect(*permitted,
161 profile->caps.allow);
162 }
John Johansenb5e95b42010-07-29 14:48:07 -0700163 }
164 rcu_read_unlock();
John Johansen637f6882017-06-09 08:14:28 -0700165 aa_put_label(label);
John Johansenb5e95b42010-07-29 14:48:07 -0700166
167 return 0;
168}
169
Eric Paris6a9de492012-01-03 12:25:14 -0500170static int apparmor_capable(const struct cred *cred, struct user_namespace *ns,
171 int cap, int audit)
John Johansenb5e95b42010-07-29 14:48:07 -0700172{
John Johansen637f6882017-06-09 08:14:28 -0700173 struct aa_label *label;
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -0700174 int error = 0;
175
John Johansen637f6882017-06-09 08:14:28 -0700176 label = aa_get_newest_cred_label(cred);
177 if (!unconfined(label))
John Johansenc70c86c2017-06-09 14:07:02 -0700178 error = aa_capable(label, cap, audit);
John Johansen637f6882017-06-09 08:14:28 -0700179 aa_put_label(label);
John Johansencf797c02017-06-09 02:08:28 -0700180
John Johansenb5e95b42010-07-29 14:48:07 -0700181 return error;
182}
183
184/**
185 * common_perm - basic common permission check wrapper fn for paths
186 * @op: operation being checked
187 * @path: path to check permission of (NOT NULL)
188 * @mask: requested permissions mask
189 * @cond: conditional info for the permission request (NOT NULL)
190 *
191 * Returns: %0 else error code if error or permission denied
192 */
John Johansen47f6e5c2017-01-16 00:43:01 -0800193static int common_perm(const char *op, const struct path *path, u32 mask,
John Johansenb5e95b42010-07-29 14:48:07 -0700194 struct path_cond *cond)
195{
John Johansen637f6882017-06-09 08:14:28 -0700196 struct aa_label *label;
John Johansenb5e95b42010-07-29 14:48:07 -0700197 int error = 0;
198
John Johansen637f6882017-06-09 08:14:28 -0700199 label = __begin_current_label_crit_section();
200 if (!unconfined(label))
John Johansenaebd8732017-06-09 16:02:25 -0700201 error = aa_path_perm(op, label, path, 0, mask, cond);
John Johansen637f6882017-06-09 08:14:28 -0700202 __end_current_label_crit_section(label);
John Johansenb5e95b42010-07-29 14:48:07 -0700203
204 return error;
205}
206
207/**
John Johansen31f75bf2017-01-16 00:43:07 -0800208 * common_perm_cond - common permission wrapper around inode cond
209 * @op: operation being checked
210 * @path: location to check (NOT NULL)
211 * @mask: requested permissions mask
212 *
213 * Returns: %0 else error code if error or permission denied
214 */
215static int common_perm_cond(const char *op, const struct path *path, u32 mask)
216{
217 struct path_cond cond = { d_backing_inode(path->dentry)->i_uid,
218 d_backing_inode(path->dentry)->i_mode
219 };
220
221 if (!path_mediated_fs(path->dentry))
222 return 0;
223
224 return common_perm(op, path, mask, &cond);
225}
226
227/**
John Johansenb5e95b42010-07-29 14:48:07 -0700228 * common_perm_dir_dentry - common permission wrapper when path is dir, dentry
229 * @op: operation being checked
230 * @dir: directory of the dentry (NOT NULL)
231 * @dentry: dentry to check (NOT NULL)
232 * @mask: requested permissions mask
233 * @cond: conditional info for the permission request (NOT NULL)
234 *
235 * Returns: %0 else error code if error or permission denied
236 */
John Johansen47f6e5c2017-01-16 00:43:01 -0800237static int common_perm_dir_dentry(const char *op, const struct path *dir,
John Johansenb5e95b42010-07-29 14:48:07 -0700238 struct dentry *dentry, u32 mask,
239 struct path_cond *cond)
240{
Kees Cook8486adf2016-12-16 17:04:13 -0800241 struct path path = { .mnt = dir->mnt, .dentry = dentry };
John Johansenb5e95b42010-07-29 14:48:07 -0700242
243 return common_perm(op, &path, mask, cond);
244}
245
246/**
John Johansenb5e95b42010-07-29 14:48:07 -0700247 * common_perm_rm - common permission wrapper for operations doing rm
248 * @op: operation being checked
249 * @dir: directory that the dentry is in (NOT NULL)
250 * @dentry: dentry being rm'd (NOT NULL)
251 * @mask: requested permission mask
252 *
253 * Returns: %0 else error code if error or permission denied
254 */
John Johansen47f6e5c2017-01-16 00:43:01 -0800255static int common_perm_rm(const char *op, const struct path *dir,
John Johansenb5e95b42010-07-29 14:48:07 -0700256 struct dentry *dentry, u32 mask)
257{
David Howellsc6f493d2015-03-17 22:26:22 +0000258 struct inode *inode = d_backing_inode(dentry);
John Johansenb5e95b42010-07-29 14:48:07 -0700259 struct path_cond cond = { };
260
John Johansenefeee832017-01-16 00:42:28 -0800261 if (!inode || !path_mediated_fs(dentry))
John Johansenb5e95b42010-07-29 14:48:07 -0700262 return 0;
263
264 cond.uid = inode->i_uid;
265 cond.mode = inode->i_mode;
266
267 return common_perm_dir_dentry(op, dir, dentry, mask, &cond);
268}
269
270/**
271 * common_perm_create - common permission wrapper for operations doing create
272 * @op: operation being checked
273 * @dir: directory that dentry will be created in (NOT NULL)
274 * @dentry: dentry to create (NOT NULL)
275 * @mask: request permission mask
276 * @mode: created file mode
277 *
278 * Returns: %0 else error code if error or permission denied
279 */
John Johansen47f6e5c2017-01-16 00:43:01 -0800280static int common_perm_create(const char *op, const struct path *dir,
Al Virod6b49f72016-03-25 15:10:04 -0400281 struct dentry *dentry, u32 mask, umode_t mode)
John Johansenb5e95b42010-07-29 14:48:07 -0700282{
283 struct path_cond cond = { current_fsuid(), mode };
284
John Johansenefeee832017-01-16 00:42:28 -0800285 if (!path_mediated_fs(dir->dentry))
John Johansenb5e95b42010-07-29 14:48:07 -0700286 return 0;
287
288 return common_perm_dir_dentry(op, dir, dentry, mask, &cond);
289}
290
Al Viro989f74e2016-03-25 15:13:39 -0400291static int apparmor_path_unlink(const struct path *dir, struct dentry *dentry)
John Johansenb5e95b42010-07-29 14:48:07 -0700292{
293 return common_perm_rm(OP_UNLINK, dir, dentry, AA_MAY_DELETE);
294}
295
Al Virod3607752016-03-25 15:21:09 -0400296static int apparmor_path_mkdir(const struct path *dir, struct dentry *dentry,
Al Viro4572bef2011-11-21 14:56:21 -0500297 umode_t mode)
John Johansenb5e95b42010-07-29 14:48:07 -0700298{
299 return common_perm_create(OP_MKDIR, dir, dentry, AA_MAY_CREATE,
300 S_IFDIR);
301}
302
Al Viro989f74e2016-03-25 15:13:39 -0400303static int apparmor_path_rmdir(const struct path *dir, struct dentry *dentry)
John Johansenb5e95b42010-07-29 14:48:07 -0700304{
305 return common_perm_rm(OP_RMDIR, dir, dentry, AA_MAY_DELETE);
306}
307
Al Virod3607752016-03-25 15:21:09 -0400308static int apparmor_path_mknod(const struct path *dir, struct dentry *dentry,
Al Viro04fc66e2011-11-21 14:58:38 -0500309 umode_t mode, unsigned int dev)
John Johansenb5e95b42010-07-29 14:48:07 -0700310{
311 return common_perm_create(OP_MKNOD, dir, dentry, AA_MAY_CREATE, mode);
312}
313
Al Viro81f4c502016-03-25 14:22:01 -0400314static int apparmor_path_truncate(const struct path *path)
John Johansenb5e95b42010-07-29 14:48:07 -0700315{
John Johansene53cfe62017-05-26 15:07:22 -0700316 return common_perm_cond(OP_TRUNC, path, MAY_WRITE | AA_MAY_SETATTR);
John Johansenb5e95b42010-07-29 14:48:07 -0700317}
318
Al Virod3607752016-03-25 15:21:09 -0400319static int apparmor_path_symlink(const struct path *dir, struct dentry *dentry,
John Johansenb5e95b42010-07-29 14:48:07 -0700320 const char *old_name)
321{
322 return common_perm_create(OP_SYMLINK, dir, dentry, AA_MAY_CREATE,
323 S_IFLNK);
324}
325
Al Viro3ccee462016-03-25 15:27:45 -0400326static int apparmor_path_link(struct dentry *old_dentry, const struct path *new_dir,
John Johansenb5e95b42010-07-29 14:48:07 -0700327 struct dentry *new_dentry)
328{
John Johansen637f6882017-06-09 08:14:28 -0700329 struct aa_label *label;
John Johansenb5e95b42010-07-29 14:48:07 -0700330 int error = 0;
331
John Johansenefeee832017-01-16 00:42:28 -0800332 if (!path_mediated_fs(old_dentry))
John Johansenb5e95b42010-07-29 14:48:07 -0700333 return 0;
334
John Johansen637f6882017-06-09 08:14:28 -0700335 label = begin_current_label_crit_section();
336 if (!unconfined(label))
John Johansen80143702017-06-09 16:06:21 -0700337 error = aa_path_link(label, old_dentry, new_dir, new_dentry);
John Johansen637f6882017-06-09 08:14:28 -0700338 end_current_label_crit_section(label);
John Johansencf797c02017-06-09 02:08:28 -0700339
John Johansenb5e95b42010-07-29 14:48:07 -0700340 return error;
341}
342
Al Viro3ccee462016-03-25 15:27:45 -0400343static int apparmor_path_rename(const struct path *old_dir, struct dentry *old_dentry,
344 const struct path *new_dir, struct dentry *new_dentry)
John Johansenb5e95b42010-07-29 14:48:07 -0700345{
John Johansen637f6882017-06-09 08:14:28 -0700346 struct aa_label *label;
John Johansenb5e95b42010-07-29 14:48:07 -0700347 int error = 0;
348
John Johansenefeee832017-01-16 00:42:28 -0800349 if (!path_mediated_fs(old_dentry))
John Johansenb5e95b42010-07-29 14:48:07 -0700350 return 0;
351
John Johansen637f6882017-06-09 08:14:28 -0700352 label = begin_current_label_crit_section();
353 if (!unconfined(label)) {
Kees Cook8486adf2016-12-16 17:04:13 -0800354 struct path old_path = { .mnt = old_dir->mnt,
355 .dentry = old_dentry };
356 struct path new_path = { .mnt = new_dir->mnt,
357 .dentry = new_dentry };
David Howellsc6f493d2015-03-17 22:26:22 +0000358 struct path_cond cond = { d_backing_inode(old_dentry)->i_uid,
359 d_backing_inode(old_dentry)->i_mode
John Johansenb5e95b42010-07-29 14:48:07 -0700360 };
361
John Johansenaebd8732017-06-09 16:02:25 -0700362 error = aa_path_perm(OP_RENAME_SRC, label, &old_path, 0,
John Johansene53cfe62017-05-26 15:07:22 -0700363 MAY_READ | AA_MAY_GETATTR | MAY_WRITE |
364 AA_MAY_SETATTR | AA_MAY_DELETE,
John Johansenb5e95b42010-07-29 14:48:07 -0700365 &cond);
366 if (!error)
John Johansenaebd8732017-06-09 16:02:25 -0700367 error = aa_path_perm(OP_RENAME_DEST, label, &new_path,
John Johansene53cfe62017-05-26 15:07:22 -0700368 0, MAY_WRITE | AA_MAY_SETATTR |
John Johansenb5e95b42010-07-29 14:48:07 -0700369 AA_MAY_CREATE, &cond);
370
371 }
John Johansen637f6882017-06-09 08:14:28 -0700372 end_current_label_crit_section(label);
John Johansencf797c02017-06-09 02:08:28 -0700373
John Johansenb5e95b42010-07-29 14:48:07 -0700374 return error;
375}
376
Al Virobe01f9f2016-03-25 14:56:23 -0400377static int apparmor_path_chmod(const struct path *path, umode_t mode)
John Johansenb5e95b42010-07-29 14:48:07 -0700378{
John Johansen31f75bf2017-01-16 00:43:07 -0800379 return common_perm_cond(OP_CHMOD, path, AA_MAY_CHMOD);
John Johansenb5e95b42010-07-29 14:48:07 -0700380}
381
Al Viro7fd25da2016-03-25 14:44:41 -0400382static int apparmor_path_chown(const struct path *path, kuid_t uid, kgid_t gid)
John Johansenb5e95b42010-07-29 14:48:07 -0700383{
John Johansen31f75bf2017-01-16 00:43:07 -0800384 return common_perm_cond(OP_CHOWN, path, AA_MAY_CHOWN);
John Johansenb5e95b42010-07-29 14:48:07 -0700385}
386
Al Viro3f7036a2015-03-08 19:28:30 -0400387static int apparmor_inode_getattr(const struct path *path)
John Johansenb5e95b42010-07-29 14:48:07 -0700388{
John Johansene53cfe62017-05-26 15:07:22 -0700389 return common_perm_cond(OP_GETATTR, path, AA_MAY_GETATTR);
John Johansenb5e95b42010-07-29 14:48:07 -0700390}
391
Eric Paris83d49852012-04-04 13:45:40 -0400392static int apparmor_file_open(struct file *file, const struct cred *cred)
John Johansenb5e95b42010-07-29 14:48:07 -0700393{
John Johansen637f6882017-06-09 08:14:28 -0700394 struct aa_file_ctx *fctx = file_ctx(file);
395 struct aa_label *label;
John Johansenb5e95b42010-07-29 14:48:07 -0700396 int error = 0;
397
John Johansenefeee832017-01-16 00:42:28 -0800398 if (!path_mediated_fs(file->f_path.dentry))
John Johansenb5e95b42010-07-29 14:48:07 -0700399 return 0;
400
401 /* If in exec, permission is handled by bprm hooks.
402 * Cache permissions granted by the previous exec check, with
403 * implicit read and executable mmap which are required to
404 * actually execute the image.
405 */
406 if (current->in_execve) {
John Johansen55a26eb2017-01-16 00:43:00 -0800407 fctx->allow = MAY_EXEC | MAY_READ | AA_EXEC_MMAP;
John Johansenb5e95b42010-07-29 14:48:07 -0700408 return 0;
409 }
410
John Johansen637f6882017-06-09 08:14:28 -0700411 label = aa_get_newest_cred_label(cred);
412 if (!unconfined(label)) {
Al Viro496ad9a2013-01-23 17:07:38 -0500413 struct inode *inode = file_inode(file);
John Johansenb5e95b42010-07-29 14:48:07 -0700414 struct path_cond cond = { inode->i_uid, inode->i_mode };
415
John Johansenaebd8732017-06-09 16:02:25 -0700416 error = aa_path_perm(OP_OPEN, label, &file->f_path, 0,
John Johansenb5e95b42010-07-29 14:48:07 -0700417 aa_map_file_to_perms(file), &cond);
418 /* todo cache full allowed permissions set and state */
John Johansen55a26eb2017-01-16 00:43:00 -0800419 fctx->allow = aa_map_file_to_perms(file);
John Johansenb5e95b42010-07-29 14:48:07 -0700420 }
John Johansen637f6882017-06-09 08:14:28 -0700421 aa_put_label(label);
John Johansenb5e95b42010-07-29 14:48:07 -0700422
423 return error;
424}
425
426static int apparmor_file_alloc_security(struct file *file)
427{
John Johansencf797c02017-06-09 02:08:28 -0700428 int error = 0;
429
John Johansenb5e95b42010-07-29 14:48:07 -0700430 /* freed by apparmor_file_free_security */
John Johansen637f6882017-06-09 08:14:28 -0700431 struct aa_label *label = begin_current_label_crit_section();
John Johansen190a9512017-06-09 14:59:51 -0700432 file->f_security = aa_alloc_file_ctx(label, GFP_KERNEL);
John Johansen2835a132017-06-09 11:43:45 -0700433 if (!file_ctx(file))
434 error = -ENOMEM;
John Johansen637f6882017-06-09 08:14:28 -0700435 end_current_label_crit_section(label);
John Johansenb5e95b42010-07-29 14:48:07 -0700436
John Johansencf797c02017-06-09 02:08:28 -0700437 return error;
John Johansenb5e95b42010-07-29 14:48:07 -0700438}
439
440static void apparmor_file_free_security(struct file *file)
441{
John Johansen2835a132017-06-09 11:43:45 -0700442 aa_free_file_ctx(file_ctx(file));
John Johansenb5e95b42010-07-29 14:48:07 -0700443}
444
John Johansen47f6e5c2017-01-16 00:43:01 -0800445static int common_file_perm(const char *op, struct file *file, u32 mask)
John Johansenb5e95b42010-07-29 14:48:07 -0700446{
John Johansen190a9512017-06-09 14:59:51 -0700447 struct aa_label *label;
John Johansenb5e95b42010-07-29 14:48:07 -0700448 int error = 0;
449
John Johansen192ca6b2017-06-09 11:58:42 -0700450 /* don't reaudit files closed during inheritance */
451 if (file->f_path.dentry == aa_null.dentry)
452 return -EACCES;
453
John Johansen637f6882017-06-09 08:14:28 -0700454 label = __begin_current_label_crit_section();
John Johansen190a9512017-06-09 14:59:51 -0700455 error = aa_file_perm(op, label, file, mask);
John Johansen637f6882017-06-09 08:14:28 -0700456 __end_current_label_crit_section(label);
John Johansenb5e95b42010-07-29 14:48:07 -0700457
458 return error;
459}
460
John Johansen064dc942017-06-09 17:15:56 -0700461static int apparmor_file_receive(struct file *file)
462{
463 return common_file_perm(OP_FRECEIVE, file, aa_map_file_to_perms(file));
464}
465
John Johansenb5e95b42010-07-29 14:48:07 -0700466static int apparmor_file_permission(struct file *file, int mask)
467{
468 return common_file_perm(OP_FPERM, file, mask);
469}
470
471static int apparmor_file_lock(struct file *file, unsigned int cmd)
472{
473 u32 mask = AA_MAY_LOCK;
474
475 if (cmd == F_WRLCK)
476 mask |= MAY_WRITE;
477
478 return common_file_perm(OP_FLOCK, file, mask);
479}
480
John Johansen47f6e5c2017-01-16 00:43:01 -0800481static int common_mmap(const char *op, struct file *file, unsigned long prot,
John Johansenb5e95b42010-07-29 14:48:07 -0700482 unsigned long flags)
483{
John Johansenb5e95b42010-07-29 14:48:07 -0700484 int mask = 0;
485
John Johansen637f6882017-06-09 08:14:28 -0700486 if (!file || !file_ctx(file))
John Johansenb5e95b42010-07-29 14:48:07 -0700487 return 0;
488
489 if (prot & PROT_READ)
490 mask |= MAY_READ;
491 /*
492 * Private mappings don't require write perms since they don't
493 * write back to the files
494 */
495 if ((prot & PROT_WRITE) && !(flags & MAP_PRIVATE))
496 mask |= MAY_WRITE;
497 if (prot & PROT_EXEC)
498 mask |= AA_EXEC_MMAP;
499
John Johansenb5e95b42010-07-29 14:48:07 -0700500 return common_file_perm(op, file, mask);
501}
502
Al Viroe5467852012-05-30 13:30:51 -0400503static int apparmor_mmap_file(struct file *file, unsigned long reqprot,
504 unsigned long prot, unsigned long flags)
John Johansenb5e95b42010-07-29 14:48:07 -0700505{
John Johansenb5e95b42010-07-29 14:48:07 -0700506 return common_mmap(OP_FMMAP, file, prot, flags);
507}
508
509static int apparmor_file_mprotect(struct vm_area_struct *vma,
510 unsigned long reqprot, unsigned long prot)
511{
512 return common_mmap(OP_FMPROT, vma->vm_file, prot,
513 !(vma->vm_flags & VM_SHARED) ? MAP_PRIVATE : 0);
514}
515
John Johansen2ea3ffb2017-07-18 23:04:47 -0700516static int apparmor_sb_mount(const char *dev_name, const struct path *path,
517 const char *type, unsigned long flags, void *data)
518{
519 struct aa_label *label;
520 int error = 0;
521
522 /* Discard magic */
523 if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
524 flags &= ~MS_MGC_MSK;
525
526 flags &= ~AA_MS_IGNORE_MASK;
527
528 label = __begin_current_label_crit_section();
529 if (!unconfined(label)) {
530 if (flags & MS_REMOUNT)
531 error = aa_remount(label, path, flags, data);
532 else if (flags & MS_BIND)
533 error = aa_bind_mount(label, path, dev_name, flags);
534 else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE |
535 MS_UNBINDABLE))
536 error = aa_mount_change_type(label, path, flags);
537 else if (flags & MS_MOVE)
538 error = aa_move_mount(label, path, dev_name);
539 else
540 error = aa_new_mount(label, dev_name, path, type,
541 flags, data);
542 }
543 __end_current_label_crit_section(label);
544
545 return error;
546}
547
548static int apparmor_sb_umount(struct vfsmount *mnt, int flags)
549{
550 struct aa_label *label;
551 int error = 0;
552
553 label = __begin_current_label_crit_section();
554 if (!unconfined(label))
555 error = aa_umount(label, mnt, flags);
556 __end_current_label_crit_section(label);
557
558 return error;
559}
560
561static int apparmor_sb_pivotroot(const struct path *old_path,
562 const struct path *new_path)
563{
564 struct aa_label *label;
565 int error = 0;
566
567 label = aa_get_current_label();
568 if (!unconfined(label))
569 error = aa_pivotroot(label, old_path, new_path);
570 aa_put_label(label);
571
572 return error;
573}
574
John Johansenb5e95b42010-07-29 14:48:07 -0700575static int apparmor_getprocattr(struct task_struct *task, char *name,
576 char **value)
577{
578 int error = -ENOENT;
John Johansenb5e95b42010-07-29 14:48:07 -0700579 /* released below */
580 const struct cred *cred = get_task_cred(task);
John Johansen55a26eb2017-01-16 00:43:00 -0800581 struct aa_task_ctx *ctx = cred_ctx(cred);
John Johansen637f6882017-06-09 08:14:28 -0700582 struct aa_label *label = NULL;
John Johansenb5e95b42010-07-29 14:48:07 -0700583
584 if (strcmp(name, "current") == 0)
John Johansen637f6882017-06-09 08:14:28 -0700585 label = aa_get_newest_label(ctx->label);
John Johansen55a26eb2017-01-16 00:43:00 -0800586 else if (strcmp(name, "prev") == 0 && ctx->previous)
John Johansen637f6882017-06-09 08:14:28 -0700587 label = aa_get_newest_label(ctx->previous);
John Johansen55a26eb2017-01-16 00:43:00 -0800588 else if (strcmp(name, "exec") == 0 && ctx->onexec)
John Johansen637f6882017-06-09 08:14:28 -0700589 label = aa_get_newest_label(ctx->onexec);
John Johansenb5e95b42010-07-29 14:48:07 -0700590 else
591 error = -EINVAL;
592
John Johansen637f6882017-06-09 08:14:28 -0700593 if (label)
John Johansen76a1d262017-06-09 12:47:17 -0700594 error = aa_getprocattr(label, value);
John Johansen77b071b2013-07-10 21:07:43 -0700595
John Johansen637f6882017-06-09 08:14:28 -0700596 aa_put_label(label);
John Johansenb5e95b42010-07-29 14:48:07 -0700597 put_cred(cred);
598
599 return error;
600}
601
Stephen Smalleyb21507e2017-01-09 10:07:31 -0500602static int apparmor_setprocattr(const char *name, void *value,
603 size_t size)
John Johansenb5e95b42010-07-29 14:48:07 -0700604{
Vegard Nossume89b8082016-07-07 13:41:11 -0700605 char *command, *largs = NULL, *args = value;
John Johansenb5e95b42010-07-29 14:48:07 -0700606 size_t arg_size;
607 int error;
John Johansenef88a7a2017-01-16 00:43:02 -0800608 DEFINE_AUDIT_DATA(sa, LSM_AUDIT_DATA_NONE, OP_SETPROCATTR);
John Johansenb5e95b42010-07-29 14:48:07 -0700609
610 if (size == 0)
611 return -EINVAL;
John Johansenb5e95b42010-07-29 14:48:07 -0700612
Vegard Nossume89b8082016-07-07 13:41:11 -0700613 /* AppArmor requires that the buffer must be null terminated atm */
614 if (args[size - 1] != '\0') {
615 /* null terminate */
616 largs = args = kmalloc(size + 1, GFP_KERNEL);
617 if (!args)
618 return -ENOMEM;
619 memcpy(args, value, size);
620 args[size] = '\0';
621 }
622
623 error = -EINVAL;
John Johansenb5e95b42010-07-29 14:48:07 -0700624 args = strim(args);
625 command = strsep(&args, " ");
626 if (!args)
Vegard Nossume89b8082016-07-07 13:41:11 -0700627 goto out;
John Johansenb5e95b42010-07-29 14:48:07 -0700628 args = skip_spaces(args);
629 if (!*args)
Vegard Nossume89b8082016-07-07 13:41:11 -0700630 goto out;
John Johansenb5e95b42010-07-29 14:48:07 -0700631
John Johansend4d03f72016-07-09 23:46:33 -0700632 arg_size = size - (args - (largs ? largs : (char *) value));
John Johansenb5e95b42010-07-29 14:48:07 -0700633 if (strcmp(name, "current") == 0) {
634 if (strcmp(command, "changehat") == 0) {
635 error = aa_setprocattr_changehat(args, arg_size,
John Johansendf8073c2017-06-09 11:36:48 -0700636 AA_CHANGE_NOFLAGS);
John Johansenb5e95b42010-07-29 14:48:07 -0700637 } else if (strcmp(command, "permhat") == 0) {
638 error = aa_setprocattr_changehat(args, arg_size,
John Johansendf8073c2017-06-09 11:36:48 -0700639 AA_CHANGE_TEST);
John Johansenb5e95b42010-07-29 14:48:07 -0700640 } else if (strcmp(command, "changeprofile") == 0) {
John Johansendf8073c2017-06-09 11:36:48 -0700641 error = aa_change_profile(args, AA_CHANGE_NOFLAGS);
John Johansenb5e95b42010-07-29 14:48:07 -0700642 } else if (strcmp(command, "permprofile") == 0) {
John Johansendf8073c2017-06-09 11:36:48 -0700643 error = aa_change_profile(args, AA_CHANGE_TEST);
John Johansen6c5fc8f2017-06-09 17:22:50 -0700644 } else if (strcmp(command, "stack") == 0) {
645 error = aa_change_profile(args, AA_CHANGE_STACK);
John Johansen3eea57c2013-02-27 03:44:40 -0800646 } else
647 goto fail;
John Johansenb5e95b42010-07-29 14:48:07 -0700648 } else if (strcmp(name, "exec") == 0) {
John Johansen3eea57c2013-02-27 03:44:40 -0800649 if (strcmp(command, "exec") == 0)
John Johansendf8073c2017-06-09 11:36:48 -0700650 error = aa_change_profile(args, AA_CHANGE_ONEXEC);
John Johansen6c5fc8f2017-06-09 17:22:50 -0700651 else if (strcmp(command, "stack") == 0)
652 error = aa_change_profile(args, (AA_CHANGE_ONEXEC |
653 AA_CHANGE_STACK));
John Johansen3eea57c2013-02-27 03:44:40 -0800654 else
655 goto fail;
656 } else
John Johansenb5e95b42010-07-29 14:48:07 -0700657 /* only support the "current" and "exec" process attributes */
Vegard Nossume89b8082016-07-07 13:41:11 -0700658 goto fail;
John Johansen3eea57c2013-02-27 03:44:40 -0800659
John Johansenb5e95b42010-07-29 14:48:07 -0700660 if (!error)
661 error = size;
Vegard Nossume89b8082016-07-07 13:41:11 -0700662out:
663 kfree(largs);
John Johansenb5e95b42010-07-29 14:48:07 -0700664 return error;
John Johansen3eea57c2013-02-27 03:44:40 -0800665
666fail:
John Johansen637f6882017-06-09 08:14:28 -0700667 aad(&sa)->label = begin_current_label_crit_section();
John Johansenef88a7a2017-01-16 00:43:02 -0800668 aad(&sa)->info = name;
669 aad(&sa)->error = error = -EINVAL;
John Johansen3eea57c2013-02-27 03:44:40 -0800670 aa_audit_msg(AUDIT_APPARMOR_DENIED, &sa, NULL);
John Johansen637f6882017-06-09 08:14:28 -0700671 end_current_label_crit_section(aad(&sa)->label);
Vegard Nossume89b8082016-07-07 13:41:11 -0700672 goto out;
John Johansenb5e95b42010-07-29 14:48:07 -0700673}
674
John Johansenfe864822017-06-09 05:27:50 -0700675/**
676 * apparmor_bprm_committing_creds - do task cleanup on committing new creds
677 * @bprm: binprm for the exec (NOT NULL)
678 */
679static void apparmor_bprm_committing_creds(struct linux_binprm *bprm)
680{
John Johansen637f6882017-06-09 08:14:28 -0700681 struct aa_label *label = aa_current_raw_label();
John Johansenfe864822017-06-09 05:27:50 -0700682 struct aa_task_ctx *new_ctx = cred_ctx(bprm->cred);
683
684 /* bail out if unconfined or not changing profile */
John Johansen637f6882017-06-09 08:14:28 -0700685 if ((new_ctx->label->proxy == label->proxy) ||
686 (unconfined(new_ctx->label)))
John Johansenfe864822017-06-09 05:27:50 -0700687 return;
688
John Johansen192ca6b2017-06-09 11:58:42 -0700689 aa_inherit_files(bprm->cred, current->files);
690
John Johansenfe864822017-06-09 05:27:50 -0700691 current->pdeath_signal = 0;
692
John Johansen637f6882017-06-09 08:14:28 -0700693 /* reset soft limits and set hard limits for the new label */
John Johansen86b92cb2017-06-09 14:15:20 -0700694 __aa_transition_rlimits(label, new_ctx->label);
John Johansenfe864822017-06-09 05:27:50 -0700695}
696
697/**
698 * apparmor_bprm_committed_cred - do cleanup after new creds committed
699 * @bprm: binprm for the exec (NOT NULL)
700 */
701static void apparmor_bprm_committed_creds(struct linux_binprm *bprm)
702{
703 /* TODO: cleanup signals - ipc mediation */
704 return;
705}
706
Jiri Slaby7cb4dc92010-08-11 11:28:02 +0200707static int apparmor_task_setrlimit(struct task_struct *task,
708 unsigned int resource, struct rlimit *new_rlim)
John Johansenb5e95b42010-07-29 14:48:07 -0700709{
John Johansen637f6882017-06-09 08:14:28 -0700710 struct aa_label *label = __begin_current_label_crit_section();
John Johansenb5e95b42010-07-29 14:48:07 -0700711 int error = 0;
712
John Johansen637f6882017-06-09 08:14:28 -0700713 if (!unconfined(label))
John Johansen86b92cb2017-06-09 14:15:20 -0700714 error = aa_task_setrlimit(label, task, resource, new_rlim);
John Johansen637f6882017-06-09 08:14:28 -0700715 __end_current_label_crit_section(label);
John Johansenb5e95b42010-07-29 14:48:07 -0700716
717 return error;
718}
719
John Johansencd1dbf72017-07-18 22:56:22 -0700720static int apparmor_task_kill(struct task_struct *target, struct siginfo *info,
721 int sig, u32 secid)
722{
723 struct aa_label *cl, *tl;
724 int error;
725
726 if (secid)
727 /* TODO: after secid to label mapping is done.
728 * Dealing with USB IO specific behavior
729 */
730 return 0;
731 cl = __begin_current_label_crit_section();
732 tl = aa_get_task_label(target);
733 error = aa_may_signal(cl, tl, sig);
734 aa_put_label(tl);
735 __end_current_label_crit_section(cl);
736
737 return error;
738}
739
John Johansen651e28c2017-07-18 23:18:33 -0700740/**
741 * apparmor_sk_alloc_security - allocate and attach the sk_security field
742 */
743static int apparmor_sk_alloc_security(struct sock *sk, int family, gfp_t flags)
744{
745 struct aa_sk_ctx *ctx;
746
747 ctx = kzalloc(sizeof(*ctx), flags);
748 if (!ctx)
749 return -ENOMEM;
750
751 SK_CTX(sk) = ctx;
752
753 return 0;
754}
755
756/**
757 * apparmor_sk_free_security - free the sk_security field
758 */
759static void apparmor_sk_free_security(struct sock *sk)
760{
761 struct aa_sk_ctx *ctx = SK_CTX(sk);
762
763 SK_CTX(sk) = NULL;
764 aa_put_label(ctx->label);
765 aa_put_label(ctx->peer);
766 path_put(&ctx->path);
767 kfree(ctx);
768}
769
770/**
771 * apparmor_clone_security - clone the sk_security field
772 */
773static void apparmor_sk_clone_security(const struct sock *sk,
774 struct sock *newsk)
775{
776 struct aa_sk_ctx *ctx = SK_CTX(sk);
777 struct aa_sk_ctx *new = SK_CTX(newsk);
778
779 new->label = aa_get_label(ctx->label);
780 new->peer = aa_get_label(ctx->peer);
781 new->path = ctx->path;
782 path_get(&new->path);
783}
784
785static int aa_sock_create_perm(struct aa_label *label, int family, int type,
786 int protocol)
787{
788 AA_BUG(!label);
789 AA_BUG(in_interrupt());
790
791 return aa_af_perm(label, OP_CREATE, AA_MAY_CREATE, family, type,
792 protocol);
793}
794
795
796/**
797 * apparmor_socket_create - check perms before creating a new socket
798 */
799static int apparmor_socket_create(int family, int type, int protocol, int kern)
800{
801 struct aa_label *label;
802 int error = 0;
803
804 label = begin_current_label_crit_section();
805 if (!(kern || unconfined(label)))
806 error = aa_sock_create_perm(label, family, type, protocol);
807 end_current_label_crit_section(label);
808
809 return error;
810}
811
812/**
813 * apparmor_socket_post_create - setup the per-socket security struct
814 *
815 * Note:
816 * - kernel sockets currently labeled unconfined but we may want to
817 * move to a special kernel label
818 * - socket may not have sk here if created with sock_create_lite or
819 * sock_alloc. These should be accept cases which will be handled in
820 * sock_graft.
821 */
822static int apparmor_socket_post_create(struct socket *sock, int family,
823 int type, int protocol, int kern)
824{
825 struct aa_label *label;
826
827 if (kern) {
828 struct aa_ns *ns = aa_get_current_ns();
829
830 label = aa_get_label(ns_unconfined(ns));
831 aa_put_ns(ns);
832 } else
833 label = aa_get_current_label();
834
835 if (sock->sk) {
836 struct aa_sk_ctx *ctx = SK_CTX(sock->sk);
837
838 aa_put_label(ctx->label);
839 ctx->label = aa_get_label(label);
840 }
841 aa_put_label(label);
842
843 return 0;
844}
845
846/**
847 * apparmor_socket_bind - check perms before bind addr to socket
848 */
849static int apparmor_socket_bind(struct socket *sock,
850 struct sockaddr *address, int addrlen)
851{
852 AA_BUG(!sock);
853 AA_BUG(!sock->sk);
854 AA_BUG(!address);
855 AA_BUG(in_interrupt());
856
857 return aa_sk_perm(OP_BIND, AA_MAY_BIND, sock->sk);
858}
859
860/**
861 * apparmor_socket_connect - check perms before connecting @sock to @address
862 */
863static int apparmor_socket_connect(struct socket *sock,
864 struct sockaddr *address, int addrlen)
865{
866 AA_BUG(!sock);
867 AA_BUG(!sock->sk);
868 AA_BUG(!address);
869 AA_BUG(in_interrupt());
870
871 return aa_sk_perm(OP_CONNECT, AA_MAY_CONNECT, sock->sk);
872}
873
874/**
875 * apparmor_socket_list - check perms before allowing listen
876 */
877static int apparmor_socket_listen(struct socket *sock, int backlog)
878{
879 AA_BUG(!sock);
880 AA_BUG(!sock->sk);
881 AA_BUG(in_interrupt());
882
883 return aa_sk_perm(OP_LISTEN, AA_MAY_LISTEN, sock->sk);
884}
885
886/**
887 * apparmor_socket_accept - check perms before accepting a new connection.
888 *
889 * Note: while @newsock is created and has some information, the accept
890 * has not been done.
891 */
892static int apparmor_socket_accept(struct socket *sock, struct socket *newsock)
893{
894 AA_BUG(!sock);
895 AA_BUG(!sock->sk);
896 AA_BUG(!newsock);
897 AA_BUG(in_interrupt());
898
899 return aa_sk_perm(OP_ACCEPT, AA_MAY_ACCEPT, sock->sk);
900}
901
902static int aa_sock_msg_perm(const char *op, u32 request, struct socket *sock,
903 struct msghdr *msg, int size)
904{
905 AA_BUG(!sock);
906 AA_BUG(!sock->sk);
907 AA_BUG(!msg);
908 AA_BUG(in_interrupt());
909
910 return aa_sk_perm(op, request, sock->sk);
911}
912
913/**
914 * apparmor_socket_sendmsg - check perms before sending msg to another socket
915 */
916static int apparmor_socket_sendmsg(struct socket *sock,
917 struct msghdr *msg, int size)
918{
919 return aa_sock_msg_perm(OP_SENDMSG, AA_MAY_SEND, sock, msg, size);
920}
921
922/**
923 * apparmor_socket_recvmsg - check perms before receiving a message
924 */
925static int apparmor_socket_recvmsg(struct socket *sock,
926 struct msghdr *msg, int size, int flags)
927{
928 return aa_sock_msg_perm(OP_RECVMSG, AA_MAY_RECEIVE, sock, msg, size);
929}
930
931/* revaliation, get/set attr, shutdown */
932static int aa_sock_perm(const char *op, u32 request, struct socket *sock)
933{
934 AA_BUG(!sock);
935 AA_BUG(!sock->sk);
936 AA_BUG(in_interrupt());
937
938 return aa_sk_perm(op, request, sock->sk);
939}
940
941/**
942 * apparmor_socket_getsockname - check perms before getting the local address
943 */
944static int apparmor_socket_getsockname(struct socket *sock)
945{
946 return aa_sock_perm(OP_GETSOCKNAME, AA_MAY_GETATTR, sock);
947}
948
949/**
950 * apparmor_socket_getpeername - check perms before getting remote address
951 */
952static int apparmor_socket_getpeername(struct socket *sock)
953{
954 return aa_sock_perm(OP_GETPEERNAME, AA_MAY_GETATTR, sock);
955}
956
957/* revaliation, get/set attr, opt */
958static int aa_sock_opt_perm(const char *op, u32 request, struct socket *sock,
959 int level, int optname)
960{
961 AA_BUG(!sock);
962 AA_BUG(!sock->sk);
963 AA_BUG(in_interrupt());
964
965 return aa_sk_perm(op, request, sock->sk);
966}
967
968/**
969 * apparmor_getsockopt - check perms before getting socket options
970 */
971static int apparmor_socket_getsockopt(struct socket *sock, int level,
972 int optname)
973{
974 return aa_sock_opt_perm(OP_GETSOCKOPT, AA_MAY_GETOPT, sock,
975 level, optname);
976}
977
978/**
979 * apparmor_setsockopt - check perms before setting socket options
980 */
981static int apparmor_socket_setsockopt(struct socket *sock, int level,
982 int optname)
983{
984 return aa_sock_opt_perm(OP_SETSOCKOPT, AA_MAY_SETOPT, sock,
985 level, optname);
986}
987
988/**
989 * apparmor_socket_shutdown - check perms before shutting down @sock conn
990 */
991static int apparmor_socket_shutdown(struct socket *sock, int how)
992{
993 return aa_sock_perm(OP_SHUTDOWN, AA_MAY_SHUTDOWN, sock);
994}
995
996/**
997 * apparmor_socket_sock_recv_skb - check perms before associating skb to sk
998 *
999 * Note: can not sleep may be called with locks held
1000 *
1001 * dont want protocol specific in __skb_recv_datagram()
1002 * to deny an incoming connection socket_sock_rcv_skb()
1003 */
1004static int apparmor_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
1005{
1006 return 0;
1007}
1008
1009
1010static struct aa_label *sk_peer_label(struct sock *sk)
1011{
1012 struct aa_sk_ctx *ctx = SK_CTX(sk);
1013
1014 if (ctx->peer)
1015 return ctx->peer;
1016
1017 return ERR_PTR(-ENOPROTOOPT);
1018}
1019
1020/**
1021 * apparmor_socket_getpeersec_stream - get security context of peer
1022 *
1023 * Note: for tcp only valid if using ipsec or cipso on lan
1024 */
1025static int apparmor_socket_getpeersec_stream(struct socket *sock,
1026 char __user *optval,
1027 int __user *optlen,
1028 unsigned int len)
1029{
1030 char *name;
1031 int slen, error = 0;
1032 struct aa_label *label;
1033 struct aa_label *peer;
1034
1035 label = begin_current_label_crit_section();
1036 peer = sk_peer_label(sock->sk);
1037 if (IS_ERR(peer)) {
1038 error = PTR_ERR(peer);
1039 goto done;
1040 }
1041 slen = aa_label_asxprint(&name, labels_ns(label), peer,
1042 FLAG_SHOW_MODE | FLAG_VIEW_SUBNS |
1043 FLAG_HIDDEN_UNCONFINED, GFP_KERNEL);
1044 /* don't include terminating \0 in slen, it breaks some apps */
1045 if (slen < 0) {
1046 error = -ENOMEM;
1047 } else {
1048 if (slen > len) {
1049 error = -ERANGE;
1050 } else if (copy_to_user(optval, name, slen)) {
1051 error = -EFAULT;
1052 goto out;
1053 }
1054 if (put_user(slen, optlen))
1055 error = -EFAULT;
1056out:
1057 kfree(name);
1058
1059 }
1060
1061done:
1062 end_current_label_crit_section(label);
1063
1064 return error;
1065}
1066
1067/**
1068 * apparmor_socket_getpeersec_dgram - get security label of packet
1069 * @sock: the peer socket
1070 * @skb: packet data
1071 * @secid: pointer to where to put the secid of the packet
1072 *
1073 * Sets the netlabel socket state on sk from parent
1074 */
1075static int apparmor_socket_getpeersec_dgram(struct socket *sock,
1076 struct sk_buff *skb, u32 *secid)
1077
1078{
1079 /* TODO: requires secid support */
1080 return -ENOPROTOOPT;
1081}
1082
1083/**
1084 * apparmor_sock_graft - Initialize newly created socket
1085 * @sk: child sock
1086 * @parent: parent socket
1087 *
1088 * Note: could set off of SOCK_CTX(parent) but need to track inode and we can
1089 * just set sk security information off of current creating process label
1090 * Labeling of sk for accept case - probably should be sock based
1091 * instead of task, because of the case where an implicitly labeled
1092 * socket is shared by different tasks.
1093 */
1094static void apparmor_sock_graft(struct sock *sk, struct socket *parent)
1095{
1096 struct aa_sk_ctx *ctx = SK_CTX(sk);
1097
1098 if (!ctx->label)
1099 ctx->label = aa_get_current_label();
1100}
1101
James Morrisca97d932017-02-15 00:18:51 +11001102static struct security_hook_list apparmor_hooks[] __lsm_ro_after_init = {
Casey Schauflere20b0432015-05-02 15:11:36 -07001103 LSM_HOOK_INIT(ptrace_access_check, apparmor_ptrace_access_check),
1104 LSM_HOOK_INIT(ptrace_traceme, apparmor_ptrace_traceme),
1105 LSM_HOOK_INIT(capget, apparmor_capget),
1106 LSM_HOOK_INIT(capable, apparmor_capable),
John Johansenb5e95b42010-07-29 14:48:07 -07001107
John Johansen2ea3ffb2017-07-18 23:04:47 -07001108 LSM_HOOK_INIT(sb_mount, apparmor_sb_mount),
1109 LSM_HOOK_INIT(sb_umount, apparmor_sb_umount),
1110 LSM_HOOK_INIT(sb_pivotroot, apparmor_sb_pivotroot),
1111
Casey Schauflere20b0432015-05-02 15:11:36 -07001112 LSM_HOOK_INIT(path_link, apparmor_path_link),
1113 LSM_HOOK_INIT(path_unlink, apparmor_path_unlink),
1114 LSM_HOOK_INIT(path_symlink, apparmor_path_symlink),
1115 LSM_HOOK_INIT(path_mkdir, apparmor_path_mkdir),
1116 LSM_HOOK_INIT(path_rmdir, apparmor_path_rmdir),
1117 LSM_HOOK_INIT(path_mknod, apparmor_path_mknod),
1118 LSM_HOOK_INIT(path_rename, apparmor_path_rename),
1119 LSM_HOOK_INIT(path_chmod, apparmor_path_chmod),
1120 LSM_HOOK_INIT(path_chown, apparmor_path_chown),
1121 LSM_HOOK_INIT(path_truncate, apparmor_path_truncate),
1122 LSM_HOOK_INIT(inode_getattr, apparmor_inode_getattr),
John Johansenb5e95b42010-07-29 14:48:07 -07001123
Casey Schauflere20b0432015-05-02 15:11:36 -07001124 LSM_HOOK_INIT(file_open, apparmor_file_open),
John Johansen064dc942017-06-09 17:15:56 -07001125 LSM_HOOK_INIT(file_receive, apparmor_file_receive),
Casey Schauflere20b0432015-05-02 15:11:36 -07001126 LSM_HOOK_INIT(file_permission, apparmor_file_permission),
1127 LSM_HOOK_INIT(file_alloc_security, apparmor_file_alloc_security),
1128 LSM_HOOK_INIT(file_free_security, apparmor_file_free_security),
1129 LSM_HOOK_INIT(mmap_file, apparmor_mmap_file),
Casey Schauflere20b0432015-05-02 15:11:36 -07001130 LSM_HOOK_INIT(file_mprotect, apparmor_file_mprotect),
1131 LSM_HOOK_INIT(file_lock, apparmor_file_lock),
John Johansenb5e95b42010-07-29 14:48:07 -07001132
Casey Schauflere20b0432015-05-02 15:11:36 -07001133 LSM_HOOK_INIT(getprocattr, apparmor_getprocattr),
1134 LSM_HOOK_INIT(setprocattr, apparmor_setprocattr),
John Johansenb5e95b42010-07-29 14:48:07 -07001135
John Johansen651e28c2017-07-18 23:18:33 -07001136 LSM_HOOK_INIT(sk_alloc_security, apparmor_sk_alloc_security),
1137 LSM_HOOK_INIT(sk_free_security, apparmor_sk_free_security),
1138 LSM_HOOK_INIT(sk_clone_security, apparmor_sk_clone_security),
1139
1140 LSM_HOOK_INIT(socket_create, apparmor_socket_create),
1141 LSM_HOOK_INIT(socket_post_create, apparmor_socket_post_create),
1142 LSM_HOOK_INIT(socket_bind, apparmor_socket_bind),
1143 LSM_HOOK_INIT(socket_connect, apparmor_socket_connect),
1144 LSM_HOOK_INIT(socket_listen, apparmor_socket_listen),
1145 LSM_HOOK_INIT(socket_accept, apparmor_socket_accept),
1146 LSM_HOOK_INIT(socket_sendmsg, apparmor_socket_sendmsg),
1147 LSM_HOOK_INIT(socket_recvmsg, apparmor_socket_recvmsg),
1148 LSM_HOOK_INIT(socket_getsockname, apparmor_socket_getsockname),
1149 LSM_HOOK_INIT(socket_getpeername, apparmor_socket_getpeername),
1150 LSM_HOOK_INIT(socket_getsockopt, apparmor_socket_getsockopt),
1151 LSM_HOOK_INIT(socket_setsockopt, apparmor_socket_setsockopt),
1152 LSM_HOOK_INIT(socket_shutdown, apparmor_socket_shutdown),
1153 LSM_HOOK_INIT(socket_sock_rcv_skb, apparmor_socket_sock_rcv_skb),
1154 LSM_HOOK_INIT(socket_getpeersec_stream,
1155 apparmor_socket_getpeersec_stream),
1156 LSM_HOOK_INIT(socket_getpeersec_dgram,
1157 apparmor_socket_getpeersec_dgram),
1158 LSM_HOOK_INIT(sock_graft, apparmor_sock_graft),
1159
Casey Schauflere20b0432015-05-02 15:11:36 -07001160 LSM_HOOK_INIT(cred_alloc_blank, apparmor_cred_alloc_blank),
1161 LSM_HOOK_INIT(cred_free, apparmor_cred_free),
1162 LSM_HOOK_INIT(cred_prepare, apparmor_cred_prepare),
1163 LSM_HOOK_INIT(cred_transfer, apparmor_cred_transfer),
John Johansenb5e95b42010-07-29 14:48:07 -07001164
Casey Schauflere20b0432015-05-02 15:11:36 -07001165 LSM_HOOK_INIT(bprm_set_creds, apparmor_bprm_set_creds),
1166 LSM_HOOK_INIT(bprm_committing_creds, apparmor_bprm_committing_creds),
1167 LSM_HOOK_INIT(bprm_committed_creds, apparmor_bprm_committed_creds),
John Johansenb5e95b42010-07-29 14:48:07 -07001168
Casey Schauflere20b0432015-05-02 15:11:36 -07001169 LSM_HOOK_INIT(task_setrlimit, apparmor_task_setrlimit),
John Johansencd1dbf72017-07-18 22:56:22 -07001170 LSM_HOOK_INIT(task_kill, apparmor_task_kill),
John Johansenb5e95b42010-07-29 14:48:07 -07001171};
1172
1173/*
1174 * AppArmor sysfs module parameters
1175 */
1176
Stephen Rothwell101d6c82010-08-02 12:00:43 +10001177static int param_set_aabool(const char *val, const struct kernel_param *kp);
1178static int param_get_aabool(char *buffer, const struct kernel_param *kp);
Rusty Russellb8aa09f2011-12-15 13:41:32 +10301179#define param_check_aabool param_check_bool
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09301180static const struct kernel_param_ops param_ops_aabool = {
Jani Nikula6a4c2642014-08-27 06:21:23 +09301181 .flags = KERNEL_PARAM_OPS_FL_NOARG,
Stephen Rothwell101d6c82010-08-02 12:00:43 +10001182 .set = param_set_aabool,
1183 .get = param_get_aabool
1184};
John Johansenb5e95b42010-07-29 14:48:07 -07001185
Stephen Rothwell101d6c82010-08-02 12:00:43 +10001186static int param_set_aauint(const char *val, const struct kernel_param *kp);
1187static int param_get_aauint(char *buffer, const struct kernel_param *kp);
Rusty Russellb8aa09f2011-12-15 13:41:32 +10301188#define param_check_aauint param_check_uint
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09301189static const struct kernel_param_ops param_ops_aauint = {
Stephen Rothwell101d6c82010-08-02 12:00:43 +10001190 .set = param_set_aauint,
1191 .get = param_get_aauint
1192};
John Johansenb5e95b42010-07-29 14:48:07 -07001193
Stephen Rothwell101d6c82010-08-02 12:00:43 +10001194static int param_set_aalockpolicy(const char *val, const struct kernel_param *kp);
1195static int param_get_aalockpolicy(char *buffer, const struct kernel_param *kp);
Rusty Russellb8aa09f2011-12-15 13:41:32 +10301196#define param_check_aalockpolicy param_check_bool
Luis R. Rodriguez9c278472015-05-27 11:09:38 +09301197static const struct kernel_param_ops param_ops_aalockpolicy = {
Jani Nikula6a4c2642014-08-27 06:21:23 +09301198 .flags = KERNEL_PARAM_OPS_FL_NOARG,
Stephen Rothwell101d6c82010-08-02 12:00:43 +10001199 .set = param_set_aalockpolicy,
1200 .get = param_get_aalockpolicy
1201};
John Johansenb5e95b42010-07-29 14:48:07 -07001202
Kees Cooke4dca7b2017-10-17 19:04:42 -07001203static int param_set_audit(const char *val, const struct kernel_param *kp);
1204static int param_get_audit(char *buffer, const struct kernel_param *kp);
John Johansenb5e95b42010-07-29 14:48:07 -07001205
Kees Cooke4dca7b2017-10-17 19:04:42 -07001206static int param_set_mode(const char *val, const struct kernel_param *kp);
1207static int param_get_mode(char *buffer, const struct kernel_param *kp);
John Johansenb5e95b42010-07-29 14:48:07 -07001208
1209/* Flag values, also controllable via /sys/module/apparmor/parameters
1210 * We define special types as we want to do additional mediation.
1211 */
1212
1213/* AppArmor global enforcement switch - complain, enforce, kill */
1214enum profile_mode aa_g_profile_mode = APPARMOR_ENFORCE;
1215module_param_call(mode, param_set_mode, param_get_mode,
1216 &aa_g_profile_mode, S_IRUSR | S_IWUSR);
1217
John Johansen6059f712014-10-24 09:16:14 -07001218/* whether policy verification hashing is enabled */
Arnd Bergmann7616ac72016-07-25 10:59:07 -07001219bool aa_g_hash_policy = IS_ENABLED(CONFIG_SECURITY_APPARMOR_HASH_DEFAULT);
John Johansen3ccb76c2017-01-16 13:21:27 -08001220#ifdef CONFIG_SECURITY_APPARMOR_HASH
John Johansen6059f712014-10-24 09:16:14 -07001221module_param_named(hash_policy, aa_g_hash_policy, aabool, S_IRUSR | S_IWUSR);
Arnd Bergmann7616ac72016-07-25 10:59:07 -07001222#endif
John Johansen6059f712014-10-24 09:16:14 -07001223
John Johansenb5e95b42010-07-29 14:48:07 -07001224/* Debug mode */
Valentin Rothbergeea7a052017-04-06 06:55:20 -07001225bool aa_g_debug = IS_ENABLED(CONFIG_SECURITY_APPARMOR_DEBUG_MESSAGES);
John Johansenb5e95b42010-07-29 14:48:07 -07001226module_param_named(debug, aa_g_debug, aabool, S_IRUSR | S_IWUSR);
1227
1228/* Audit mode */
1229enum audit_mode aa_g_audit;
1230module_param_call(audit, param_set_audit, param_get_audit,
1231 &aa_g_audit, S_IRUSR | S_IWUSR);
1232
1233/* Determines if audit header is included in audited messages. This
1234 * provides more context if the audit daemon is not running
1235 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +10301236bool aa_g_audit_header = 1;
John Johansenb5e95b42010-07-29 14:48:07 -07001237module_param_named(audit_header, aa_g_audit_header, aabool,
1238 S_IRUSR | S_IWUSR);
1239
1240/* lock out loading/removal of policy
1241 * TODO: add in at boot loading of policy, which is the only way to
1242 * load policy, if lock_policy is set
1243 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +10301244bool aa_g_lock_policy;
John Johansenb5e95b42010-07-29 14:48:07 -07001245module_param_named(lock_policy, aa_g_lock_policy, aalockpolicy,
1246 S_IRUSR | S_IWUSR);
1247
1248/* Syscall logging mode */
Rusty Russell90ab5ee2012-01-13 09:32:20 +10301249bool aa_g_logsyscall;
John Johansenb5e95b42010-07-29 14:48:07 -07001250module_param_named(logsyscall, aa_g_logsyscall, aabool, S_IRUSR | S_IWUSR);
1251
1252/* Maximum pathname length before accesses will start getting rejected */
1253unsigned int aa_g_path_max = 2 * PATH_MAX;
John Johansen622f6e32017-04-06 06:55:24 -07001254module_param_named(path_max, aa_g_path_max, aauint, S_IRUSR);
John Johansenb5e95b42010-07-29 14:48:07 -07001255
1256/* Determines how paranoid loading of policy is and how much verification
1257 * on the loaded policy is done.
John Johansenabbf8732017-01-16 00:42:37 -08001258 * DEPRECATED: read only as strict checking of load is always done now
1259 * that none root users (user namespaces) can load policy.
John Johansenb5e95b42010-07-29 14:48:07 -07001260 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +10301261bool aa_g_paranoid_load = 1;
John Johansenabbf8732017-01-16 00:42:37 -08001262module_param_named(paranoid_load, aa_g_paranoid_load, aabool, S_IRUGO);
John Johansenb5e95b42010-07-29 14:48:07 -07001263
1264/* Boot time disable flag */
Rusty Russell90ab5ee2012-01-13 09:32:20 +10301265static bool apparmor_enabled = CONFIG_SECURITY_APPARMOR_BOOTPARAM_VALUE;
John Johansenc6116162013-07-10 21:03:43 -07001266module_param_named(enabled, apparmor_enabled, bool, S_IRUGO);
John Johansenb5e95b42010-07-29 14:48:07 -07001267
1268static int __init apparmor_enabled_setup(char *str)
1269{
1270 unsigned long enabled;
Jingoo Han29707b22014-02-05 15:13:14 +09001271 int error = kstrtoul(str, 0, &enabled);
John Johansenb5e95b42010-07-29 14:48:07 -07001272 if (!error)
1273 apparmor_enabled = enabled ? 1 : 0;
1274 return 1;
1275}
1276
1277__setup("apparmor=", apparmor_enabled_setup);
1278
1279/* set global flag turning off the ability to load policy */
Stephen Rothwell101d6c82010-08-02 12:00:43 +10001280static int param_set_aalockpolicy(const char *val, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -07001281{
John Johansen545de8f2017-04-06 06:55:23 -07001282 if (!apparmor_enabled)
1283 return -EINVAL;
1284 if (apparmor_initialized && !policy_admin_capable(NULL))
John Johansenb5e95b42010-07-29 14:48:07 -07001285 return -EPERM;
John Johansenb5e95b42010-07-29 14:48:07 -07001286 return param_set_bool(val, kp);
1287}
1288
Stephen Rothwell101d6c82010-08-02 12:00:43 +10001289static int param_get_aalockpolicy(char *buffer, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -07001290{
John Johansenca4bd5a2017-01-16 00:43:11 -08001291 if (!apparmor_enabled)
1292 return -EINVAL;
John Johansen545de8f2017-04-06 06:55:23 -07001293 if (apparmor_initialized && !policy_view_capable(NULL))
1294 return -EPERM;
John Johansenb5e95b42010-07-29 14:48:07 -07001295 return param_get_bool(buffer, kp);
1296}
1297
Stephen Rothwell101d6c82010-08-02 12:00:43 +10001298static int param_set_aabool(const char *val, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -07001299{
John Johansenca4bd5a2017-01-16 00:43:11 -08001300 if (!apparmor_enabled)
1301 return -EINVAL;
John Johansen545de8f2017-04-06 06:55:23 -07001302 if (apparmor_initialized && !policy_admin_capable(NULL))
1303 return -EPERM;
John Johansenb5e95b42010-07-29 14:48:07 -07001304 return param_set_bool(val, kp);
1305}
1306
Stephen Rothwell101d6c82010-08-02 12:00:43 +10001307static int param_get_aabool(char *buffer, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -07001308{
John Johansenca4bd5a2017-01-16 00:43:11 -08001309 if (!apparmor_enabled)
1310 return -EINVAL;
John Johansen545de8f2017-04-06 06:55:23 -07001311 if (apparmor_initialized && !policy_view_capable(NULL))
1312 return -EPERM;
John Johansenb5e95b42010-07-29 14:48:07 -07001313 return param_get_bool(buffer, kp);
1314}
1315
Stephen Rothwell101d6c82010-08-02 12:00:43 +10001316static int param_set_aauint(const char *val, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -07001317{
John Johansen39d84822017-03-30 05:25:23 -07001318 int error;
1319
John Johansenca4bd5a2017-01-16 00:43:11 -08001320 if (!apparmor_enabled)
1321 return -EINVAL;
John Johansen39d84822017-03-30 05:25:23 -07001322 /* file is ro but enforce 2nd line check */
1323 if (apparmor_initialized)
John Johansen545de8f2017-04-06 06:55:23 -07001324 return -EPERM;
John Johansen39d84822017-03-30 05:25:23 -07001325
1326 error = param_set_uint(val, kp);
1327 pr_info("AppArmor: buffer size set to %d bytes\n", aa_g_path_max);
1328
1329 return error;
John Johansenb5e95b42010-07-29 14:48:07 -07001330}
1331
Stephen Rothwell101d6c82010-08-02 12:00:43 +10001332static int param_get_aauint(char *buffer, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -07001333{
John Johansenca4bd5a2017-01-16 00:43:11 -08001334 if (!apparmor_enabled)
1335 return -EINVAL;
John Johansen545de8f2017-04-06 06:55:23 -07001336 if (apparmor_initialized && !policy_view_capable(NULL))
1337 return -EPERM;
John Johansenb5e95b42010-07-29 14:48:07 -07001338 return param_get_uint(buffer, kp);
1339}
1340
Kees Cooke4dca7b2017-10-17 19:04:42 -07001341static int param_get_audit(char *buffer, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -07001342{
John Johansenb5e95b42010-07-29 14:48:07 -07001343 if (!apparmor_enabled)
1344 return -EINVAL;
John Johansen545de8f2017-04-06 06:55:23 -07001345 if (apparmor_initialized && !policy_view_capable(NULL))
1346 return -EPERM;
John Johansenb5e95b42010-07-29 14:48:07 -07001347 return sprintf(buffer, "%s", audit_mode_names[aa_g_audit]);
1348}
1349
Kees Cooke4dca7b2017-10-17 19:04:42 -07001350static int param_set_audit(const char *val, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -07001351{
1352 int i;
John Johansenb5e95b42010-07-29 14:48:07 -07001353
1354 if (!apparmor_enabled)
1355 return -EINVAL;
John Johansenb5e95b42010-07-29 14:48:07 -07001356 if (!val)
1357 return -EINVAL;
John Johansen545de8f2017-04-06 06:55:23 -07001358 if (apparmor_initialized && !policy_admin_capable(NULL))
1359 return -EPERM;
John Johansenb5e95b42010-07-29 14:48:07 -07001360
1361 for (i = 0; i < AUDIT_MAX_INDEX; i++) {
1362 if (strcmp(val, audit_mode_names[i]) == 0) {
1363 aa_g_audit = i;
1364 return 0;
1365 }
1366 }
1367
1368 return -EINVAL;
1369}
1370
Kees Cooke4dca7b2017-10-17 19:04:42 -07001371static int param_get_mode(char *buffer, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -07001372{
John Johansenb5e95b42010-07-29 14:48:07 -07001373 if (!apparmor_enabled)
1374 return -EINVAL;
John Johansen545de8f2017-04-06 06:55:23 -07001375 if (apparmor_initialized && !policy_view_capable(NULL))
1376 return -EPERM;
John Johansenb5e95b42010-07-29 14:48:07 -07001377
John Johansen0d259f02013-07-10 21:13:43 -07001378 return sprintf(buffer, "%s", aa_profile_mode_names[aa_g_profile_mode]);
John Johansenb5e95b42010-07-29 14:48:07 -07001379}
1380
Kees Cooke4dca7b2017-10-17 19:04:42 -07001381static int param_set_mode(const char *val, const struct kernel_param *kp)
John Johansenb5e95b42010-07-29 14:48:07 -07001382{
1383 int i;
John Johansenb5e95b42010-07-29 14:48:07 -07001384
1385 if (!apparmor_enabled)
1386 return -EINVAL;
John Johansenb5e95b42010-07-29 14:48:07 -07001387 if (!val)
1388 return -EINVAL;
John Johansen545de8f2017-04-06 06:55:23 -07001389 if (apparmor_initialized && !policy_admin_capable(NULL))
1390 return -EPERM;
John Johansenb5e95b42010-07-29 14:48:07 -07001391
John Johansen0d259f02013-07-10 21:13:43 -07001392 for (i = 0; i < APPARMOR_MODE_NAMES_MAX_INDEX; i++) {
1393 if (strcmp(val, aa_profile_mode_names[i]) == 0) {
John Johansenb5e95b42010-07-29 14:48:07 -07001394 aa_g_profile_mode = i;
1395 return 0;
1396 }
1397 }
1398
1399 return -EINVAL;
1400}
1401
1402/*
1403 * AppArmor init functions
1404 */
1405
1406/**
John Johansen55a26eb2017-01-16 00:43:00 -08001407 * set_init_ctx - set a task context and profile on the first task.
John Johansenb5e95b42010-07-29 14:48:07 -07001408 *
1409 * TODO: allow setting an alternate profile than unconfined
1410 */
John Johansen55a26eb2017-01-16 00:43:00 -08001411static int __init set_init_ctx(void)
John Johansenb5e95b42010-07-29 14:48:07 -07001412{
1413 struct cred *cred = (struct cred *)current->real_cred;
John Johansen55a26eb2017-01-16 00:43:00 -08001414 struct aa_task_ctx *ctx;
John Johansenb5e95b42010-07-29 14:48:07 -07001415
John Johansen55a26eb2017-01-16 00:43:00 -08001416 ctx = aa_alloc_task_context(GFP_KERNEL);
1417 if (!ctx)
John Johansenb5e95b42010-07-29 14:48:07 -07001418 return -ENOMEM;
1419
John Johansen637f6882017-06-09 08:14:28 -07001420 ctx->label = aa_get_label(ns_unconfined(root_ns));
John Johansen55a26eb2017-01-16 00:43:00 -08001421 cred_ctx(cred) = ctx;
John Johansenb5e95b42010-07-29 14:48:07 -07001422
1423 return 0;
1424}
1425
John Johansend4669f02017-01-16 00:43:10 -08001426static void destroy_buffers(void)
1427{
1428 u32 i, j;
1429
1430 for_each_possible_cpu(i) {
1431 for_each_cpu_buffer(j) {
1432 kfree(per_cpu(aa_buffers, i).buf[j]);
1433 per_cpu(aa_buffers, i).buf[j] = NULL;
1434 }
1435 }
1436}
1437
1438static int __init alloc_buffers(void)
1439{
1440 u32 i, j;
1441
1442 for_each_possible_cpu(i) {
1443 for_each_cpu_buffer(j) {
1444 char *buffer;
1445
1446 if (cpu_to_node(i) > num_online_nodes())
1447 /* fallback to kmalloc for offline nodes */
1448 buffer = kmalloc(aa_g_path_max, GFP_KERNEL);
1449 else
1450 buffer = kmalloc_node(aa_g_path_max, GFP_KERNEL,
1451 cpu_to_node(i));
1452 if (!buffer) {
1453 destroy_buffers();
1454 return -ENOMEM;
1455 }
1456 per_cpu(aa_buffers, i).buf[j] = buffer;
1457 }
1458 }
1459
1460 return 0;
1461}
1462
Tyler Hickse3ea1ca2016-03-16 19:19:10 -05001463#ifdef CONFIG_SYSCTL
1464static int apparmor_dointvec(struct ctl_table *table, int write,
1465 void __user *buffer, size_t *lenp, loff_t *ppos)
1466{
1467 if (!policy_admin_capable(NULL))
1468 return -EPERM;
1469 if (!apparmor_enabled)
1470 return -EINVAL;
1471
1472 return proc_dointvec(table, write, buffer, lenp, ppos);
1473}
1474
1475static struct ctl_path apparmor_sysctl_path[] = {
1476 { .procname = "kernel", },
1477 { }
1478};
1479
1480static struct ctl_table apparmor_sysctl_table[] = {
1481 {
1482 .procname = "unprivileged_userns_apparmor_policy",
1483 .data = &unprivileged_userns_apparmor_policy,
1484 .maxlen = sizeof(int),
1485 .mode = 0600,
1486 .proc_handler = apparmor_dointvec,
1487 },
1488 { }
1489};
1490
1491static int __init apparmor_init_sysctl(void)
1492{
1493 return register_sysctl_paths(apparmor_sysctl_path,
1494 apparmor_sysctl_table) ? 0 : -ENOMEM;
1495}
1496#else
1497static inline int apparmor_init_sysctl(void)
1498{
1499 return 0;
1500}
1501#endif /* CONFIG_SYSCTL */
1502
John Johansenb5e95b42010-07-29 14:48:07 -07001503static int __init apparmor_init(void)
1504{
1505 int error;
1506
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -07001507 if (!apparmor_enabled || !security_module_enable("apparmor")) {
John Johansenb5e95b42010-07-29 14:48:07 -07001508 aa_info_message("AppArmor disabled by boot time parameter");
1509 apparmor_enabled = 0;
1510 return 0;
1511 }
1512
John Johansen11c236b2017-01-16 00:42:42 -08001513 error = aa_setup_dfa_engine();
1514 if (error) {
1515 AA_ERROR("Unable to setup dfa engine\n");
1516 goto alloc_out;
1517 }
1518
John Johansenb5e95b42010-07-29 14:48:07 -07001519 error = aa_alloc_root_ns();
1520 if (error) {
1521 AA_ERROR("Unable to allocate default profile namespace\n");
1522 goto alloc_out;
1523 }
1524
Tyler Hickse3ea1ca2016-03-16 19:19:10 -05001525 error = apparmor_init_sysctl();
1526 if (error) {
1527 AA_ERROR("Unable to register sysctls\n");
1528 goto alloc_out;
1529
1530 }
1531
John Johansend4669f02017-01-16 00:43:10 -08001532 error = alloc_buffers();
1533 if (error) {
1534 AA_ERROR("Unable to allocate work buffers\n");
1535 goto buffers_out;
1536 }
1537
John Johansen55a26eb2017-01-16 00:43:00 -08001538 error = set_init_ctx();
John Johansenb5e95b42010-07-29 14:48:07 -07001539 if (error) {
1540 AA_ERROR("Failed to set context on init task\n");
Casey Schauflerb1d9e6b2015-05-02 15:11:42 -07001541 aa_free_root_ns();
John Johansend4669f02017-01-16 00:43:10 -08001542 goto buffers_out;
John Johansenb5e95b42010-07-29 14:48:07 -07001543 }
Casey Schauflerd69dece52017-01-18 17:09:05 -08001544 security_add_hooks(apparmor_hooks, ARRAY_SIZE(apparmor_hooks),
1545 "apparmor");
John Johansenb5e95b42010-07-29 14:48:07 -07001546
1547 /* Report that AppArmor successfully initialized */
1548 apparmor_initialized = 1;
1549 if (aa_g_profile_mode == APPARMOR_COMPLAIN)
1550 aa_info_message("AppArmor initialized: complain mode enabled");
1551 else if (aa_g_profile_mode == APPARMOR_KILL)
1552 aa_info_message("AppArmor initialized: kill mode enabled");
1553 else
1554 aa_info_message("AppArmor initialized");
1555
1556 return error;
1557
John Johansend4669f02017-01-16 00:43:10 -08001558buffers_out:
1559 destroy_buffers();
1560
John Johansenb5e95b42010-07-29 14:48:07 -07001561alloc_out:
1562 aa_destroy_aafs();
John Johansen11c236b2017-01-16 00:42:42 -08001563 aa_teardown_dfa_engine();
John Johansenb5e95b42010-07-29 14:48:07 -07001564
1565 apparmor_enabled = 0;
1566 return error;
John Johansenb5e95b42010-07-29 14:48:07 -07001567}
1568
1569security_initcall(apparmor_init);