1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * AppArmor security module 4 * 5 * This file contains AppArmor LSM hooks. 6 * 7 * Copyright (C) 1998-2008 Novell/SUSE 8 * Copyright 2009-2010 Canonical Ltd. 9 */ 10 11 #include <linux/lsm_hooks.h> 12 #include <linux/moduleparam.h> 13 #include <linux/mm.h> 14 #include <linux/mman.h> 15 #include <linux/mount.h> 16 #include <linux/namei.h> 17 #include <linux/ptrace.h> 18 #include <linux/ctype.h> 19 #include <linux/sysctl.h> 20 #include <linux/audit.h> 21 #include <linux/user_namespace.h> 22 #include <linux/netfilter_ipv4.h> 23 #include <linux/netfilter_ipv6.h> 24 #include <linux/zstd.h> 25 #include <net/sock.h> 26 #include <uapi/linux/mount.h> 27 28 #include "include/apparmor.h" 29 #include "include/apparmorfs.h" 30 #include "include/audit.h" 31 #include "include/capability.h" 32 #include "include/cred.h" 33 #include "include/file.h" 34 #include "include/ipc.h" 35 #include "include/net.h" 36 #include "include/path.h" 37 #include "include/label.h" 38 #include "include/policy.h" 39 #include "include/policy_ns.h" 40 #include "include/procattr.h" 41 #include "include/mount.h" 42 #include "include/secid.h" 43 44 /* Flag indicating whether initialization completed */ 45 int apparmor_initialized; 46 47 union aa_buffer { 48 struct list_head list; 49 DECLARE_FLEX_ARRAY(char, buffer); 50 }; 51 52 #define RESERVE_COUNT 2 53 static int reserve_count = RESERVE_COUNT; 54 static int buffer_count; 55 56 static LIST_HEAD(aa_global_buffers); 57 static DEFINE_SPINLOCK(aa_buffers_lock); 58 59 /* 60 * LSM hook functions 61 */ 62 63 /* 64 * put the associated labels 65 */ 66 static void apparmor_cred_free(struct cred *cred) 67 { 68 aa_put_label(cred_label(cred)); 69 set_cred_label(cred, NULL); 70 } 71 72 /* 73 * allocate the apparmor part of blank credentials 74 */ 75 static int apparmor_cred_alloc_blank(struct cred *cred, gfp_t gfp) 76 { 77 set_cred_label(cred, NULL); 78 return 0; 79 } 80 81 /* 82 * prepare new cred label for modification by prepare_cred block 83 */ 84 static int apparmor_cred_prepare(struct cred *new, const struct cred *old, 85 gfp_t gfp) 86 { 87 set_cred_label(new, aa_get_newest_label(cred_label(old))); 88 return 0; 89 } 90 91 /* 92 * transfer the apparmor data to a blank set of creds 93 */ 94 static void apparmor_cred_transfer(struct cred *new, const struct cred *old) 95 { 96 set_cred_label(new, aa_get_newest_label(cred_label(old))); 97 } 98 99 static void apparmor_task_free(struct task_struct *task) 100 { 101 102 aa_free_task_ctx(task_ctx(task)); 103 } 104 105 static int apparmor_task_alloc(struct task_struct *task, 106 unsigned long clone_flags) 107 { 108 struct aa_task_ctx *new = task_ctx(task); 109 110 aa_dup_task_ctx(new, task_ctx(current)); 111 112 return 0; 113 } 114 115 static int apparmor_ptrace_access_check(struct task_struct *child, 116 unsigned int mode) 117 { 118 struct aa_label *tracer, *tracee; 119 const struct cred *cred; 120 int error; 121 122 cred = get_task_cred(child); 123 tracee = cred_label(cred); /* ref count on cred */ 124 tracer = __begin_current_label_crit_section(); 125 error = aa_may_ptrace(current_cred(), tracer, cred, tracee, 126 (mode & PTRACE_MODE_READ) ? AA_PTRACE_READ 127 : AA_PTRACE_TRACE); 128 __end_current_label_crit_section(tracer); 129 put_cred(cred); 130 131 return error; 132 } 133 134 static int apparmor_ptrace_traceme(struct task_struct *parent) 135 { 136 struct aa_label *tracer, *tracee; 137 const struct cred *cred; 138 int error; 139 140 tracee = __begin_current_label_crit_section(); 141 cred = get_task_cred(parent); 142 tracer = cred_label(cred); /* ref count on cred */ 143 error = aa_may_ptrace(cred, tracer, current_cred(), tracee, 144 AA_PTRACE_TRACE); 145 put_cred(cred); 146 __end_current_label_crit_section(tracee); 147 148 return error; 149 } 150 151 /* Derived from security/commoncap.c:cap_capget */ 152 static int apparmor_capget(const struct task_struct *target, kernel_cap_t *effective, 153 kernel_cap_t *inheritable, kernel_cap_t *permitted) 154 { 155 struct aa_label *label; 156 const struct cred *cred; 157 158 rcu_read_lock(); 159 cred = __task_cred(target); 160 label = aa_get_newest_cred_label(cred); 161 162 /* 163 * cap_capget is stacked ahead of this and will 164 * initialize effective and permitted. 165 */ 166 if (!unconfined(label)) { 167 struct aa_profile *profile; 168 struct label_it i; 169 170 label_for_each_confined(i, label, profile) { 171 struct aa_ruleset *rules; 172 if (COMPLAIN_MODE(profile)) 173 continue; 174 rules = list_first_entry(&profile->rules, 175 typeof(*rules), list); 176 *effective = cap_intersect(*effective, 177 rules->caps.allow); 178 *permitted = cap_intersect(*permitted, 179 rules->caps.allow); 180 } 181 } 182 rcu_read_unlock(); 183 aa_put_label(label); 184 185 return 0; 186 } 187 188 static int apparmor_capable(const struct cred *cred, struct user_namespace *ns, 189 int cap, unsigned int opts) 190 { 191 struct aa_label *label; 192 int error = 0; 193 194 label = aa_get_newest_cred_label(cred); 195 if (!unconfined(label)) 196 error = aa_capable(cred, label, cap, opts); 197 aa_put_label(label); 198 199 return error; 200 } 201 202 /** 203 * common_perm - basic common permission check wrapper fn for paths 204 * @op: operation being checked 205 * @path: path to check permission of (NOT NULL) 206 * @mask: requested permissions mask 207 * @cond: conditional info for the permission request (NOT NULL) 208 * 209 * Returns: %0 else error code if error or permission denied 210 */ 211 static int common_perm(const char *op, const struct path *path, u32 mask, 212 struct path_cond *cond) 213 { 214 struct aa_label *label; 215 int error = 0; 216 217 label = __begin_current_label_crit_section(); 218 if (!unconfined(label)) 219 error = aa_path_perm(op, current_cred(), label, path, 0, mask, 220 cond); 221 __end_current_label_crit_section(label); 222 223 return error; 224 } 225 226 /** 227 * common_perm_cond - common permission wrapper around inode cond 228 * @op: operation being checked 229 * @path: location to check (NOT NULL) 230 * @mask: requested permissions mask 231 * 232 * Returns: %0 else error code if error or permission denied 233 */ 234 static int common_perm_cond(const char *op, const struct path *path, u32 mask) 235 { 236 vfsuid_t vfsuid = i_uid_into_vfsuid(mnt_idmap(path->mnt), 237 d_backing_inode(path->dentry)); 238 struct path_cond cond = { 239 vfsuid_into_kuid(vfsuid), 240 d_backing_inode(path->dentry)->i_mode 241 }; 242 243 if (!path_mediated_fs(path->dentry)) 244 return 0; 245 246 return common_perm(op, path, mask, &cond); 247 } 248 249 /** 250 * common_perm_dir_dentry - common permission wrapper when path is dir, dentry 251 * @op: operation being checked 252 * @dir: directory of the dentry (NOT NULL) 253 * @dentry: dentry to check (NOT NULL) 254 * @mask: requested permissions mask 255 * @cond: conditional info for the permission request (NOT NULL) 256 * 257 * Returns: %0 else error code if error or permission denied 258 */ 259 static int common_perm_dir_dentry(const char *op, const struct path *dir, 260 struct dentry *dentry, u32 mask, 261 struct path_cond *cond) 262 { 263 struct path path = { .mnt = dir->mnt, .dentry = dentry }; 264 265 return common_perm(op, &path, mask, cond); 266 } 267 268 /** 269 * common_perm_rm - common permission wrapper for operations doing rm 270 * @op: operation being checked 271 * @dir: directory that the dentry is in (NOT NULL) 272 * @dentry: dentry being rm'd (NOT NULL) 273 * @mask: requested permission mask 274 * 275 * Returns: %0 else error code if error or permission denied 276 */ 277 static int common_perm_rm(const char *op, const struct path *dir, 278 struct dentry *dentry, u32 mask) 279 { 280 struct inode *inode = d_backing_inode(dentry); 281 struct path_cond cond = { }; 282 vfsuid_t vfsuid; 283 284 if (!inode || !path_mediated_fs(dentry)) 285 return 0; 286 287 vfsuid = i_uid_into_vfsuid(mnt_idmap(dir->mnt), inode); 288 cond.uid = vfsuid_into_kuid(vfsuid); 289 cond.mode = inode->i_mode; 290 291 return common_perm_dir_dentry(op, dir, dentry, mask, &cond); 292 } 293 294 /** 295 * common_perm_create - common permission wrapper for operations doing create 296 * @op: operation being checked 297 * @dir: directory that dentry will be created in (NOT NULL) 298 * @dentry: dentry to create (NOT NULL) 299 * @mask: request permission mask 300 * @mode: created file mode 301 * 302 * Returns: %0 else error code if error or permission denied 303 */ 304 static int common_perm_create(const char *op, const struct path *dir, 305 struct dentry *dentry, u32 mask, umode_t mode) 306 { 307 struct path_cond cond = { current_fsuid(), mode }; 308 309 if (!path_mediated_fs(dir->dentry)) 310 return 0; 311 312 return common_perm_dir_dentry(op, dir, dentry, mask, &cond); 313 } 314 315 static int apparmor_path_unlink(const struct path *dir, struct dentry *dentry) 316 { 317 return common_perm_rm(OP_UNLINK, dir, dentry, AA_MAY_DELETE); 318 } 319 320 static int apparmor_path_mkdir(const struct path *dir, struct dentry *dentry, 321 umode_t mode) 322 { 323 return common_perm_create(OP_MKDIR, dir, dentry, AA_MAY_CREATE, 324 S_IFDIR); 325 } 326 327 static int apparmor_path_rmdir(const struct path *dir, struct dentry *dentry) 328 { 329 return common_perm_rm(OP_RMDIR, dir, dentry, AA_MAY_DELETE); 330 } 331 332 static int apparmor_path_mknod(const struct path *dir, struct dentry *dentry, 333 umode_t mode, unsigned int dev) 334 { 335 return common_perm_create(OP_MKNOD, dir, dentry, AA_MAY_CREATE, mode); 336 } 337 338 static int apparmor_path_truncate(const struct path *path) 339 { 340 return common_perm_cond(OP_TRUNC, path, MAY_WRITE | AA_MAY_SETATTR); 341 } 342 343 static int apparmor_file_truncate(struct file *file) 344 { 345 return apparmor_path_truncate(&file->f_path); 346 } 347 348 static int apparmor_path_symlink(const struct path *dir, struct dentry *dentry, 349 const char *old_name) 350 { 351 return common_perm_create(OP_SYMLINK, dir, dentry, AA_MAY_CREATE, 352 S_IFLNK); 353 } 354 355 static int apparmor_path_link(struct dentry *old_dentry, const struct path *new_dir, 356 struct dentry *new_dentry) 357 { 358 struct aa_label *label; 359 int error = 0; 360 361 if (!path_mediated_fs(old_dentry)) 362 return 0; 363 364 label = begin_current_label_crit_section(); 365 if (!unconfined(label)) 366 error = aa_path_link(current_cred(), label, old_dentry, new_dir, 367 new_dentry); 368 end_current_label_crit_section(label); 369 370 return error; 371 } 372 373 static int apparmor_path_rename(const struct path *old_dir, struct dentry *old_dentry, 374 const struct path *new_dir, struct dentry *new_dentry, 375 const unsigned int flags) 376 { 377 struct aa_label *label; 378 int error = 0; 379 380 if (!path_mediated_fs(old_dentry)) 381 return 0; 382 if ((flags & RENAME_EXCHANGE) && !path_mediated_fs(new_dentry)) 383 return 0; 384 385 label = begin_current_label_crit_section(); 386 if (!unconfined(label)) { 387 struct mnt_idmap *idmap = mnt_idmap(old_dir->mnt); 388 vfsuid_t vfsuid; 389 struct path old_path = { .mnt = old_dir->mnt, 390 .dentry = old_dentry }; 391 struct path new_path = { .mnt = new_dir->mnt, 392 .dentry = new_dentry }; 393 struct path_cond cond = { 394 .mode = d_backing_inode(old_dentry)->i_mode 395 }; 396 vfsuid = i_uid_into_vfsuid(idmap, d_backing_inode(old_dentry)); 397 cond.uid = vfsuid_into_kuid(vfsuid); 398 399 if (flags & RENAME_EXCHANGE) { 400 struct path_cond cond_exchange = { 401 .mode = d_backing_inode(new_dentry)->i_mode, 402 }; 403 vfsuid = i_uid_into_vfsuid(idmap, d_backing_inode(old_dentry)); 404 cond_exchange.uid = vfsuid_into_kuid(vfsuid); 405 406 error = aa_path_perm(OP_RENAME_SRC, current_cred(), 407 label, &new_path, 0, 408 MAY_READ | AA_MAY_GETATTR | MAY_WRITE | 409 AA_MAY_SETATTR | AA_MAY_DELETE, 410 &cond_exchange); 411 if (!error) 412 error = aa_path_perm(OP_RENAME_DEST, current_cred(), 413 label, &old_path, 414 0, MAY_WRITE | AA_MAY_SETATTR | 415 AA_MAY_CREATE, &cond_exchange); 416 } 417 418 if (!error) 419 error = aa_path_perm(OP_RENAME_SRC, current_cred(), 420 label, &old_path, 0, 421 MAY_READ | AA_MAY_GETATTR | MAY_WRITE | 422 AA_MAY_SETATTR | AA_MAY_DELETE, 423 &cond); 424 if (!error) 425 error = aa_path_perm(OP_RENAME_DEST, current_cred(), 426 label, &new_path, 427 0, MAY_WRITE | AA_MAY_SETATTR | 428 AA_MAY_CREATE, &cond); 429 430 } 431 end_current_label_crit_section(label); 432 433 return error; 434 } 435 436 static int apparmor_path_chmod(const struct path *path, umode_t mode) 437 { 438 return common_perm_cond(OP_CHMOD, path, AA_MAY_CHMOD); 439 } 440 441 static int apparmor_path_chown(const struct path *path, kuid_t uid, kgid_t gid) 442 { 443 return common_perm_cond(OP_CHOWN, path, AA_MAY_CHOWN); 444 } 445 446 static int apparmor_inode_getattr(const struct path *path) 447 { 448 return common_perm_cond(OP_GETATTR, path, AA_MAY_GETATTR); 449 } 450 451 static int apparmor_file_open(struct file *file) 452 { 453 struct aa_file_ctx *fctx = file_ctx(file); 454 struct aa_label *label; 455 int error = 0; 456 457 if (!path_mediated_fs(file->f_path.dentry)) 458 return 0; 459 460 /* If in exec, permission is handled by bprm hooks. 461 * Cache permissions granted by the previous exec check, with 462 * implicit read and executable mmap which are required to 463 * actually execute the image. 464 */ 465 if (current->in_execve) { 466 fctx->allow = MAY_EXEC | MAY_READ | AA_EXEC_MMAP; 467 return 0; 468 } 469 470 label = aa_get_newest_cred_label(file->f_cred); 471 if (!unconfined(label)) { 472 struct mnt_idmap *idmap = file_mnt_idmap(file); 473 struct inode *inode = file_inode(file); 474 vfsuid_t vfsuid; 475 struct path_cond cond = { 476 .mode = inode->i_mode, 477 }; 478 vfsuid = i_uid_into_vfsuid(idmap, inode); 479 cond.uid = vfsuid_into_kuid(vfsuid); 480 481 error = aa_path_perm(OP_OPEN, file->f_cred, 482 label, &file->f_path, 0, 483 aa_map_file_to_perms(file), &cond); 484 /* todo cache full allowed permissions set and state */ 485 fctx->allow = aa_map_file_to_perms(file); 486 } 487 aa_put_label(label); 488 489 return error; 490 } 491 492 static int apparmor_file_alloc_security(struct file *file) 493 { 494 struct aa_file_ctx *ctx = file_ctx(file); 495 struct aa_label *label = begin_current_label_crit_section(); 496 497 spin_lock_init(&ctx->lock); 498 rcu_assign_pointer(ctx->label, aa_get_label(label)); 499 end_current_label_crit_section(label); 500 return 0; 501 } 502 503 static void apparmor_file_free_security(struct file *file) 504 { 505 struct aa_file_ctx *ctx = file_ctx(file); 506 507 if (ctx) 508 aa_put_label(rcu_access_pointer(ctx->label)); 509 } 510 511 static int common_file_perm(const char *op, struct file *file, u32 mask, 512 bool in_atomic) 513 { 514 struct aa_label *label; 515 int error = 0; 516 517 /* don't reaudit files closed during inheritance */ 518 if (file->f_path.dentry == aa_null.dentry) 519 return -EACCES; 520 521 label = __begin_current_label_crit_section(); 522 error = aa_file_perm(op, current_cred(), label, file, mask, in_atomic); 523 __end_current_label_crit_section(label); 524 525 return error; 526 } 527 528 static int apparmor_file_receive(struct file *file) 529 { 530 return common_file_perm(OP_FRECEIVE, file, aa_map_file_to_perms(file), 531 false); 532 } 533 534 static int apparmor_file_permission(struct file *file, int mask) 535 { 536 return common_file_perm(OP_FPERM, file, mask, false); 537 } 538 539 static int apparmor_file_lock(struct file *file, unsigned int cmd) 540 { 541 u32 mask = AA_MAY_LOCK; 542 543 if (cmd == F_WRLCK) 544 mask |= MAY_WRITE; 545 546 return common_file_perm(OP_FLOCK, file, mask, false); 547 } 548 549 static int common_mmap(const char *op, struct file *file, unsigned long prot, 550 unsigned long flags, bool in_atomic) 551 { 552 int mask = 0; 553 554 if (!file || !file_ctx(file)) 555 return 0; 556 557 if (prot & PROT_READ) 558 mask |= MAY_READ; 559 /* 560 * Private mappings don't require write perms since they don't 561 * write back to the files 562 */ 563 if ((prot & PROT_WRITE) && !(flags & MAP_PRIVATE)) 564 mask |= MAY_WRITE; 565 if (prot & PROT_EXEC) 566 mask |= AA_EXEC_MMAP; 567 568 return common_file_perm(op, file, mask, in_atomic); 569 } 570 571 static int apparmor_mmap_file(struct file *file, unsigned long reqprot, 572 unsigned long prot, unsigned long flags) 573 { 574 return common_mmap(OP_FMMAP, file, prot, flags, GFP_ATOMIC); 575 } 576 577 static int apparmor_file_mprotect(struct vm_area_struct *vma, 578 unsigned long reqprot, unsigned long prot) 579 { 580 return common_mmap(OP_FMPROT, vma->vm_file, prot, 581 !(vma->vm_flags & VM_SHARED) ? MAP_PRIVATE : 0, 582 false); 583 } 584 585 static int apparmor_sb_mount(const char *dev_name, const struct path *path, 586 const char *type, unsigned long flags, void *data) 587 { 588 struct aa_label *label; 589 int error = 0; 590 591 /* Discard magic */ 592 if ((flags & MS_MGC_MSK) == MS_MGC_VAL) 593 flags &= ~MS_MGC_MSK; 594 595 flags &= ~AA_MS_IGNORE_MASK; 596 597 label = __begin_current_label_crit_section(); 598 if (!unconfined(label)) { 599 if (flags & MS_REMOUNT) 600 error = aa_remount(current_cred(), label, path, flags, 601 data); 602 else if (flags & MS_BIND) 603 error = aa_bind_mount(current_cred(), label, path, 604 dev_name, flags); 605 else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | 606 MS_UNBINDABLE)) 607 error = aa_mount_change_type(current_cred(), label, 608 path, flags); 609 else if (flags & MS_MOVE) 610 error = aa_move_mount_old(current_cred(), label, path, 611 dev_name); 612 else 613 error = aa_new_mount(current_cred(), label, dev_name, 614 path, type, flags, data); 615 } 616 __end_current_label_crit_section(label); 617 618 return error; 619 } 620 621 static int apparmor_move_mount(const struct path *from_path, 622 const struct path *to_path) 623 { 624 struct aa_label *label; 625 int error = 0; 626 627 label = __begin_current_label_crit_section(); 628 if (!unconfined(label)) 629 error = aa_move_mount(current_cred(), label, from_path, 630 to_path); 631 __end_current_label_crit_section(label); 632 633 return error; 634 } 635 636 static int apparmor_sb_umount(struct vfsmount *mnt, int flags) 637 { 638 struct aa_label *label; 639 int error = 0; 640 641 label = __begin_current_label_crit_section(); 642 if (!unconfined(label)) 643 error = aa_umount(current_cred(), label, mnt, flags); 644 __end_current_label_crit_section(label); 645 646 return error; 647 } 648 649 static int apparmor_sb_pivotroot(const struct path *old_path, 650 const struct path *new_path) 651 { 652 struct aa_label *label; 653 int error = 0; 654 655 label = aa_get_current_label(); 656 if (!unconfined(label)) 657 error = aa_pivotroot(current_cred(), label, old_path, new_path); 658 aa_put_label(label); 659 660 return error; 661 } 662 663 static int apparmor_getprocattr(struct task_struct *task, const char *name, 664 char **value) 665 { 666 int error = -ENOENT; 667 /* released below */ 668 const struct cred *cred = get_task_cred(task); 669 struct aa_task_ctx *ctx = task_ctx(current); 670 struct aa_label *label = NULL; 671 672 if (strcmp(name, "current") == 0) 673 label = aa_get_newest_label(cred_label(cred)); 674 else if (strcmp(name, "prev") == 0 && ctx->previous) 675 label = aa_get_newest_label(ctx->previous); 676 else if (strcmp(name, "exec") == 0 && ctx->onexec) 677 label = aa_get_newest_label(ctx->onexec); 678 else 679 error = -EINVAL; 680 681 if (label) 682 error = aa_getprocattr(label, value); 683 684 aa_put_label(label); 685 put_cred(cred); 686 687 return error; 688 } 689 690 static int apparmor_setprocattr(const char *name, void *value, 691 size_t size) 692 { 693 char *command, *largs = NULL, *args = value; 694 size_t arg_size; 695 int error; 696 DEFINE_AUDIT_DATA(ad, LSM_AUDIT_DATA_NONE, AA_CLASS_NONE, 697 OP_SETPROCATTR); 698 699 if (size == 0) 700 return -EINVAL; 701 702 /* AppArmor requires that the buffer must be null terminated atm */ 703 if (args[size - 1] != '\0') { 704 /* null terminate */ 705 largs = args = kmalloc(size + 1, GFP_KERNEL); 706 if (!args) 707 return -ENOMEM; 708 memcpy(args, value, size); 709 args[size] = '\0'; 710 } 711 712 error = -EINVAL; 713 args = strim(args); 714 command = strsep(&args, " "); 715 if (!args) 716 goto out; 717 args = skip_spaces(args); 718 if (!*args) 719 goto out; 720 721 arg_size = size - (args - (largs ? largs : (char *) value)); 722 if (strcmp(name, "current") == 0) { 723 if (strcmp(command, "changehat") == 0) { 724 error = aa_setprocattr_changehat(args, arg_size, 725 AA_CHANGE_NOFLAGS); 726 } else if (strcmp(command, "permhat") == 0) { 727 error = aa_setprocattr_changehat(args, arg_size, 728 AA_CHANGE_TEST); 729 } else if (strcmp(command, "changeprofile") == 0) { 730 error = aa_change_profile(args, AA_CHANGE_NOFLAGS); 731 } else if (strcmp(command, "permprofile") == 0) { 732 error = aa_change_profile(args, AA_CHANGE_TEST); 733 } else if (strcmp(command, "stack") == 0) { 734 error = aa_change_profile(args, AA_CHANGE_STACK); 735 } else 736 goto fail; 737 } else if (strcmp(name, "exec") == 0) { 738 if (strcmp(command, "exec") == 0) 739 error = aa_change_profile(args, AA_CHANGE_ONEXEC); 740 else if (strcmp(command, "stack") == 0) 741 error = aa_change_profile(args, (AA_CHANGE_ONEXEC | 742 AA_CHANGE_STACK)); 743 else 744 goto fail; 745 } else 746 /* only support the "current" and "exec" process attributes */ 747 goto fail; 748 749 if (!error) 750 error = size; 751 out: 752 kfree(largs); 753 return error; 754 755 fail: 756 ad.subj_label = begin_current_label_crit_section(); 757 ad.info = name; 758 ad.error = error = -EINVAL; 759 aa_audit_msg(AUDIT_APPARMOR_DENIED, &ad, NULL); 760 end_current_label_crit_section(ad.subj_label); 761 goto out; 762 } 763 764 /** 765 * apparmor_bprm_committing_creds - do task cleanup on committing new creds 766 * @bprm: binprm for the exec (NOT NULL) 767 */ 768 static void apparmor_bprm_committing_creds(struct linux_binprm *bprm) 769 { 770 struct aa_label *label = aa_current_raw_label(); 771 struct aa_label *new_label = cred_label(bprm->cred); 772 773 /* bail out if unconfined or not changing profile */ 774 if ((new_label->proxy == label->proxy) || 775 (unconfined(new_label))) 776 return; 777 778 aa_inherit_files(bprm->cred, current->files); 779 780 current->pdeath_signal = 0; 781 782 /* reset soft limits and set hard limits for the new label */ 783 __aa_transition_rlimits(label, new_label); 784 } 785 786 /** 787 * apparmor_bprm_committed_creds() - do cleanup after new creds committed 788 * @bprm: binprm for the exec (NOT NULL) 789 */ 790 static void apparmor_bprm_committed_creds(struct linux_binprm *bprm) 791 { 792 /* clear out temporary/transitional state from the context */ 793 aa_clear_task_ctx_trans(task_ctx(current)); 794 795 return; 796 } 797 798 static void apparmor_current_getsecid_subj(u32 *secid) 799 { 800 struct aa_label *label = aa_get_current_label(); 801 *secid = label->secid; 802 aa_put_label(label); 803 } 804 805 static void apparmor_task_getsecid_obj(struct task_struct *p, u32 *secid) 806 { 807 struct aa_label *label = aa_get_task_label(p); 808 *secid = label->secid; 809 aa_put_label(label); 810 } 811 812 static int apparmor_task_setrlimit(struct task_struct *task, 813 unsigned int resource, struct rlimit *new_rlim) 814 { 815 struct aa_label *label = __begin_current_label_crit_section(); 816 int error = 0; 817 818 if (!unconfined(label)) 819 error = aa_task_setrlimit(current_cred(), label, task, 820 resource, new_rlim); 821 __end_current_label_crit_section(label); 822 823 return error; 824 } 825 826 static int apparmor_task_kill(struct task_struct *target, struct kernel_siginfo *info, 827 int sig, const struct cred *cred) 828 { 829 const struct cred *tc; 830 struct aa_label *cl, *tl; 831 int error; 832 833 tc = get_task_cred(target); 834 tl = aa_get_newest_cred_label(tc); 835 if (cred) { 836 /* 837 * Dealing with USB IO specific behavior 838 */ 839 cl = aa_get_newest_cred_label(cred); 840 error = aa_may_signal(cred, cl, tc, tl, sig); 841 aa_put_label(cl); 842 } else { 843 cl = __begin_current_label_crit_section(); 844 error = aa_may_signal(current_cred(), cl, tc, tl, sig); 845 __end_current_label_crit_section(cl); 846 } 847 aa_put_label(tl); 848 put_cred(tc); 849 850 return error; 851 } 852 853 /** 854 * apparmor_sk_alloc_security - allocate and attach the sk_security field 855 */ 856 static int apparmor_sk_alloc_security(struct sock *sk, int family, gfp_t flags) 857 { 858 struct aa_sk_ctx *ctx; 859 860 ctx = kzalloc(sizeof(*ctx), flags); 861 if (!ctx) 862 return -ENOMEM; 863 864 SK_CTX(sk) = ctx; 865 866 return 0; 867 } 868 869 /** 870 * apparmor_sk_free_security - free the sk_security field 871 */ 872 static void apparmor_sk_free_security(struct sock *sk) 873 { 874 struct aa_sk_ctx *ctx = SK_CTX(sk); 875 876 SK_CTX(sk) = NULL; 877 aa_put_label(ctx->label); 878 aa_put_label(ctx->peer); 879 kfree(ctx); 880 } 881 882 /** 883 * apparmor_sk_clone_security - clone the sk_security field 884 */ 885 static void apparmor_sk_clone_security(const struct sock *sk, 886 struct sock *newsk) 887 { 888 struct aa_sk_ctx *ctx = SK_CTX(sk); 889 struct aa_sk_ctx *new = SK_CTX(newsk); 890 891 if (new->label) 892 aa_put_label(new->label); 893 new->label = aa_get_label(ctx->label); 894 895 if (new->peer) 896 aa_put_label(new->peer); 897 new->peer = aa_get_label(ctx->peer); 898 } 899 900 /** 901 * apparmor_socket_create - check perms before creating a new socket 902 */ 903 static int apparmor_socket_create(int family, int type, int protocol, int kern) 904 { 905 struct aa_label *label; 906 int error = 0; 907 908 AA_BUG(in_interrupt()); 909 910 label = begin_current_label_crit_section(); 911 if (!(kern || unconfined(label))) 912 error = af_select(family, 913 create_perm(label, family, type, protocol), 914 aa_af_perm(current_cred(), label, 915 OP_CREATE, AA_MAY_CREATE, 916 family, type, protocol)); 917 end_current_label_crit_section(label); 918 919 return error; 920 } 921 922 /** 923 * apparmor_socket_post_create - setup the per-socket security struct 924 * 925 * Note: 926 * - kernel sockets currently labeled unconfined but we may want to 927 * move to a special kernel label 928 * - socket may not have sk here if created with sock_create_lite or 929 * sock_alloc. These should be accept cases which will be handled in 930 * sock_graft. 931 */ 932 static int apparmor_socket_post_create(struct socket *sock, int family, 933 int type, int protocol, int kern) 934 { 935 struct aa_label *label; 936 937 if (kern) { 938 label = aa_get_label(kernel_t); 939 } else 940 label = aa_get_current_label(); 941 942 if (sock->sk) { 943 struct aa_sk_ctx *ctx = SK_CTX(sock->sk); 944 945 aa_put_label(ctx->label); 946 ctx->label = aa_get_label(label); 947 } 948 aa_put_label(label); 949 950 return 0; 951 } 952 953 /** 954 * apparmor_socket_bind - check perms before bind addr to socket 955 */ 956 static int apparmor_socket_bind(struct socket *sock, 957 struct sockaddr *address, int addrlen) 958 { 959 AA_BUG(!sock); 960 AA_BUG(!sock->sk); 961 AA_BUG(!address); 962 AA_BUG(in_interrupt()); 963 964 return af_select(sock->sk->sk_family, 965 bind_perm(sock, address, addrlen), 966 aa_sk_perm(OP_BIND, AA_MAY_BIND, sock->sk)); 967 } 968 969 /** 970 * apparmor_socket_connect - check perms before connecting @sock to @address 971 */ 972 static int apparmor_socket_connect(struct socket *sock, 973 struct sockaddr *address, int addrlen) 974 { 975 AA_BUG(!sock); 976 AA_BUG(!sock->sk); 977 AA_BUG(!address); 978 AA_BUG(in_interrupt()); 979 980 return af_select(sock->sk->sk_family, 981 connect_perm(sock, address, addrlen), 982 aa_sk_perm(OP_CONNECT, AA_MAY_CONNECT, sock->sk)); 983 } 984 985 /** 986 * apparmor_socket_listen - check perms before allowing listen 987 */ 988 static int apparmor_socket_listen(struct socket *sock, int backlog) 989 { 990 AA_BUG(!sock); 991 AA_BUG(!sock->sk); 992 AA_BUG(in_interrupt()); 993 994 return af_select(sock->sk->sk_family, 995 listen_perm(sock, backlog), 996 aa_sk_perm(OP_LISTEN, AA_MAY_LISTEN, sock->sk)); 997 } 998 999 /** 1000 * apparmor_socket_accept - check perms before accepting a new connection. 1001 * 1002 * Note: while @newsock is created and has some information, the accept 1003 * has not been done. 1004 */ 1005 static int apparmor_socket_accept(struct socket *sock, struct socket *newsock) 1006 { 1007 AA_BUG(!sock); 1008 AA_BUG(!sock->sk); 1009 AA_BUG(!newsock); 1010 AA_BUG(in_interrupt()); 1011 1012 return af_select(sock->sk->sk_family, 1013 accept_perm(sock, newsock), 1014 aa_sk_perm(OP_ACCEPT, AA_MAY_ACCEPT, sock->sk)); 1015 } 1016 1017 static int aa_sock_msg_perm(const char *op, u32 request, struct socket *sock, 1018 struct msghdr *msg, int size) 1019 { 1020 AA_BUG(!sock); 1021 AA_BUG(!sock->sk); 1022 AA_BUG(!msg); 1023 AA_BUG(in_interrupt()); 1024 1025 return af_select(sock->sk->sk_family, 1026 msg_perm(op, request, sock, msg, size), 1027 aa_sk_perm(op, request, sock->sk)); 1028 } 1029 1030 /** 1031 * apparmor_socket_sendmsg - check perms before sending msg to another socket 1032 */ 1033 static int apparmor_socket_sendmsg(struct socket *sock, 1034 struct msghdr *msg, int size) 1035 { 1036 return aa_sock_msg_perm(OP_SENDMSG, AA_MAY_SEND, sock, msg, size); 1037 } 1038 1039 /** 1040 * apparmor_socket_recvmsg - check perms before receiving a message 1041 */ 1042 static int apparmor_socket_recvmsg(struct socket *sock, 1043 struct msghdr *msg, int size, int flags) 1044 { 1045 return aa_sock_msg_perm(OP_RECVMSG, AA_MAY_RECEIVE, sock, msg, size); 1046 } 1047 1048 /* revaliation, get/set attr, shutdown */ 1049 static int aa_sock_perm(const char *op, u32 request, struct socket *sock) 1050 { 1051 AA_BUG(!sock); 1052 AA_BUG(!sock->sk); 1053 AA_BUG(in_interrupt()); 1054 1055 return af_select(sock->sk->sk_family, 1056 sock_perm(op, request, sock), 1057 aa_sk_perm(op, request, sock->sk)); 1058 } 1059 1060 /** 1061 * apparmor_socket_getsockname - check perms before getting the local address 1062 */ 1063 static int apparmor_socket_getsockname(struct socket *sock) 1064 { 1065 return aa_sock_perm(OP_GETSOCKNAME, AA_MAY_GETATTR, sock); 1066 } 1067 1068 /** 1069 * apparmor_socket_getpeername - check perms before getting remote address 1070 */ 1071 static int apparmor_socket_getpeername(struct socket *sock) 1072 { 1073 return aa_sock_perm(OP_GETPEERNAME, AA_MAY_GETATTR, sock); 1074 } 1075 1076 /* revaliation, get/set attr, opt */ 1077 static int aa_sock_opt_perm(const char *op, u32 request, struct socket *sock, 1078 int level, int optname) 1079 { 1080 AA_BUG(!sock); 1081 AA_BUG(!sock->sk); 1082 AA_BUG(in_interrupt()); 1083 1084 return af_select(sock->sk->sk_family, 1085 opt_perm(op, request, sock, level, optname), 1086 aa_sk_perm(op, request, sock->sk)); 1087 } 1088 1089 /** 1090 * apparmor_socket_getsockopt - check perms before getting socket options 1091 */ 1092 static int apparmor_socket_getsockopt(struct socket *sock, int level, 1093 int optname) 1094 { 1095 return aa_sock_opt_perm(OP_GETSOCKOPT, AA_MAY_GETOPT, sock, 1096 level, optname); 1097 } 1098 1099 /** 1100 * apparmor_socket_setsockopt - check perms before setting socket options 1101 */ 1102 static int apparmor_socket_setsockopt(struct socket *sock, int level, 1103 int optname) 1104 { 1105 return aa_sock_opt_perm(OP_SETSOCKOPT, AA_MAY_SETOPT, sock, 1106 level, optname); 1107 } 1108 1109 /** 1110 * apparmor_socket_shutdown - check perms before shutting down @sock conn 1111 */ 1112 static int apparmor_socket_shutdown(struct socket *sock, int how) 1113 { 1114 return aa_sock_perm(OP_SHUTDOWN, AA_MAY_SHUTDOWN, sock); 1115 } 1116 1117 #ifdef CONFIG_NETWORK_SECMARK 1118 /** 1119 * apparmor_socket_sock_rcv_skb - check perms before associating skb to sk 1120 * 1121 * Note: can not sleep may be called with locks held 1122 * 1123 * dont want protocol specific in __skb_recv_datagram() 1124 * to deny an incoming connection socket_sock_rcv_skb() 1125 */ 1126 static int apparmor_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb) 1127 { 1128 struct aa_sk_ctx *ctx = SK_CTX(sk); 1129 1130 if (!skb->secmark) 1131 return 0; 1132 1133 /* 1134 * If reach here before socket_post_create hook is called, in which 1135 * case label is null, drop the packet. 1136 */ 1137 if (!ctx->label) 1138 return -EACCES; 1139 1140 return apparmor_secmark_check(ctx->label, OP_RECVMSG, AA_MAY_RECEIVE, 1141 skb->secmark, sk); 1142 } 1143 #endif 1144 1145 1146 static struct aa_label *sk_peer_label(struct sock *sk) 1147 { 1148 struct aa_sk_ctx *ctx = SK_CTX(sk); 1149 1150 if (ctx->peer) 1151 return ctx->peer; 1152 1153 return ERR_PTR(-ENOPROTOOPT); 1154 } 1155 1156 /** 1157 * apparmor_socket_getpeersec_stream - get security context of peer 1158 * 1159 * Note: for tcp only valid if using ipsec or cipso on lan 1160 */ 1161 static int apparmor_socket_getpeersec_stream(struct socket *sock, 1162 sockptr_t optval, sockptr_t optlen, 1163 unsigned int len) 1164 { 1165 char *name = NULL; 1166 int slen, error = 0; 1167 struct aa_label *label; 1168 struct aa_label *peer; 1169 1170 label = begin_current_label_crit_section(); 1171 peer = sk_peer_label(sock->sk); 1172 if (IS_ERR(peer)) { 1173 error = PTR_ERR(peer); 1174 goto done; 1175 } 1176 slen = aa_label_asxprint(&name, labels_ns(label), peer, 1177 FLAG_SHOW_MODE | FLAG_VIEW_SUBNS | 1178 FLAG_HIDDEN_UNCONFINED, GFP_KERNEL); 1179 /* don't include terminating \0 in slen, it breaks some apps */ 1180 if (slen < 0) { 1181 error = -ENOMEM; 1182 goto done; 1183 } 1184 if (slen > len) { 1185 error = -ERANGE; 1186 goto done_len; 1187 } 1188 1189 if (copy_to_sockptr(optval, name, slen)) 1190 error = -EFAULT; 1191 done_len: 1192 if (copy_to_sockptr(optlen, &slen, sizeof(slen))) 1193 error = -EFAULT; 1194 done: 1195 end_current_label_crit_section(label); 1196 kfree(name); 1197 return error; 1198 } 1199 1200 /** 1201 * apparmor_socket_getpeersec_dgram - get security label of packet 1202 * @sock: the peer socket 1203 * @skb: packet data 1204 * @secid: pointer to where to put the secid of the packet 1205 * 1206 * Sets the netlabel socket state on sk from parent 1207 */ 1208 static int apparmor_socket_getpeersec_dgram(struct socket *sock, 1209 struct sk_buff *skb, u32 *secid) 1210 1211 { 1212 /* TODO: requires secid support */ 1213 return -ENOPROTOOPT; 1214 } 1215 1216 /** 1217 * apparmor_sock_graft - Initialize newly created socket 1218 * @sk: child sock 1219 * @parent: parent socket 1220 * 1221 * Note: could set off of SOCK_CTX(parent) but need to track inode and we can 1222 * just set sk security information off of current creating process label 1223 * Labeling of sk for accept case - probably should be sock based 1224 * instead of task, because of the case where an implicitly labeled 1225 * socket is shared by different tasks. 1226 */ 1227 static void apparmor_sock_graft(struct sock *sk, struct socket *parent) 1228 { 1229 struct aa_sk_ctx *ctx = SK_CTX(sk); 1230 1231 if (!ctx->label) 1232 ctx->label = aa_get_current_label(); 1233 } 1234 1235 #ifdef CONFIG_NETWORK_SECMARK 1236 static int apparmor_inet_conn_request(const struct sock *sk, struct sk_buff *skb, 1237 struct request_sock *req) 1238 { 1239 struct aa_sk_ctx *ctx = SK_CTX(sk); 1240 1241 if (!skb->secmark) 1242 return 0; 1243 1244 return apparmor_secmark_check(ctx->label, OP_CONNECT, AA_MAY_CONNECT, 1245 skb->secmark, sk); 1246 } 1247 #endif 1248 1249 /* 1250 * The cred blob is a pointer to, not an instance of, an aa_label. 1251 */ 1252 struct lsm_blob_sizes apparmor_blob_sizes __ro_after_init = { 1253 .lbs_cred = sizeof(struct aa_label *), 1254 .lbs_file = sizeof(struct aa_file_ctx), 1255 .lbs_task = sizeof(struct aa_task_ctx), 1256 }; 1257 1258 static struct security_hook_list apparmor_hooks[] __ro_after_init = { 1259 LSM_HOOK_INIT(ptrace_access_check, apparmor_ptrace_access_check), 1260 LSM_HOOK_INIT(ptrace_traceme, apparmor_ptrace_traceme), 1261 LSM_HOOK_INIT(capget, apparmor_capget), 1262 LSM_HOOK_INIT(capable, apparmor_capable), 1263 1264 LSM_HOOK_INIT(move_mount, apparmor_move_mount), 1265 LSM_HOOK_INIT(sb_mount, apparmor_sb_mount), 1266 LSM_HOOK_INIT(sb_umount, apparmor_sb_umount), 1267 LSM_HOOK_INIT(sb_pivotroot, apparmor_sb_pivotroot), 1268 1269 LSM_HOOK_INIT(path_link, apparmor_path_link), 1270 LSM_HOOK_INIT(path_unlink, apparmor_path_unlink), 1271 LSM_HOOK_INIT(path_symlink, apparmor_path_symlink), 1272 LSM_HOOK_INIT(path_mkdir, apparmor_path_mkdir), 1273 LSM_HOOK_INIT(path_rmdir, apparmor_path_rmdir), 1274 LSM_HOOK_INIT(path_mknod, apparmor_path_mknod), 1275 LSM_HOOK_INIT(path_rename, apparmor_path_rename), 1276 LSM_HOOK_INIT(path_chmod, apparmor_path_chmod), 1277 LSM_HOOK_INIT(path_chown, apparmor_path_chown), 1278 LSM_HOOK_INIT(path_truncate, apparmor_path_truncate), 1279 LSM_HOOK_INIT(inode_getattr, apparmor_inode_getattr), 1280 1281 LSM_HOOK_INIT(file_open, apparmor_file_open), 1282 LSM_HOOK_INIT(file_receive, apparmor_file_receive), 1283 LSM_HOOK_INIT(file_permission, apparmor_file_permission), 1284 LSM_HOOK_INIT(file_alloc_security, apparmor_file_alloc_security), 1285 LSM_HOOK_INIT(file_free_security, apparmor_file_free_security), 1286 LSM_HOOK_INIT(mmap_file, apparmor_mmap_file), 1287 LSM_HOOK_INIT(file_mprotect, apparmor_file_mprotect), 1288 LSM_HOOK_INIT(file_lock, apparmor_file_lock), 1289 LSM_HOOK_INIT(file_truncate, apparmor_file_truncate), 1290 1291 LSM_HOOK_INIT(getprocattr, apparmor_getprocattr), 1292 LSM_HOOK_INIT(setprocattr, apparmor_setprocattr), 1293 1294 LSM_HOOK_INIT(sk_alloc_security, apparmor_sk_alloc_security), 1295 LSM_HOOK_INIT(sk_free_security, apparmor_sk_free_security), 1296 LSM_HOOK_INIT(sk_clone_security, apparmor_sk_clone_security), 1297 1298 LSM_HOOK_INIT(socket_create, apparmor_socket_create), 1299 LSM_HOOK_INIT(socket_post_create, apparmor_socket_post_create), 1300 LSM_HOOK_INIT(socket_bind, apparmor_socket_bind), 1301 LSM_HOOK_INIT(socket_connect, apparmor_socket_connect), 1302 LSM_HOOK_INIT(socket_listen, apparmor_socket_listen), 1303 LSM_HOOK_INIT(socket_accept, apparmor_socket_accept), 1304 LSM_HOOK_INIT(socket_sendmsg, apparmor_socket_sendmsg), 1305 LSM_HOOK_INIT(socket_recvmsg, apparmor_socket_recvmsg), 1306 LSM_HOOK_INIT(socket_getsockname, apparmor_socket_getsockname), 1307 LSM_HOOK_INIT(socket_getpeername, apparmor_socket_getpeername), 1308 LSM_HOOK_INIT(socket_getsockopt, apparmor_socket_getsockopt), 1309 LSM_HOOK_INIT(socket_setsockopt, apparmor_socket_setsockopt), 1310 LSM_HOOK_INIT(socket_shutdown, apparmor_socket_shutdown), 1311 #ifdef CONFIG_NETWORK_SECMARK 1312 LSM_HOOK_INIT(socket_sock_rcv_skb, apparmor_socket_sock_rcv_skb), 1313 #endif 1314 LSM_HOOK_INIT(socket_getpeersec_stream, 1315 apparmor_socket_getpeersec_stream), 1316 LSM_HOOK_INIT(socket_getpeersec_dgram, 1317 apparmor_socket_getpeersec_dgram), 1318 LSM_HOOK_INIT(sock_graft, apparmor_sock_graft), 1319 #ifdef CONFIG_NETWORK_SECMARK 1320 LSM_HOOK_INIT(inet_conn_request, apparmor_inet_conn_request), 1321 #endif 1322 1323 LSM_HOOK_INIT(cred_alloc_blank, apparmor_cred_alloc_blank), 1324 LSM_HOOK_INIT(cred_free, apparmor_cred_free), 1325 LSM_HOOK_INIT(cred_prepare, apparmor_cred_prepare), 1326 LSM_HOOK_INIT(cred_transfer, apparmor_cred_transfer), 1327 1328 LSM_HOOK_INIT(bprm_creds_for_exec, apparmor_bprm_creds_for_exec), 1329 LSM_HOOK_INIT(bprm_committing_creds, apparmor_bprm_committing_creds), 1330 LSM_HOOK_INIT(bprm_committed_creds, apparmor_bprm_committed_creds), 1331 1332 LSM_HOOK_INIT(task_free, apparmor_task_free), 1333 LSM_HOOK_INIT(task_alloc, apparmor_task_alloc), 1334 LSM_HOOK_INIT(current_getsecid_subj, apparmor_current_getsecid_subj), 1335 LSM_HOOK_INIT(task_getsecid_obj, apparmor_task_getsecid_obj), 1336 LSM_HOOK_INIT(task_setrlimit, apparmor_task_setrlimit), 1337 LSM_HOOK_INIT(task_kill, apparmor_task_kill), 1338 1339 #ifdef CONFIG_AUDIT 1340 LSM_HOOK_INIT(audit_rule_init, aa_audit_rule_init), 1341 LSM_HOOK_INIT(audit_rule_known, aa_audit_rule_known), 1342 LSM_HOOK_INIT(audit_rule_match, aa_audit_rule_match), 1343 LSM_HOOK_INIT(audit_rule_free, aa_audit_rule_free), 1344 #endif 1345 1346 LSM_HOOK_INIT(secid_to_secctx, apparmor_secid_to_secctx), 1347 LSM_HOOK_INIT(secctx_to_secid, apparmor_secctx_to_secid), 1348 LSM_HOOK_INIT(release_secctx, apparmor_release_secctx), 1349 }; 1350 1351 /* 1352 * AppArmor sysfs module parameters 1353 */ 1354 1355 static int param_set_aabool(const char *val, const struct kernel_param *kp); 1356 static int param_get_aabool(char *buffer, const struct kernel_param *kp); 1357 #define param_check_aabool param_check_bool 1358 static const struct kernel_param_ops param_ops_aabool = { 1359 .flags = KERNEL_PARAM_OPS_FL_NOARG, 1360 .set = param_set_aabool, 1361 .get = param_get_aabool 1362 }; 1363 1364 static int param_set_aauint(const char *val, const struct kernel_param *kp); 1365 static int param_get_aauint(char *buffer, const struct kernel_param *kp); 1366 #define param_check_aauint param_check_uint 1367 static const struct kernel_param_ops param_ops_aauint = { 1368 .set = param_set_aauint, 1369 .get = param_get_aauint 1370 }; 1371 1372 static int param_set_aacompressionlevel(const char *val, 1373 const struct kernel_param *kp); 1374 static int param_get_aacompressionlevel(char *buffer, 1375 const struct kernel_param *kp); 1376 #define param_check_aacompressionlevel param_check_int 1377 static const struct kernel_param_ops param_ops_aacompressionlevel = { 1378 .set = param_set_aacompressionlevel, 1379 .get = param_get_aacompressionlevel 1380 }; 1381 1382 static int param_set_aalockpolicy(const char *val, const struct kernel_param *kp); 1383 static int param_get_aalockpolicy(char *buffer, const struct kernel_param *kp); 1384 #define param_check_aalockpolicy param_check_bool 1385 static const struct kernel_param_ops param_ops_aalockpolicy = { 1386 .flags = KERNEL_PARAM_OPS_FL_NOARG, 1387 .set = param_set_aalockpolicy, 1388 .get = param_get_aalockpolicy 1389 }; 1390 1391 static int param_set_audit(const char *val, const struct kernel_param *kp); 1392 static int param_get_audit(char *buffer, const struct kernel_param *kp); 1393 1394 static int param_set_mode(const char *val, const struct kernel_param *kp); 1395 static int param_get_mode(char *buffer, const struct kernel_param *kp); 1396 1397 /* Flag values, also controllable via /sys/module/apparmor/parameters 1398 * We define special types as we want to do additional mediation. 1399 */ 1400 1401 /* AppArmor global enforcement switch - complain, enforce, kill */ 1402 enum profile_mode aa_g_profile_mode = APPARMOR_ENFORCE; 1403 module_param_call(mode, param_set_mode, param_get_mode, 1404 &aa_g_profile_mode, S_IRUSR | S_IWUSR); 1405 1406 /* whether policy verification hashing is enabled */ 1407 bool aa_g_hash_policy = IS_ENABLED(CONFIG_SECURITY_APPARMOR_HASH_DEFAULT); 1408 #ifdef CONFIG_SECURITY_APPARMOR_HASH 1409 module_param_named(hash_policy, aa_g_hash_policy, aabool, S_IRUSR | S_IWUSR); 1410 #endif 1411 1412 /* whether policy exactly as loaded is retained for debug and checkpointing */ 1413 bool aa_g_export_binary = IS_ENABLED(CONFIG_SECURITY_APPARMOR_EXPORT_BINARY); 1414 #ifdef CONFIG_SECURITY_APPARMOR_EXPORT_BINARY 1415 module_param_named(export_binary, aa_g_export_binary, aabool, 0600); 1416 #endif 1417 1418 /* policy loaddata compression level */ 1419 int aa_g_rawdata_compression_level = AA_DEFAULT_CLEVEL; 1420 module_param_named(rawdata_compression_level, aa_g_rawdata_compression_level, 1421 aacompressionlevel, 0400); 1422 1423 /* Debug mode */ 1424 bool aa_g_debug = IS_ENABLED(CONFIG_SECURITY_APPARMOR_DEBUG_MESSAGES); 1425 module_param_named(debug, aa_g_debug, aabool, S_IRUSR | S_IWUSR); 1426 1427 /* Audit mode */ 1428 enum audit_mode aa_g_audit; 1429 module_param_call(audit, param_set_audit, param_get_audit, 1430 &aa_g_audit, S_IRUSR | S_IWUSR); 1431 1432 /* Determines if audit header is included in audited messages. This 1433 * provides more context if the audit daemon is not running 1434 */ 1435 bool aa_g_audit_header = true; 1436 module_param_named(audit_header, aa_g_audit_header, aabool, 1437 S_IRUSR | S_IWUSR); 1438 1439 /* lock out loading/removal of policy 1440 * TODO: add in at boot loading of policy, which is the only way to 1441 * load policy, if lock_policy is set 1442 */ 1443 bool aa_g_lock_policy; 1444 module_param_named(lock_policy, aa_g_lock_policy, aalockpolicy, 1445 S_IRUSR | S_IWUSR); 1446 1447 /* Syscall logging mode */ 1448 bool aa_g_logsyscall; 1449 module_param_named(logsyscall, aa_g_logsyscall, aabool, S_IRUSR | S_IWUSR); 1450 1451 /* Maximum pathname length before accesses will start getting rejected */ 1452 unsigned int aa_g_path_max = 2 * PATH_MAX; 1453 module_param_named(path_max, aa_g_path_max, aauint, S_IRUSR); 1454 1455 /* Determines how paranoid loading of policy is and how much verification 1456 * on the loaded policy is done. 1457 * DEPRECATED: read only as strict checking of load is always done now 1458 * that none root users (user namespaces) can load policy. 1459 */ 1460 bool aa_g_paranoid_load = IS_ENABLED(CONFIG_SECURITY_APPARMOR_PARANOID_LOAD); 1461 module_param_named(paranoid_load, aa_g_paranoid_load, aabool, S_IRUGO); 1462 1463 static int param_get_aaintbool(char *buffer, const struct kernel_param *kp); 1464 static int param_set_aaintbool(const char *val, const struct kernel_param *kp); 1465 #define param_check_aaintbool param_check_int 1466 static const struct kernel_param_ops param_ops_aaintbool = { 1467 .set = param_set_aaintbool, 1468 .get = param_get_aaintbool 1469 }; 1470 /* Boot time disable flag */ 1471 static int apparmor_enabled __ro_after_init = 1; 1472 module_param_named(enabled, apparmor_enabled, aaintbool, 0444); 1473 1474 static int __init apparmor_enabled_setup(char *str) 1475 { 1476 unsigned long enabled; 1477 int error = kstrtoul(str, 0, &enabled); 1478 if (!error) 1479 apparmor_enabled = enabled ? 1 : 0; 1480 return 1; 1481 } 1482 1483 __setup("apparmor=", apparmor_enabled_setup); 1484 1485 /* set global flag turning off the ability to load policy */ 1486 static int param_set_aalockpolicy(const char *val, const struct kernel_param *kp) 1487 { 1488 if (!apparmor_enabled) 1489 return -EINVAL; 1490 if (apparmor_initialized && !aa_current_policy_admin_capable(NULL)) 1491 return -EPERM; 1492 return param_set_bool(val, kp); 1493 } 1494 1495 static int param_get_aalockpolicy(char *buffer, const struct kernel_param *kp) 1496 { 1497 if (!apparmor_enabled) 1498 return -EINVAL; 1499 if (apparmor_initialized && !aa_current_policy_view_capable(NULL)) 1500 return -EPERM; 1501 return param_get_bool(buffer, kp); 1502 } 1503 1504 static int param_set_aabool(const char *val, const struct kernel_param *kp) 1505 { 1506 if (!apparmor_enabled) 1507 return -EINVAL; 1508 if (apparmor_initialized && !aa_current_policy_admin_capable(NULL)) 1509 return -EPERM; 1510 return param_set_bool(val, kp); 1511 } 1512 1513 static int param_get_aabool(char *buffer, const struct kernel_param *kp) 1514 { 1515 if (!apparmor_enabled) 1516 return -EINVAL; 1517 if (apparmor_initialized && !aa_current_policy_view_capable(NULL)) 1518 return -EPERM; 1519 return param_get_bool(buffer, kp); 1520 } 1521 1522 static int param_set_aauint(const char *val, const struct kernel_param *kp) 1523 { 1524 int error; 1525 1526 if (!apparmor_enabled) 1527 return -EINVAL; 1528 /* file is ro but enforce 2nd line check */ 1529 if (apparmor_initialized) 1530 return -EPERM; 1531 1532 error = param_set_uint(val, kp); 1533 aa_g_path_max = max_t(uint32_t, aa_g_path_max, sizeof(union aa_buffer)); 1534 pr_info("AppArmor: buffer size set to %d bytes\n", aa_g_path_max); 1535 1536 return error; 1537 } 1538 1539 static int param_get_aauint(char *buffer, const struct kernel_param *kp) 1540 { 1541 if (!apparmor_enabled) 1542 return -EINVAL; 1543 if (apparmor_initialized && !aa_current_policy_view_capable(NULL)) 1544 return -EPERM; 1545 return param_get_uint(buffer, kp); 1546 } 1547 1548 /* Can only be set before AppArmor is initialized (i.e. on boot cmdline). */ 1549 static int param_set_aaintbool(const char *val, const struct kernel_param *kp) 1550 { 1551 struct kernel_param kp_local; 1552 bool value; 1553 int error; 1554 1555 if (apparmor_initialized) 1556 return -EPERM; 1557 1558 /* Create local copy, with arg pointing to bool type. */ 1559 value = !!*((int *)kp->arg); 1560 memcpy(&kp_local, kp, sizeof(kp_local)); 1561 kp_local.arg = &value; 1562 1563 error = param_set_bool(val, &kp_local); 1564 if (!error) 1565 *((int *)kp->arg) = *((bool *)kp_local.arg); 1566 return error; 1567 } 1568 1569 /* 1570 * To avoid changing /sys/module/apparmor/parameters/enabled from Y/N to 1571 * 1/0, this converts the "int that is actually bool" back to bool for 1572 * display in the /sys filesystem, while keeping it "int" for the LSM 1573 * infrastructure. 1574 */ 1575 static int param_get_aaintbool(char *buffer, const struct kernel_param *kp) 1576 { 1577 struct kernel_param kp_local; 1578 bool value; 1579 1580 /* Create local copy, with arg pointing to bool type. */ 1581 value = !!*((int *)kp->arg); 1582 memcpy(&kp_local, kp, sizeof(kp_local)); 1583 kp_local.arg = &value; 1584 1585 return param_get_bool(buffer, &kp_local); 1586 } 1587 1588 static int param_set_aacompressionlevel(const char *val, 1589 const struct kernel_param *kp) 1590 { 1591 int error; 1592 1593 if (!apparmor_enabled) 1594 return -EINVAL; 1595 if (apparmor_initialized) 1596 return -EPERM; 1597 1598 error = param_set_int(val, kp); 1599 1600 aa_g_rawdata_compression_level = clamp(aa_g_rawdata_compression_level, 1601 AA_MIN_CLEVEL, AA_MAX_CLEVEL); 1602 pr_info("AppArmor: policy rawdata compression level set to %d\n", 1603 aa_g_rawdata_compression_level); 1604 1605 return error; 1606 } 1607 1608 static int param_get_aacompressionlevel(char *buffer, 1609 const struct kernel_param *kp) 1610 { 1611 if (!apparmor_enabled) 1612 return -EINVAL; 1613 if (apparmor_initialized && !aa_current_policy_view_capable(NULL)) 1614 return -EPERM; 1615 return param_get_int(buffer, kp); 1616 } 1617 1618 static int param_get_audit(char *buffer, const struct kernel_param *kp) 1619 { 1620 if (!apparmor_enabled) 1621 return -EINVAL; 1622 if (apparmor_initialized && !aa_current_policy_view_capable(NULL)) 1623 return -EPERM; 1624 return sprintf(buffer, "%s", audit_mode_names[aa_g_audit]); 1625 } 1626 1627 static int param_set_audit(const char *val, const struct kernel_param *kp) 1628 { 1629 int i; 1630 1631 if (!apparmor_enabled) 1632 return -EINVAL; 1633 if (!val) 1634 return -EINVAL; 1635 if (apparmor_initialized && !aa_current_policy_admin_capable(NULL)) 1636 return -EPERM; 1637 1638 i = match_string(audit_mode_names, AUDIT_MAX_INDEX, val); 1639 if (i < 0) 1640 return -EINVAL; 1641 1642 aa_g_audit = i; 1643 return 0; 1644 } 1645 1646 static int param_get_mode(char *buffer, const struct kernel_param *kp) 1647 { 1648 if (!apparmor_enabled) 1649 return -EINVAL; 1650 if (apparmor_initialized && !aa_current_policy_view_capable(NULL)) 1651 return -EPERM; 1652 1653 return sprintf(buffer, "%s", aa_profile_mode_names[aa_g_profile_mode]); 1654 } 1655 1656 static int param_set_mode(const char *val, const struct kernel_param *kp) 1657 { 1658 int i; 1659 1660 if (!apparmor_enabled) 1661 return -EINVAL; 1662 if (!val) 1663 return -EINVAL; 1664 if (apparmor_initialized && !aa_current_policy_admin_capable(NULL)) 1665 return -EPERM; 1666 1667 i = match_string(aa_profile_mode_names, APPARMOR_MODE_NAMES_MAX_INDEX, 1668 val); 1669 if (i < 0) 1670 return -EINVAL; 1671 1672 aa_g_profile_mode = i; 1673 return 0; 1674 } 1675 1676 char *aa_get_buffer(bool in_atomic) 1677 { 1678 union aa_buffer *aa_buf; 1679 bool try_again = true; 1680 gfp_t flags = (GFP_KERNEL | __GFP_RETRY_MAYFAIL | __GFP_NOWARN); 1681 1682 retry: 1683 spin_lock(&aa_buffers_lock); 1684 if (buffer_count > reserve_count || 1685 (in_atomic && !list_empty(&aa_global_buffers))) { 1686 aa_buf = list_first_entry(&aa_global_buffers, union aa_buffer, 1687 list); 1688 list_del(&aa_buf->list); 1689 buffer_count--; 1690 spin_unlock(&aa_buffers_lock); 1691 return aa_buf->buffer; 1692 } 1693 if (in_atomic) { 1694 /* 1695 * out of reserve buffers and in atomic context so increase 1696 * how many buffers to keep in reserve 1697 */ 1698 reserve_count++; 1699 flags = GFP_ATOMIC; 1700 } 1701 spin_unlock(&aa_buffers_lock); 1702 1703 if (!in_atomic) 1704 might_sleep(); 1705 aa_buf = kmalloc(aa_g_path_max, flags); 1706 if (!aa_buf) { 1707 if (try_again) { 1708 try_again = false; 1709 goto retry; 1710 } 1711 pr_warn_once("AppArmor: Failed to allocate a memory buffer.\n"); 1712 return NULL; 1713 } 1714 return aa_buf->buffer; 1715 } 1716 1717 void aa_put_buffer(char *buf) 1718 { 1719 union aa_buffer *aa_buf; 1720 1721 if (!buf) 1722 return; 1723 aa_buf = container_of(buf, union aa_buffer, buffer[0]); 1724 1725 spin_lock(&aa_buffers_lock); 1726 list_add(&aa_buf->list, &aa_global_buffers); 1727 buffer_count++; 1728 spin_unlock(&aa_buffers_lock); 1729 } 1730 1731 /* 1732 * AppArmor init functions 1733 */ 1734 1735 /** 1736 * set_init_ctx - set a task context and profile on the first task. 1737 * 1738 * TODO: allow setting an alternate profile than unconfined 1739 */ 1740 static int __init set_init_ctx(void) 1741 { 1742 struct cred *cred = (__force struct cred *)current->real_cred; 1743 1744 set_cred_label(cred, aa_get_label(ns_unconfined(root_ns))); 1745 1746 return 0; 1747 } 1748 1749 static void destroy_buffers(void) 1750 { 1751 union aa_buffer *aa_buf; 1752 1753 spin_lock(&aa_buffers_lock); 1754 while (!list_empty(&aa_global_buffers)) { 1755 aa_buf = list_first_entry(&aa_global_buffers, union aa_buffer, 1756 list); 1757 list_del(&aa_buf->list); 1758 spin_unlock(&aa_buffers_lock); 1759 kfree(aa_buf); 1760 spin_lock(&aa_buffers_lock); 1761 } 1762 spin_unlock(&aa_buffers_lock); 1763 } 1764 1765 static int __init alloc_buffers(void) 1766 { 1767 union aa_buffer *aa_buf; 1768 int i, num; 1769 1770 /* 1771 * A function may require two buffers at once. Usually the buffers are 1772 * used for a short period of time and are shared. On UP kernel buffers 1773 * two should be enough, with more CPUs it is possible that more 1774 * buffers will be used simultaneously. The preallocated pool may grow. 1775 * This preallocation has also the side-effect that AppArmor will be 1776 * disabled early at boot if aa_g_path_max is extremly high. 1777 */ 1778 if (num_online_cpus() > 1) 1779 num = 4 + RESERVE_COUNT; 1780 else 1781 num = 2 + RESERVE_COUNT; 1782 1783 for (i = 0; i < num; i++) { 1784 1785 aa_buf = kmalloc(aa_g_path_max, GFP_KERNEL | 1786 __GFP_RETRY_MAYFAIL | __GFP_NOWARN); 1787 if (!aa_buf) { 1788 destroy_buffers(); 1789 return -ENOMEM; 1790 } 1791 aa_put_buffer(aa_buf->buffer); 1792 } 1793 return 0; 1794 } 1795 1796 #ifdef CONFIG_SYSCTL 1797 static int apparmor_dointvec(struct ctl_table *table, int write, 1798 void *buffer, size_t *lenp, loff_t *ppos) 1799 { 1800 if (!aa_current_policy_admin_capable(NULL)) 1801 return -EPERM; 1802 if (!apparmor_enabled) 1803 return -EINVAL; 1804 1805 return proc_dointvec(table, write, buffer, lenp, ppos); 1806 } 1807 1808 static struct ctl_table apparmor_sysctl_table[] = { 1809 { 1810 .procname = "unprivileged_userns_apparmor_policy", 1811 .data = &unprivileged_userns_apparmor_policy, 1812 .maxlen = sizeof(int), 1813 .mode = 0600, 1814 .proc_handler = apparmor_dointvec, 1815 }, 1816 { 1817 .procname = "apparmor_display_secid_mode", 1818 .data = &apparmor_display_secid_mode, 1819 .maxlen = sizeof(int), 1820 .mode = 0600, 1821 .proc_handler = apparmor_dointvec, 1822 }, 1823 1824 { } 1825 }; 1826 1827 static int __init apparmor_init_sysctl(void) 1828 { 1829 return register_sysctl("kernel", apparmor_sysctl_table) ? 0 : -ENOMEM; 1830 } 1831 #else 1832 static inline int apparmor_init_sysctl(void) 1833 { 1834 return 0; 1835 } 1836 #endif /* CONFIG_SYSCTL */ 1837 1838 #if defined(CONFIG_NETFILTER) && defined(CONFIG_NETWORK_SECMARK) 1839 static unsigned int apparmor_ip_postroute(void *priv, 1840 struct sk_buff *skb, 1841 const struct nf_hook_state *state) 1842 { 1843 struct aa_sk_ctx *ctx; 1844 struct sock *sk; 1845 1846 if (!skb->secmark) 1847 return NF_ACCEPT; 1848 1849 sk = skb_to_full_sk(skb); 1850 if (sk == NULL) 1851 return NF_ACCEPT; 1852 1853 ctx = SK_CTX(sk); 1854 if (!apparmor_secmark_check(ctx->label, OP_SENDMSG, AA_MAY_SEND, 1855 skb->secmark, sk)) 1856 return NF_ACCEPT; 1857 1858 return NF_DROP_ERR(-ECONNREFUSED); 1859 1860 } 1861 1862 static const struct nf_hook_ops apparmor_nf_ops[] = { 1863 { 1864 .hook = apparmor_ip_postroute, 1865 .pf = NFPROTO_IPV4, 1866 .hooknum = NF_INET_POST_ROUTING, 1867 .priority = NF_IP_PRI_SELINUX_FIRST, 1868 }, 1869 #if IS_ENABLED(CONFIG_IPV6) 1870 { 1871 .hook = apparmor_ip_postroute, 1872 .pf = NFPROTO_IPV6, 1873 .hooknum = NF_INET_POST_ROUTING, 1874 .priority = NF_IP6_PRI_SELINUX_FIRST, 1875 }, 1876 #endif 1877 }; 1878 1879 static int __net_init apparmor_nf_register(struct net *net) 1880 { 1881 return nf_register_net_hooks(net, apparmor_nf_ops, 1882 ARRAY_SIZE(apparmor_nf_ops)); 1883 } 1884 1885 static void __net_exit apparmor_nf_unregister(struct net *net) 1886 { 1887 nf_unregister_net_hooks(net, apparmor_nf_ops, 1888 ARRAY_SIZE(apparmor_nf_ops)); 1889 } 1890 1891 static struct pernet_operations apparmor_net_ops = { 1892 .init = apparmor_nf_register, 1893 .exit = apparmor_nf_unregister, 1894 }; 1895 1896 static int __init apparmor_nf_ip_init(void) 1897 { 1898 int err; 1899 1900 if (!apparmor_enabled) 1901 return 0; 1902 1903 err = register_pernet_subsys(&apparmor_net_ops); 1904 if (err) 1905 panic("Apparmor: register_pernet_subsys: error %d\n", err); 1906 1907 return 0; 1908 } 1909 __initcall(apparmor_nf_ip_init); 1910 #endif 1911 1912 static int __init apparmor_init(void) 1913 { 1914 int error; 1915 1916 error = aa_setup_dfa_engine(); 1917 if (error) { 1918 AA_ERROR("Unable to setup dfa engine\n"); 1919 goto alloc_out; 1920 } 1921 1922 error = aa_alloc_root_ns(); 1923 if (error) { 1924 AA_ERROR("Unable to allocate default profile namespace\n"); 1925 goto alloc_out; 1926 } 1927 1928 error = apparmor_init_sysctl(); 1929 if (error) { 1930 AA_ERROR("Unable to register sysctls\n"); 1931 goto alloc_out; 1932 1933 } 1934 1935 error = alloc_buffers(); 1936 if (error) { 1937 AA_ERROR("Unable to allocate work buffers\n"); 1938 goto alloc_out; 1939 } 1940 1941 error = set_init_ctx(); 1942 if (error) { 1943 AA_ERROR("Failed to set context on init task\n"); 1944 aa_free_root_ns(); 1945 goto buffers_out; 1946 } 1947 security_add_hooks(apparmor_hooks, ARRAY_SIZE(apparmor_hooks), 1948 "apparmor"); 1949 1950 /* Report that AppArmor successfully initialized */ 1951 apparmor_initialized = 1; 1952 if (aa_g_profile_mode == APPARMOR_COMPLAIN) 1953 aa_info_message("AppArmor initialized: complain mode enabled"); 1954 else if (aa_g_profile_mode == APPARMOR_KILL) 1955 aa_info_message("AppArmor initialized: kill mode enabled"); 1956 else 1957 aa_info_message("AppArmor initialized"); 1958 1959 return error; 1960 1961 buffers_out: 1962 destroy_buffers(); 1963 alloc_out: 1964 aa_destroy_aafs(); 1965 aa_teardown_dfa_engine(); 1966 1967 apparmor_enabled = false; 1968 return error; 1969 } 1970 1971 DEFINE_LSM(apparmor) = { 1972 .name = "apparmor", 1973 .flags = LSM_FLAG_LEGACY_MAJOR | LSM_FLAG_EXCLUSIVE, 1974 .enabled = &apparmor_enabled, 1975 .blobs = &apparmor_blob_sizes, 1976 .init = apparmor_init, 1977 }; 1978