diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/net/xfrm.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/include/net/xfrm.h b/include/net/xfrm.h index 138c1868be1d..a9dbe091ae58 100644 --- a/include/net/xfrm.h +++ b/include/net/xfrm.h | |||
@@ -258,6 +258,7 @@ extern int __xfrm_state_delete(struct xfrm_state *x); | |||
258 | struct xfrm_state_afinfo { | 258 | struct xfrm_state_afinfo { |
259 | unsigned int family; | 259 | unsigned int family; |
260 | unsigned int proto; | 260 | unsigned int proto; |
261 | unsigned int eth_proto; | ||
261 | struct module *owner; | 262 | struct module *owner; |
262 | struct xfrm_type *type_map[IPPROTO_MAX]; | 263 | struct xfrm_type *type_map[IPPROTO_MAX]; |
263 | struct xfrm_mode *mode_map[XFRM_MODE_MAX]; | 264 | struct xfrm_mode *mode_map[XFRM_MODE_MAX]; |
@@ -268,6 +269,8 @@ struct xfrm_state_afinfo { | |||
268 | int (*tmpl_sort)(struct xfrm_tmpl **dst, struct xfrm_tmpl **src, int n); | 269 | int (*tmpl_sort)(struct xfrm_tmpl **dst, struct xfrm_tmpl **src, int n); |
269 | int (*state_sort)(struct xfrm_state **dst, struct xfrm_state **src, int n); | 270 | int (*state_sort)(struct xfrm_state **dst, struct xfrm_state **src, int n); |
270 | int (*output)(struct sk_buff *skb); | 271 | int (*output)(struct sk_buff *skb); |
272 | int (*extract_input)(struct xfrm_state *x, | ||
273 | struct sk_buff *skb); | ||
271 | int (*extract_output)(struct xfrm_state *x, | 274 | int (*extract_output)(struct xfrm_state *x, |
272 | struct sk_buff *skb); | 275 | struct sk_buff *skb); |
273 | }; | 276 | }; |
@@ -302,6 +305,27 @@ extern int xfrm_register_type(struct xfrm_type *type, unsigned short family); | |||
302 | extern int xfrm_unregister_type(struct xfrm_type *type, unsigned short family); | 305 | extern int xfrm_unregister_type(struct xfrm_type *type, unsigned short family); |
303 | 306 | ||
304 | struct xfrm_mode { | 307 | struct xfrm_mode { |
308 | /* | ||
309 | * Remove encapsulation header. | ||
310 | * | ||
311 | * The IP header will be moved over the top of the encapsulation | ||
312 | * header. | ||
313 | * | ||
314 | * On entry, the transport header shall point to where the IP header | ||
315 | * should be and the network header shall be set to where the IP | ||
316 | * header currently is. skb->data shall point to the start of the | ||
317 | * payload. | ||
318 | */ | ||
319 | int (*input2)(struct xfrm_state *x, struct sk_buff *skb); | ||
320 | |||
321 | /* | ||
322 | * This is the actual input entry point. | ||
323 | * | ||
324 | * For transport mode and equivalent this would be identical to | ||
325 | * input2 (which does not need to be set). While tunnel mode | ||
326 | * and equivalent would set this to the tunnel encapsulation function | ||
327 | * xfrm4_prepare_input that would in turn call input2. | ||
328 | */ | ||
305 | int (*input)(struct xfrm_state *x, struct sk_buff *skb); | 329 | int (*input)(struct xfrm_state *x, struct sk_buff *skb); |
306 | 330 | ||
307 | /* | 331 | /* |
@@ -1093,8 +1117,10 @@ extern void xfrm_replay_advance(struct xfrm_state *x, __be32 seq); | |||
1093 | extern void xfrm_replay_notify(struct xfrm_state *x, int event); | 1117 | extern void xfrm_replay_notify(struct xfrm_state *x, int event); |
1094 | extern int xfrm_state_mtu(struct xfrm_state *x, int mtu); | 1118 | extern int xfrm_state_mtu(struct xfrm_state *x, int mtu); |
1095 | extern int xfrm_init_state(struct xfrm_state *x); | 1119 | extern int xfrm_init_state(struct xfrm_state *x); |
1120 | extern int xfrm_prepare_input(struct xfrm_state *x, struct sk_buff *skb); | ||
1096 | extern int xfrm_output(struct sk_buff *skb); | 1121 | extern int xfrm_output(struct sk_buff *skb); |
1097 | extern int xfrm4_extract_header(struct sk_buff *skb); | 1122 | extern int xfrm4_extract_header(struct sk_buff *skb); |
1123 | extern int xfrm4_extract_input(struct xfrm_state *x, struct sk_buff *skb); | ||
1098 | extern int xfrm4_rcv_encap(struct sk_buff *skb, int nexthdr, __be32 spi, | 1124 | extern int xfrm4_rcv_encap(struct sk_buff *skb, int nexthdr, __be32 spi, |
1099 | int encap_type); | 1125 | int encap_type); |
1100 | extern int xfrm4_rcv(struct sk_buff *skb); | 1126 | extern int xfrm4_rcv(struct sk_buff *skb); |
@@ -1110,6 +1136,7 @@ extern int xfrm4_output(struct sk_buff *skb); | |||
1110 | extern int xfrm4_tunnel_register(struct xfrm_tunnel *handler, unsigned short family); | 1136 | extern int xfrm4_tunnel_register(struct xfrm_tunnel *handler, unsigned short family); |
1111 | extern int xfrm4_tunnel_deregister(struct xfrm_tunnel *handler, unsigned short family); | 1137 | extern int xfrm4_tunnel_deregister(struct xfrm_tunnel *handler, unsigned short family); |
1112 | extern int xfrm6_extract_header(struct sk_buff *skb); | 1138 | extern int xfrm6_extract_header(struct sk_buff *skb); |
1139 | extern int xfrm6_extract_input(struct xfrm_state *x, struct sk_buff *skb); | ||
1113 | extern int xfrm6_rcv_spi(struct sk_buff *skb, int nexthdr, __be32 spi); | 1140 | extern int xfrm6_rcv_spi(struct sk_buff *skb, int nexthdr, __be32 spi); |
1114 | extern int xfrm6_rcv(struct sk_buff *skb); | 1141 | extern int xfrm6_rcv(struct sk_buff *skb); |
1115 | extern int xfrm6_input_addr(struct sk_buff *skb, xfrm_address_t *daddr, | 1142 | extern int xfrm6_input_addr(struct sk_buff *skb, xfrm_address_t *daddr, |