2008-11-26 04:14:31 +03:00
# ifndef __NETNS_XFRM_H
# define __NETNS_XFRM_H
2008-11-26 04:16:11 +03:00
# include <linux/list.h>
2008-11-26 04:21:01 +03:00
# include <linux/wait.h>
2008-11-26 04:19:07 +03:00
# include <linux/workqueue.h>
2008-11-26 04:23:26 +03:00
# include <linux/xfrm.h>
2010-01-25 09:47:53 +03:00
# include <net/dst_ops.h>
2008-11-26 04:16:11 +03:00
2008-11-26 05:00:48 +03:00
struct ctl_table_header ;
2008-11-26 04:23:48 +03:00
struct xfrm_policy_hash {
struct hlist_head * table ;
unsigned int hmask ;
} ;
2008-11-26 04:14:31 +03:00
struct netns_xfrm {
2008-11-26 04:16:11 +03:00
struct list_head state_all ;
2008-11-26 04:16:58 +03:00
/*
* Hash table to find appropriate SA towards given target ( endpoint of
* tunnel or destination of transport mode ) allowed by selector .
*
* Main use is finding SA after policy selected tunnel or transport
* mode . Also , it can be used by ah / esp icmp error handler to find
* offending SA .
*/
struct hlist_head * state_bydst ;
2008-11-26 04:17:24 +03:00
struct hlist_head * state_bysrc ;
2008-11-26 04:17:47 +03:00
struct hlist_head * state_byspi ;
2008-11-26 04:18:12 +03:00
unsigned int state_hmask ;
2008-11-26 04:18:39 +03:00
unsigned int state_num ;
2008-11-26 04:19:07 +03:00
struct work_struct state_hash_work ;
2008-11-26 04:20:11 +03:00
struct hlist_head state_gc_list ;
2008-11-26 04:20:36 +03:00
struct work_struct state_gc_work ;
2008-11-26 04:21:01 +03:00
wait_queue_head_t km_waitq ;
2008-11-26 04:22:11 +03:00
struct list_head policy_all ;
2008-11-26 04:22:35 +03:00
struct hlist_head * policy_byidx ;
2008-11-26 04:22:58 +03:00
unsigned int policy_idx_hmask ;
2008-11-26 04:23:26 +03:00
struct hlist_head policy_inexact [ XFRM_POLICY_MAX * 2 ] ;
2008-11-26 04:23:48 +03:00
struct xfrm_policy_hash policy_bydst [ XFRM_POLICY_MAX * 2 ] ;
2008-11-26 04:24:15 +03:00
unsigned int policy_count [ XFRM_POLICY_MAX * 2 ] ;
2008-11-26 04:28:57 +03:00
struct work_struct policy_hash_work ;
2008-11-26 04:38:20 +03:00
2010-01-25 09:47:53 +03:00
2008-11-26 04:38:20 +03:00
struct sock * nlsk ;
2009-12-03 05:29:05 +03:00
struct sock * nlsk_stash ;
2008-11-26 05:00:48 +03:00
u32 sysctl_aevent_etime ;
u32 sysctl_aevent_rseqth ;
int sysctl_larval_drop ;
u32 sysctl_acq_expires ;
# ifdef CONFIG_SYSCTL
struct ctl_table_header * sysctl_hdr ;
# endif
2010-10-14 09:56:18 +04:00
struct dst_ops xfrm4_dst_ops ;
2011-12-10 13:48:31 +04:00
# if IS_ENABLED(CONFIG_IPV6)
2010-10-14 09:56:18 +04:00
struct dst_ops xfrm6_dst_ops ;
# endif
2008-11-26 04:14:31 +03:00
} ;
# endif