cregit-Linux how code gets into the kernel

Release 4.11 security/apparmor/lsm.c

/*
 * AppArmor security module
 *
 * This file contains AppArmor LSM hooks.
 *
 * Copyright (C) 1998-2008 Novell/SUSE
 * Copyright 2009-2010 Canonical Ltd.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, version 2 of the
 * License.
 */

#include <linux/lsm_hooks.h>
#include <linux/moduleparam.h>
#include <linux/mm.h>
#include <linux/mman.h>
#include <linux/mount.h>
#include <linux/namei.h>
#include <linux/ptrace.h>
#include <linux/ctype.h>
#include <linux/sysctl.h>
#include <linux/audit.h>
#include <linux/user_namespace.h>
#include <linux/kmemleak.h>
#include <net/sock.h>

#include "include/apparmor.h"
#include "include/apparmorfs.h"
#include "include/audit.h"
#include "include/capability.h"
#include "include/context.h"
#include "include/file.h"
#include "include/ipc.h"
#include "include/path.h"
#include "include/policy.h"
#include "include/policy_ns.h"
#include "include/procattr.h"

/* Flag indicating whether initialization completed */

int apparmor_initialized __initdata;

DEFINE_PER_CPU(struct aa_buffers, aa_buffers);


/*
 * LSM hook functions
 */

/*
 * free the associated aa_task_ctx and put its profiles
 */

