security: Convert LSM into a static interface
[GitHub/LineageOS/android_kernel_motorola_exynos9610.git] / security / capability.c
CommitLineData
1da177e4
LT
1/*
2 * Capabilities Linux Security Module
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 */
10
1da177e4
LT
11#include <linux/init.h>
12#include <linux/kernel.h>
13#include <linux/security.h>
14#include <linux/file.h>
15#include <linux/mm.h>
16#include <linux/mman.h>
17#include <linux/pagemap.h>
18#include <linux/swap.h>
1da177e4
LT
19#include <linux/skbuff.h>
20#include <linux/netlink.h>
21#include <linux/ptrace.h>
22#include <linux/moduleparam.h>
23
24static struct security_operations capability_ops = {
25 .ptrace = cap_ptrace,
26 .capget = cap_capget,
27 .capset_check = cap_capset_check,
28 .capset_set = cap_capset_set,
29 .capable = cap_capable,
30 .settime = cap_settime,
31 .netlink_send = cap_netlink_send,
32 .netlink_recv = cap_netlink_recv,
33
34 .bprm_apply_creds = cap_bprm_apply_creds,
35 .bprm_set_security = cap_bprm_set_security,
36 .bprm_secureexec = cap_bprm_secureexec,
37
38 .inode_setxattr = cap_inode_setxattr,
39 .inode_removexattr = cap_inode_removexattr,
40
41 .task_post_setuid = cap_task_post_setuid,
42 .task_reparent_to_init = cap_task_reparent_to_init,
43
44 .syslog = cap_syslog,
45
46 .vm_enough_memory = cap_vm_enough_memory,
47};
48
1da177e4
LT
49/* flag to keep track of how we were registered */
50static int secondary;
51
52static int capability_disable;
53module_param_named(disable, capability_disable, int, 0);
1da177e4
LT
54
55static int __init capability_init (void)
56{
57 if (capability_disable) {
58 printk(KERN_INFO "Capabilities disabled at initialization\n");
59 return 0;
60 }
61 /* register ourselves with the security framework */
62 if (register_security (&capability_ops)) {
63 /* try registering with primary module */
367cb704 64 if (mod_reg_security (KBUILD_MODNAME, &capability_ops)) {
1da177e4
LT
65 printk (KERN_INFO "Failure registering capabilities "
66 "with primary security module.\n");
67 return -EINVAL;
68 }
69 secondary = 1;
70 }
71 printk (KERN_INFO "Capability LSM initialized%s\n",
72 secondary ? " as secondary" : "");
73 return 0;
74}
75
1da177e4 76security_initcall (capability_init);