Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 1 | /* |
| 2 | * SELinux support for the XFRM LSM hooks |
| 3 | * |
| 4 | * Author : Trent Jaeger, <jaegert@us.ibm.com> |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 5 | * Updated : Venkat Yekkirala, <vyekkirala@TrustedCS.com> |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 6 | */ |
| 7 | #ifndef _SELINUX_XFRM_H_ |
| 8 | #define _SELINUX_XFRM_H_ |
| 9 | |
Paul Moore | 03e1ad7 | 2008-04-12 19:07:52 -0700 | [diff] [blame] | 10 | int selinux_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp, |
| 11 | struct xfrm_user_sec_ctx *sec_ctx); |
| 12 | int selinux_xfrm_policy_clone(struct xfrm_sec_ctx *old_ctx, |
| 13 | struct xfrm_sec_ctx **new_ctxp); |
| 14 | void selinux_xfrm_policy_free(struct xfrm_sec_ctx *ctx); |
| 15 | int selinux_xfrm_policy_delete(struct xfrm_sec_ctx *ctx); |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 16 | int selinux_xfrm_state_alloc(struct xfrm_state *x, |
Venkat Yekkirala | c1a856c | 2006-11-08 17:03:44 -0600 | [diff] [blame] | 17 | struct xfrm_user_sec_ctx *sec_ctx, u32 secid); |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 18 | void selinux_xfrm_state_free(struct xfrm_state *x); |
Catherine Zhang | c8c05a8 | 2006-06-08 23:39:49 -0700 | [diff] [blame] | 19 | int selinux_xfrm_state_delete(struct xfrm_state *x); |
Paul Moore | 03e1ad7 | 2008-04-12 19:07:52 -0700 | [diff] [blame] | 20 | int selinux_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir); |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 21 | int selinux_xfrm_state_pol_flow_match(struct xfrm_state *x, |
David S. Miller | e33f770 | 2011-02-22 18:13:15 -0800 | [diff] [blame] | 22 | struct xfrm_policy *xp, const struct flowi *fl); |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 23 | |
| 24 | /* |
| 25 | * Extract the security blob from the sock (it's actually on the socket) |
| 26 | */ |
| 27 | static inline struct inode_security_struct *get_sock_isec(struct sock *sk) |
| 28 | { |
| 29 | if (!sk->sk_socket) |
| 30 | return NULL; |
| 31 | |
| 32 | return SOCK_INODE(sk->sk_socket)->i_security; |
| 33 | } |
| 34 | |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 35 | #ifdef CONFIG_SECURITY_NETWORK_XFRM |
Paul Moore | d621d35 | 2008-01-29 08:43:36 -0500 | [diff] [blame] | 36 | extern atomic_t selinux_xfrm_refcount; |
| 37 | |
| 38 | static inline int selinux_xfrm_enabled(void) |
| 39 | { |
| 40 | return (atomic_read(&selinux_xfrm_refcount) > 0); |
| 41 | } |
| 42 | |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 43 | int selinux_xfrm_sock_rcv_skb(u32 sid, struct sk_buff *skb, |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 44 | struct common_audit_data *ad); |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 45 | int selinux_xfrm_postroute_last(u32 isec_sid, struct sk_buff *skb, |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 46 | struct common_audit_data *ad, u8 proto); |
Venkat Yekkirala | a51c64f | 2006-07-27 22:01:34 -0700 | [diff] [blame] | 47 | int selinux_xfrm_decode_session(struct sk_buff *skb, u32 *sid, int ckall); |
Venkat Yekkirala | 342a0cf | 2007-01-26 19:03:48 -0800 | [diff] [blame] | 48 | |
| 49 | static inline void selinux_xfrm_notify_policyload(void) |
| 50 | { |
| 51 | atomic_inc(&flow_cache_genid); |
| 52 | } |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 53 | #else |
Paul Moore | d621d35 | 2008-01-29 08:43:36 -0500 | [diff] [blame] | 54 | static inline int selinux_xfrm_enabled(void) |
| 55 | { |
| 56 | return 0; |
| 57 | } |
| 58 | |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 59 | static inline int selinux_xfrm_sock_rcv_skb(u32 isec_sid, struct sk_buff *skb, |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 60 | struct common_audit_data *ad) |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 61 | { |
| 62 | return 0; |
| 63 | } |
| 64 | |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 65 | static inline int selinux_xfrm_postroute_last(u32 isec_sid, struct sk_buff *skb, |
Thomas Liu | 2bf4969 | 2009-07-14 12:14:09 -0400 | [diff] [blame] | 66 | struct common_audit_data *ad, u8 proto) |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 67 | { |
James Morris | 4e5ab4c | 2006-06-09 00:33:33 -0700 | [diff] [blame] | 68 | return 0; |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 69 | } |
Catherine Zhang | e6f5071 | 2006-03-20 22:49:00 -0800 | [diff] [blame] | 70 | |
Venkat Yekkirala | a51c64f | 2006-07-27 22:01:34 -0700 | [diff] [blame] | 71 | static inline int selinux_xfrm_decode_session(struct sk_buff *skb, u32 *sid, int ckall) |
| 72 | { |
| 73 | *sid = SECSID_NULL; |
| 74 | return 0; |
| 75 | } |
Venkat Yekkirala | 342a0cf | 2007-01-26 19:03:48 -0800 | [diff] [blame] | 76 | |
| 77 | static inline void selinux_xfrm_notify_policyload(void) |
| 78 | { |
| 79 | } |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 80 | #endif |
| 81 | |
Venkat Yekkirala | 6b87769 | 2006-11-08 17:04:09 -0600 | [diff] [blame] | 82 | static inline void selinux_skb_xfrm_sid(struct sk_buff *skb, u32 *sid) |
| 83 | { |
| 84 | int err = selinux_xfrm_decode_session(skb, sid, 0); |
| 85 | BUG_ON(err); |
| 86 | } |
| 87 | |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 88 | #endif /* _SELINUX_XFRM_H_ */ |