diff options
| author | Miklos Szeredi <mszeredi@suse.cz> | 2008-07-03 14:56:05 -0400 |
|---|---|---|
| committer | James Morris <jmorris@namei.org> | 2008-07-14 01:03:04 -0400 |
| commit | 5915eb53861c5776cfec33ca4fcc1fd20d66dd27 (patch) | |
| tree | d4895b96dfdc227a3abe2f13c093b6f53ac3aef8 /security | |
| parent | b478a9f9889c81e88077d1495daadee64c0af541 (diff) | |
security: remove dummy module
Remove the dummy module and make the "capability" module the default.
Compile and boot tested.
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Acked-by: Serge Hallyn <serue@us.ibm.com>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security')
| -rw-r--r-- | security/Kconfig | 10 | ||||
| -rw-r--r-- | security/Makefile | 11 | ||||
| -rw-r--r-- | security/capability.c | 1050 | ||||
| -rw-r--r-- | security/dummy.c | 1250 | ||||
| -rw-r--r-- | security/security.c | 15 |
5 files changed, 996 insertions, 1340 deletions
diff --git a/security/Kconfig b/security/Kconfig index 49b51f964897..77def9f9f5f5 100644 --- a/security/Kconfig +++ b/security/Kconfig | |||
| @@ -73,17 +73,9 @@ config SECURITY_NETWORK_XFRM | |||
| 73 | IPSec. | 73 | IPSec. |
| 74 | If you are unsure how to answer this question, answer N. | 74 | If you are unsure how to answer this question, answer N. |
| 75 | 75 | ||
| 76 | config SECURITY_CAPABILITIES | ||
| 77 | bool "Default Linux Capabilities" | ||
| 78 | depends on SECURITY | ||
| 79 | default y | ||
| 80 | help | ||
| 81 | This enables the "default" Linux capabilities functionality. | ||
| 82 | If you are unsure how to answer this question, answer Y. | ||
| 83 | |||
| 84 | config SECURITY_FILE_CAPABILITIES | 76 | config SECURITY_FILE_CAPABILITIES |
| 85 | bool "File POSIX Capabilities (EXPERIMENTAL)" | 77 | bool "File POSIX Capabilities (EXPERIMENTAL)" |
| 86 | depends on (SECURITY=n || SECURITY_CAPABILITIES!=n) && EXPERIMENTAL | 78 | depends on SECURITY && EXPERIMENTAL |
| 87 | default n | 79 | default n |
| 88 | help | 80 | help |
| 89 | This enables filesystem capabilities, allowing you to give | 81 | This enables filesystem capabilities, allowing you to give |
diff --git a/security/Makefile b/security/Makefile index 7ef1107a7287..f65426099aa6 100644 --- a/security/Makefile +++ b/security/Makefile | |||
| @@ -6,16 +6,13 @@ obj-$(CONFIG_KEYS) += keys/ | |||
| 6 | subdir-$(CONFIG_SECURITY_SELINUX) += selinux | 6 | subdir-$(CONFIG_SECURITY_SELINUX) += selinux |
| 7 | subdir-$(CONFIG_SECURITY_SMACK) += smack | 7 | subdir-$(CONFIG_SECURITY_SMACK) += smack |
| 8 | 8 | ||
| 9 | # if we don't select a security model, use the default capabilities | 9 | # always enable default capabilities |
| 10 | ifneq ($(CONFIG_SECURITY),y) | ||
| 11 | obj-y += commoncap.o | 10 | obj-y += commoncap.o |
| 12 | endif | ||
| 13 | 11 | ||
| 14 | # Object file lists | 12 | # Object file lists |
| 15 | obj-$(CONFIG_SECURITY) += security.o dummy.o inode.o | 13 | obj-$(CONFIG_SECURITY) += security.o capability.o inode.o |
| 16 | # Must precede capability.o in order to stack properly. | 14 | # Must precede capability.o in order to stack properly. |
| 17 | obj-$(CONFIG_SECURITY_SELINUX) += selinux/built-in.o | 15 | obj-$(CONFIG_SECURITY_SELINUX) += selinux/built-in.o |
| 18 | obj-$(CONFIG_SECURITY_SMACK) += commoncap.o smack/built-in.o | 16 | obj-$(CONFIG_SECURITY_SMACK) += smack/built-in.o |
| 19 | obj-$(CONFIG_SECURITY_CAPABILITIES) += commoncap.o capability.o | 17 | obj-$(CONFIG_SECURITY_ROOTPLUG) += root_plug.o |
| 20 | obj-$(CONFIG_SECURITY_ROOTPLUG) += commoncap.o root_plug.o | ||
| 21 | obj-$(CONFIG_CGROUP_DEVICE) += device_cgroup.o | 18 | obj-$(CONFIG_CGROUP_DEVICE) += device_cgroup.o |
diff --git a/security/capability.c b/security/capability.c index 38ac54e3aed1..6e0671c82018 100644 --- a/security/capability.c +++ b/security/capability.c | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * Capabilities Linux Security Module | 2 | * Capabilities Linux Security Module |
| 3 | * | 3 | * |
| 4 | * This is the default security module in case no other module is loaded. | ||
| 5 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | 6 | * 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 | 7 | * 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 | 8 | * the Free Software Foundation; either version 2 of the License, or |
| @@ -8,75 +10,995 @@ | |||
| 8 | * | 10 | * |
| 9 | */ | 11 | */ |
| 10 | 12 | ||
| 11 | #include <linux/init.h> | ||
| 12 | #include <linux/kernel.h> | ||
| 13 | #include <linux/security.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> | ||
| 19 | #include <linux/skbuff.h> | ||
| 20 | #include <linux/netlink.h> | ||
| 21 | #include <linux/ptrace.h> | ||
| 22 | #include <linux/moduleparam.h> | ||
| 23 | |||
| 24 | static 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 | .inode_need_killpriv = cap_inode_need_killpriv, | ||
| 41 | .inode_killpriv = cap_inode_killpriv, | ||
| 42 | |||
| 43 | .task_setscheduler = cap_task_setscheduler, | ||
| 44 | .task_setioprio = cap_task_setioprio, | ||
| 45 | .task_setnice = cap_task_setnice, | ||
| 46 | .task_post_setuid = cap_task_post_setuid, | ||
| 47 | .task_prctl = cap_task_prctl, | ||
| 48 | .task_reparent_to_init = cap_task_reparent_to_init, | ||
| 49 | |||
| 50 | .syslog = cap_syslog, | ||
| 51 | |||
| 52 | .vm_enough_memory = cap_vm_enough_memory, | ||
| 53 | }; | ||
| 54 | 14 | ||
| 55 | /* flag to keep track of how we were registered */ | 15 | static int cap_acct(struct file *file) |
| 56 | static int secondary; | 16 | { |
| 17 | return 0; | ||
| 18 | } | ||
| 19 | |||
| 20 | static int cap_sysctl(ctl_table *table, int op) | ||
| 21 | { | ||
| 22 | return 0; | ||
| 23 | } | ||
| 24 | |||
| 25 | static int cap_quotactl(int cmds, int type, int id, struct super_block *sb) | ||
| 26 | { | ||
| 27 | return 0; | ||
| 28 | } | ||
| 29 | |||
| 30 | static int cap_quota_on(struct dentry *dentry) | ||
| 31 | { | ||
| 32 | return 0; | ||
| 33 | } | ||
| 34 | |||
| 35 | static int cap_bprm_alloc_security(struct linux_binprm *bprm) | ||
| 36 | { | ||
| 37 | return 0; | ||
| 38 | } | ||
| 39 | |||
| 40 | static void cap_bprm_free_security(struct linux_binprm *bprm) | ||
| 41 | { | ||
| 42 | } | ||
| 43 | |||
| 44 | static void cap_bprm_post_apply_creds(struct linux_binprm *bprm) | ||
| 45 | { | ||
| 46 | } | ||
| 47 | |||
| 48 | static int cap_bprm_check_security(struct linux_binprm *bprm) | ||
| 49 | { | ||
| 50 | return 0; | ||
| 51 | } | ||
| 52 | |||
| 53 | static int cap_sb_alloc_security(struct super_block *sb) | ||
| 54 | { | ||
| 55 | return 0; | ||
| 56 | } | ||
| 57 | |||
| 58 | static void cap_sb_free_security(struct super_block *sb) | ||
| 59 | { | ||
| 60 | } | ||
| 61 | |||
| 62 | static int cap_sb_copy_data(char *orig, char *copy) | ||
| 63 | { | ||
| 64 | return 0; | ||
| 65 | } | ||
| 66 | |||
| 67 | static int cap_sb_kern_mount(struct super_block *sb, void *data) | ||
| 68 | { | ||
| 69 | return 0; | ||
| 70 | } | ||
| 71 | |||
| 72 | static int cap_sb_show_options(struct seq_file *m, struct super_block *sb) | ||
| 73 | { | ||
| 74 | return 0; | ||
| 75 | } | ||
| 76 | |||
| 77 | static int cap_sb_statfs(struct dentry *dentry) | ||
| 78 | { | ||
| 79 | return 0; | ||
| 80 | } | ||
| 81 | |||
| 82 | static int cap_sb_mount(char *dev_name, struct path *path, char *type, | ||
| 83 | unsigned long flags, void *data) | ||
| 84 | { | ||
| 85 | return 0; | ||
| 86 | } | ||
| 87 | |||
| 88 | static int cap_sb_check_sb(struct vfsmount *mnt, struct path *path) | ||
| 89 | { | ||
| 90 | return 0; | ||
| 91 | } | ||
| 92 | |||
| 93 | static int cap_sb_umount(struct vfsmount *mnt, int flags) | ||
| 94 | { | ||
| 95 | return 0; | ||
| 96 | } | ||
