1 // SPDX-License-Identifier: GPL-2.0-only
3 * AppArmor security module
5 * This file contains AppArmor LSM hooks.
7 * Copyright (C) 1998-2008 Novell/SUSE
8 * Copyright 2009-2010 Canonical Ltd.
11 #include <linux/lsm_hooks.h>
12 #include <linux/moduleparam.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>
26 #include <uapi/linux/mount.h>
27 #include <uapi/linux/lsm.h>
29 #include "include/apparmor.h"
30 #include "include/apparmorfs.h"
31 #include "include/audit.h"
32 #include "include/capability.h"
33 #include "include/cred.h"
34 #include "include/file.h"
35 #include "include/ipc.h"
36 #include "include/net.h"
37 #include "include/path.h"
38 #include "include/label.h"
39 #include "include/policy.h"
40 #include "include/policy_ns.h"
41 #include "include/procattr.h"
42 #include "include/mount.h"
43 #include "include/secid.h"
45 /* Flag indicating whether initialization completed */
46 int apparmor_initialized;
49 struct list_head list;
50 DECLARE_FLEX_ARRAY(char, buffer);
53 struct aa_local_cache {
56 struct list_head head;
59 #define RESERVE_COUNT 2
60 static int reserve_count = RESERVE_COUNT;
61 static int buffer_count;
63 static LIST_HEAD(aa_global_buffers);
64 static DEFINE_SPINLOCK(aa_buffers_lock);
65 static DEFINE_PER_CPU(struct aa_local_cache, aa_local_buffers);
72 * put the associated labels
74 static void apparmor_cred_free(struct cred *cred)
76 aa_put_label(cred_label(cred));
77 set_cred_label(cred, NULL);
81 * allocate the apparmor part of blank credentials
83 static int apparmor_cred_alloc_blank(struct cred *cred, gfp_t gfp)
85 set_cred_label(cred, NULL);
90 * prepare new cred label for modification by prepare_cred block
92 static int apparmor_cred_prepare(struct cred *new, const struct cred *old,
95 set_cred_label(new, aa_get_newest_label(cred_label(old)));
100 * transfer the apparmor data to a blank set of creds
102 static void apparmor_cred_transfer(struct cred *new, const struct cred *old)
104 set_cred_label(new, aa_get_newest_label(cred_label(old)));
107 static void apparmor_task_free(struct task_struct *task)
110 aa_free_task_ctx(task_ctx(task));
113 static int apparmor_task_alloc(struct task_struct *task,
114 unsigned long clone_flags)
116 struct aa_task_ctx *new = task_ctx(task);
118 aa_dup_task_ctx(new, task_ctx(current));
123 static int apparmor_ptrace_access_check(struct task_struct *child,
126 struct aa_label *tracer, *tracee;
127 const struct cred *cred;
130 cred = get_task_cred(child);
131 tracee = cred_label(cred); /* ref count on cred */
132 tracer = __begin_current_label_crit_section();
133 error = aa_may_ptrace(current_cred(), tracer, cred, tracee,
134 (mode & PTRACE_MODE_READ) ? AA_PTRACE_READ
136 __end_current_label_crit_section(tracer);
142 static int apparmor_ptrace_traceme(struct task_struct *parent)
144 struct aa_label *tracer, *tracee;
145 const struct cred *cred;
148 tracee = __begin_current_label_crit_section();
149 cred = get_task_cred(parent);
150 tracer = cred_label(cred); /* ref count on cred */
151 error = aa_may_ptrace(cred, tracer, current_cred(), tracee,
154 __end_current_label_crit_section(tracee);
159 /* Derived from security/commoncap.c:cap_capget */
160 static int apparmor_capget(const struct task_struct *target, kernel_cap_t *effective,
161 kernel_cap_t *inheritable, kernel_cap_t *permitted)
163 struct aa_label *label;
164 const struct cred *cred;
167 cred = __task_cred(target);
168 label = aa_get_newest_cred_label(cred);
171 * cap_capget is stacked ahead of this and will
172 * initialize effective and permitted.
174 if (!unconfined(label)) {
175 struct aa_profile *profile;
178 label_for_each_confined(i, label, profile) {
179 struct aa_ruleset *rules;
180 if (COMPLAIN_MODE(profile))
182 rules = list_first_entry(&profile->rules,
183 typeof(*rules), list);
184 *effective = cap_intersect(*effective,
186 *permitted = cap_intersect(*permitted,
196 static int apparmor_capable(const struct cred *cred, struct user_namespace *ns,
197 int cap, unsigned int opts)
199 struct aa_label *label;
202 label = aa_get_newest_cred_label(cred);
203 if (!unconfined(label))
204 error = aa_capable(cred, label, cap, opts);
211 * common_perm - basic common permission check wrapper fn for paths
212 * @op: operation being checked
213 * @path: path to check permission of (NOT NULL)
214 * @mask: requested permissions mask
215 * @cond: conditional info for the permission request (NOT NULL)
217 * Returns: %0 else error code if error or permission denied
219 static int common_perm(const char *op, const struct path *path, u32 mask,
220 struct path_cond *cond)
222 struct aa_label *label;
225 label = __begin_current_label_crit_section();
226 if (!unconfined(label))
227 error = aa_path_perm(op, current_cred(), label, path, 0, mask,
229 __end_current_label_crit_section(label);
235 * common_perm_cond - common permission wrapper around inode cond
236 * @op: operation being checked
237 * @path: location to check (NOT NULL)
238 * @mask: requested permissions mask
240 * Returns: %0 else error code if error or permission denied
242 static int common_perm_cond(const char *op, const struct path *path, u32 mask)
244 vfsuid_t vfsuid = i_uid_into_vfsuid(mnt_idmap(path->mnt),
245 d_backing_inode(path->dentry));
246 struct path_cond cond = {
247 vfsuid_into_kuid(vfsuid),
248 d_backing_inode(path->dentry)->i_mode
251 if (!path_mediated_fs(path->dentry))
254 return common_perm(op, path, mask, &cond);
258 * common_perm_dir_dentry - common permission wrapper when path is dir, dentry
259 * @op: operation being checked
260 * @dir: directory of the dentry (NOT NULL)
261 * @dentry: dentry to check (NOT NULL)
262 * @mask: requested permissions mask
263 * @cond: conditional info for the permission request (NOT NULL)
265 * Returns: %0 else error code if error or permission denied
267 static int common_perm_dir_dentry(const char *op, const struct path *dir,
268 struct dentry *dentry, u32 mask,
269 struct path_cond *cond)
271 struct path path = { .mnt = dir->mnt, .dentry = dentry };
273 return common_perm(op, &path, mask, cond);
277 * common_perm_rm - common permission wrapper for operations doing rm
278 * @op: operation being checked
279 * @dir: directory that the dentry is in (NOT NULL)
280 * @dentry: dentry being rm'd (NOT NULL)
281 * @mask: requested permission mask
283 * Returns: %0 else error code if error or permission denied
285 static int common_perm_rm(const char *op, const struct path *dir,
286 struct dentry *dentry, u32 mask)
288 struct inode *inode = d_backing_inode(dentry);
289 struct path_cond cond = { };
292 if (!inode || !path_mediated_fs(dentry))
295 vfsuid = i_uid_into_vfsuid(mnt_idmap(dir->mnt), inode);
296 cond.uid = vfsuid_into_kuid(vfsuid);
297 cond.mode = inode->i_mode;
299 return common_perm_dir_dentry(op, dir, dentry, mask, &cond);
303 * common_perm_create - common permission wrapper for operations doing create
304 * @op: operation being checked
305 * @dir: directory that dentry will be created in (NOT NULL)
306 * @dentry: dentry to create (NOT NULL)
307 * @mask: request permission mask
308 * @mode: created file mode
310 * Returns: %0 else error code if error or permission denied
312 static int common_perm_create(const char *op, const struct path *dir,
313 struct dentry *dentry, u32 mask, umode_t mode)
315 struct path_cond cond = { current_fsuid(), mode };
317 if (!path_mediated_fs(dir->dentry))
320 return common_perm_dir_dentry(op, dir, dentry, mask, &cond);
323 static int apparmor_path_unlink(const struct path *dir, struct dentry *dentry)
325 return common_perm_rm(OP_UNLINK, dir, dentry, AA_MAY_DELETE);
328 static int apparmor_path_mkdir(const struct path *dir, struct dentry *dentry,
331 return common_perm_create(OP_MKDIR, dir, dentry, AA_MAY_CREATE,
335 static int apparmor_path_rmdir(const struct path *dir, struct dentry *dentry)
337 return common_perm_rm(OP_RMDIR, dir, dentry, AA_MAY_DELETE);
340 static int apparmor_path_mknod(const struct path *dir, struct dentry *dentry,
341 umode_t mode, unsigned int dev)
343 return common_perm_create(OP_MKNOD, dir, dentry, AA_MAY_CREATE, mode);
346 static int apparmor_path_truncate(const struct path *path)
348 return common_perm_cond(OP_TRUNC, path, MAY_WRITE | AA_MAY_SETATTR);
351 static int apparmor_file_truncate(struct file *file)
353 return apparmor_path_truncate(&file->f_path);
356 static int apparmor_path_symlink(const struct path *dir, struct dentry *dentry,
357 const char *old_name)
359 return common_perm_create(OP_SYMLINK, dir, dentry, AA_MAY_CREATE,
363 static int apparmor_path_link(struct dentry *old_dentry, const struct path *new_dir,
364 struct dentry *new_dentry)
366 struct aa_label *label;
369 if (!path_mediated_fs(old_dentry))
372 label = begin_current_label_crit_section();
373 if (!unconfined(label))
374 error = aa_path_link(current_cred(), label, old_dentry, new_dir,
376 end_current_label_crit_section(label);
381 static int apparmor_path_rename(const struct path *old_dir, struct dentry *old_dentry,
382 const struct path *new_dir, struct dentry *new_dentry,
383 const unsigned int flags)
385 struct aa_label *label;
388 if (!path_mediated_fs(old_dentry))
390 if ((flags & RENAME_EXCHANGE) && !path_mediated_fs(new_dentry))
393 label = begin_current_label_crit_section();
394 if (!unconfined(label)) {
395 struct mnt_idmap *idmap = mnt_idmap(old_dir->mnt);
397 struct path old_path = { .mnt = old_dir->mnt,
398 .dentry = old_dentry };
399 struct path new_path = { .mnt = new_dir->mnt,
400 .dentry = new_dentry };
401 struct path_cond cond = {
402 .mode = d_backing_inode(old_dentry)->i_mode
404 vfsuid = i_uid_into_vfsuid(idmap, d_backing_inode(old_dentry));
405 cond.uid = vfsuid_into_kuid(vfsuid);
407 if (flags & RENAME_EXCHANGE) {
408 struct path_cond cond_exchange = {
409 .mode = d_backing_inode(new_dentry)->i_mode,
411 vfsuid = i_uid_into_vfsuid(idmap, d_backing_inode(old_dentry));
412 cond_exchange.uid = vfsuid_into_kuid(vfsuid);
414 error = aa_path_perm(OP_RENAME_SRC, current_cred(),
416 MAY_READ | AA_MAY_GETATTR | MAY_WRITE |
417 AA_MAY_SETATTR | AA_MAY_DELETE,
420 error = aa_path_perm(OP_RENAME_DEST, current_cred(),
422 0, MAY_WRITE | AA_MAY_SETATTR |
423 AA_MAY_CREATE, &cond_exchange);
427 error = aa_path_perm(OP_RENAME_SRC, current_cred(),
429 MAY_READ | AA_MAY_GETATTR | MAY_WRITE |
430 AA_MAY_SETATTR | AA_MAY_DELETE,
433 error = aa_path_perm(OP_RENAME_DEST, current_cred(),
435 0, MAY_WRITE | AA_MAY_SETATTR |
436 AA_MAY_CREATE, &cond);
439 end_current_label_crit_section(label);
444 static int apparmor_path_chmod(const struct path *path, umode_t mode)
446 return common_perm_cond(OP_CHMOD, path, AA_MAY_CHMOD);
449 static int apparmor_path_chown(const struct path *path, kuid_t uid, kgid_t gid)
451 return common_perm_cond(OP_CHOWN, path, AA_MAY_CHOWN);
454 static int apparmor_inode_getattr(const struct path *path)
456 return common_perm_cond(OP_GETATTR, path, AA_MAY_GETATTR);
459 static int apparmor_file_open(struct file *file)
461 struct aa_file_ctx *fctx = file_ctx(file);
462 struct aa_label *label;
466 if (!path_mediated_fs(file->f_path.dentry))
469 /* If in exec, permission is handled by bprm hooks.
470 * Cache permissions granted by the previous exec check, with
471 * implicit read and executable mmap which are required to
472 * actually execute the image.
474 * Illogically, FMODE_EXEC is in f_flags, not f_mode.
476 if (file->f_flags & __FMODE_EXEC) {
477 fctx->allow = MAY_EXEC | MAY_READ | AA_EXEC_MMAP;
481 label = aa_get_newest_cred_label_condref(file->f_cred, &needput);
482 if (!unconfined(label)) {
483 struct mnt_idmap *idmap = file_mnt_idmap(file);
484 struct inode *inode = file_inode(file);
486 struct path_cond cond = {
487 .mode = inode->i_mode,
489 vfsuid = i_uid_into_vfsuid(idmap, inode);
490 cond.uid = vfsuid_into_kuid(vfsuid);
492 error = aa_path_perm(OP_OPEN, file->f_cred,
493 label, &file->f_path, 0,
494 aa_map_file_to_perms(file), &cond);
495 /* todo cache full allowed permissions set and state */
496 fctx->allow = aa_map_file_to_perms(file);
498 aa_put_label_condref(label, needput);
503 static int apparmor_file_alloc_security(struct file *file)
505 struct aa_file_ctx *ctx = file_ctx(file);
506 struct aa_label *label = begin_current_label_crit_section();
508 spin_lock_init(&ctx->lock);
509 rcu_assign_pointer(ctx->label, aa_get_label(label));
510 end_current_label_crit_section(label);
514 static void apparmor_file_free_security(struct file *file)
516 struct aa_file_ctx *ctx = file_ctx(file);
519 aa_put_label(rcu_access_pointer(ctx->label));
522 static int common_file_perm(const char *op, struct file *file, u32 mask,
525 struct aa_label *label;
528 /* don't reaudit files closed during inheritance */
529 if (file->f_path.dentry == aa_null.dentry)
532 label = __begin_current_label_crit_section();
533 error = aa_file_perm(op, current_cred(), label, file, mask, in_atomic);
534 __end_current_label_crit_section(label);
539 static int apparmor_file_receive(struct file *file)
541 return common_file_perm(OP_FRECEIVE, file, aa_map_file_to_perms(file),
545 static int apparmor_file_permission(struct file *file, int mask)
547 return common_file_perm(OP_FPERM, file, mask, false);
550 static int apparmor_file_lock(struct file *file, unsigned int cmd)
552 u32 mask = AA_MAY_LOCK;
557 return common_file_perm(OP_FLOCK, file, mask, false);
560 static int common_mmap(const char *op, struct file *file, unsigned long prot,
561 unsigned long flags, bool in_atomic)
565 if (!file || !file_ctx(file))
568 if (prot & PROT_READ)
571 * Private mappings don't require write perms since they don't
572 * write back to the files
574 if ((prot & PROT_WRITE) && !(flags & MAP_PRIVATE))
576 if (prot & PROT_EXEC)
577 mask |= AA_EXEC_MMAP;
579 return common_file_perm(op, file, mask, in_atomic);
582 static int apparmor_mmap_file(struct file *file, unsigned long reqprot,
583 unsigned long prot, unsigned long flags)
585 return common_mmap(OP_FMMAP, file, prot, flags, GFP_ATOMIC);
588 static int apparmor_file_mprotect(struct vm_area_struct *vma,
589 unsigned long reqprot, unsigned long prot)
591 return common_mmap(OP_FMPROT, vma->vm_file, prot,
592 !(vma->vm_flags & VM_SHARED) ? MAP_PRIVATE : 0,
596 #ifdef CONFIG_IO_URING
597 static const char *audit_uring_mask(u32 mask)
599 if (mask & AA_MAY_CREATE_SQPOLL)
601 if (mask & AA_MAY_OVERRIDE_CRED)
602 return "override_creds";
606 static void audit_uring_cb(struct audit_buffer *ab, void *va)
608 struct apparmor_audit_data *ad = aad_of_va(va);
610 if (ad->request & AA_URING_PERM_MASK) {
611 audit_log_format(ab, " requested=\"%s\"",
612 audit_uring_mask(ad->request));
613 if (ad->denied & AA_URING_PERM_MASK) {
614 audit_log_format(ab, " denied=\"%s\"",
615 audit_uring_mask(ad->denied));
618 if (ad->uring.target) {
619 audit_log_format(ab, " tcontext=");
620 aa_label_xaudit(ab, labels_ns(ad->subj_label),
622 FLAGS_NONE, GFP_ATOMIC);
626 static int profile_uring(struct aa_profile *profile, u32 request,
627 struct aa_label *new, int cap,
628 struct apparmor_audit_data *ad)
631 struct aa_ruleset *rules;
636 rules = list_first_entry(&profile->rules, typeof(*rules), list);
637 state = RULE_MEDIATES(rules, AA_CLASS_IO_URING);
639 struct aa_perms perms = { };
642 aa_label_match(profile, rules, new, state,
643 false, request, &perms);
645 perms = *aa_lookup_perms(rules->policy, state);
647 aa_apply_modes_to_perms(profile, &perms);
648 error = aa_check_perms(profile, &perms, request, ad,
656 * apparmor_uring_override_creds - check the requested cred override
657 * @new: the target creds
659 * Check to see if the current task is allowed to override it's credentials
660 * to service an io_uring operation.
662 static int apparmor_uring_override_creds(const struct cred *new)
664 struct aa_profile *profile;
665 struct aa_label *label;
667 DEFINE_AUDIT_DATA(ad, LSM_AUDIT_DATA_NONE, AA_CLASS_IO_URING,
670 ad.uring.target = cred_label(new);
671 label = __begin_current_label_crit_section();
672 error = fn_for_each(label, profile,
673 profile_uring(profile, AA_MAY_OVERRIDE_CRED,
674 cred_label(new), CAP_SYS_ADMIN, &ad));
675 __end_current_label_crit_section(label);
681 * apparmor_uring_sqpoll - check if a io_uring polling thread can be created
683 * Check to see if the current task is allowed to create a new io_uring
684 * kernel polling thread.
686 static int apparmor_uring_sqpoll(void)
688 struct aa_profile *profile;
689 struct aa_label *label;
691 DEFINE_AUDIT_DATA(ad, LSM_AUDIT_DATA_NONE, AA_CLASS_IO_URING,
694 label = __begin_current_label_crit_section();
695 error = fn_for_each(label, profile,
696 profile_uring(profile, AA_MAY_CREATE_SQPOLL,
697 NULL, CAP_SYS_ADMIN, &ad));
698 __end_current_label_crit_section(label);
702 #endif /* CONFIG_IO_URING */
704 static int apparmor_sb_mount(const char *dev_name, const struct path *path,
705 const char *type, unsigned long flags, void *data)
707 struct aa_label *label;
711 if ((flags & MS_MGC_MSK) == MS_MGC_VAL)
712 flags &= ~MS_MGC_MSK;
714 flags &= ~AA_MS_IGNORE_MASK;
716 label = __begin_current_label_crit_section();
717 if (!unconfined(label)) {
718 if (flags & MS_REMOUNT)
719 error = aa_remount(current_cred(), label, path, flags,
721 else if (flags & MS_BIND)
722 error = aa_bind_mount(current_cred(), label, path,
724 else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE |
726 error = aa_mount_change_type(current_cred(), label,
728 else if (flags & MS_MOVE)
729 error = aa_move_mount_old(current_cred(), label, path,
732 error = aa_new_mount(current_cred(), label, dev_name,
733 path, type, flags, data);
735 __end_current_label_crit_section(label);
740 static int apparmor_move_mount(const struct path *from_path,
741 const struct path *to_path)
743 struct aa_label *label;
746 label = __begin_current_label_crit_section();
747 if (!unconfined(label))
748 error = aa_move_mount(current_cred(), label, from_path,
750 __end_current_label_crit_section(label);
755 static int apparmor_sb_umount(struct vfsmount *mnt, int flags)
757 struct aa_label *label;
760 label = __begin_current_label_crit_section();
761 if (!unconfined(label))
762 error = aa_umount(current_cred(), label, mnt, flags);
763 __end_current_label_crit_section(label);
768 static int apparmor_sb_pivotroot(const struct path *old_path,
769 const struct path *new_path)
771 struct aa_label *label;
774 label = aa_get_current_label();
775 if (!unconfined(label))
776 error = aa_pivotroot(current_cred(), label, old_path, new_path);
782 static int apparmor_getselfattr(unsigned int attr, struct lsm_ctx __user *lx,
783 u32 *size, u32 flags)
786 struct aa_task_ctx *ctx = task_ctx(current);
787 struct aa_label *label = NULL;
791 case LSM_ATTR_CURRENT:
792 label = aa_get_newest_label(cred_label(current_cred()));
796 label = aa_get_newest_label(ctx->previous);
800 label = aa_get_newest_label(ctx->onexec);
808 error = aa_getprocattr(label, &value, false);
810 error = lsm_fill_user_ctx(lx, size, value, error,
822 static int apparmor_getprocattr(struct task_struct *task, const char *name,
827 const struct cred *cred = get_task_cred(task);
828 struct aa_task_ctx *ctx = task_ctx(current);
829 struct aa_label *label = NULL;
831 if (strcmp(name, "current") == 0)
832 label = aa_get_newest_label(cred_label(cred));
833 else if (strcmp(name, "prev") == 0 && ctx->previous)
834 label = aa_get_newest_label(ctx->previous);
835 else if (strcmp(name, "exec") == 0 && ctx->onexec)
836 label = aa_get_newest_label(ctx->onexec);
841 error = aa_getprocattr(label, value, true);
849 static int do_setattr(u64 attr, void *value, size_t size)
851 char *command, *largs = NULL, *args = value;
854 DEFINE_AUDIT_DATA(ad, LSM_AUDIT_DATA_NONE, AA_CLASS_NONE,
860 /* AppArmor requires that the buffer must be null terminated atm */
861 if (args[size - 1] != '\0') {
863 largs = args = kmalloc(size + 1, GFP_KERNEL);
866 memcpy(args, value, size);
872 command = strsep(&args, " ");
875 args = skip_spaces(args);
879 arg_size = size - (args - (largs ? largs : (char *) value));
880 if (attr == LSM_ATTR_CURRENT) {
881 if (strcmp(command, "changehat") == 0) {
882 error = aa_setprocattr_changehat(args, arg_size,
884 } else if (strcmp(command, "permhat") == 0) {
885 error = aa_setprocattr_changehat(args, arg_size,
887 } else if (strcmp(command, "changeprofile") == 0) {
888 error = aa_change_profile(args, AA_CHANGE_NOFLAGS);
889 } else if (strcmp(command, "permprofile") == 0) {
890 error = aa_change_profile(args, AA_CHANGE_TEST);
891 } else if (strcmp(command, "stack") == 0) {
892 error = aa_change_profile(args, AA_CHANGE_STACK);
895 } else if (attr == LSM_ATTR_EXEC) {
896 if (strcmp(command, "exec") == 0)
897 error = aa_change_profile(args, AA_CHANGE_ONEXEC);
898 else if (strcmp(command, "stack") == 0)
899 error = aa_change_profile(args, (AA_CHANGE_ONEXEC |
904 /* only support the "current" and "exec" process attributes */
914 ad.subj_label = begin_current_label_crit_section();
915 if (attr == LSM_ATTR_CURRENT)
917 else if (attr == LSM_ATTR_EXEC)
921 ad.error = error = -EINVAL;
922 aa_audit_msg(AUDIT_APPARMOR_DENIED, &ad, NULL);
923 end_current_label_crit_section(ad.subj_label);
927 static int apparmor_setselfattr(unsigned int attr, struct lsm_ctx *ctx,
932 if (attr != LSM_ATTR_CURRENT && attr != LSM_ATTR_EXEC)
935 rc = do_setattr(attr, ctx->ctx, ctx->ctx_len);
941 static int apparmor_setprocattr(const char *name, void *value,
944 int attr = lsm_name_to_attr(name);
947 return do_setattr(attr, value, size);
952 * apparmor_bprm_committing_creds - do task cleanup on committing new creds
953 * @bprm: binprm for the exec (NOT NULL)
955 static void apparmor_bprm_committing_creds(const struct linux_binprm *bprm)
957 struct aa_label *label = aa_current_raw_label();
958 struct aa_label *new_label = cred_label(bprm->cred);
960 /* bail out if unconfined or not changing profile */
961 if ((new_label->proxy == label->proxy) ||
962 (unconfined(new_label)))
965 aa_inherit_files(bprm->cred, current->files);
967 current->pdeath_signal = 0;
969 /* reset soft limits and set hard limits for the new label */
970 __aa_transition_rlimits(label, new_label);
974 * apparmor_bprm_committed_creds() - do cleanup after new creds committed
975 * @bprm: binprm for the exec (NOT NULL)
977 static void apparmor_bprm_committed_creds(const struct linux_binprm *bprm)
979 /* clear out temporary/transitional state from the context */
980 aa_clear_task_ctx_trans(task_ctx(current));
985 static void apparmor_current_getsecid_subj(u32 *secid)
987 struct aa_label *label = __begin_current_label_crit_section();
988 *secid = label->secid;
989 __end_current_label_crit_section(label);
992 static void apparmor_task_getsecid_obj(struct task_struct *p, u32 *secid)
994 struct aa_label *label = aa_get_task_label(p);
995 *secid = label->secid;
999 static int apparmor_task_setrlimit(struct task_struct *task,
1000 unsigned int resource, struct rlimit *new_rlim)
1002 struct aa_label *label = __begin_current_label_crit_section();
1005 if (!unconfined(label))
1006 error = aa_task_setrlimit(current_cred(), label, task,
1007 resource, new_rlim);
1008 __end_current_label_crit_section(label);
1013 static int apparmor_task_kill(struct task_struct *target, struct kernel_siginfo *info,
1014 int sig, const struct cred *cred)
1016 const struct cred *tc;
1017 struct aa_label *cl, *tl;
1020 tc = get_task_cred(target);
1021 tl = aa_get_newest_cred_label(tc);
1024 * Dealing with USB IO specific behavior
1026 cl = aa_get_newest_cred_label(cred);
1027 error = aa_may_signal(cred, cl, tc, tl, sig);
1030 cl = __begin_current_label_crit_section();
1031 error = aa_may_signal(current_cred(), cl, tc, tl, sig);
1032 __end_current_label_crit_section(cl);
1040 static int apparmor_userns_create(const struct cred *cred)
1042 struct aa_label *label;
1043 struct aa_profile *profile;
1045 DEFINE_AUDIT_DATA(ad, LSM_AUDIT_DATA_TASK, AA_CLASS_NS,
1048 ad.subj_cred = current_cred();
1050 label = begin_current_label_crit_section();
1051 if (!unconfined(label)) {
1052 error = fn_for_each(label, profile,
1053 aa_profile_ns_perm(profile, &ad,
1056 end_current_label_crit_section(label);
1061 static int apparmor_sk_alloc_security(struct sock *sk, int family, gfp_t flags)
1063 struct aa_sk_ctx *ctx;
1065 ctx = kzalloc(sizeof(*ctx), flags);
1069 sk->sk_security = ctx;
1074 static void apparmor_sk_free_security(struct sock *sk)
1076 struct aa_sk_ctx *ctx = aa_sock(sk);
1078 sk->sk_security = NULL;
1079 aa_put_label(ctx->label);
1080 aa_put_label(ctx->peer);
1085 * apparmor_sk_clone_security - clone the sk_security field
1086 * @sk: sock to have security cloned
1087 * @newsk: sock getting clone
1089 static void apparmor_sk_clone_security(const struct sock *sk,
1092 struct aa_sk_ctx *ctx = aa_sock(sk);
1093 struct aa_sk_ctx *new = aa_sock(newsk);
1096 aa_put_label(new->label);
1097 new->label = aa_get_label(ctx->label);
1100 aa_put_label(new->peer);
1101 new->peer = aa_get_label(ctx->peer);
1104 static int apparmor_socket_create(int family, int type, int protocol, int kern)
1106 struct aa_label *label;
1109 AA_BUG(in_interrupt());
1111 label = begin_current_label_crit_section();
1112 if (!(kern || unconfined(label)))
1113 error = af_select(family,
1114 create_perm(label, family, type, protocol),
1115 aa_af_perm(current_cred(), label,
1116 OP_CREATE, AA_MAY_CREATE,
1117 family, type, protocol));
1118 end_current_label_crit_section(label);
1124 * apparmor_socket_post_create - setup the per-socket security struct
1125 * @sock: socket that is being setup
1126 * @family: family of socket being created
1127 * @type: type of the socket
1128 * @protocol: protocol of the socket
1129 * @kern: socket is a special kernel socket
1132 * - kernel sockets labeled kernel_t used to use unconfined
1133 * - socket may not have sk here if created with sock_create_lite or
1134 * sock_alloc. These should be accept cases which will be handled in
1137 static int apparmor_socket_post_create(struct socket *sock, int family,
1138 int type, int protocol, int kern)
1140 struct aa_label *label;
1143 label = aa_get_label(kernel_t);
1145 label = aa_get_current_label();
1148 struct aa_sk_ctx *ctx = aa_sock(sock->sk);
1150 aa_put_label(ctx->label);
1151 ctx->label = aa_get_label(label);
1153 aa_put_label(label);
1158 static int apparmor_socket_bind(struct socket *sock,
1159 struct sockaddr *address, int addrlen)
1164 AA_BUG(in_interrupt());
1166 return af_select(sock->sk->sk_family,
1167 bind_perm(sock, address, addrlen),
1168 aa_sk_perm(OP_BIND, AA_MAY_BIND, sock->sk));
1171 static int apparmor_socket_connect(struct socket *sock,
1172 struct sockaddr *address, int addrlen)
1177 AA_BUG(in_interrupt());
1179 return af_select(sock->sk->sk_family,
1180 connect_perm(sock, address, addrlen),
1181 aa_sk_perm(OP_CONNECT, AA_MAY_CONNECT, sock->sk));
1184 static int apparmor_socket_listen(struct socket *sock, int backlog)
1188 AA_BUG(in_interrupt());
1190 return af_select(sock->sk->sk_family,
1191 listen_perm(sock, backlog),
1192 aa_sk_perm(OP_LISTEN, AA_MAY_LISTEN, sock->sk));
1196 * Note: while @newsock is created and has some information, the accept
1197 * has not been done.
1199 static int apparmor_socket_accept(struct socket *sock, struct socket *newsock)
1204 AA_BUG(in_interrupt());
1206 return af_select(sock->sk->sk_family,
1207 accept_perm(sock, newsock),
1208 aa_sk_perm(OP_ACCEPT, AA_MAY_ACCEPT, sock->sk));
1211 static int aa_sock_msg_perm(const char *op, u32 request, struct socket *sock,
1212 struct msghdr *msg, int size)
1217 AA_BUG(in_interrupt());
1219 return af_select(sock->sk->sk_family,
1220 msg_perm(op, request, sock, msg, size),
1221 aa_sk_perm(op, request, sock->sk));
1224 static int apparmor_socket_sendmsg(struct socket *sock,
1225 struct msghdr *msg, int size)
1227 return aa_sock_msg_perm(OP_SENDMSG, AA_MAY_SEND, sock, msg, size);
1230 static int apparmor_socket_recvmsg(struct socket *sock,
1231 struct msghdr *msg, int size, int flags)
1233 return aa_sock_msg_perm(OP_RECVMSG, AA_MAY_RECEIVE, sock, msg, size);
1236 /* revaliation, get/set attr, shutdown */
1237 static int aa_sock_perm(const char *op, u32 request, struct socket *sock)
1241 AA_BUG(in_interrupt());
1243 return af_select(sock->sk->sk_family,
1244 sock_perm(op, request, sock),
1245 aa_sk_perm(op, request, sock->sk));
1248 static int apparmor_socket_getsockname(struct socket *sock)
1250 return aa_sock_perm(OP_GETSOCKNAME, AA_MAY_GETATTR, sock);
1253 static int apparmor_socket_getpeername(struct socket *sock)
1255 return aa_sock_perm(OP_GETPEERNAME, AA_MAY_GETATTR, sock);
1258 /* revaliation, get/set attr, opt */
1259 static int aa_sock_opt_perm(const char *op, u32 request, struct socket *sock,
1260 int level, int optname)
1264 AA_BUG(in_interrupt());
1266 return af_select(sock->sk->sk_family,
1267 opt_perm(op, request, sock, level, optname),
1268 aa_sk_perm(op, request, sock->sk));
1271 static int apparmor_socket_getsockopt(struct socket *sock, int level,
1274 return aa_sock_opt_perm(OP_GETSOCKOPT, AA_MAY_GETOPT, sock,
1278 static int apparmor_socket_setsockopt(struct socket *sock, int level,
1281 return aa_sock_opt_perm(OP_SETSOCKOPT, AA_MAY_SETOPT, sock,
1285 static int apparmor_socket_shutdown(struct socket *sock, int how)
1287 return aa_sock_perm(OP_SHUTDOWN, AA_MAY_SHUTDOWN, sock);
1290 #ifdef CONFIG_NETWORK_SECMARK
1292 * apparmor_socket_sock_rcv_skb - check perms before associating skb to sk
1293 * @sk: sk to associate @skb with
1294 * @skb: skb to check for perms
1296 * Note: can not sleep may be called with locks held
1298 * dont want protocol specific in __skb_recv_datagram()
1299 * to deny an incoming connection socket_sock_rcv_skb()
1301 static int apparmor_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
1303 struct aa_sk_ctx *ctx = aa_sock(sk);
1309 * If reach here before socket_post_create hook is called, in which
1310 * case label is null, drop the packet.
1315 return apparmor_secmark_check(ctx->label, OP_RECVMSG, AA_MAY_RECEIVE,
1321 static struct aa_label *sk_peer_label(struct sock *sk)
1323 struct aa_sk_ctx *ctx = aa_sock(sk);
1328 return ERR_PTR(-ENOPROTOOPT);
1332 * apparmor_socket_getpeersec_stream - get security context of peer
1333 * @sock: socket that we are trying to get the peer context of
1334 * @optval: output - buffer to copy peer name to
1335 * @optlen: output - size of copied name in @optval
1336 * @len: size of @optval buffer
1337 * Returns: 0 on success, -errno of failure
1339 * Note: for tcp only valid if using ipsec or cipso on lan
1341 static int apparmor_socket_getpeersec_stream(struct socket *sock,
1342 sockptr_t optval, sockptr_t optlen,
1346 int slen, error = 0;
1347 struct aa_label *label;
1348 struct aa_label *peer;
1350 label = begin_current_label_crit_section();
1351 peer = sk_peer_label(sock->sk);
1353 error = PTR_ERR(peer);
1356 slen = aa_label_asxprint(&name, labels_ns(label), peer,
1357 FLAG_SHOW_MODE | FLAG_VIEW_SUBNS |
1358 FLAG_HIDDEN_UNCONFINED, GFP_KERNEL);
1359 /* don't include terminating \0 in slen, it breaks some apps */
1369 if (copy_to_sockptr(optval, name, slen))
1372 if (copy_to_sockptr(optlen, &slen, sizeof(slen)))
1375 end_current_label_crit_section(label);
1381 * apparmor_socket_getpeersec_dgram - get security label of packet
1382 * @sock: the peer socket
1384 * @secid: pointer to where to put the secid of the packet
1386 * Sets the netlabel socket state on sk from parent
1388 static int apparmor_socket_getpeersec_dgram(struct socket *sock,
1389 struct sk_buff *skb, u32 *secid)
1392 /* TODO: requires secid support */
1393 return -ENOPROTOOPT;
1397 * apparmor_sock_graft - Initialize newly created socket
1399 * @parent: parent socket
1401 * Note: could set off of SOCK_CTX(parent) but need to track inode and we can
1402 * just set sk security information off of current creating process label
1403 * Labeling of sk for accept case - probably should be sock based
1404 * instead of task, because of the case where an implicitly labeled
1405 * socket is shared by different tasks.
1407 static void apparmor_sock_graft(struct sock *sk, struct socket *parent)
1409 struct aa_sk_ctx *ctx = aa_sock(sk);
1412 ctx->label = aa_get_current_label();
1415 #ifdef CONFIG_NETWORK_SECMARK
1416 static int apparmor_inet_conn_request(const struct sock *sk, struct sk_buff *skb,
1417 struct request_sock *req)
1419 struct aa_sk_ctx *ctx = aa_sock(sk);
1424 return apparmor_secmark_check(ctx->label, OP_CONNECT, AA_MAY_CONNECT,
1430 * The cred blob is a pointer to, not an instance of, an aa_label.
1432 struct lsm_blob_sizes apparmor_blob_sizes __ro_after_init = {
1433 .lbs_cred = sizeof(struct aa_label *),
1434 .lbs_file = sizeof(struct aa_file_ctx),
1435 .lbs_task = sizeof(struct aa_task_ctx),
1438 static const struct lsm_id apparmor_lsmid = {
1440 .id = LSM_ID_APPARMOR,
1443 static struct security_hook_list apparmor_hooks[] __ro_after_init = {
1444 LSM_HOOK_INIT(ptrace_access_check, apparmor_ptrace_access_check),
1445 LSM_HOOK_INIT(ptrace_traceme, apparmor_ptrace_traceme),
1446 LSM_HOOK_INIT(capget, apparmor_capget),
1447 LSM_HOOK_INIT(capable, apparmor_capable),
1449 LSM_HOOK_INIT(move_mount, apparmor_move_mount),
1450 LSM_HOOK_INIT(sb_mount, apparmor_sb_mount),
1451 LSM_HOOK_INIT(sb_umount, apparmor_sb_umount),
1452 LSM_HOOK_INIT(sb_pivotroot, apparmor_sb_pivotroot),
1454 LSM_HOOK_INIT(path_link, apparmor_path_link),
1455 LSM_HOOK_INIT(path_unlink, apparmor_path_unlink),
1456 LSM_HOOK_INIT(path_symlink, apparmor_path_symlink),
1457 LSM_HOOK_INIT(path_mkdir, apparmor_path_mkdir),
1458 LSM_HOOK_INIT(path_rmdir, apparmor_path_rmdir),
1459 LSM_HOOK_INIT(path_mknod, apparmor_path_mknod),
1460 LSM_HOOK_INIT(path_rename, apparmor_path_rename),
1461 LSM_HOOK_INIT(path_chmod, apparmor_path_chmod),
1462 LSM_HOOK_INIT(path_chown, apparmor_path_chown),
1463 LSM_HOOK_INIT(path_truncate, apparmor_path_truncate),
1464 LSM_HOOK_INIT(inode_getattr, apparmor_inode_getattr),
1466 LSM_HOOK_INIT(file_open, apparmor_file_open),
1467 LSM_HOOK_INIT(file_receive, apparmor_file_receive),
1468 LSM_HOOK_INIT(file_permission, apparmor_file_permission),
1469 LSM_HOOK_INIT(file_alloc_security, apparmor_file_alloc_security),
1470 LSM_HOOK_INIT(file_free_security, apparmor_file_free_security),
1471 LSM_HOOK_INIT(mmap_file, apparmor_mmap_file),
1472 LSM_HOOK_INIT(file_mprotect, apparmor_file_mprotect),
1473 LSM_HOOK_INIT(file_lock, apparmor_file_lock),
1474 LSM_HOOK_INIT(file_truncate, apparmor_file_truncate),
1476 LSM_HOOK_INIT(getselfattr, apparmor_getselfattr),
1477 LSM_HOOK_INIT(setselfattr, apparmor_setselfattr),
1478 LSM_HOOK_INIT(getprocattr, apparmor_getprocattr),
1479 LSM_HOOK_INIT(setprocattr, apparmor_setprocattr),
1481 LSM_HOOK_INIT(sk_alloc_security, apparmor_sk_alloc_security),
1482 LSM_HOOK_INIT(sk_free_security, apparmor_sk_free_security),
1483 LSM_HOOK_INIT(sk_clone_security, apparmor_sk_clone_security),
1485 LSM_HOOK_INIT(socket_create, apparmor_socket_create),
1486 LSM_HOOK_INIT(socket_post_create, apparmor_socket_post_create),
1487 LSM_HOOK_INIT(socket_bind, apparmor_socket_bind),
1488 LSM_HOOK_INIT(socket_connect, apparmor_socket_connect),
1489 LSM_HOOK_INIT(socket_listen, apparmor_socket_listen),
1490 LSM_HOOK_INIT(socket_accept, apparmor_socket_accept),
1491 LSM_HOOK_INIT(socket_sendmsg, apparmor_socket_sendmsg),
1492 LSM_HOOK_INIT(socket_recvmsg, apparmor_socket_recvmsg),
1493 LSM_HOOK_INIT(socket_getsockname, apparmor_socket_getsockname),
1494 LSM_HOOK_INIT(socket_getpeername, apparmor_socket_getpeername),
1495 LSM_HOOK_INIT(socket_getsockopt, apparmor_socket_getsockopt),
1496 LSM_HOOK_INIT(socket_setsockopt, apparmor_socket_setsockopt),
1497 LSM_HOOK_INIT(socket_shutdown, apparmor_socket_shutdown),
1498 #ifdef CONFIG_NETWORK_SECMARK
1499 LSM_HOOK_INIT(socket_sock_rcv_skb, apparmor_socket_sock_rcv_skb),
1501 LSM_HOOK_INIT(socket_getpeersec_stream,
1502 apparmor_socket_getpeersec_stream),
1503 LSM_HOOK_INIT(socket_getpeersec_dgram,
1504 apparmor_socket_getpeersec_dgram),
1505 LSM_HOOK_INIT(sock_graft, apparmor_sock_graft),
1506 #ifdef CONFIG_NETWORK_SECMARK
1507 LSM_HOOK_INIT(inet_conn_request, apparmor_inet_conn_request),
1510 LSM_HOOK_INIT(cred_alloc_blank, apparmor_cred_alloc_blank),
1511 LSM_HOOK_INIT(cred_free, apparmor_cred_free),
1512 LSM_HOOK_INIT(cred_prepare, apparmor_cred_prepare),
1513 LSM_HOOK_INIT(cred_transfer, apparmor_cred_transfer),
1515 LSM_HOOK_INIT(bprm_creds_for_exec, apparmor_bprm_creds_for_exec),
1516 LSM_HOOK_INIT(bprm_committing_creds, apparmor_bprm_committing_creds),
1517 LSM_HOOK_INIT(bprm_committed_creds, apparmor_bprm_committed_creds),
1519 LSM_HOOK_INIT(task_free, apparmor_task_free),
1520 LSM_HOOK_INIT(task_alloc, apparmor_task_alloc),
1521 LSM_HOOK_INIT(current_getsecid_subj, apparmor_current_getsecid_subj),
1522 LSM_HOOK_INIT(task_getsecid_obj, apparmor_task_getsecid_obj),
1523 LSM_HOOK_INIT(task_setrlimit, apparmor_task_setrlimit),
1524 LSM_HOOK_INIT(task_kill, apparmor_task_kill),
1525 LSM_HOOK_INIT(userns_create, apparmor_userns_create),
1528 LSM_HOOK_INIT(audit_rule_init, aa_audit_rule_init),
1529 LSM_HOOK_INIT(audit_rule_known, aa_audit_rule_known),
1530 LSM_HOOK_INIT(audit_rule_match, aa_audit_rule_match),
1531 LSM_HOOK_INIT(audit_rule_free, aa_audit_rule_free),
1534 LSM_HOOK_INIT(secid_to_secctx, apparmor_secid_to_secctx),
1535 LSM_HOOK_INIT(secctx_to_secid, apparmor_secctx_to_secid),
1536 LSM_HOOK_INIT(release_secctx, apparmor_release_secctx),
1538 #ifdef CONFIG_IO_URING
1539 LSM_HOOK_INIT(uring_override_creds, apparmor_uring_override_creds),
1540 LSM_HOOK_INIT(uring_sqpoll, apparmor_uring_sqpoll),
1545 * AppArmor sysfs module parameters
1548 static int param_set_aabool(const char *val, const struct kernel_param *kp);
1549 static int param_get_aabool(char *buffer, const struct kernel_param *kp);
1550 #define param_check_aabool param_check_bool
1551 static const struct kernel_param_ops param_ops_aabool = {
1552 .flags = KERNEL_PARAM_OPS_FL_NOARG,
1553 .set = param_set_aabool,
1554 .get = param_get_aabool
1557 static int param_set_aauint(const char *val, const struct kernel_param *kp);
1558 static int param_get_aauint(char *buffer, const struct kernel_param *kp);
1559 #define param_check_aauint param_check_uint
1560 static const struct kernel_param_ops param_ops_aauint = {
1561 .set = param_set_aauint,
1562 .get = param_get_aauint
1565 static int param_set_aacompressionlevel(const char *val,
1566 const struct kernel_param *kp);
1567 static int param_get_aacompressionlevel(char *buffer,
1568 const struct kernel_param *kp);
1569 #define param_check_aacompressionlevel param_check_int
1570 static const struct kernel_param_ops param_ops_aacompressionlevel = {
1571 .set = param_set_aacompressionlevel,
1572 .get = param_get_aacompressionlevel
1575 static int param_set_aalockpolicy(const char *val, const struct kernel_param *kp);
1576 static int param_get_aalockpolicy(char *buffer, const struct kernel_param *kp);
1577 #define param_check_aalockpolicy param_check_bool
1578 static const struct kernel_param_ops param_ops_aalockpolicy = {
1579 .flags = KERNEL_PARAM_OPS_FL_NOARG,
1580 .set = param_set_aalockpolicy,
1581 .get = param_get_aalockpolicy
1584 static int param_set_audit(const char *val, const struct kernel_param *kp);
1585 static int param_get_audit(char *buffer, const struct kernel_param *kp);
1587 static int param_set_mode(const char *val, const struct kernel_param *kp);
1588 static int param_get_mode(char *buffer, const struct kernel_param *kp);
1590 /* Flag values, also controllable via /sys/module/apparmor/parameters
1591 * We define special types as we want to do additional mediation.
1594 /* AppArmor global enforcement switch - complain, enforce, kill */
1595 enum profile_mode aa_g_profile_mode = APPARMOR_ENFORCE;
1596 module_param_call(mode, param_set_mode, param_get_mode,
1597 &aa_g_profile_mode, S_IRUSR | S_IWUSR);
1599 /* whether policy verification hashing is enabled */
1600 bool aa_g_hash_policy = IS_ENABLED(CONFIG_SECURITY_APPARMOR_HASH_DEFAULT);
1601 #ifdef CONFIG_SECURITY_APPARMOR_HASH
1602 module_param_named(hash_policy, aa_g_hash_policy, aabool, S_IRUSR | S_IWUSR);
1605 /* whether policy exactly as loaded is retained for debug and checkpointing */
1606 bool aa_g_export_binary = IS_ENABLED(CONFIG_SECURITY_APPARMOR_EXPORT_BINARY);
1607 #ifdef CONFIG_SECURITY_APPARMOR_EXPORT_BINARY
1608 module_param_named(export_binary, aa_g_export_binary, aabool, 0600);
1611 /* policy loaddata compression level */
1612 int aa_g_rawdata_compression_level = AA_DEFAULT_CLEVEL;
1613 module_param_named(rawdata_compression_level, aa_g_rawdata_compression_level,
1614 aacompressionlevel, 0400);
1617 bool aa_g_debug = IS_ENABLED(CONFIG_SECURITY_APPARMOR_DEBUG_MESSAGES);
1618 module_param_named(debug, aa_g_debug, aabool, S_IRUSR | S_IWUSR);
1621 enum audit_mode aa_g_audit;
1622 module_param_call(audit, param_set_audit, param_get_audit,
1623 &aa_g_audit, S_IRUSR | S_IWUSR);
1625 /* Determines if audit header is included in audited messages. This
1626 * provides more context if the audit daemon is not running
1628 bool aa_g_audit_header = true;
1629 module_param_named(audit_header, aa_g_audit_header, aabool,
1632 /* lock out loading/removal of policy
1633 * TODO: add in at boot loading of policy, which is the only way to
1634 * load policy, if lock_policy is set
1636 bool aa_g_lock_policy;
1637 module_param_named(lock_policy, aa_g_lock_policy, aalockpolicy,
1640 /* Syscall logging mode */
1641 bool aa_g_logsyscall;
1642 module_param_named(logsyscall, aa_g_logsyscall, aabool, S_IRUSR | S_IWUSR);
1644 /* Maximum pathname length before accesses will start getting rejected */
1645 unsigned int aa_g_path_max = 2 * PATH_MAX;
1646 module_param_named(path_max, aa_g_path_max, aauint, S_IRUSR);
1648 /* Determines how paranoid loading of policy is and how much verification
1649 * on the loaded policy is done.
1650 * DEPRECATED: read only as strict checking of load is always done now
1651 * that none root users (user namespaces) can load policy.
1653 bool aa_g_paranoid_load = IS_ENABLED(CONFIG_SECURITY_APPARMOR_PARANOID_LOAD);
1654 module_param_named(paranoid_load, aa_g_paranoid_load, aabool, S_IRUGO);
1656 static int param_get_aaintbool(char *buffer, const struct kernel_param *kp);
1657 static int param_set_aaintbool(const char *val, const struct kernel_param *kp);
1658 #define param_check_aaintbool param_check_int
1659 static const struct kernel_param_ops param_ops_aaintbool = {
1660 .set = param_set_aaintbool,
1661 .get = param_get_aaintbool
1663 /* Boot time disable flag */
1664 static int apparmor_enabled __ro_after_init = 1;
1665 module_param_named(enabled, apparmor_enabled, aaintbool, 0444);
1667 static int __init apparmor_enabled_setup(char *str)
1669 unsigned long enabled;
1670 int error = kstrtoul(str, 0, &enabled);
1672 apparmor_enabled = enabled ? 1 : 0;
1676 __setup("apparmor=", apparmor_enabled_setup);
1678 /* set global flag turning off the ability to load policy */
1679 static int param_set_aalockpolicy(const char *val, const struct kernel_param *kp)
1681 if (!apparmor_enabled)
1683 if (apparmor_initialized && !aa_current_policy_admin_capable(NULL))
1685 return param_set_bool(val, kp);
1688 static int param_get_aalockpolicy(char *buffer, const struct kernel_param *kp)
1690 if (!apparmor_enabled)
1692 if (apparmor_initialized && !aa_current_policy_view_capable(NULL))
1694 return param_get_bool(buffer, kp);
1697 static int param_set_aabool(const char *val, const struct kernel_param *kp)
1699 if (!apparmor_enabled)
1701 if (apparmor_initialized && !aa_current_policy_admin_capable(NULL))
1703 return param_set_bool(val, kp);
1706 static int param_get_aabool(char *buffer, const struct kernel_param *kp)
1708 if (!apparmor_enabled)
1710 if (apparmor_initialized && !aa_current_policy_view_capable(NULL))
1712 return param_get_bool(buffer, kp);
1715 static int param_set_aauint(const char *val, const struct kernel_param *kp)
1719 if (!apparmor_enabled)
1721 /* file is ro but enforce 2nd line check */
1722 if (apparmor_initialized)
1725 error = param_set_uint(val, kp);
1726 aa_g_path_max = max_t(uint32_t, aa_g_path_max, sizeof(union aa_buffer));
1727 pr_info("AppArmor: buffer size set to %d bytes\n", aa_g_path_max);
1732 static int param_get_aauint(char *buffer, const struct kernel_param *kp)
1734 if (!apparmor_enabled)
1736 if (apparmor_initialized && !aa_current_policy_view_capable(NULL))
1738 return param_get_uint(buffer, kp);
1741 /* Can only be set before AppArmor is initialized (i.e. on boot cmdline). */
1742 static int param_set_aaintbool(const char *val, const struct kernel_param *kp)
1744 struct kernel_param kp_local;
1748 if (apparmor_initialized)
1751 /* Create local copy, with arg pointing to bool type. */
1752 value = !!*((int *)kp->arg);
1753 memcpy(&kp_local, kp, sizeof(kp_local));
1754 kp_local.arg = &value;
1756 error = param_set_bool(val, &kp_local);
1758 *((int *)kp->arg) = *((bool *)kp_local.arg);
1763 * To avoid changing /sys/module/apparmor/parameters/enabled from Y/N to
1764 * 1/0, this converts the "int that is actually bool" back to bool for
1765 * display in the /sys filesystem, while keeping it "int" for the LSM
1768 static int param_get_aaintbool(char *buffer, const struct kernel_param *kp)
1770 struct kernel_param kp_local;
1773 /* Create local copy, with arg pointing to bool type. */
1774 value = !!*((int *)kp->arg);
1775 memcpy(&kp_local, kp, sizeof(kp_local));
1776 kp_local.arg = &value;
1778 return param_get_bool(buffer, &kp_local);
1781 static int param_set_aacompressionlevel(const char *val,
1782 const struct kernel_param *kp)
1786 if (!apparmor_enabled)
1788 if (apparmor_initialized)
1791 error = param_set_int(val, kp);
1793 aa_g_rawdata_compression_level = clamp(aa_g_rawdata_compression_level,
1794 AA_MIN_CLEVEL, AA_MAX_CLEVEL);
1795 pr_info("AppArmor: policy rawdata compression level set to %d\n",
1796 aa_g_rawdata_compression_level);
1801 static int param_get_aacompressionlevel(char *buffer,
1802 const struct kernel_param *kp)
1804 if (!apparmor_enabled)
1806 if (apparmor_initialized && !aa_current_policy_view_capable(NULL))
1808 return param_get_int(buffer, kp);
1811 static int param_get_audit(char *buffer, const struct kernel_param *kp)
1813 if (!apparmor_enabled)
1815 if (apparmor_initialized && !aa_current_policy_view_capable(NULL))
1817 return sprintf(buffer, "%s", audit_mode_names[aa_g_audit]);
1820 static int param_set_audit(const char *val, const struct kernel_param *kp)
1824 if (!apparmor_enabled)
1828 if (apparmor_initialized && !aa_current_policy_admin_capable(NULL))
1831 i = match_string(audit_mode_names, AUDIT_MAX_INDEX, val);
1839 static int param_get_mode(char *buffer, const struct kernel_param *kp)
1841 if (!apparmor_enabled)
1843 if (apparmor_initialized && !aa_current_policy_view_capable(NULL))
1846 return sprintf(buffer, "%s", aa_profile_mode_names[aa_g_profile_mode]);
1849 static int param_set_mode(const char *val, const struct kernel_param *kp)
1853 if (!apparmor_enabled)
1857 if (apparmor_initialized && !aa_current_policy_admin_capable(NULL))
1860 i = match_string(aa_profile_mode_names, APPARMOR_MODE_NAMES_MAX_INDEX,
1865 aa_g_profile_mode = i;
1869 char *aa_get_buffer(bool in_atomic)
1871 union aa_buffer *aa_buf;
1872 struct aa_local_cache *cache;
1873 bool try_again = true;
1874 gfp_t flags = (GFP_KERNEL | __GFP_RETRY_MAYFAIL | __GFP_NOWARN);
1876 /* use per cpu cached buffers first */
1877 cache = get_cpu_ptr(&aa_local_buffers);
1878 if (!list_empty(&cache->head)) {
1879 aa_buf = list_first_entry(&cache->head, union aa_buffer, list);
1880 list_del(&aa_buf->list);
1883 put_cpu_ptr(&aa_local_buffers);
1884 return &aa_buf->buffer[0];
1886 put_cpu_ptr(&aa_local_buffers);
1888 if (!spin_trylock(&aa_buffers_lock)) {
1889 cache = get_cpu_ptr(&aa_local_buffers);
1891 put_cpu_ptr(&aa_local_buffers);
1892 spin_lock(&aa_buffers_lock);
1894 cache = get_cpu_ptr(&aa_local_buffers);
1895 put_cpu_ptr(&aa_local_buffers);
1898 if (buffer_count > reserve_count ||
1899 (in_atomic && !list_empty(&aa_global_buffers))) {
1900 aa_buf = list_first_entry(&aa_global_buffers, union aa_buffer,
1902 list_del(&aa_buf->list);
1904 spin_unlock(&aa_buffers_lock);
1905 return aa_buf->buffer;
1909 * out of reserve buffers and in atomic context so increase
1910 * how many buffers to keep in reserve
1915 spin_unlock(&aa_buffers_lock);
1919 aa_buf = kmalloc(aa_g_path_max, flags);
1923 spin_lock(&aa_buffers_lock);
1926 pr_warn_once("AppArmor: Failed to allocate a memory buffer.\n");
1929 return aa_buf->buffer;
1932 void aa_put_buffer(char *buf)
1934 union aa_buffer *aa_buf;
1935 struct aa_local_cache *cache;
1939 aa_buf = container_of(buf, union aa_buffer, buffer[0]);
1941 cache = get_cpu_ptr(&aa_local_buffers);
1943 put_cpu_ptr(&aa_local_buffers);
1945 if (spin_trylock(&aa_buffers_lock)) {
1946 /* put back on global list */
1947 list_add(&aa_buf->list, &aa_global_buffers);
1949 spin_unlock(&aa_buffers_lock);
1950 cache = get_cpu_ptr(&aa_local_buffers);
1951 put_cpu_ptr(&aa_local_buffers);
1954 /* contention on global list, fallback to percpu */
1955 cache = get_cpu_ptr(&aa_local_buffers);
1959 /* cache in percpu list */
1960 list_add(&aa_buf->list, &cache->head);
1962 put_cpu_ptr(&aa_local_buffers);
1966 * AppArmor init functions
1970 * set_init_ctx - set a task context and profile on the first task.
1972 * TODO: allow setting an alternate profile than unconfined
1974 static int __init set_init_ctx(void)
1976 struct cred *cred = (__force struct cred *)current->real_cred;
1978 set_cred_label(cred, aa_get_label(ns_unconfined(root_ns)));
1983 static void destroy_buffers(void)
1985 union aa_buffer *aa_buf;
1987 spin_lock(&aa_buffers_lock);
1988 while (!list_empty(&aa_global_buffers)) {
1989 aa_buf = list_first_entry(&aa_global_buffers, union aa_buffer,
1991 list_del(&aa_buf->list);
1992 spin_unlock(&aa_buffers_lock);
1994 spin_lock(&aa_buffers_lock);
1996 spin_unlock(&aa_buffers_lock);
1999 static int __init alloc_buffers(void)
2001 union aa_buffer *aa_buf;
2005 * per cpu set of cached allocated buffers used to help reduce
2008 for_each_possible_cpu(i) {
2009 per_cpu(aa_local_buffers, i).hold = 0;
2010 per_cpu(aa_local_buffers, i).count = 0;
2011 INIT_LIST_HEAD(&per_cpu(aa_local_buffers, i).head);
2014 * A function may require two buffers at once. Usually the buffers are
2015 * used for a short period of time and are shared. On UP kernel buffers
2016 * two should be enough, with more CPUs it is possible that more
2017 * buffers will be used simultaneously. The preallocated pool may grow.
2018 * This preallocation has also the side-effect that AppArmor will be
2019 * disabled early at boot if aa_g_path_max is extremly high.
2021 if (num_online_cpus() > 1)
2022 num = 4 + RESERVE_COUNT;
2024 num = 2 + RESERVE_COUNT;
2026 for (i = 0; i < num; i++) {
2028 aa_buf = kmalloc(aa_g_path_max, GFP_KERNEL |
2029 __GFP_RETRY_MAYFAIL | __GFP_NOWARN);
2034 aa_put_buffer(aa_buf->buffer);
2039 #ifdef CONFIG_SYSCTL
2040 static int apparmor_dointvec(struct ctl_table *table, int write,
2041 void *buffer, size_t *lenp, loff_t *ppos)
2043 if (!aa_current_policy_admin_capable(NULL))
2045 if (!apparmor_enabled)
2048 return proc_dointvec(table, write, buffer, lenp, ppos);
2051 static struct ctl_table apparmor_sysctl_table[] = {
2052 #ifdef CONFIG_USER_NS
2054 .procname = "unprivileged_userns_apparmor_policy",
2055 .data = &unprivileged_userns_apparmor_policy,
2056 .maxlen = sizeof(int),
2058 .proc_handler = apparmor_dointvec,
2060 #endif /* CONFIG_USER_NS */
2062 .procname = "apparmor_display_secid_mode",
2063 .data = &apparmor_display_secid_mode,
2064 .maxlen = sizeof(int),
2066 .proc_handler = apparmor_dointvec,
2069 .procname = "apparmor_restrict_unprivileged_unconfined",
2070 .data = &aa_unprivileged_unconfined_restricted,
2071 .maxlen = sizeof(int),
2073 .proc_handler = apparmor_dointvec,
2078 static int __init apparmor_init_sysctl(void)
2080 return register_sysctl("kernel", apparmor_sysctl_table) ? 0 : -ENOMEM;
2083 static inline int apparmor_init_sysctl(void)
2087 #endif /* CONFIG_SYSCTL */
2089 #if defined(CONFIG_NETFILTER) && defined(CONFIG_NETWORK_SECMARK)
2090 static unsigned int apparmor_ip_postroute(void *priv,
2091 struct sk_buff *skb,
2092 const struct nf_hook_state *state)
2094 struct aa_sk_ctx *ctx;
2100 sk = skb_to_full_sk(skb);
2105 if (!apparmor_secmark_check(ctx->label, OP_SENDMSG, AA_MAY_SEND,
2109 return NF_DROP_ERR(-ECONNREFUSED);
2113 static const struct nf_hook_ops apparmor_nf_ops[] = {
2115 .hook = apparmor_ip_postroute,
2117 .hooknum = NF_INET_POST_ROUTING,
2118 .priority = NF_IP_PRI_SELINUX_FIRST,
2120 #if IS_ENABLED(CONFIG_IPV6)
2122 .hook = apparmor_ip_postroute,
2124 .hooknum = NF_INET_POST_ROUTING,
2125 .priority = NF_IP6_PRI_SELINUX_FIRST,
2130 static int __net_init apparmor_nf_register(struct net *net)
2132 return nf_register_net_hooks(net, apparmor_nf_ops,
2133 ARRAY_SIZE(apparmor_nf_ops));
2136 static void __net_exit apparmor_nf_unregister(struct net *net)
2138 nf_unregister_net_hooks(net, apparmor_nf_ops,
2139 ARRAY_SIZE(apparmor_nf_ops));
2142 static struct pernet_operations apparmor_net_ops = {
2143 .init = apparmor_nf_register,
2144 .exit = apparmor_nf_unregister,
2147 static int __init apparmor_nf_ip_init(void)
2151 if (!apparmor_enabled)
2154 err = register_pernet_subsys(&apparmor_net_ops);
2156 panic("Apparmor: register_pernet_subsys: error %d\n", err);
2160 __initcall(apparmor_nf_ip_init);
2163 static char nulldfa_src[] = {
2164 #include "nulldfa.in"
2166 static struct aa_dfa *nulldfa;
2168 static char stacksplitdfa_src[] = {
2169 #include "stacksplitdfa.in"
2171 struct aa_dfa *stacksplitdfa;
2172 struct aa_policydb *nullpdb;
2174 static int __init aa_setup_dfa_engine(void)
2176 int error = -ENOMEM;
2178 nullpdb = aa_alloc_pdb(GFP_KERNEL);
2182 nulldfa = aa_dfa_unpack(nulldfa_src, sizeof(nulldfa_src),
2183 TO_ACCEPT1_FLAG(YYTD_DATA32) |
2184 TO_ACCEPT2_FLAG(YYTD_DATA32));
2185 if (IS_ERR(nulldfa)) {
2186 error = PTR_ERR(nulldfa);
2189 nullpdb->dfa = aa_get_dfa(nulldfa);
2190 nullpdb->perms = kcalloc(2, sizeof(struct aa_perms), GFP_KERNEL);
2191 if (!nullpdb->perms)
2195 stacksplitdfa = aa_dfa_unpack(stacksplitdfa_src,
2196 sizeof(stacksplitdfa_src),
2197 TO_ACCEPT1_FLAG(YYTD_DATA32) |
2198 TO_ACCEPT2_FLAG(YYTD_DATA32));
2199 if (IS_ERR(stacksplitdfa)) {
2200 error = PTR_ERR(stacksplitdfa);
2207 aa_put_pdb(nullpdb);
2208 aa_put_dfa(nulldfa);
2211 stacksplitdfa = NULL;
2216 static void __init aa_teardown_dfa_engine(void)
2218 aa_put_dfa(stacksplitdfa);
2219 aa_put_dfa(nulldfa);
2220 aa_put_pdb(nullpdb);
2222 stacksplitdfa = NULL;
2226 static int __init apparmor_init(void)
2230 error = aa_setup_dfa_engine();
2232 AA_ERROR("Unable to setup dfa engine\n");
2236 error = aa_alloc_root_ns();
2238 AA_ERROR("Unable to allocate default profile namespace\n");
2242 error = apparmor_init_sysctl();
2244 AA_ERROR("Unable to register sysctls\n");
2249 error = alloc_buffers();
2251 AA_ERROR("Unable to allocate work buffers\n");
2255 error = set_init_ctx();
2257 AA_ERROR("Failed to set context on init task\n");
2261 security_add_hooks(apparmor_hooks, ARRAY_SIZE(apparmor_hooks),
2264 /* Report that AppArmor successfully initialized */
2265 apparmor_initialized = 1;
2266 if (aa_g_profile_mode == APPARMOR_COMPLAIN)
2267 aa_info_message("AppArmor initialized: complain mode enabled");
2268 else if (aa_g_profile_mode == APPARMOR_KILL)
2269 aa_info_message("AppArmor initialized: kill mode enabled");
2271 aa_info_message("AppArmor initialized");
2279 aa_teardown_dfa_engine();
2281 apparmor_enabled = false;
2285 DEFINE_LSM(apparmor) = {
2287 .flags = LSM_FLAG_LEGACY_MAJOR | LSM_FLAG_EXCLUSIVE,
2288 .enabled = &apparmor_enabled,
2289 .blobs = &apparmor_blob_sizes,
2290 .init = apparmor_init,