static void apparmor_cred_free(struct cred *cred) { aa_free_task_context(cred_ctx(cred)); cred_ctx(cred) = NULL; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen26100.00%3100.00%
Total26100.00%3100.00%

/* * allocate the apparmor part of blank credentials */
static int apparmor_cred_alloc_blank(struct cred *cred, gfp_t gfp) { /* freed by apparmor_cred_free */ struct aa_task_ctx *ctx = aa_alloc_task_context(gfp); if (!ctx) return -ENOMEM; cred_ctx(cred) = ctx; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen44100.00%3100.00%
Total44100.00%3100.00%

/* * prepare new aa_task_ctx for modification by prepare_cred block */
static int apparmor_cred_prepare(struct cred *new, const struct cred *old, gfp_t gfp) { /* freed by apparmor_cred_free */ struct aa_task_ctx *ctx = aa_alloc_task_context(gfp); if (!ctx) return -ENOMEM; aa_dup_task_context(ctx, cred_ctx(old)); cred_ctx(new) = ctx; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen60100.00%3100.00%
Total60100.00%3100.00%

/* * transfer the apparmor data to a blank set of creds */
static void apparmor_cred_transfer(struct cred *new, const struct cred *old) { const struct aa_task_ctx *old_ctx = cred_ctx(old); struct aa_task_ctx *new_ctx = cred_ctx(new); aa_dup_task_context(new_ctx, old_ctx); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen45100.00%3100.00%
Total45100.00%3100.00%


static int apparmor_ptrace_access_check(struct task_struct *child, unsigned int mode) { return aa_ptrace(current, child, mode); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen25100.00%1100.00%
Total25100.00%1100.00%


static int apparmor_ptrace_traceme(struct task_struct *parent) { return aa_ptrace(parent, current, PTRACE_MODE_ATTACH); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen21100.00%1100.00%
Total21100.00%1100.00%

/* Derived from security/commoncap.c:cap_capget */
static int apparmor_capget(struct task_struct *target, kernel_cap_t *effective, kernel_cap_t *inheritable, kernel_cap_t *permitted) { struct aa_profile *profile; const struct cred *cred; rcu_read_lock(); cred = __task_cred(target); profile = aa_cred_profile(cred); /* * cap_capget is stacked ahead of this and will * initialize effective and permitted. */ if (!unconfined(profile) && !COMPLAIN_MODE(profile)) { *effective = cap_intersect(*effective, profile->caps.allow); *permitted = cap_intersect(*permitted, profile->caps.allow); } rcu_read_unlock(); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen10399.04%266.67%
Casey Schaufler10.96%133.33%
Total104100.00%3100.00%


static int apparmor_capable(const struct cred *cred, struct user_namespace *ns, int cap, int audit) { struct aa_profile *profile; int error = 0; profile = aa_cred_profile(cred); if (!unconfined(profile)) error = aa_capable(profile, cap, audit); return error; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen5690.32%133.33%
Serge E. Hallyn58.06%133.33%
Casey Schaufler11.61%133.33%
Total62100.00%3100.00%

/** * common_perm - basic common permission check wrapper fn for paths * @op: operation being checked * @path: path to check permission of (NOT NULL) * @mask: requested permissions mask * @cond: conditional info for the permission request (NOT NULL) * * Returns: %0 else error code if error or permission denied */
static int common_perm(const char *op, const struct path *path, u32 mask, struct path_cond *cond) { struct aa_profile *profile; int error = 0; profile = __aa_current_profile(); if (!unconfined(profile)) error = aa_path_perm(op, profile, path, 0, mask, cond); return error; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen6798.53%266.67%
Al Viro11.47%133.33%
Total68100.00%3100.00%

/** * common_perm_cond - common permission wrapper around inode cond * @op: operation being checked * @path: location to check (NOT NULL) * @mask: requested permissions mask * * Returns: %0 else error code if error or permission denied */
static int common_perm_cond(const char *op, const struct path *path, u32 mask) { struct path_cond cond = { d_backing_inode(path->dentry)->i_uid, d_backing_inode(path->dentry)->i_mode }; if (!path_mediated_fs(path->dentry)) return 0; return common_perm(op, path, mask, &cond); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen6897.14%360.00%
Al Viro11.43%120.00%
Kees Cook11.43%120.00%
Total70100.00%5100.00%

/** * common_perm_dir_dentry - common permission wrapper when path is dir, dentry * @op: operation being checked * @dir: directory of the dentry (NOT NULL) * @dentry: dentry to check (NOT NULL) * @mask: requested permissions mask * @cond: conditional info for the permission request (NOT NULL) * * Returns: %0 else error code if error or permission denied */
static int common_perm_dir_dentry(const char *op, const struct path *dir, struct dentry *dentry, u32 mask, struct path_cond *cond) { struct path path = { .mnt = dir->mnt, .dentry = dentry }; return common_perm(op, &path, mask, cond); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen5691.80%375.00%
Al Viro58.20%125.00%
Total61100.00%4100.00%

/** * common_perm_rm - common permission wrapper for operations doing rm * @op: operation being checked * @dir: directory that the dentry is in (NOT NULL) * @dentry: dentry being rm'd (NOT NULL) * @mask: requested permission mask * * Returns: %0 else error code if error or permission denied */
static int common_perm_rm(const char *op, const struct path *dir, struct dentry *dentry, u32 mask) { struct inode *inode = d_backing_inode(dentry); struct path_cond cond = { }; if (!inode || !path_mediated_fs(dentry)) return 0; cond.uid = inode->i_uid; cond.mode = inode->i_mode; return common_perm_dir_dentry(op, dir, dentry, mask, &cond); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen8194.19%350.00%
David Howells44.65%233.33%
Al Viro11.16%116.67%
Total86100.00%6100.00%

/** * common_perm_create - common permission wrapper for operations doing create * @op: operation being checked * @dir: directory that dentry will be created in (NOT NULL) * @dentry: dentry to create (NOT NULL) * @mask: request permission mask * @mode: created file mode * * Returns: %0 else error code if error or permission denied */
static int common_perm_create(const char *op, const struct path *dir, struct dentry *dentry, u32 mask, umode_t mode) { struct path_cond cond = { current_fsuid(), mode }; if (!path_mediated_fs(dir->dentry)) return 0; return common_perm_dir_dentry(op, dir, dentry, mask, &cond); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen6698.51%375.00%
Al Viro11.49%125.00%
Total67100.00%4100.00%


static int apparmor_path_unlink(const struct path *dir, struct dentry *dentry) { return common_perm_rm(OP_UNLINK, dir, dentry, AA_MAY_DELETE); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen2896.55%150.00%
Al Viro13.45%150.00%
Total29100.00%2100.00%


static int apparmor_path_mkdir(const struct path *dir, struct dentry *dentry, umode_t mode) { return common_perm_create(OP_MKDIR, dir, dentry, AA_MAY_CREATE, S_IFDIR); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen3294.12%133.33%
Al Viro25.88%266.67%
Total34100.00%3100.00%


static int apparmor_path_rmdir(const struct path *dir, struct dentry *dentry) { return common_perm_rm(OP_RMDIR, dir, dentry, AA_MAY_DELETE); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen2896.55%150.00%
Al Viro13.45%150.00%
Total29100.00%2100.00%


static int apparmor_path_mknod(const struct path *dir, struct dentry *dentry, umode_t mode, unsigned int dev) { return common_perm_create(OP_MKNOD, dir, dentry, AA_MAY_CREATE, mode); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen3694.74%133.33%
Al Viro25.26%266.67%
Total38100.00%3100.00%


static int apparmor_path_truncate(const struct path *path) { return common_perm_cond(OP_TRUNC, path, MAY_WRITE | AA_MAY_META_WRITE); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen2395.83%266.67%
Al Viro14.17%133.33%
Total24100.00%3100.00%


static int apparmor_path_symlink(const struct path *dir, struct dentry *dentry, const char *old_name) { return common_perm_create(OP_SYMLINK, dir, dentry, AA_MAY_CREATE, S_IFLNK); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen3597.22%150.00%
Al Viro12.78%150.00%
Total36100.00%2100.00%


static int apparmor_path_link(struct dentry *old_dentry, const struct path *new_dir, struct dentry *new_dentry) { struct aa_profile *profile; int error = 0; if (!path_mediated_fs(old_dentry)) return 0; profile = aa_current_profile(); if (!unconfined(profile)) error = aa_path_link(profile, old_dentry, new_dir, new_dentry); return error; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen7198.61%266.67%
Al Viro11.39%133.33%
Total72100.00%3100.00%


static int apparmor_path_rename(const struct path *old_dir, struct dentry *old_dentry, const struct path *new_dir, struct dentry *new_dentry) { struct aa_profile *profile; int error = 0; if (!path_mediated_fs(old_dentry)) return 0; profile = aa_current_profile(); if (!unconfined(profile)) { struct path old_path = { .mnt = old_dir->mnt, .dentry = old_dentry }; struct path new_path = { .mnt = new_dir->mnt, .dentry = new_dentry }; struct path_cond cond = { d_backing_inode(old_dentry)->i_uid, d_backing_inode(old_dentry)->i_mode }; error = aa_path_perm(OP_RENAME_SRC, profile, &old_path, 0, MAY_READ | AA_MAY_META_READ | MAY_WRITE | AA_MAY_META_WRITE | AA_MAY_DELETE, &cond); if (!error) error = aa_path_perm(OP_RENAME_DEST, profile, &new_path, 0, MAY_WRITE | AA_MAY_META_WRITE | AA_MAY_CREATE, &cond); } return error; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen15888.76%240.00%
Kees Cook126.74%120.00%
David Howells63.37%120.00%
Al Viro21.12%120.00%
Total178100.00%5100.00%


static int apparmor_path_chmod(const struct path *path, umode_t mode) { return common_perm_cond(OP_CHMOD, path, AA_MAY_CHMOD); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen2080.00%240.00%
Al Viro520.00%360.00%
Total25100.00%5100.00%


static int apparmor_path_chown(const struct path *path, kuid_t uid, kgid_t gid) { return common_perm_cond(OP_CHOWN, path, AA_MAY_CHOWN); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen2589.29%250.00%
Eric W. Biedermann27.14%125.00%
Al Viro13.57%125.00%
Total28100.00%4100.00%


static int apparmor_inode_getattr(const struct path *path) { return common_perm_cond(OP_GETATTR, path, AA_MAY_META_READ); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen1881.82%266.67%
Al Viro418.18%133.33%
Total22100.00%3100.00%


static int apparmor_file_open(struct file *file, const struct cred *cred) { struct aa_file_ctx *fctx = file->f_security; struct aa_profile *profile; int error = 0; if (!path_mediated_fs(file->f_path.dentry)) return 0; /* If in exec, permission is handled by bprm hooks. * Cache permissions granted by the previous exec check, with * implicit read and executable mmap which are required to * actually execute the image. */ if (current->in_execve) { fctx->allow = MAY_EXEC | MAY_READ | AA_EXEC_MMAP; return 0; } profile = aa_cred_profile(cred); if (!unconfined(profile)) { struct inode *inode = file_inode(file); struct path_cond cond = { inode->i_uid, inode->i_mode }; error = aa_path_perm(OP_OPEN, profile, &file->f_path, 0, aa_map_file_to_perms(file), &cond); /* todo cache full allowed permissions set and state */ fctx->allow = aa_map_file_to_perms(file); } return error; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen14394.70%350.00%
David Howells42.65%116.67%
Al Viro31.99%116.67%
Eric Paris10.66%116.67%
Total151100.00%6100.00%


static int apparmor_file_alloc_security(struct file *file) { /* freed by apparmor_file_free_security */ file->f_security = aa_alloc_file_context(GFP_KERNEL); if (!file->f_security) return -ENOMEM; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen35100.00%1100.00%
Total35100.00%1100.00%


static void apparmor_file_free_security(struct file *file) { struct aa_file_ctx *ctx = file->f_security; aa_free_file_context(ctx); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen25100.00%2100.00%
Total25100.00%2100.00%


static int common_file_perm(const char *op, struct file *file, u32 mask) { struct aa_file_ctx *fctx = file->f_security; struct aa_profile *profile, *fprofile = aa_cred_profile(file->f_cred); int error = 0; AA_BUG(!fprofile); if (!file->f_path.mnt || !path_mediated_fs(file->f_path.dentry)) return 0; profile = __aa_current_profile(); /* revalidate access, if task is unconfined, or the cached cred * doesn't match or if the request is for more permissions than * was granted. * * Note: the test for !unconfined(fprofile) is to handle file * delegation from unconfined tasks */ if (!unconfined(profile) && !unconfined(fprofile) && ((fprofile != profile) || (mask & ~fctx->allow))) error = aa_file_perm(op, profile, file, mask); return error; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen12596.90%583.33%
David Howells43.10%116.67%
Total129100.00%6100.00%


static int apparmor_file_permission(struct file *file, int mask) { return common_file_perm(OP_FPERM, file, mask); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen24100.00%1100.00%
Total24100.00%1100.00%


static int apparmor_file_lock(struct file *file, unsigned int cmd) { u32 mask = AA_MAY_LOCK; if (cmd == F_WRLCK) mask |= MAY_WRITE; return common_file_perm(OP_FLOCK, file, mask); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen40100.00%1100.00%
Total40100.00%1100.00%


static int common_mmap(const char *op, struct file *file, unsigned long prot, unsigned long flags) { int mask = 0; if (!file || !file->f_security) return 0; if (prot & PROT_READ) mask |= MAY_READ; /* * Private mappings don't require write perms since they don't * write back to the files */ if ((prot & PROT_WRITE) && !(flags & MAP_PRIVATE)) mask |= MAY_WRITE; if (prot & PROT_EXEC) mask |= AA_EXEC_MMAP; return common_file_perm(op, file, mask); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen92100.00%2100.00%
Total92100.00%2100.00%


static int apparmor_mmap_file(struct file *file, unsigned long reqprot, unsigned long prot, unsigned long flags) { return common_mmap(OP_FMMAP, file, prot, flags); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen3497.14%150.00%
Al Viro12.86%150.00%
Total35100.00%2100.00%


static int apparmor_file_mprotect(struct vm_area_struct *vma, unsigned long reqprot, unsigned long prot) { return common_mmap(OP_FMPROT, vma->vm_file, prot, !(vma->vm_flags & VM_SHARED) ? MAP_PRIVATE : 0); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen44100.00%1100.00%
Total44100.00%1100.00%


static int apparmor_getprocattr(struct task_struct *task, char *name, char **value) { int error = -ENOENT; /* released below */ const struct cred *cred = get_task_cred(task); struct aa_task_ctx *ctx = cred_ctx(cred); struct aa_profile *profile = NULL; if (strcmp(name, "current") == 0) profile = aa_get_newest_profile(ctx->profile); else if (strcmp(name, "prev") == 0 && ctx->previous) profile = aa_get_newest_profile(ctx->previous); else if (strcmp(name, "exec") == 0 && ctx->onexec) profile = aa_get_newest_profile(ctx->onexec); else error = -EINVAL; if (profile) error = aa_getprocattr(profile, value); aa_put_profile(profile); put_cred(cred); return error; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen157100.00%4100.00%
Total157100.00%4100.00%


static int apparmor_setprocattr(const char *name, void *value, size_t size) { char *command, *largs = NULL, *args = value; size_t arg_size; int error; DEFINE_AUDIT_DATA(sa, LSM_AUDIT_DATA_NONE, OP_SETPROCATTR); if (size == 0) return -EINVAL; /* AppArmor requires that the buffer must be null terminated atm */ if (args[size - 1] != '\0') { /* null terminate */ largs = args = kmalloc(size + 1, GFP_KERNEL); if (!args) return -ENOMEM; memcpy(args, value, size); args[size] = '\0'; } error = -EINVAL; args = strim(args); command = strsep(&args, " "); if (!args) goto out; args = skip_spaces(args); if (!*args) goto out; arg_size = size - (args - (largs ? largs : (char *) value)); if (strcmp(name, "current") == 0) { if (strcmp(command, "changehat") == 0) { error = aa_setprocattr_changehat(args, arg_size, !AA_DO_TEST); } else if (strcmp(command, "permhat") == 0) { error = aa_setprocattr_changehat(args, arg_size, AA_DO_TEST); } else if (strcmp(command, "changeprofile") == 0) { error = aa_change_profile(args, !AA_ONEXEC, !AA_DO_TEST, false); } else if (strcmp(command, "permprofile") == 0) { error = aa_change_profile(args, !AA_ONEXEC, AA_DO_TEST, false); } else goto fail; } else if (strcmp(name, "exec") == 0) { if (strcmp(command, "exec") == 0) error = aa_change_profile(args, AA_ONEXEC, !AA_DO_TEST, false); else goto fail; } else /* only support the "current" and "exec" process attributes */ goto fail; if (!error) error = size; out: kfree(largs); return error; fail: aad(&sa)->profile = aa_current_profile(); aad(&sa)->info = name; aad(&sa)->error = error = -EINVAL; aa_audit_msg(AUDIT_APPARMOR_DENIED, &sa, NULL); goto out; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen35785.82%562.50%
Vegard Nossum5613.46%112.50%
Eric Paris20.48%112.50%
Stephen D. Smalley10.24%112.50%
Total416100.00%8100.00%


static int apparmor_task_setrlimit(struct task_struct *task, unsigned int resource, struct rlimit *new_rlim) { struct aa_profile *profile = __aa_current_profile(); int error = 0; if (!unconfined(profile)) error = aa_task_setrlimit(profile, task, resource, new_rlim); return error; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen5291.23%375.00%
Jiri Slaby58.77%125.00%
Total57100.00%4100.00%

static struct security_hook_list apparmor_hooks[] = { LSM_HOOK_INIT(ptrace_access_check, apparmor_ptrace_access_check), LSM_HOOK_INIT(ptrace_traceme, apparmor_ptrace_traceme), LSM_HOOK_INIT(capget, apparmor_capget), LSM_HOOK_INIT(capable, apparmor_capable), LSM_HOOK_INIT(path_link, apparmor_path_link), LSM_HOOK_INIT(path_unlink, apparmor_path_unlink), LSM_HOOK_INIT(path_symlink, apparmor_path_symlink), LSM_HOOK_INIT(path_mkdir, apparmor_path_mkdir), LSM_HOOK_INIT(path_rmdir, apparmor_path_rmdir), LSM_HOOK_INIT(path_mknod, apparmor_path_mknod), LSM_HOOK_INIT(path_rename, apparmor_path_rename), LSM_HOOK_INIT(path_chmod, apparmor_path_chmod), LSM_HOOK_INIT(path_chown, apparmor_path_chown), LSM_HOOK_INIT(path_truncate, apparmor_path_truncate), LSM_HOOK_INIT(inode_getattr, apparmor_inode_getattr), LSM_HOOK_INIT(file_open, apparmor_file_open), LSM_HOOK_INIT(file_permission, apparmor_file_permission), LSM_HOOK_INIT(file_alloc_security, apparmor_file_alloc_security), LSM_HOOK_INIT(file_free_security, apparmor_file_free_security), LSM_HOOK_INIT(mmap_file, apparmor_mmap_file), LSM_HOOK_INIT(file_mprotect, apparmor_file_mprotect), LSM_HOOK_INIT(file_lock, apparmor_file_lock), LSM_HOOK_INIT(getprocattr, apparmor_getprocattr), LSM_HOOK_INIT(setprocattr, apparmor_setprocattr), LSM_HOOK_INIT(cred_alloc_blank, apparmor_cred_alloc_blank), LSM_HOOK_INIT(cred_free, apparmor_cred_free), LSM_HOOK_INIT(cred_prepare, apparmor_cred_prepare), LSM_HOOK_INIT(cred_transfer, apparmor_cred_transfer), LSM_HOOK_INIT(bprm_set_creds, apparmor_bprm_set_creds), LSM_HOOK_INIT(bprm_committing_creds, apparmor_bprm_committing_creds), LSM_HOOK_INIT(bprm_committed_creds, apparmor_bprm_committed_creds), LSM_HOOK_INIT(bprm_secureexec, apparmor_bprm_secureexec), LSM_HOOK_INIT(task_setrlimit, apparmor_task_setrlimit), }; /* * AppArmor sysfs module parameters */ static int param_set_aabool(const char *val, const struct kernel_param *kp); static int param_get_aabool(char *buffer, const struct kernel_param *kp); #define param_check_aabool param_check_bool static const struct kernel_param_ops param_ops_aabool = { .flags = KERNEL_PARAM_OPS_FL_NOARG, .set = param_set_aabool, .get = param_get_aabool }; static int param_set_aauint(const char *val, const struct kernel_param *kp); static int param_get_aauint(char *buffer, const struct kernel_param *kp); #define param_check_aauint param_check_uint static const struct kernel_param_ops param_ops_aauint = { .set = param_set_aauint, .get = param_get_aauint }; static int param_set_aalockpolicy(const char *val, const struct kernel_param *kp); static int param_get_aalockpolicy(char *buffer, const struct kernel_param *kp); #define param_check_aalockpolicy param_check_bool static const struct kernel_param_ops param_ops_aalockpolicy = { .flags = KERNEL_PARAM_OPS_FL_NOARG, .set = param_set_aalockpolicy, .get = param_get_aalockpolicy }; static int param_set_audit(const char *val, struct kernel_param *kp); static int param_get_audit(char *buffer, struct kernel_param *kp); static int param_set_mode(const char *val, struct kernel_param *kp); static int param_get_mode(char *buffer, struct kernel_param *kp); /* Flag values, also controllable via /sys/module/apparmor/parameters * We define special types as we want to do additional mediation. */ /* AppArmor global enforcement switch - complain, enforce, kill */ enum profile_mode aa_g_profile_mode = APPARMOR_ENFORCE; module_param_call(mode, param_set_mode, param_get_mode, &aa_g_profile_mode, S_IRUSR | S_IWUSR); /* whether policy verification hashing is enabled */ bool aa_g_hash_policy = IS_ENABLED(CONFIG_SECURITY_APPARMOR_HASH_DEFAULT); #ifdef CONFIG_SECURITY_APPARMOR_HASH module_param_named(hash_policy, aa_g_hash_policy, aabool, S_IRUSR | S_IWUSR); #endif /* Debug mode */ bool aa_g_debug = IS_ENABLED(CONFIG_SECURITY_DEBUG_MESSAGES); module_param_named(debug, aa_g_debug, aabool, S_IRUSR | S_IWUSR); /* Audit mode */ enum audit_mode aa_g_audit; module_param_call(audit, param_set_audit, param_get_audit, &aa_g_audit, S_IRUSR | S_IWUSR); /* Determines if audit header is included in audited messages. This * provides more context if the audit daemon is not running */ bool aa_g_audit_header = 1; module_param_named(audit_header, aa_g_audit_header, aabool, S_IRUSR | S_IWUSR); /* lock out loading/removal of policy * TODO: add in at boot loading of policy, which is the only way to * load policy, if lock_policy is set */ bool aa_g_lock_policy; module_param_named(lock_policy, aa_g_lock_policy, aalockpolicy, S_IRUSR | S_IWUSR); /* Syscall logging mode */ bool aa_g_logsyscall; module_param_named(logsyscall, aa_g_logsyscall, aabool, S_IRUSR | S_IWUSR); /* Maximum pathname length before accesses will start getting rejected */ unsigned int aa_g_path_max = 2 * PATH_MAX; module_param_named(path_max, aa_g_path_max, aauint, S_IRUSR | S_IWUSR); /* Determines how paranoid loading of policy is and how much verification * on the loaded policy is done. * DEPRECATED: read only as strict checking of load is always done now * that none root users (user namespaces) can load policy. */ bool aa_g_paranoid_load = 1; module_param_named(paranoid_load, aa_g_paranoid_load, aabool, S_IRUGO); /* Boot time disable flag */ static bool apparmor_enabled = CONFIG_SECURITY_APPARMOR_BOOTPARAM_VALUE; module_param_named(enabled, apparmor_enabled, bool, S_IRUGO);
static int __init apparmor_enabled_setup(char *str) { unsigned long enabled; int error = kstrtoul(str, 0, &enabled); if (!error) apparmor_enabled = enabled ? 1 : 0; return 1; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen4397.73%150.00%
Jingoo Han12.27%150.00%
Total44100.00%2100.00%

__setup("apparmor=", apparmor_enabled_setup); /* set global flag turning off the ability to load policy */
static int param_set_aalockpolicy(const char *val, const struct kernel_param *kp) { if (!policy_admin_capable(NULL)) return -EPERM; return param_set_bool(val, kp); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen3697.30%375.00%
Stephen Rothwell12.70%125.00%
Total37100.00%4100.00%


static int param_get_aalockpolicy(char *buffer, const struct kernel_param *kp) { if (!policy_view_capable(NULL)) return -EPERM; if (!apparmor_enabled) return -EINVAL; return param_get_bool(buffer, kp); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen4497.78%480.00%
Stephen Rothwell12.22%120.00%
Total45100.00%5100.00%


static int param_set_aabool(const char *val, const struct kernel_param *kp) { if (!policy_admin_capable(NULL)) return -EPERM; if (!apparmor_enabled) return -EINVAL; return param_set_bool(val, kp); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen4597.83%480.00%
Stephen Rothwell12.17%120.00%
Total46100.00%5100.00%


static int param_get_aabool(char *buffer, const struct kernel_param *kp) { if (!policy_view_capable(NULL)) return -EPERM; if (!apparmor_enabled) return -EINVAL; return param_get_bool(buffer, kp); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen4497.78%480.00%
Stephen Rothwell12.22%120.00%
Total45100.00%5100.00%


static int param_set_aauint(const char *val, const struct kernel_param *kp) { if (!policy_admin_capable(NULL)) return -EPERM; if (!apparmor_enabled) return -EINVAL; return param_set_uint(val, kp); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen4597.83%480.00%
Stephen Rothwell12.17%120.00%
Total46100.00%5100.00%


static int param_get_aauint(char *buffer, const struct kernel_param *kp) { if (!policy_view_capable(NULL)) return -EPERM; if (!apparmor_enabled) return -EINVAL; return param_get_uint(buffer, kp); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen4497.78%480.00%
Stephen Rothwell12.22%120.00%
Total45100.00%5100.00%


static int param_get_audit(char *buffer, struct kernel_param *kp) { if (!policy_view_capable(NULL)) return -EPERM; if (!apparmor_enabled) return -EINVAL; return sprintf(buffer, "%s", audit_mode_names[aa_g_audit]); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen49100.00%3100.00%
Total49100.00%3100.00%


static int param_set_audit(const char *val, struct kernel_param *kp) { int i; if (!policy_admin_capable(NULL)) return -EPERM; if (!apparmor_enabled) return -EINVAL; if (!val) return -EINVAL; for (i = 0; i < AUDIT_MAX_INDEX; i++) { if (strcmp(val, audit_mode_names[i]) == 0) { aa_g_audit = i; return 0; } } return -EINVAL; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen91100.00%3100.00%
Total91100.00%3100.00%


static int param_get_mode(char *buffer, struct kernel_param *kp) { if (!policy_view_capable(NULL)) return -EPERM; if (!apparmor_enabled) return -EINVAL; return sprintf(buffer, "%s", aa_profile_mode_names[aa_g_profile_mode]); }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen49100.00%3100.00%
Total49100.00%3100.00%


static int param_set_mode(const char *val, struct kernel_param *kp) { int i; if (!policy_admin_capable(NULL)) return -EPERM; if (!apparmor_enabled) return -EINVAL; if (!val) return -EINVAL; for (i = 0; i < APPARMOR_MODE_NAMES_MAX_INDEX; i++) { if (strcmp(val, aa_profile_mode_names[i]) == 0) { aa_g_profile_mode = i; return 0; } } return -EINVAL; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen91100.00%4100.00%
Total91100.00%4100.00%

/* * AppArmor init functions */ /** * set_init_ctx - set a task context and profile on the first task. * * TODO: allow setting an alternate profile than unconfined */
static int __init set_init_ctx(void) { struct cred *cred = (struct cred *)current->real_cred; struct aa_task_ctx *ctx; ctx = aa_alloc_task_context(GFP_KERNEL); if (!ctx) return -ENOMEM; ctx->profile = aa_get_profile(root_ns->unconfined); cred_ctx(cred) = ctx; return 0; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen65100.00%3100.00%
Total65100.00%3100.00%


static void destroy_buffers(void) { u32 i, j; for_each_possible_cpu(i) { for_each_cpu_buffer(j) { kfree(per_cpu(aa_buffers, i).buf[j]); per_cpu(aa_buffers, i).buf[j] = NULL; } } }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen54100.00%1100.00%
Total54100.00%1100.00%


static int __init alloc_buffers(void) { u32 i, j; for_each_possible_cpu(i) { for_each_cpu_buffer(j) { char *buffer; if (cpu_to_node(i) > num_online_nodes()) /* fallback to kmalloc for offline nodes */ buffer = kmalloc(aa_g_path_max, GFP_KERNEL); else buffer = kmalloc_node(aa_g_path_max, GFP_KERNEL, cpu_to_node(i)); if (!buffer) { destroy_buffers(); return -ENOMEM; } per_cpu(aa_buffers, i).buf[j] = buffer; } } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen96100.00%1100.00%
Total96100.00%1100.00%

#ifdef CONFIG_SYSCTL
static int apparmor_dointvec(struct ctl_table *table, int write, void __user *buffer, size_t *lenp, loff_t *ppos) { if (!policy_admin_capable(NULL)) return -EPERM; if (!apparmor_enabled) return -EINVAL; return proc_dointvec(table, write, buffer, lenp, ppos); }

Contributors

PersonTokensPropCommitsCommitProp
Tyler Hicks62100.00%1100.00%
Total62100.00%1100.00%

static struct ctl_path apparmor_sysctl_path[] = { { .procname = "kernel", }, { } }; static struct ctl_table apparmor_sysctl_table[] = { { .procname = "unprivileged_userns_apparmor_policy", .data = &unprivileged_userns_apparmor_policy, .maxlen = sizeof(int), .mode = 0600, .proc_handler = apparmor_dointvec, }, { } };
static int __init apparmor_init_sysctl(void) { return register_sysctl_paths(apparmor_sysctl_path, apparmor_sysctl_table) ? 0 : -ENOMEM; }

Contributors

PersonTokensPropCommitsCommitProp
Tyler Hicks22100.00%1100.00%
Total22100.00%1100.00%

#else
static inline int apparmor_init_sysctl(void) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Tyler Hicks12100.00%1100.00%
Total12100.00%1100.00%

#endif /* CONFIG_SYSCTL */
static int __init apparmor_init(void) { int error; if (!apparmor_enabled || !security_module_enable("apparmor")) { aa_info_message("AppArmor disabled by boot time parameter"); apparmor_enabled = 0; return 0; } error = aa_setup_dfa_engine(); if (error) { AA_ERROR("Unable to setup dfa engine\n"); goto alloc_out; } error = aa_alloc_root_ns(); if (error) { AA_ERROR("Unable to allocate default profile namespace\n"); goto alloc_out; } error = apparmor_init_sysctl(); if (error) { AA_ERROR("Unable to register sysctls\n"); goto alloc_out; } error = alloc_buffers(); if (error) { AA_ERROR("Unable to allocate work buffers\n"); goto buffers_out; } error = set_init_ctx(); if (error) { AA_ERROR("Failed to set context on init task\n"); aa_free_root_ns(); goto buffers_out; } security_add_hooks(apparmor_hooks, ARRAY_SIZE(apparmor_hooks), "apparmor"); /* Report that AppArmor successfully initialized */ apparmor_initialized = 1; if (aa_g_profile_mode == APPARMOR_COMPLAIN) aa_info_message("AppArmor initialized: complain mode enabled"); else if (aa_g_profile_mode == APPARMOR_KILL) aa_info_message("AppArmor initialized: kill mode enabled"); else aa_info_message("AppArmor initialized"); return error; buffers_out: destroy_buffers(); alloc_out: aa_destroy_aafs(); aa_teardown_dfa_engine(); apparmor_enabled = 0; return error; }

Contributors

PersonTokensPropCommitsCommitProp
John Johansen17485.29%562.50%
Tyler Hicks199.31%112.50%
Casey Schaufler115.39%225.00%
Total204100.00%8100.00%

security_initcall(apparmor_init);

Overall Contributors

PersonTokensPropCommitsCommitProp
John Johansen384087.06%2841.18%
Tyler Hicks1814.10%11.47%
Casey Schaufler1493.38%45.88%
Stephen Rothwell631.43%11.47%
Vegard Nossum561.27%11.47%
Al Viro370.84%1623.53%
David Howells180.41%22.94%
Kees Cook130.29%11.47%
Rusty Russell90.20%22.94%
Serge E. Hallyn80.18%11.47%
Steven Rostedt80.18%11.47%
Eric Paris70.16%22.94%
Arnd Bergmann50.11%11.47%
Jiri Slaby50.11%11.47%
William Hua30.07%11.47%
Luis R. Rodriguez30.07%11.47%
Jani Nikula20.05%11.47%
Eric W. Biedermann20.05%11.47%
Jingoo Han10.02%11.47%
Stephen D. Smalley10.02%11.47%
Total4411100.00%68100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.