2008-11-25 18:14:31 -07:00
|
|
|
#ifndef __NETNS_XFRM_H
|
|
|
|
#define __NETNS_XFRM_H
|
|
|
|
|
2008-11-25 18:16:11 -07:00
|
|
|
#include <linux/list.h>
|
2008-11-25 18:21:01 -07:00
|
|
|
#include <linux/wait.h>
|
2008-11-25 18:19:07 -07:00
|
|
|
#include <linux/workqueue.h>
|
2008-11-25 18:23:26 -07:00
|
|
|
#include <linux/xfrm.h>
|
2008-11-25 18:16:11 -07:00
|
|
|
|
2008-11-25 18:23:48 -07:00
|
|
|
struct xfrm_policy_hash {
|
|
|
|
struct hlist_head *table;
|
|
|
|
unsigned int hmask;
|
|
|
|
};
|
|
|
|
|
2008-11-25 18:14:31 -07:00
|
|
|
struct netns_xfrm {
|
2008-11-25 18:16:11 -07:00
|
|
|
struct list_head state_all;
|
2008-11-25 18:16:58 -07: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-25 18:17:24 -07:00
|
|
|
struct hlist_head *state_bysrc;
|
2008-11-25 18:17:47 -07:00
|
|
|
struct hlist_head *state_byspi;
|
2008-11-25 18:18:12 -07:00
|
|
|
unsigned int state_hmask;
|
2008-11-25 18:18:39 -07:00
|
|
|
unsigned int state_num;
|
2008-11-25 18:19:07 -07:00
|
|
|
struct work_struct state_hash_work;
|
2008-11-25 18:20:11 -07:00
|
|
|
struct hlist_head state_gc_list;
|
2008-11-25 18:20:36 -07:00
|
|
|
struct work_struct state_gc_work;
|
2008-11-25 18:21:01 -07:00
|
|
|
|
|
|
|
wait_queue_head_t km_waitq;
|
2008-11-25 18:22:11 -07:00
|
|
|
|
|
|
|
struct list_head policy_all;
|
2008-11-25 18:22:35 -07:00
|
|
|
struct hlist_head *policy_byidx;
|
2008-11-25 18:22:58 -07:00
|
|
|
unsigned int policy_idx_hmask;
|
2008-11-25 18:23:26 -07:00
|
|
|
struct hlist_head policy_inexact[XFRM_POLICY_MAX * 2];
|
2008-11-25 18:23:48 -07:00
|
|
|
struct xfrm_policy_hash policy_bydst[XFRM_POLICY_MAX * 2];
|
2008-11-25 18:24:15 -07:00
|
|
|
unsigned int policy_count[XFRM_POLICY_MAX * 2];
|
2008-11-25 18:28:57 -07:00
|
|
|
struct work_struct policy_hash_work;
|
2008-11-25 18:38:20 -07:00
|
|
|
|
|
|
|
struct sock *nlsk;
|
2008-11-25 18:14:31 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|