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