John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 1 | /* |
| 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 Schaufler | 3c4ed7b | 2015-05-02 15:10:46 -0700 | [diff] [blame] | 15 | #include <linux/lsm_hooks.h> |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 16 | #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. Hallyn | 3486740 | 2011-03-23 16:43:17 -0700 | [diff] [blame] | 25 | #include <linux/user_namespace.h> |
William Hua | e025be0 | 2017-01-15 16:49:28 -0800 | [diff] [blame] | 26 | #include <linux/kmemleak.h> |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 27 | #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 Johansen | cff281f | 2017-01-16 00:42:15 -0800 | [diff] [blame] | 38 | #include "include/policy_ns.h" |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 39 | #include "include/procattr.h" |
| 40 | |
| 41 | /* Flag indicating whether initialization completed */ |
| 42 | int apparmor_initialized __initdata; |
| 43 | |
| 44 | /* |
| 45 | * LSM hook functions |
| 46 | */ |
| 47 | |
| 48 | /* |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 49 | * free the associated aa_task_ctx and put its profiles |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 50 | */ |
| 51 | static void apparmor_cred_free(struct cred *cred) |
| 52 | { |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 53 | aa_free_task_context(cred_ctx(cred)); |
| 54 | cred_ctx(cred) = NULL; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | /* |
| 58 | * allocate the apparmor part of blank credentials |
| 59 | */ |
| 60 | static int apparmor_cred_alloc_blank(struct cred *cred, gfp_t gfp) |
| 61 | { |
| 62 | /* freed by apparmor_cred_free */ |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 63 | struct aa_task_ctx *ctx = aa_alloc_task_context(gfp); |
| 64 | |
| 65 | if (!ctx) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 66 | return -ENOMEM; |
| 67 | |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 68 | cred_ctx(cred) = ctx; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 69 | return 0; |
| 70 | } |
| 71 | |
| 72 | /* |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 73 | * prepare new aa_task_ctx for modification by prepare_cred block |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 74 | */ |
| 75 | static int apparmor_cred_prepare(struct cred *new, const struct cred *old, |
| 76 | gfp_t gfp) |
| 77 | { |
| 78 | /* freed by apparmor_cred_free */ |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 79 | struct aa_task_ctx *ctx = aa_alloc_task_context(gfp); |
| 80 | |
| 81 | if (!ctx) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 82 | return -ENOMEM; |
| 83 | |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 84 | aa_dup_task_context(ctx, cred_ctx(old)); |
| 85 | cred_ctx(new) = ctx; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 86 | return 0; |
| 87 | } |
| 88 | |
| 89 | /* |
| 90 | * transfer the apparmor data to a blank set of creds |
| 91 | */ |
| 92 | static void apparmor_cred_transfer(struct cred *new, const struct cred *old) |
| 93 | { |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 94 | const struct aa_task_ctx *old_ctx = cred_ctx(old); |
| 95 | struct aa_task_ctx *new_ctx = cred_ctx(new); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 96 | |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 97 | aa_dup_task_context(new_ctx, old_ctx); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | static int apparmor_ptrace_access_check(struct task_struct *child, |
| 101 | unsigned int mode) |
| 102 | { |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 103 | return aa_ptrace(current, child, mode); |
| 104 | } |
| 105 | |
| 106 | static int apparmor_ptrace_traceme(struct task_struct *parent) |
| 107 | { |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 108 | return aa_ptrace(parent, current, PTRACE_MODE_ATTACH); |
| 109 | } |
| 110 | |
| 111 | /* Derived from security/commoncap.c:cap_capget */ |
| 112 | static int apparmor_capget(struct task_struct *target, kernel_cap_t *effective, |
| 113 | kernel_cap_t *inheritable, kernel_cap_t *permitted) |
| 114 | { |
| 115 | struct aa_profile *profile; |
| 116 | const struct cred *cred; |
| 117 | |
| 118 | rcu_read_lock(); |
| 119 | cred = __task_cred(target); |
| 120 | profile = aa_cred_profile(cred); |
| 121 | |
Casey Schaufler | b1d9e6b | 2015-05-02 15:11:42 -0700 | [diff] [blame] | 122 | /* |
| 123 | * cap_capget is stacked ahead of this and will |
| 124 | * initialize effective and permitted. |
| 125 | */ |
John Johansen | 25e75df | 2011-06-25 16:57:07 +0100 | [diff] [blame] | 126 | if (!unconfined(profile) && !COMPLAIN_MODE(profile)) { |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 127 | *effective = cap_intersect(*effective, profile->caps.allow); |
| 128 | *permitted = cap_intersect(*permitted, profile->caps.allow); |
| 129 | } |
| 130 | rcu_read_unlock(); |
| 131 | |
| 132 | return 0; |
| 133 | } |
| 134 | |
Eric Paris | 6a9de49 | 2012-01-03 12:25:14 -0500 | [diff] [blame] | 135 | static int apparmor_capable(const struct cred *cred, struct user_namespace *ns, |
| 136 | int cap, int audit) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 137 | { |
| 138 | struct aa_profile *profile; |
Casey Schaufler | b1d9e6b | 2015-05-02 15:11:42 -0700 | [diff] [blame] | 139 | int error = 0; |
| 140 | |
| 141 | profile = aa_cred_profile(cred); |
| 142 | if (!unconfined(profile)) |
| 143 | error = aa_capable(profile, cap, audit); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 144 | return error; |
| 145 | } |
| 146 | |
| 147 | /** |
| 148 | * common_perm - basic common permission check wrapper fn for paths |
| 149 | * @op: operation being checked |
| 150 | * @path: path to check permission of (NOT NULL) |
| 151 | * @mask: requested permissions mask |
| 152 | * @cond: conditional info for the permission request (NOT NULL) |
| 153 | * |
| 154 | * Returns: %0 else error code if error or permission denied |
| 155 | */ |
John Johansen | 47f6e5c | 2017-01-16 00:43:01 -0800 | [diff] [blame] | 156 | static int common_perm(const char *op, const struct path *path, u32 mask, |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 157 | struct path_cond *cond) |
| 158 | { |
| 159 | struct aa_profile *profile; |
| 160 | int error = 0; |
| 161 | |
| 162 | profile = __aa_current_profile(); |
| 163 | if (!unconfined(profile)) |
| 164 | error = aa_path_perm(op, profile, path, 0, mask, cond); |
| 165 | |
| 166 | return error; |
| 167 | } |
| 168 | |
| 169 | /** |
John Johansen | 31f75bf | 2017-01-16 00:43:07 -0800 | [diff] [blame] | 170 | * common_perm_cond - common permission wrapper around inode cond |
| 171 | * @op: operation being checked |
| 172 | * @path: location to check (NOT NULL) |
| 173 | * @mask: requested permissions mask |
| 174 | * |
| 175 | * Returns: %0 else error code if error or permission denied |
| 176 | */ |
| 177 | static int common_perm_cond(const char *op, const struct path *path, u32 mask) |
| 178 | { |
| 179 | struct path_cond cond = { d_backing_inode(path->dentry)->i_uid, |
| 180 | d_backing_inode(path->dentry)->i_mode |
| 181 | }; |
| 182 | |
| 183 | if (!path_mediated_fs(path->dentry)) |
| 184 | return 0; |
| 185 | |
| 186 | return common_perm(op, path, mask, &cond); |
| 187 | } |
| 188 | |
| 189 | /** |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 190 | * common_perm_dir_dentry - common permission wrapper when path is dir, dentry |
| 191 | * @op: operation being checked |
| 192 | * @dir: directory of the dentry (NOT NULL) |
| 193 | * @dentry: dentry to check (NOT NULL) |
| 194 | * @mask: requested permissions mask |
| 195 | * @cond: conditional info for the permission request (NOT NULL) |
| 196 | * |
| 197 | * Returns: %0 else error code if error or permission denied |
| 198 | */ |
John Johansen | 47f6e5c | 2017-01-16 00:43:01 -0800 | [diff] [blame] | 199 | static int common_perm_dir_dentry(const char *op, const struct path *dir, |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 200 | struct dentry *dentry, u32 mask, |
| 201 | struct path_cond *cond) |
| 202 | { |
Kees Cook | 8486adf | 2016-12-16 17:04:13 -0800 | [diff] [blame] | 203 | struct path path = { .mnt = dir->mnt, .dentry = dentry }; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 204 | |
| 205 | return common_perm(op, &path, mask, cond); |
| 206 | } |
| 207 | |
| 208 | /** |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 209 | * common_perm_rm - common permission wrapper for operations doing rm |
| 210 | * @op: operation being checked |
| 211 | * @dir: directory that the dentry is in (NOT NULL) |
| 212 | * @dentry: dentry being rm'd (NOT NULL) |
| 213 | * @mask: requested permission mask |
| 214 | * |
| 215 | * Returns: %0 else error code if error or permission denied |
| 216 | */ |
John Johansen | 47f6e5c | 2017-01-16 00:43:01 -0800 | [diff] [blame] | 217 | static int common_perm_rm(const char *op, const struct path *dir, |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 218 | struct dentry *dentry, u32 mask) |
| 219 | { |
David Howells | c6f493d | 2015-03-17 22:26:22 +0000 | [diff] [blame] | 220 | struct inode *inode = d_backing_inode(dentry); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 221 | struct path_cond cond = { }; |
| 222 | |
John Johansen | efeee83 | 2017-01-16 00:42:28 -0800 | [diff] [blame] | 223 | if (!inode || !path_mediated_fs(dentry)) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 224 | return 0; |
| 225 | |
| 226 | cond.uid = inode->i_uid; |
| 227 | cond.mode = inode->i_mode; |
| 228 | |
| 229 | return common_perm_dir_dentry(op, dir, dentry, mask, &cond); |
| 230 | } |
| 231 | |
| 232 | /** |
| 233 | * common_perm_create - common permission wrapper for operations doing create |
| 234 | * @op: operation being checked |
| 235 | * @dir: directory that dentry will be created in (NOT NULL) |
| 236 | * @dentry: dentry to create (NOT NULL) |
| 237 | * @mask: request permission mask |
| 238 | * @mode: created file mode |
| 239 | * |
| 240 | * Returns: %0 else error code if error or permission denied |
| 241 | */ |
John Johansen | 47f6e5c | 2017-01-16 00:43:01 -0800 | [diff] [blame] | 242 | static int common_perm_create(const char *op, const struct path *dir, |
Al Viro | d6b49f7 | 2016-03-25 15:10:04 -0400 | [diff] [blame] | 243 | struct dentry *dentry, u32 mask, umode_t mode) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 244 | { |
| 245 | struct path_cond cond = { current_fsuid(), mode }; |
| 246 | |
John Johansen | efeee83 | 2017-01-16 00:42:28 -0800 | [diff] [blame] | 247 | if (!path_mediated_fs(dir->dentry)) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 248 | return 0; |
| 249 | |
| 250 | return common_perm_dir_dentry(op, dir, dentry, mask, &cond); |
| 251 | } |
| 252 | |
Al Viro | 989f74e | 2016-03-25 15:13:39 -0400 | [diff] [blame] | 253 | static int apparmor_path_unlink(const struct path *dir, struct dentry *dentry) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 254 | { |
| 255 | return common_perm_rm(OP_UNLINK, dir, dentry, AA_MAY_DELETE); |
| 256 | } |
| 257 | |
Al Viro | d360775 | 2016-03-25 15:21:09 -0400 | [diff] [blame] | 258 | static int apparmor_path_mkdir(const struct path *dir, struct dentry *dentry, |
Al Viro | 4572bef | 2011-11-21 14:56:21 -0500 | [diff] [blame] | 259 | umode_t mode) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 260 | { |
| 261 | return common_perm_create(OP_MKDIR, dir, dentry, AA_MAY_CREATE, |
| 262 | S_IFDIR); |
| 263 | } |
| 264 | |
Al Viro | 989f74e | 2016-03-25 15:13:39 -0400 | [diff] [blame] | 265 | static int apparmor_path_rmdir(const struct path *dir, struct dentry *dentry) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 266 | { |
| 267 | return common_perm_rm(OP_RMDIR, dir, dentry, AA_MAY_DELETE); |
| 268 | } |
| 269 | |
Al Viro | d360775 | 2016-03-25 15:21:09 -0400 | [diff] [blame] | 270 | static int apparmor_path_mknod(const struct path *dir, struct dentry *dentry, |
Al Viro | 04fc66e | 2011-11-21 14:58:38 -0500 | [diff] [blame] | 271 | umode_t mode, unsigned int dev) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 272 | { |
| 273 | return common_perm_create(OP_MKNOD, dir, dentry, AA_MAY_CREATE, mode); |
| 274 | } |
| 275 | |
Al Viro | 81f4c50 | 2016-03-25 14:22:01 -0400 | [diff] [blame] | 276 | static int apparmor_path_truncate(const struct path *path) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 277 | { |
John Johansen | 31f75bf | 2017-01-16 00:43:07 -0800 | [diff] [blame] | 278 | return common_perm_cond(OP_TRUNC, path, MAY_WRITE | AA_MAY_META_WRITE); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 279 | } |
| 280 | |
Al Viro | d360775 | 2016-03-25 15:21:09 -0400 | [diff] [blame] | 281 | static int apparmor_path_symlink(const struct path *dir, struct dentry *dentry, |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 282 | const char *old_name) |
| 283 | { |
| 284 | return common_perm_create(OP_SYMLINK, dir, dentry, AA_MAY_CREATE, |
| 285 | S_IFLNK); |
| 286 | } |
| 287 | |
Al Viro | 3ccee46 | 2016-03-25 15:27:45 -0400 | [diff] [blame] | 288 | static int apparmor_path_link(struct dentry *old_dentry, const struct path *new_dir, |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 289 | struct dentry *new_dentry) |
| 290 | { |
| 291 | struct aa_profile *profile; |
| 292 | int error = 0; |
| 293 | |
John Johansen | efeee83 | 2017-01-16 00:42:28 -0800 | [diff] [blame] | 294 | if (!path_mediated_fs(old_dentry)) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 295 | return 0; |
| 296 | |
| 297 | profile = aa_current_profile(); |
| 298 | if (!unconfined(profile)) |
| 299 | error = aa_path_link(profile, old_dentry, new_dir, new_dentry); |
| 300 | return error; |
| 301 | } |
| 302 | |
Al Viro | 3ccee46 | 2016-03-25 15:27:45 -0400 | [diff] [blame] | 303 | static int apparmor_path_rename(const struct path *old_dir, struct dentry *old_dentry, |
| 304 | const struct path *new_dir, struct dentry *new_dentry) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 305 | { |
| 306 | struct aa_profile *profile; |
| 307 | int error = 0; |
| 308 | |
John Johansen | efeee83 | 2017-01-16 00:42:28 -0800 | [diff] [blame] | 309 | if (!path_mediated_fs(old_dentry)) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 310 | return 0; |
| 311 | |
| 312 | profile = aa_current_profile(); |
| 313 | if (!unconfined(profile)) { |
Kees Cook | 8486adf | 2016-12-16 17:04:13 -0800 | [diff] [blame] | 314 | struct path old_path = { .mnt = old_dir->mnt, |
| 315 | .dentry = old_dentry }; |
| 316 | struct path new_path = { .mnt = new_dir->mnt, |
| 317 | .dentry = new_dentry }; |
David Howells | c6f493d | 2015-03-17 22:26:22 +0000 | [diff] [blame] | 318 | struct path_cond cond = { d_backing_inode(old_dentry)->i_uid, |
| 319 | d_backing_inode(old_dentry)->i_mode |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 320 | }; |
| 321 | |
| 322 | error = aa_path_perm(OP_RENAME_SRC, profile, &old_path, 0, |
| 323 | MAY_READ | AA_MAY_META_READ | MAY_WRITE | |
| 324 | AA_MAY_META_WRITE | AA_MAY_DELETE, |
| 325 | &cond); |
| 326 | if (!error) |
| 327 | error = aa_path_perm(OP_RENAME_DEST, profile, &new_path, |
| 328 | 0, MAY_WRITE | AA_MAY_META_WRITE | |
| 329 | AA_MAY_CREATE, &cond); |
| 330 | |
| 331 | } |
| 332 | return error; |
| 333 | } |
| 334 | |
Al Viro | be01f9f | 2016-03-25 14:56:23 -0400 | [diff] [blame] | 335 | static int apparmor_path_chmod(const struct path *path, umode_t mode) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 336 | { |
John Johansen | 31f75bf | 2017-01-16 00:43:07 -0800 | [diff] [blame] | 337 | return common_perm_cond(OP_CHMOD, path, AA_MAY_CHMOD); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 338 | } |
| 339 | |
Al Viro | 7fd25da | 2016-03-25 14:44:41 -0400 | [diff] [blame] | 340 | static int apparmor_path_chown(const struct path *path, kuid_t uid, kgid_t gid) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 341 | { |
John Johansen | 31f75bf | 2017-01-16 00:43:07 -0800 | [diff] [blame] | 342 | return common_perm_cond(OP_CHOWN, path, AA_MAY_CHOWN); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 343 | } |
| 344 | |
Al Viro | 3f7036a | 2015-03-08 19:28:30 -0400 | [diff] [blame] | 345 | static int apparmor_inode_getattr(const struct path *path) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 346 | { |
John Johansen | 31f75bf | 2017-01-16 00:43:07 -0800 | [diff] [blame] | 347 | return common_perm_cond(OP_GETATTR, path, AA_MAY_META_READ); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 348 | } |
| 349 | |
Eric Paris | 83d4985 | 2012-04-04 13:45:40 -0400 | [diff] [blame] | 350 | static int apparmor_file_open(struct file *file, const struct cred *cred) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 351 | { |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 352 | struct aa_file_ctx *fctx = file->f_security; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 353 | struct aa_profile *profile; |
| 354 | int error = 0; |
| 355 | |
John Johansen | efeee83 | 2017-01-16 00:42:28 -0800 | [diff] [blame] | 356 | if (!path_mediated_fs(file->f_path.dentry)) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 357 | return 0; |
| 358 | |
| 359 | /* If in exec, permission is handled by bprm hooks. |
| 360 | * Cache permissions granted by the previous exec check, with |
| 361 | * implicit read and executable mmap which are required to |
| 362 | * actually execute the image. |
| 363 | */ |
| 364 | if (current->in_execve) { |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 365 | fctx->allow = MAY_EXEC | MAY_READ | AA_EXEC_MMAP; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 366 | return 0; |
| 367 | } |
| 368 | |
| 369 | profile = aa_cred_profile(cred); |
| 370 | if (!unconfined(profile)) { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 371 | struct inode *inode = file_inode(file); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 372 | struct path_cond cond = { inode->i_uid, inode->i_mode }; |
| 373 | |
| 374 | error = aa_path_perm(OP_OPEN, profile, &file->f_path, 0, |
| 375 | aa_map_file_to_perms(file), &cond); |
| 376 | /* todo cache full allowed permissions set and state */ |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 377 | fctx->allow = aa_map_file_to_perms(file); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | return error; |
| 381 | } |
| 382 | |
| 383 | static int apparmor_file_alloc_security(struct file *file) |
| 384 | { |
| 385 | /* freed by apparmor_file_free_security */ |
| 386 | file->f_security = aa_alloc_file_context(GFP_KERNEL); |
| 387 | if (!file->f_security) |
| 388 | return -ENOMEM; |
| 389 | return 0; |
| 390 | |
| 391 | } |
| 392 | |
| 393 | static void apparmor_file_free_security(struct file *file) |
| 394 | { |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 395 | struct aa_file_ctx *ctx = file->f_security; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 396 | |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 397 | aa_free_file_context(ctx); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 398 | } |
| 399 | |
John Johansen | 47f6e5c | 2017-01-16 00:43:01 -0800 | [diff] [blame] | 400 | static int common_file_perm(const char *op, struct file *file, u32 mask) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 401 | { |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 402 | struct aa_file_ctx *fctx = file->f_security; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 403 | struct aa_profile *profile, *fprofile = aa_cred_profile(file->f_cred); |
| 404 | int error = 0; |
| 405 | |
| 406 | BUG_ON(!fprofile); |
| 407 | |
| 408 | if (!file->f_path.mnt || |
John Johansen | efeee83 | 2017-01-16 00:42:28 -0800 | [diff] [blame] | 409 | !path_mediated_fs(file->f_path.dentry)) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 410 | return 0; |
| 411 | |
| 412 | profile = __aa_current_profile(); |
| 413 | |
| 414 | /* revalidate access, if task is unconfined, or the cached cred |
| 415 | * doesn't match or if the request is for more permissions than |
| 416 | * was granted. |
| 417 | * |
| 418 | * Note: the test for !unconfined(fprofile) is to handle file |
| 419 | * delegation from unconfined tasks |
| 420 | */ |
| 421 | if (!unconfined(profile) && !unconfined(fprofile) && |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 422 | ((fprofile != profile) || (mask & ~fctx->allow))) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 423 | error = aa_file_perm(op, profile, file, mask); |
| 424 | |
| 425 | return error; |
| 426 | } |
| 427 | |
| 428 | static int apparmor_file_permission(struct file *file, int mask) |
| 429 | { |
| 430 | return common_file_perm(OP_FPERM, file, mask); |
| 431 | } |
| 432 | |
| 433 | static int apparmor_file_lock(struct file *file, unsigned int cmd) |
| 434 | { |
| 435 | u32 mask = AA_MAY_LOCK; |
| 436 | |
| 437 | if (cmd == F_WRLCK) |
| 438 | mask |= MAY_WRITE; |
| 439 | |
| 440 | return common_file_perm(OP_FLOCK, file, mask); |
| 441 | } |
| 442 | |
John Johansen | 47f6e5c | 2017-01-16 00:43:01 -0800 | [diff] [blame] | 443 | static int common_mmap(const char *op, struct file *file, unsigned long prot, |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 444 | unsigned long flags) |
| 445 | { |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 446 | int mask = 0; |
| 447 | |
| 448 | if (!file || !file->f_security) |
| 449 | return 0; |
| 450 | |
| 451 | if (prot & PROT_READ) |
| 452 | mask |= MAY_READ; |
| 453 | /* |
| 454 | * Private mappings don't require write perms since they don't |
| 455 | * write back to the files |
| 456 | */ |
| 457 | if ((prot & PROT_WRITE) && !(flags & MAP_PRIVATE)) |
| 458 | mask |= MAY_WRITE; |
| 459 | if (prot & PROT_EXEC) |
| 460 | mask |= AA_EXEC_MMAP; |
| 461 | |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 462 | return common_file_perm(op, file, mask); |
| 463 | } |
| 464 | |
Al Viro | e546785 | 2012-05-30 13:30:51 -0400 | [diff] [blame] | 465 | static int apparmor_mmap_file(struct file *file, unsigned long reqprot, |
| 466 | unsigned long prot, unsigned long flags) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 467 | { |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 468 | return common_mmap(OP_FMMAP, file, prot, flags); |
| 469 | } |
| 470 | |
| 471 | static int apparmor_file_mprotect(struct vm_area_struct *vma, |
| 472 | unsigned long reqprot, unsigned long prot) |
| 473 | { |
| 474 | return common_mmap(OP_FMPROT, vma->vm_file, prot, |
| 475 | !(vma->vm_flags & VM_SHARED) ? MAP_PRIVATE : 0); |
| 476 | } |
| 477 | |
| 478 | static int apparmor_getprocattr(struct task_struct *task, char *name, |
| 479 | char **value) |
| 480 | { |
| 481 | int error = -ENOENT; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 482 | /* released below */ |
| 483 | const struct cred *cred = get_task_cred(task); |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 484 | struct aa_task_ctx *ctx = cred_ctx(cred); |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 485 | struct aa_profile *profile = NULL; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 486 | |
| 487 | if (strcmp(name, "current") == 0) |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 488 | profile = aa_get_newest_profile(ctx->profile); |
| 489 | else if (strcmp(name, "prev") == 0 && ctx->previous) |
| 490 | profile = aa_get_newest_profile(ctx->previous); |
| 491 | else if (strcmp(name, "exec") == 0 && ctx->onexec) |
| 492 | profile = aa_get_newest_profile(ctx->onexec); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 493 | else |
| 494 | error = -EINVAL; |
| 495 | |
John Johansen | 77b071b | 2013-07-10 21:07:43 -0700 | [diff] [blame] | 496 | if (profile) |
| 497 | error = aa_getprocattr(profile, value); |
| 498 | |
| 499 | aa_put_profile(profile); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 500 | put_cred(cred); |
| 501 | |
| 502 | return error; |
| 503 | } |
| 504 | |
| 505 | static int apparmor_setprocattr(struct task_struct *task, char *name, |
| 506 | void *value, size_t size) |
| 507 | { |
Vegard Nossum | e89b808 | 2016-07-07 13:41:11 -0700 | [diff] [blame] | 508 | char *command, *largs = NULL, *args = value; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 509 | size_t arg_size; |
| 510 | int error; |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 511 | DEFINE_AUDIT_DATA(sa, LSM_AUDIT_DATA_NONE, OP_SETPROCATTR); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 512 | |
| 513 | if (size == 0) |
| 514 | return -EINVAL; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 515 | /* task can only write its own attributes */ |
| 516 | if (current != task) |
| 517 | return -EACCES; |
| 518 | |
Vegard Nossum | e89b808 | 2016-07-07 13:41:11 -0700 | [diff] [blame] | 519 | /* AppArmor requires that the buffer must be null terminated atm */ |
| 520 | if (args[size - 1] != '\0') { |
| 521 | /* null terminate */ |
| 522 | largs = args = kmalloc(size + 1, GFP_KERNEL); |
| 523 | if (!args) |
| 524 | return -ENOMEM; |
| 525 | memcpy(args, value, size); |
| 526 | args[size] = '\0'; |
| 527 | } |
| 528 | |
| 529 | error = -EINVAL; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 530 | args = strim(args); |
| 531 | command = strsep(&args, " "); |
| 532 | if (!args) |
Vegard Nossum | e89b808 | 2016-07-07 13:41:11 -0700 | [diff] [blame] | 533 | goto out; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 534 | args = skip_spaces(args); |
| 535 | if (!*args) |
Vegard Nossum | e89b808 | 2016-07-07 13:41:11 -0700 | [diff] [blame] | 536 | goto out; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 537 | |
John Johansen | d4d03f7 | 2016-07-09 23:46:33 -0700 | [diff] [blame] | 538 | arg_size = size - (args - (largs ? largs : (char *) value)); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 539 | if (strcmp(name, "current") == 0) { |
| 540 | if (strcmp(command, "changehat") == 0) { |
| 541 | error = aa_setprocattr_changehat(args, arg_size, |
| 542 | !AA_DO_TEST); |
| 543 | } else if (strcmp(command, "permhat") == 0) { |
| 544 | error = aa_setprocattr_changehat(args, arg_size, |
| 545 | AA_DO_TEST); |
| 546 | } else if (strcmp(command, "changeprofile") == 0) { |
John Johansen | aa9a39a | 2017-01-16 00:43:06 -0800 | [diff] [blame] | 547 | error = aa_change_profile(args, !AA_ONEXEC, |
| 548 | !AA_DO_TEST, false); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 549 | } else if (strcmp(command, "permprofile") == 0) { |
John Johansen | aa9a39a | 2017-01-16 00:43:06 -0800 | [diff] [blame] | 550 | error = aa_change_profile(args, !AA_ONEXEC, AA_DO_TEST, |
| 551 | false); |
John Johansen | 3eea57c | 2013-02-27 03:44:40 -0800 | [diff] [blame] | 552 | } else |
| 553 | goto fail; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 554 | } else if (strcmp(name, "exec") == 0) { |
John Johansen | 3eea57c | 2013-02-27 03:44:40 -0800 | [diff] [blame] | 555 | if (strcmp(command, "exec") == 0) |
John Johansen | aa9a39a | 2017-01-16 00:43:06 -0800 | [diff] [blame] | 556 | error = aa_change_profile(args, AA_ONEXEC, !AA_DO_TEST, |
| 557 | false); |
John Johansen | 3eea57c | 2013-02-27 03:44:40 -0800 | [diff] [blame] | 558 | else |
| 559 | goto fail; |
| 560 | } else |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 561 | /* only support the "current" and "exec" process attributes */ |
Vegard Nossum | e89b808 | 2016-07-07 13:41:11 -0700 | [diff] [blame] | 562 | goto fail; |
John Johansen | 3eea57c | 2013-02-27 03:44:40 -0800 | [diff] [blame] | 563 | |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 564 | if (!error) |
| 565 | error = size; |
Vegard Nossum | e89b808 | 2016-07-07 13:41:11 -0700 | [diff] [blame] | 566 | out: |
| 567 | kfree(largs); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 568 | return error; |
John Johansen | 3eea57c | 2013-02-27 03:44:40 -0800 | [diff] [blame] | 569 | |
| 570 | fail: |
John Johansen | ef88a7a | 2017-01-16 00:43:02 -0800 | [diff] [blame] | 571 | aad(&sa)->profile = aa_current_profile(); |
| 572 | aad(&sa)->info = name; |
| 573 | aad(&sa)->error = error = -EINVAL; |
John Johansen | 3eea57c | 2013-02-27 03:44:40 -0800 | [diff] [blame] | 574 | aa_audit_msg(AUDIT_APPARMOR_DENIED, &sa, NULL); |
Vegard Nossum | e89b808 | 2016-07-07 13:41:11 -0700 | [diff] [blame] | 575 | goto out; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 576 | } |
| 577 | |
Jiri Slaby | 7cb4dc9 | 2010-08-11 11:28:02 +0200 | [diff] [blame] | 578 | static int apparmor_task_setrlimit(struct task_struct *task, |
| 579 | unsigned int resource, struct rlimit *new_rlim) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 580 | { |
John Johansen | 1780f2d | 2011-06-08 15:07:47 -0700 | [diff] [blame] | 581 | struct aa_profile *profile = __aa_current_profile(); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 582 | int error = 0; |
| 583 | |
| 584 | if (!unconfined(profile)) |
John Johansen | 3a2dc83 | 2010-09-06 10:10:20 -0700 | [diff] [blame] | 585 | error = aa_task_setrlimit(profile, task, resource, new_rlim); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 586 | |
| 587 | return error; |
| 588 | } |
| 589 | |
Casey Schaufler | b1d9e6b | 2015-05-02 15:11:42 -0700 | [diff] [blame] | 590 | static struct security_hook_list apparmor_hooks[] = { |
Casey Schaufler | e20b043 | 2015-05-02 15:11:36 -0700 | [diff] [blame] | 591 | LSM_HOOK_INIT(ptrace_access_check, apparmor_ptrace_access_check), |
| 592 | LSM_HOOK_INIT(ptrace_traceme, apparmor_ptrace_traceme), |
| 593 | LSM_HOOK_INIT(capget, apparmor_capget), |
| 594 | LSM_HOOK_INIT(capable, apparmor_capable), |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 595 | |
Casey Schaufler | e20b043 | 2015-05-02 15:11:36 -0700 | [diff] [blame] | 596 | LSM_HOOK_INIT(path_link, apparmor_path_link), |
| 597 | LSM_HOOK_INIT(path_unlink, apparmor_path_unlink), |
| 598 | LSM_HOOK_INIT(path_symlink, apparmor_path_symlink), |
| 599 | LSM_HOOK_INIT(path_mkdir, apparmor_path_mkdir), |
| 600 | LSM_HOOK_INIT(path_rmdir, apparmor_path_rmdir), |
| 601 | LSM_HOOK_INIT(path_mknod, apparmor_path_mknod), |
| 602 | LSM_HOOK_INIT(path_rename, apparmor_path_rename), |
| 603 | LSM_HOOK_INIT(path_chmod, apparmor_path_chmod), |
| 604 | LSM_HOOK_INIT(path_chown, apparmor_path_chown), |
| 605 | LSM_HOOK_INIT(path_truncate, apparmor_path_truncate), |
| 606 | LSM_HOOK_INIT(inode_getattr, apparmor_inode_getattr), |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 607 | |
Casey Schaufler | e20b043 | 2015-05-02 15:11:36 -0700 | [diff] [blame] | 608 | LSM_HOOK_INIT(file_open, apparmor_file_open), |
| 609 | LSM_HOOK_INIT(file_permission, apparmor_file_permission), |
| 610 | LSM_HOOK_INIT(file_alloc_security, apparmor_file_alloc_security), |
| 611 | LSM_HOOK_INIT(file_free_security, apparmor_file_free_security), |
| 612 | LSM_HOOK_INIT(mmap_file, apparmor_mmap_file), |
Casey Schaufler | e20b043 | 2015-05-02 15:11:36 -0700 | [diff] [blame] | 613 | LSM_HOOK_INIT(file_mprotect, apparmor_file_mprotect), |
| 614 | LSM_HOOK_INIT(file_lock, apparmor_file_lock), |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 615 | |
Casey Schaufler | e20b043 | 2015-05-02 15:11:36 -0700 | [diff] [blame] | 616 | LSM_HOOK_INIT(getprocattr, apparmor_getprocattr), |
| 617 | LSM_HOOK_INIT(setprocattr, apparmor_setprocattr), |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 618 | |
Casey Schaufler | e20b043 | 2015-05-02 15:11:36 -0700 | [diff] [blame] | 619 | LSM_HOOK_INIT(cred_alloc_blank, apparmor_cred_alloc_blank), |
| 620 | LSM_HOOK_INIT(cred_free, apparmor_cred_free), |
| 621 | LSM_HOOK_INIT(cred_prepare, apparmor_cred_prepare), |
| 622 | LSM_HOOK_INIT(cred_transfer, apparmor_cred_transfer), |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 623 | |
Casey Schaufler | e20b043 | 2015-05-02 15:11:36 -0700 | [diff] [blame] | 624 | LSM_HOOK_INIT(bprm_set_creds, apparmor_bprm_set_creds), |
| 625 | LSM_HOOK_INIT(bprm_committing_creds, apparmor_bprm_committing_creds), |
| 626 | LSM_HOOK_INIT(bprm_committed_creds, apparmor_bprm_committed_creds), |
| 627 | LSM_HOOK_INIT(bprm_secureexec, apparmor_bprm_secureexec), |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 628 | |
Casey Schaufler | e20b043 | 2015-05-02 15:11:36 -0700 | [diff] [blame] | 629 | LSM_HOOK_INIT(task_setrlimit, apparmor_task_setrlimit), |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 630 | }; |
| 631 | |
| 632 | /* |
| 633 | * AppArmor sysfs module parameters |
| 634 | */ |
| 635 | |
Stephen Rothwell | 101d6c8 | 2010-08-02 12:00:43 +1000 | [diff] [blame] | 636 | static int param_set_aabool(const char *val, const struct kernel_param *kp); |
| 637 | static int param_get_aabool(char *buffer, const struct kernel_param *kp); |
Rusty Russell | b8aa09f | 2011-12-15 13:41:32 +1030 | [diff] [blame] | 638 | #define param_check_aabool param_check_bool |
Luis R. Rodriguez | 9c27847 | 2015-05-27 11:09:38 +0930 | [diff] [blame] | 639 | static const struct kernel_param_ops param_ops_aabool = { |
Jani Nikula | 6a4c264 | 2014-08-27 06:21:23 +0930 | [diff] [blame] | 640 | .flags = KERNEL_PARAM_OPS_FL_NOARG, |
Stephen Rothwell | 101d6c8 | 2010-08-02 12:00:43 +1000 | [diff] [blame] | 641 | .set = param_set_aabool, |
| 642 | .get = param_get_aabool |
| 643 | }; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 644 | |
Stephen Rothwell | 101d6c8 | 2010-08-02 12:00:43 +1000 | [diff] [blame] | 645 | static int param_set_aauint(const char *val, const struct kernel_param *kp); |
| 646 | static int param_get_aauint(char *buffer, const struct kernel_param *kp); |
Rusty Russell | b8aa09f | 2011-12-15 13:41:32 +1030 | [diff] [blame] | 647 | #define param_check_aauint param_check_uint |
Luis R. Rodriguez | 9c27847 | 2015-05-27 11:09:38 +0930 | [diff] [blame] | 648 | static const struct kernel_param_ops param_ops_aauint = { |
Stephen Rothwell | 101d6c8 | 2010-08-02 12:00:43 +1000 | [diff] [blame] | 649 | .set = param_set_aauint, |
| 650 | .get = param_get_aauint |
| 651 | }; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 652 | |
Stephen Rothwell | 101d6c8 | 2010-08-02 12:00:43 +1000 | [diff] [blame] | 653 | static int param_set_aalockpolicy(const char *val, const struct kernel_param *kp); |
| 654 | static int param_get_aalockpolicy(char *buffer, const struct kernel_param *kp); |
Rusty Russell | b8aa09f | 2011-12-15 13:41:32 +1030 | [diff] [blame] | 655 | #define param_check_aalockpolicy param_check_bool |
Luis R. Rodriguez | 9c27847 | 2015-05-27 11:09:38 +0930 | [diff] [blame] | 656 | static const struct kernel_param_ops param_ops_aalockpolicy = { |
Jani Nikula | 6a4c264 | 2014-08-27 06:21:23 +0930 | [diff] [blame] | 657 | .flags = KERNEL_PARAM_OPS_FL_NOARG, |
Stephen Rothwell | 101d6c8 | 2010-08-02 12:00:43 +1000 | [diff] [blame] | 658 | .set = param_set_aalockpolicy, |
| 659 | .get = param_get_aalockpolicy |
| 660 | }; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 661 | |
| 662 | static int param_set_audit(const char *val, struct kernel_param *kp); |
| 663 | static int param_get_audit(char *buffer, struct kernel_param *kp); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 664 | |
| 665 | static int param_set_mode(const char *val, struct kernel_param *kp); |
| 666 | static int param_get_mode(char *buffer, struct kernel_param *kp); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 667 | |
| 668 | /* Flag values, also controllable via /sys/module/apparmor/parameters |
| 669 | * We define special types as we want to do additional mediation. |
| 670 | */ |
| 671 | |
| 672 | /* AppArmor global enforcement switch - complain, enforce, kill */ |
| 673 | enum profile_mode aa_g_profile_mode = APPARMOR_ENFORCE; |
| 674 | module_param_call(mode, param_set_mode, param_get_mode, |
| 675 | &aa_g_profile_mode, S_IRUSR | S_IWUSR); |
| 676 | |
Arnd Bergmann | 7616ac7 | 2016-07-25 10:59:07 -0700 | [diff] [blame] | 677 | #ifdef CONFIG_SECURITY_APPARMOR_HASH |
John Johansen | 6059f71 | 2014-10-24 09:16:14 -0700 | [diff] [blame] | 678 | /* whether policy verification hashing is enabled */ |
Arnd Bergmann | 7616ac7 | 2016-07-25 10:59:07 -0700 | [diff] [blame] | 679 | bool aa_g_hash_policy = IS_ENABLED(CONFIG_SECURITY_APPARMOR_HASH_DEFAULT); |
John Johansen | 6059f71 | 2014-10-24 09:16:14 -0700 | [diff] [blame] | 680 | module_param_named(hash_policy, aa_g_hash_policy, aabool, S_IRUSR | S_IWUSR); |
Arnd Bergmann | 7616ac7 | 2016-07-25 10:59:07 -0700 | [diff] [blame] | 681 | #endif |
John Johansen | 6059f71 | 2014-10-24 09:16:14 -0700 | [diff] [blame] | 682 | |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 683 | /* Debug mode */ |
John Johansen | 680cd62 | 2017-01-16 00:42:27 -0800 | [diff] [blame] | 684 | bool aa_g_debug = IS_ENABLED(CONFIG_SECURITY_DEBUG_MESSAGES); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 685 | module_param_named(debug, aa_g_debug, aabool, S_IRUSR | S_IWUSR); |
| 686 | |
| 687 | /* Audit mode */ |
| 688 | enum audit_mode aa_g_audit; |
| 689 | module_param_call(audit, param_set_audit, param_get_audit, |
| 690 | &aa_g_audit, S_IRUSR | S_IWUSR); |
| 691 | |
| 692 | /* Determines if audit header is included in audited messages. This |
| 693 | * provides more context if the audit daemon is not running |
| 694 | */ |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 695 | bool aa_g_audit_header = 1; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 696 | module_param_named(audit_header, aa_g_audit_header, aabool, |
| 697 | S_IRUSR | S_IWUSR); |
| 698 | |
| 699 | /* lock out loading/removal of policy |
| 700 | * TODO: add in at boot loading of policy, which is the only way to |
| 701 | * load policy, if lock_policy is set |
| 702 | */ |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 703 | bool aa_g_lock_policy; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 704 | module_param_named(lock_policy, aa_g_lock_policy, aalockpolicy, |
| 705 | S_IRUSR | S_IWUSR); |
| 706 | |
| 707 | /* Syscall logging mode */ |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 708 | bool aa_g_logsyscall; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 709 | module_param_named(logsyscall, aa_g_logsyscall, aabool, S_IRUSR | S_IWUSR); |
| 710 | |
| 711 | /* Maximum pathname length before accesses will start getting rejected */ |
| 712 | unsigned int aa_g_path_max = 2 * PATH_MAX; |
| 713 | module_param_named(path_max, aa_g_path_max, aauint, S_IRUSR | S_IWUSR); |
| 714 | |
| 715 | /* Determines how paranoid loading of policy is and how much verification |
| 716 | * on the loaded policy is done. |
John Johansen | abbf873 | 2017-01-16 00:42:37 -0800 | [diff] [blame] | 717 | * DEPRECATED: read only as strict checking of load is always done now |
| 718 | * that none root users (user namespaces) can load policy. |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 719 | */ |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 720 | bool aa_g_paranoid_load = 1; |
John Johansen | abbf873 | 2017-01-16 00:42:37 -0800 | [diff] [blame] | 721 | module_param_named(paranoid_load, aa_g_paranoid_load, aabool, S_IRUGO); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 722 | |
| 723 | /* Boot time disable flag */ |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 724 | static bool apparmor_enabled = CONFIG_SECURITY_APPARMOR_BOOTPARAM_VALUE; |
John Johansen | c611616 | 2013-07-10 21:03:43 -0700 | [diff] [blame] | 725 | module_param_named(enabled, apparmor_enabled, bool, S_IRUGO); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 726 | |
| 727 | static int __init apparmor_enabled_setup(char *str) |
| 728 | { |
| 729 | unsigned long enabled; |
Jingoo Han | 29707b2 | 2014-02-05 15:13:14 +0900 | [diff] [blame] | 730 | int error = kstrtoul(str, 0, &enabled); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 731 | if (!error) |
| 732 | apparmor_enabled = enabled ? 1 : 0; |
| 733 | return 1; |
| 734 | } |
| 735 | |
| 736 | __setup("apparmor=", apparmor_enabled_setup); |
| 737 | |
| 738 | /* set global flag turning off the ability to load policy */ |
Stephen Rothwell | 101d6c8 | 2010-08-02 12:00:43 +1000 | [diff] [blame] | 739 | static int param_set_aalockpolicy(const char *val, const struct kernel_param *kp) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 740 | { |
John Johansen | fd2a804 | 2017-01-16 00:42:51 -0800 | [diff] [blame] | 741 | if (!policy_admin_capable(NULL)) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 742 | return -EPERM; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 743 | return param_set_bool(val, kp); |
| 744 | } |
| 745 | |
Stephen Rothwell | 101d6c8 | 2010-08-02 12:00:43 +1000 | [diff] [blame] | 746 | static int param_get_aalockpolicy(char *buffer, const struct kernel_param *kp) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 747 | { |
John Johansen | 2bd8dbb | 2017-01-16 00:42:50 -0800 | [diff] [blame] | 748 | if (!policy_view_capable(NULL)) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 749 | return -EPERM; |
| 750 | return param_get_bool(buffer, kp); |
| 751 | } |
| 752 | |
Stephen Rothwell | 101d6c8 | 2010-08-02 12:00:43 +1000 | [diff] [blame] | 753 | static int param_set_aabool(const char *val, const struct kernel_param *kp) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 754 | { |
John Johansen | fd2a804 | 2017-01-16 00:42:51 -0800 | [diff] [blame] | 755 | if (!policy_admin_capable(NULL)) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 756 | return -EPERM; |
| 757 | return param_set_bool(val, kp); |
| 758 | } |
| 759 | |
Stephen Rothwell | 101d6c8 | 2010-08-02 12:00:43 +1000 | [diff] [blame] | 760 | static int param_get_aabool(char *buffer, const struct kernel_param *kp) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 761 | { |
John Johansen | 2bd8dbb | 2017-01-16 00:42:50 -0800 | [diff] [blame] | 762 | if (!policy_view_capable(NULL)) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 763 | return -EPERM; |
| 764 | return param_get_bool(buffer, kp); |
| 765 | } |
| 766 | |
Stephen Rothwell | 101d6c8 | 2010-08-02 12:00:43 +1000 | [diff] [blame] | 767 | static int param_set_aauint(const char *val, const struct kernel_param *kp) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 768 | { |
John Johansen | fd2a804 | 2017-01-16 00:42:51 -0800 | [diff] [blame] | 769 | if (!policy_admin_capable(NULL)) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 770 | return -EPERM; |
| 771 | return param_set_uint(val, kp); |
| 772 | } |
| 773 | |
Stephen Rothwell | 101d6c8 | 2010-08-02 12:00:43 +1000 | [diff] [blame] | 774 | static int param_get_aauint(char *buffer, const struct kernel_param *kp) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 775 | { |
John Johansen | 2bd8dbb | 2017-01-16 00:42:50 -0800 | [diff] [blame] | 776 | if (!policy_view_capable(NULL)) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 777 | return -EPERM; |
| 778 | return param_get_uint(buffer, kp); |
| 779 | } |
| 780 | |
| 781 | static int param_get_audit(char *buffer, struct kernel_param *kp) |
| 782 | { |
John Johansen | 2bd8dbb | 2017-01-16 00:42:50 -0800 | [diff] [blame] | 783 | if (!policy_view_capable(NULL)) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 784 | return -EPERM; |
| 785 | |
| 786 | if (!apparmor_enabled) |
| 787 | return -EINVAL; |
| 788 | |
| 789 | return sprintf(buffer, "%s", audit_mode_names[aa_g_audit]); |
| 790 | } |
| 791 | |
| 792 | static int param_set_audit(const char *val, struct kernel_param *kp) |
| 793 | { |
| 794 | int i; |
John Johansen | fd2a804 | 2017-01-16 00:42:51 -0800 | [diff] [blame] | 795 | if (!policy_admin_capable(NULL)) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 796 | return -EPERM; |
| 797 | |
| 798 | if (!apparmor_enabled) |
| 799 | return -EINVAL; |
| 800 | |
| 801 | if (!val) |
| 802 | return -EINVAL; |
| 803 | |
| 804 | for (i = 0; i < AUDIT_MAX_INDEX; i++) { |
| 805 | if (strcmp(val, audit_mode_names[i]) == 0) { |
| 806 | aa_g_audit = i; |
| 807 | return 0; |
| 808 | } |
| 809 | } |
| 810 | |
| 811 | return -EINVAL; |
| 812 | } |
| 813 | |
| 814 | static int param_get_mode(char *buffer, struct kernel_param *kp) |
| 815 | { |
John Johansen | fd2a804 | 2017-01-16 00:42:51 -0800 | [diff] [blame] | 816 | if (!policy_view_capable(NULL)) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 817 | return -EPERM; |
| 818 | |
| 819 | if (!apparmor_enabled) |
| 820 | return -EINVAL; |
| 821 | |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 822 | return sprintf(buffer, "%s", aa_profile_mode_names[aa_g_profile_mode]); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 823 | } |
| 824 | |
| 825 | static int param_set_mode(const char *val, struct kernel_param *kp) |
| 826 | { |
| 827 | int i; |
John Johansen | fd2a804 | 2017-01-16 00:42:51 -0800 | [diff] [blame] | 828 | if (!policy_admin_capable(NULL)) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 829 | return -EPERM; |
| 830 | |
| 831 | if (!apparmor_enabled) |
| 832 | return -EINVAL; |
| 833 | |
| 834 | if (!val) |
| 835 | return -EINVAL; |
| 836 | |
John Johansen | 0d259f0 | 2013-07-10 21:13:43 -0700 | [diff] [blame] | 837 | for (i = 0; i < APPARMOR_MODE_NAMES_MAX_INDEX; i++) { |
| 838 | if (strcmp(val, aa_profile_mode_names[i]) == 0) { |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 839 | aa_g_profile_mode = i; |
| 840 | return 0; |
| 841 | } |
| 842 | } |
| 843 | |
| 844 | return -EINVAL; |
| 845 | } |
| 846 | |
| 847 | /* |
| 848 | * AppArmor init functions |
| 849 | */ |
| 850 | |
| 851 | /** |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 852 | * set_init_ctx - set a task context and profile on the first task. |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 853 | * |
| 854 | * TODO: allow setting an alternate profile than unconfined |
| 855 | */ |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 856 | static int __init set_init_ctx(void) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 857 | { |
| 858 | struct cred *cred = (struct cred *)current->real_cred; |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 859 | struct aa_task_ctx *ctx; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 860 | |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 861 | ctx = aa_alloc_task_context(GFP_KERNEL); |
| 862 | if (!ctx) |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 863 | return -ENOMEM; |
| 864 | |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 865 | ctx->profile = aa_get_profile(root_ns->unconfined); |
| 866 | cred_ctx(cred) = ctx; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 867 | |
| 868 | return 0; |
| 869 | } |
| 870 | |
Tyler Hicks | e3ea1ca | 2016-03-16 19:19:10 -0500 | [diff] [blame^] | 871 | #ifdef CONFIG_SYSCTL |
| 872 | static int apparmor_dointvec(struct ctl_table *table, int write, |
| 873 | void __user *buffer, size_t *lenp, loff_t *ppos) |
| 874 | { |
| 875 | if (!policy_admin_capable(NULL)) |
| 876 | return -EPERM; |
| 877 | if (!apparmor_enabled) |
| 878 | return -EINVAL; |
| 879 | |
| 880 | return proc_dointvec(table, write, buffer, lenp, ppos); |
| 881 | } |
| 882 | |
| 883 | static struct ctl_path apparmor_sysctl_path[] = { |
| 884 | { .procname = "kernel", }, |
| 885 | { } |
| 886 | }; |
| 887 | |
| 888 | static struct ctl_table apparmor_sysctl_table[] = { |
| 889 | { |
| 890 | .procname = "unprivileged_userns_apparmor_policy", |
| 891 | .data = &unprivileged_userns_apparmor_policy, |
| 892 | .maxlen = sizeof(int), |
| 893 | .mode = 0600, |
| 894 | .proc_handler = apparmor_dointvec, |
| 895 | }, |
| 896 | { } |
| 897 | }; |
| 898 | |
| 899 | static int __init apparmor_init_sysctl(void) |
| 900 | { |
| 901 | return register_sysctl_paths(apparmor_sysctl_path, |
| 902 | apparmor_sysctl_table) ? 0 : -ENOMEM; |
| 903 | } |
| 904 | #else |
| 905 | static inline int apparmor_init_sysctl(void) |
| 906 | { |
| 907 | return 0; |
| 908 | } |
| 909 | #endif /* CONFIG_SYSCTL */ |
| 910 | |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 911 | static int __init apparmor_init(void) |
| 912 | { |
| 913 | int error; |
| 914 | |
Casey Schaufler | b1d9e6b | 2015-05-02 15:11:42 -0700 | [diff] [blame] | 915 | if (!apparmor_enabled || !security_module_enable("apparmor")) { |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 916 | aa_info_message("AppArmor disabled by boot time parameter"); |
| 917 | apparmor_enabled = 0; |
| 918 | return 0; |
| 919 | } |
| 920 | |
John Johansen | 11c236b | 2017-01-16 00:42:42 -0800 | [diff] [blame] | 921 | error = aa_setup_dfa_engine(); |
| 922 | if (error) { |
| 923 | AA_ERROR("Unable to setup dfa engine\n"); |
| 924 | goto alloc_out; |
| 925 | } |
| 926 | |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 927 | error = aa_alloc_root_ns(); |
| 928 | if (error) { |
| 929 | AA_ERROR("Unable to allocate default profile namespace\n"); |
| 930 | goto alloc_out; |
| 931 | } |
| 932 | |
Tyler Hicks | e3ea1ca | 2016-03-16 19:19:10 -0500 | [diff] [blame^] | 933 | error = apparmor_init_sysctl(); |
| 934 | if (error) { |
| 935 | AA_ERROR("Unable to register sysctls\n"); |
| 936 | goto alloc_out; |
| 937 | |
| 938 | } |
| 939 | |
John Johansen | 55a26eb | 2017-01-16 00:43:00 -0800 | [diff] [blame] | 940 | error = set_init_ctx(); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 941 | if (error) { |
| 942 | AA_ERROR("Failed to set context on init task\n"); |
Casey Schaufler | b1d9e6b | 2015-05-02 15:11:42 -0700 | [diff] [blame] | 943 | aa_free_root_ns(); |
| 944 | goto alloc_out; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 945 | } |
Casey Schaufler | b1d9e6b | 2015-05-02 15:11:42 -0700 | [diff] [blame] | 946 | security_add_hooks(apparmor_hooks, ARRAY_SIZE(apparmor_hooks)); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 947 | |
| 948 | /* Report that AppArmor successfully initialized */ |
| 949 | apparmor_initialized = 1; |
| 950 | if (aa_g_profile_mode == APPARMOR_COMPLAIN) |
| 951 | aa_info_message("AppArmor initialized: complain mode enabled"); |
| 952 | else if (aa_g_profile_mode == APPARMOR_KILL) |
| 953 | aa_info_message("AppArmor initialized: kill mode enabled"); |
| 954 | else |
| 955 | aa_info_message("AppArmor initialized"); |
| 956 | |
| 957 | return error; |
| 958 | |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 959 | alloc_out: |
| 960 | aa_destroy_aafs(); |
John Johansen | 11c236b | 2017-01-16 00:42:42 -0800 | [diff] [blame] | 961 | aa_teardown_dfa_engine(); |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 962 | |
| 963 | apparmor_enabled = 0; |
| 964 | return error; |
John Johansen | b5e95b4 | 2010-07-29 14:48:07 -0700 | [diff] [blame] | 965 | } |
| 966 | |
| 967 | security_initcall(apparmor_init); |