diff options
| author | Ingo Molnar <mingo@elte.hu> | 2008-10-12 09:17:14 -0400 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2008-10-12 09:17:14 -0400 |
| commit | 620f2efcdc5c7a2db68da41bc3df3cf9a718024e (patch) | |
| tree | b1a0411e2588953777d0b10245b12044c33cef54 /include/linux/security.h | |
| parent | 04944b793e18ece23f63c0252646b310c1845940 (diff) | |
| parent | fd048088306656824958e7783ffcee27e241b361 (diff) | |
Merge branch 'linus' into x86/xsave
Diffstat (limited to 'include/linux/security.h')
| -rw-r--r-- | include/linux/security.h | 54 |
1 files changed, 30 insertions, 24 deletions
diff --git a/include/linux/security.h b/include/linux/security.h index 80c4d002864c..f5c4a51eb42e 100644 --- a/include/linux/security.h +++ b/include/linux/security.h | |||
| @@ -1560,11 +1560,6 @@ struct security_operations { | |||
| 1560 | extern int security_init(void); | 1560 | extern int security_init(void); |
| 1561 | extern int security_module_enable(struct security_operations *ops); | 1561 | extern int security_module_enable(struct security_operations *ops); |
| 1562 | extern int register_security(struct security_operations *ops); | 1562 | extern int register_security(struct security_operations *ops); |
| 1563 | extern struct dentry *securityfs_create_file(const char *name, mode_t mode, | ||
| 1564 | struct dentry *parent, void *data, | ||
| 1565 | const struct file_operations *fops); | ||
| 1566 | extern struct dentry *securityfs_create_dir(const char *name, struct dentry *parent); | ||
| 1567 | extern void securityfs_remove(struct dentry *dentry); | ||
| 1568 | 1563 | ||
| 1569 | /* Security operations */ | 1564 | /* Security operations */ |
| 1570 | int security_ptrace_may_access(struct task_struct *child, unsigned int mode); | 1565 | int security_ptrace_may_access(struct task_struct *child, unsigned int mode); |
| @@ -2424,25 +2419,6 @@ static inline int security_netlink_recv(struct sk_buff *skb, int cap) | |||
| 2424 | return cap_netlink_recv(skb, cap); | 2419 | return cap_netlink_recv(skb, cap); |
| 2425 | } | 2420 | } |
| 2426 | 2421 | ||
| 2427 | static inline struct dentry *securityfs_create_dir(const char *name, | ||
| 2428 | struct dentry *parent) | ||
| 2429 | { | ||
| 2430 | return ERR_PTR(-ENODEV); | ||
| 2431 | } | ||
| 2432 | |||
| 2433 | static inline struct dentry *securityfs_create_file(const char *name, | ||
| 2434 | mode_t mode, | ||
| 2435 | struct dentry *parent, | ||
| 2436 | void *data, | ||
| 2437 | const struct file_operations *fops) | ||
| 2438 | { | ||
| 2439 | return ERR_PTR(-ENODEV); | ||
| 2440 | } | ||
| 2441 | |||
| 2442 | static inline void securityfs_remove(struct dentry *dentry) | ||
| 2443 | { | ||
| 2444 | } | ||
| 2445 | |||
| 2446 | static inline int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen) | 2422 | static inline int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen) |
| 2447 | { | 2423 | { |
| 2448 | return -EOPNOTSUPP; | 2424 | return -EOPNOTSUPP; |
| @@ -2806,5 +2782,35 @@ static inline void security_audit_rule_free(void *lsmrule) | |||
| 2806 | #endif /* CONFIG_SECURITY */ | 2782 | #endif /* CONFIG_SECURITY */ |
| 2807 | #endif /* CONFIG_AUDIT */ | 2783 | #endif /* CONFIG_AUDIT */ |
| 2808 | 2784 | ||
| 2785 | #ifdef CONFIG_SECURITYFS | ||
| 2786 | |||
| 2787 | extern struct dentry *securityfs_create_file(const char *name, mode_t mode, | ||
| 2788 | struct dentry *parent, void *data, | ||
| 2789 | const struct file_operations *fops); | ||
| 2790 | extern struct dentry *securityfs_create_dir(const char *name, struct dentry *parent); | ||
| 2791 | extern void securityfs_remove(struct dentry *dentry); | ||
| 2792 | |||
| 2793 | #else /* CONFIG_SECURITYFS */ | ||
| 2794 | |||
| 2795 | static inline struct dentry *securityfs_create_dir(const char *name, | ||
| 2796 | struct dentry *parent) | ||
| 2797 | { | ||
| 2798 | return ERR_PTR(-ENODEV); | ||
| 2799 | } | ||
| 2800 | |||
| 2801 | static inline struct dentry *securityfs_create_file(const char *name, | ||
| 2802 | mode_t mode, | ||
| 2803 | struct dentry *parent, | ||
| 2804 | void *data, | ||
| 2805 | const struct file_operations *fops) | ||
| 2806 | { | ||
| 2807 | return ERR_PTR(-ENODEV); | ||
| 2808 | } | ||
| 2809 | |||
| 2810 | static inline void securityfs_remove(struct dentry *dentry) | ||
| 2811 | {} | ||
| 2812 | |||
| 2813 | #endif | ||
| 2814 | |||
| 2809 | #endif /* ! __LINUX_SECURITY_H */ | 2815 | #endif /* ! __LINUX_SECURITY_H */ |
| 2810 | 2816 | ||
