xfrm.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. static inline void selinux_xfrm_notify_policyload(void)
  44. {
  45. atomic_inc(&flow_cache_genid);
  46. }
  47. #else
  48. static inline int selinux_xfrm_enabled(void)
  49. {
  50. return 0;
  51. }
  52. static inline int selinux_xfrm_sock_rcv_skb(u32 isec_sid, struct sk_buff *skb,
  53. struct common_audit_data *ad)
  54. {
  55. return 0;
  56. }
  57. static inline int selinux_xfrm_postroute_last(u32 isec_sid, struct sk_buff *skb,
  58. struct common_audit_data *ad, u8 proto)
  59. {
  60. return 0;
  61. }
  62. static inline int selinux_xfrm_decode_session(struct sk_buff *skb, u32 *sid, int ckall)
  63. {
  64. *sid = SECSID_NULL;
  65. return 0;
  66. }
  67. static inline void selinux_xfrm_notify_policyload(void)
  68. {
  69. }
  70. #endif
  71. static inline void selinux_skb_xfrm_sid(struct sk_buff *skb, u32 *sid)
  72. {
  73. int err = selinux_xfrm_decode_session(skb, sid, 0);
  74. BUG_ON(err);
  75. }
  76. #endif /* _SELINUX_XFRM_H_ */