diff options
Diffstat (limited to 'security/capability.c')
-rw-r--r-- | security/capability.c | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/security/capability.c b/security/capability.c index efeb6d9e0e6a..185804f99ad1 100644 --- a/security/capability.c +++ b/security/capability.c | |||
@@ -32,24 +32,19 @@ static int cap_quota_on(struct dentry *dentry) | |||
32 | return 0; | 32 | return 0; |
33 | } | 33 | } |
34 | 34 | ||
35 | static int cap_bprm_alloc_security(struct linux_binprm *bprm) | 35 | static int cap_bprm_check_security (struct linux_binprm *bprm) |
36 | { | 36 | { |
37 | return 0; | 37 | return 0; |
38 | } | 38 | } |
39 | 39 | ||
40 | static void cap_bprm_free_security(struct linux_binprm *bprm) | 40 | static void cap_bprm_committing_creds(struct linux_binprm *bprm) |
41 | { | 41 | { |
42 | } | 42 | } |
43 | 43 | ||
44 | static void cap_bprm_post_apply_creds(struct linux_binprm *bprm) | 44 | static void cap_bprm_committed_creds(struct linux_binprm *bprm) |
45 | { | 45 | { |
46 | } | 46 | } |
47 | 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) | 48 | static int cap_sb_alloc_security(struct super_block *sb) |
54 | { | 49 | { |
55 | return 0; | 50 | return 0; |
@@ -827,11 +822,9 @@ void security_fixup_ops(struct security_operations *ops) | |||
827 | set_to_cap_if_null(ops, syslog); | 822 | set_to_cap_if_null(ops, syslog); |
828 | set_to_cap_if_null(ops, settime); | 823 | set_to_cap_if_null(ops, settime); |
829 | set_to_cap_if_null(ops, vm_enough_memory); | 824 | set_to_cap_if_null(ops, vm_enough_memory); |
830 | set_to_cap_if_null(ops, bprm_alloc_security); | 825 | set_to_cap_if_null(ops, bprm_set_creds); |
831 | set_to_cap_if_null(ops, bprm_free_security); | 826 | set_to_cap_if_null(ops, bprm_committing_creds); |
832 | set_to_cap_if_null(ops, bprm_apply_creds); | 827 | set_to_cap_if_null(ops, bprm_committed_creds); |
833 | set_to_cap_if_null(ops, bprm_post_apply_creds); | ||
834 | set_to_cap_if_null(ops, bprm_set_security); | ||
835 | set_to_cap_if_null(ops, bprm_check_security); | 828 | set_to_cap_if_null(ops, bprm_check_security); |
836 | set_to_cap_if_null(ops, bprm_secureexec); | 829 | set_to_cap_if_null(ops, bprm_secureexec); |
837 | set_to_cap_if_null(ops, sb_alloc_security); | 830 | set_to_cap_if_null(ops, sb_alloc_security); |