2 * xfrm_output.c - Common IPsec encapsulation code.
4 * Copyright (c) 2007 Herbert Xu <herbert@gondor.apana.org.au>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #include <linux/errno.h>
13 #include <linux/module.h>
14 #include <linux/netdevice.h>
15 #include <linux/netfilter.h>
16 #include <linux/skbuff.h>
17 #include <linux/slab.h>
18 #include <linux/spinlock.h>
22 static int xfrm_output2(struct sk_buff
*skb
);
24 static int xfrm_skb_check_space(struct sk_buff
*skb
)
26 struct dst_entry
*dst
= skb_dst(skb
);
27 int nhead
= dst
->header_len
+ LL_RESERVED_SPACE(dst
->dev
)
29 int ntail
= dst
->dev
->needed_tailroom
- skb_tailroom(skb
);
38 return pskb_expand_head(skb
, nhead
, ntail
, GFP_ATOMIC
);
41 static int xfrm_output_one(struct sk_buff
*skb
, int err
)
43 struct dst_entry
*dst
= skb_dst(skb
);
44 struct xfrm_state
*x
= dst
->xfrm
;
45 struct net
*net
= xs_net(x
);
51 err
= xfrm_skb_check_space(skb
);
53 XFRM_INC_STATS(net
, LINUX_MIB_XFRMOUTERROR
);
57 err
= x
->outer_mode
->output(x
, skb
);
59 XFRM_INC_STATS(net
, LINUX_MIB_XFRMOUTSTATEMODEERROR
);
63 spin_lock_bh(&x
->lock
);
65 if (unlikely(x
->km
.state
!= XFRM_STATE_VALID
)) {
66 XFRM_INC_STATS(net
, LINUX_MIB_XFRMOUTSTATEINVALID
);
71 err
= xfrm_state_check_expire(x
);
73 XFRM_INC_STATS(net
, LINUX_MIB_XFRMOUTSTATEEXPIRED
);
77 err
= x
->repl
->overflow(x
, skb
);
79 XFRM_INC_STATS(net
, LINUX_MIB_XFRMOUTSTATESEQERROR
);
83 x
->curlft
.bytes
+= skb
->len
;
86 spin_unlock_bh(&x
->lock
);
90 err
= x
->type
->output(x
, skb
);
91 if (err
== -EINPROGRESS
)
96 XFRM_INC_STATS(net
, LINUX_MIB_XFRMOUTSTATEPROTOERROR
);
100 dst
= skb_dst_pop(skb
);
102 XFRM_INC_STATS(net
, LINUX_MIB_XFRMOUTERROR
);
106 skb_dst_set(skb
, dst
);
108 } while (x
&& !(x
->outer_mode
->flags
& XFRM_MODE_FLAG_TUNNEL
));
113 spin_unlock_bh(&x
->lock
);
120 int xfrm_output_resume(struct sk_buff
*skb
, int err
)
122 while (likely((err
= xfrm_output_one(skb
, err
)) == 0)) {
125 err
= skb_dst(skb
)->ops
->local_out(skb
);
126 if (unlikely(err
!= 1))
129 if (!skb_dst(skb
)->xfrm
)
130 return dst_output(skb
);
132 err
= nf_hook(skb_dst(skb
)->ops
->family
,
133 NF_INET_POST_ROUTING
, skb
,
134 NULL
, skb_dst(skb
)->dev
, xfrm_output2
);
135 if (unlikely(err
!= 1))
139 if (err
== -EINPROGRESS
)
145 EXPORT_SYMBOL_GPL(xfrm_output_resume
);
147 static int xfrm_output2(struct sk_buff
*skb
)
149 return xfrm_output_resume(skb
, 1);
152 static int xfrm_output_gso(struct sk_buff
*skb
)
154 struct sk_buff
*segs
;
156 segs
= skb_gso_segment(skb
, 0);
159 return PTR_ERR(segs
);
162 struct sk_buff
*nskb
= segs
->next
;
166 err
= xfrm_output2(segs
);
169 while ((segs
= nskb
)) {
183 int xfrm_output(struct sk_buff
*skb
)
185 struct net
*net
= dev_net(skb_dst(skb
)->dev
);
189 return xfrm_output_gso(skb
);
191 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
192 err
= skb_checksum_help(skb
);
194 XFRM_INC_STATS(net
, LINUX_MIB_XFRMOUTERROR
);
200 return xfrm_output2(skb
);
203 int xfrm_inner_extract_output(struct xfrm_state
*x
, struct sk_buff
*skb
)
205 struct xfrm_mode
*inner_mode
;
206 if (x
->sel
.family
== AF_UNSPEC
)
207 inner_mode
= xfrm_ip2inner_mode(x
,
208 xfrm_af2proto(skb_dst(skb
)->ops
->family
));
210 inner_mode
= x
->inner_mode
;
212 if (inner_mode
== NULL
)
213 return -EAFNOSUPPORT
;
214 return inner_mode
->afinfo
->extract_output(x
, skb
);
217 void xfrm_local_error(struct sk_buff
*skb
, int mtu
)
220 struct xfrm_state_afinfo
*afinfo
;
222 if (skb
->protocol
== htons(ETH_P_IP
))
224 else if (skb
->protocol
== htons(ETH_P_IPV6
))
229 afinfo
= xfrm_state_get_afinfo(proto
);
233 afinfo
->local_error(skb
, mtu
);
234 xfrm_state_put_afinfo(afinfo
);
237 EXPORT_SYMBOL_GPL(xfrm_output
);
238 EXPORT_SYMBOL_GPL(xfrm_inner_extract_output
);
239 EXPORT_SYMBOL_GPL(xfrm_local_error
);