xfrm.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * SELinux support for the XFRM LSM hooks
  3. *
  4. * Author : Trent Jaeger, <jaegert@us.ibm.com>
  5. * Updated : Venkat Yekkirala, <vyekkirala@TrustedCS.com>
  6. */
  7. #ifndef _SELINUX_XFRM_H_
  8. #define _SELINUX_XFRM_H_
  9. #include <net/flow.h>
  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);
  16. int selinux_xfrm_state_alloc(struct xfrm_state *x,
  17. struct xfrm_user_sec_ctx *sec_ctx, u32 secid);
  18. void selinux_xfrm_state_free(struct xfrm_state *x);
  19. int selinux_xfrm_state_delete(struct xfrm_state *x);
  20. int selinux_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir);
  21. int selinux_xfrm_state_pol_flow_match(struct xfrm_state *x,
  22. struct xfrm_policy *xp, const struct flowi *fl);
  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. return SOCK_INODE(sk->sk_socket)->i_security;
  31. }
  32. #ifdef CONFIG_SECURITY_NETWORK_XFRM
  33. extern atomic_t selinux_xfrm_refcount;
  34. static inline int selinux_xfrm_enabled(void)
  35. {
  36. return (atomic_read(&selinux_xfrm_refcount) > 0);
  37. }
  38. int selinux_xfrm_sock_rcv_skb(u32 sid, struct sk_buff *skb,
  39. struct common_audit_data *ad);
  40. int selinux_xfrm_postroute_last(u32 isec_sid, struct sk_buff *skb,
  41. struct common_audit_data *ad, u8 proto);
  42. int selinux_xfrm_decode_session(struct sk_buff *skb, u32 *sid, int ckall);
  43. int selinux_xfrm_skb_sid(struct sk_buff *skb, u32 *sid);
  44. static inline void selinux_xfrm_notify_policyload(void)
  45. {
  46. atomic_inc(&flow_cache_genid);
  47. }
  48. #else
  49. static inline int selinux_xfrm_enabled(void)
  50. {
  51. return 0;
  52. }
  53. static inline int selinux_xfrm_sock_rcv_skb(u32 isec_sid, struct sk_buff *skb,
  54. struct common_audit_data *ad)
  55. {
  56. return 0;
  57. }
  58. static inline int selinux_xfrm_postroute_last(u32 isec_sid, struct sk_buff *skb,
  59. struct common_audit_data *ad, u8 proto)
  60. {
  61. return 0;
  62. }
  63. static inline int selinux_xfrm_decode_session(struct sk_buff *skb, u32 *sid, int ckall)
  64. {
  65. *sid = SECSID_NULL;
  66. return 0;
  67. }
  68. static inline void selinux_xfrm_notify_policyload(void)
  69. {
  70. }
  71. static inline int selinux_xfrm_skb_sid(struct sk_buff *skb, u32 *sid)
  72. {
  73. *sid = SECSID_NULL;
  74. return 0;
  75. }
  76. #endif
  77. #endif /* _SELINUX_XFRM_H_ */