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 | |
Venkat Yekkirala | cb969f0 | 2006-07-24 23:32:20 -0700 | [diff] [blame] | 10 | int selinux_xfrm_policy_alloc(struct xfrm_policy *xp, |
Venkat Yekkirala | c1a856c | 2006-11-08 17:03:44 -0600 | [diff] [blame] | 11 | struct xfrm_user_sec_ctx *sec_ctx); |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 12 | int selinux_xfrm_policy_clone(struct xfrm_policy *old, struct xfrm_policy *new); |
| 13 | void selinux_xfrm_policy_free(struct xfrm_policy *xp); |
Catherine Zhang | c8c05a8 | 2006-06-08 23:39:49 -0700 | [diff] [blame] | 14 | int selinux_xfrm_policy_delete(struct xfrm_policy *xp); |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 15 | int selinux_xfrm_state_alloc(struct xfrm_state *x, |
Venkat Yekkirala | c1a856c | 2006-11-08 17:03:44 -0600 | [diff] [blame] | 16 | struct xfrm_user_sec_ctx *sec_ctx, u32 secid); |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 17 | void selinux_xfrm_state_free(struct xfrm_state *x); |
Catherine Zhang | c8c05a8 | 2006-06-08 23:39:49 -0700 | [diff] [blame] | 18 | int selinux_xfrm_state_delete(struct xfrm_state *x); |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 19 | int selinux_xfrm_policy_lookup(struct xfrm_policy *xp, u32 fl_secid, u8 dir); |
| 20 | int selinux_xfrm_state_pol_flow_match(struct xfrm_state *x, |
| 21 | struct xfrm_policy *xp, struct flowi *fl); |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 22 | |
| 23 | /* |
| 24 | * Extract the security blob from the sock (it's actually on the socket) |
| 25 | */ |
| 26 | static inline struct inode_security_struct *get_sock_isec(struct sock *sk) |
| 27 | { |
| 28 | if (!sk->sk_socket) |
| 29 | return NULL; |
| 30 | |
| 31 | return SOCK_INODE(sk->sk_socket)->i_security; |
| 32 | } |
| 33 | |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 34 | #ifdef CONFIG_SECURITY_NETWORK_XFRM |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 35 | int selinux_xfrm_sock_rcv_skb(u32 sid, struct sk_buff *skb, |
| 36 | struct avc_audit_data *ad); |
| 37 | int selinux_xfrm_postroute_last(u32 isec_sid, struct sk_buff *skb, |
Venkat Yekkirala | 67f83cb | 2006-11-08 17:04:26 -0600 | [diff] [blame] | 38 | struct avc_audit_data *ad, u8 proto); |
Venkat Yekkirala | a51c64f | 2006-07-27 22:01:34 -0700 | [diff] [blame] | 39 | 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] | 40 | |
| 41 | static inline void selinux_xfrm_notify_policyload(void) |
| 42 | { |
| 43 | atomic_inc(&flow_cache_genid); |
| 44 | } |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 45 | #else |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 46 | static inline int selinux_xfrm_sock_rcv_skb(u32 isec_sid, struct sk_buff *skb, |
| 47 | struct avc_audit_data *ad) |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 48 | { |
| 49 | return 0; |
| 50 | } |
| 51 | |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 52 | static inline int selinux_xfrm_postroute_last(u32 isec_sid, struct sk_buff *skb, |
Venkat Yekkirala | 67f83cb | 2006-11-08 17:04:26 -0600 | [diff] [blame] | 53 | struct avc_audit_data *ad, u8 proto) |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 54 | { |
James Morris | 4e5ab4c | 2006-06-09 00:33:33 -0700 | [diff] [blame] | 55 | return 0; |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 56 | } |
Catherine Zhang | e6f5071 | 2006-03-20 22:49:00 -0800 | [diff] [blame] | 57 | |
Venkat Yekkirala | a51c64f | 2006-07-27 22:01:34 -0700 | [diff] [blame] | 58 | static inline int selinux_xfrm_decode_session(struct sk_buff *skb, u32 *sid, int ckall) |
| 59 | { |
| 60 | *sid = SECSID_NULL; |
| 61 | return 0; |
| 62 | } |
Venkat Yekkirala | 342a0cf | 2007-01-26 19:03:48 -0800 | [diff] [blame] | 63 | |
| 64 | static inline void selinux_xfrm_notify_policyload(void) |
| 65 | { |
| 66 | } |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 67 | #endif |
| 68 | |
Venkat Yekkirala | 6b87769 | 2006-11-08 17:04:09 -0600 | [diff] [blame] | 69 | static inline void selinux_skb_xfrm_sid(struct sk_buff *skb, u32 *sid) |
| 70 | { |
| 71 | int err = selinux_xfrm_decode_session(skb, sid, 0); |
| 72 | BUG_ON(err); |
| 73 | } |
| 74 | |
Trent Jaeger | d28d1e0 | 2005-12-13 23:12:40 -0800 | [diff] [blame] | 75 | #endif /* _SELINUX_XFRM_H_ */ |