2008-11-26 09:14:31 +08:00
|
|
|
#ifndef __NETNS_XFRM_H
|
|
|
|
#define __NETNS_XFRM_H
|
|
|
|
|
2008-11-26 09:16:11 +08:00
|
|
|
#include <linux/list.h>
|
2008-11-26 09:21:01 +08:00
|
|
|
#include <linux/wait.h>
|
2008-11-26 09:19:07 +08:00
|
|
|
#include <linux/workqueue.h>
|
2008-11-26 09:16:11 +08:00
|
|
|
|
2008-11-26 09:14:31 +08:00
|
|
|
struct netns_xfrm {
|
2008-11-26 09:16:11 +08:00
|
|
|
struct list_head state_all;
|
2008-11-26 09:16:58 +08: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 09:17:24 +08:00
|
|
|
struct hlist_head *state_bysrc;
|
2008-11-26 09:17:47 +08:00
|
|
|
struct hlist_head *state_byspi;
|
2008-11-26 09:18:12 +08:00
|
|
|
unsigned int state_hmask;
|
2008-11-26 09:18:39 +08:00
|
|
|
unsigned int state_num;
|
2008-11-26 09:19:07 +08:00
|
|
|
struct work_struct state_hash_work;
|
2008-11-26 09:20:11 +08:00
|
|
|
struct hlist_head state_gc_list;
|
2008-11-26 09:20:36 +08:00
|
|
|
struct work_struct state_gc_work;
|
2008-11-26 09:21:01 +08:00
|
|
|
|
|
|
|
wait_queue_head_t km_waitq;
|
2008-11-26 09:22:11 +08:00
|
|
|
|
|
|
|
struct list_head policy_all;
|
2008-11-26 09:22:35 +08:00
|
|
|
struct hlist_head *policy_byidx;
|
2008-11-26 09:22:58 +08:00
|
|
|
unsigned int policy_idx_hmask;
|
2008-11-26 09:14:31 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|