Merge branch 'x86-cpu-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / net / xfrm / xfrm_output.c
CommitLineData
406ef77c
HX
1/*
2 * xfrm_output.c - Common IPsec encapsulation code.
3 *
4 * Copyright (c) 2007 Herbert Xu <herbert@gondor.apana.org.au>
5 *
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.
10 */
11
12#include <linux/errno.h>
13#include <linux/module.h>
14#include <linux/netdevice.h>
862b82c6 15#include <linux/netfilter.h>
406ef77c 16#include <linux/skbuff.h>
5a0e3ad6 17#include <linux/slab.h>
406ef77c 18#include <linux/spinlock.h>
406ef77c
HX
19#include <net/dst.h>
20#include <net/xfrm.h>
21
0c4b51f0 22static int xfrm_output2(struct net *net, struct sock *sk, struct sk_buff *skb);
c6581a45 23
26b2072e 24static int xfrm_skb_check_space(struct sk_buff *skb)
83815dea 25{
adf30907 26 struct dst_entry *dst = skb_dst(skb);
550ade84 27 int nhead = dst->header_len + LL_RESERVED_SPACE(dst->dev)
83815dea 28 - skb_headroom(skb);
f5184d26 29 int ntail = dst->dev->needed_tailroom - skb_tailroom(skb);
83815dea 30
d01dbeb6
HX
31 if (nhead <= 0) {
32 if (ntail <= 0)
33 return 0;
34 nhead = 0;
35 } else if (ntail < 0)
36 ntail = 0;
37
38 return pskb_expand_head(skb, nhead, ntail, GFP_ATOMIC);
83815dea
HX
39}
40
9449c3cd
YX
41/* Children define the path of the packet through the
42 * Linux networking. Thus, destinations are stackable.
43 */
44
45static struct dst_entry *skb_dst_pop(struct sk_buff *skb)
46{
b92cf4aa 47 struct dst_entry *child = dst_clone(xfrm_dst_child(skb_dst(skb)));
9449c3cd
YX
48
49 skb_dst_drop(skb);
50 return child;
51}
52
c6581a45 53static int xfrm_output_one(struct sk_buff *skb, int err)
406ef77c 54{
adf30907 55 struct dst_entry *dst = skb_dst(skb);
406ef77c 56 struct xfrm_state *x = dst->xfrm;
a6483b79 57 struct net *net = xs_net(x);
406ef77c 58
c6581a45
HX
59 if (err <= 0)
60 goto resume;
406ef77c
HX
61
62 do {
26b2072e 63 err = xfrm_skb_check_space(skb);
b15c4bcd 64 if (err) {
59c9940e 65 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
910ef70a 66 goto error_nolock;
b15c4bcd 67 }
910ef70a 68
9b42c1f1 69 skb->mark = xfrm_smark_get(skb->mark, x);
077fbac4 70
a2deb6d2 71 err = x->outer_mode->output(x, skb);
b15c4bcd 72 if (err) {
59c9940e 73 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEMODEERROR);
910ef70a 74 goto error_nolock;
b15c4bcd 75 }
a2deb6d2 76
406ef77c 77 spin_lock_bh(&x->lock);
bb65a9cb
LR
78
79 if (unlikely(x->km.state != XFRM_STATE_VALID)) {
80 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEINVALID);
497574c7 81 err = -EINVAL;
fa8599db 82 goto error;
bb65a9cb
LR
83 }
84
910ef70a 85 err = xfrm_state_check_expire(x);
b15c4bcd 86 if (err) {
59c9940e 87 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEEXPIRED);
406ef77c 88 goto error;
b15c4bcd 89 }
406ef77c 90
9fdc4883
SK
91 err = x->repl->overflow(x, skb);
92 if (err) {
93 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATESEQERROR);
94 goto error;
436a0a40
HX
95 }
96
406ef77c
HX
97 x->curlft.bytes += skb->len;
98 x->curlft.packets++;
99
406ef77c
HX
100 spin_unlock_bh(&x->lock);
101
3bc07321 102 skb_dst_force(skb);
9e143793
SK
103 if (!skb_dst(skb)) {
104 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
105 goto error_nolock;
106 }
3bc07321 107
d77e38e6
SK
108 if (xfrm_offload(skb)) {
109 x->type_offload->encap(x, skb);
110 } else {
73b9fc49
SK
111 /* Inner headers are invalid now. */
112 skb->encapsulation = 0;
113
d77e38e6
SK
114 err = x->type->output(x, skb);
115 if (err == -EINPROGRESS)
116 goto out;
117 }
c6581a45
HX
118
119resume:
0aa64774 120 if (err) {
59c9940e 121 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEPROTOERROR);
b7c6538c 122 goto error_nolock;
0aa64774 123 }
b7c6538c 124
8764ab2c 125 dst = skb_dst_pop(skb);
adf30907 126 if (!dst) {
59c9940e 127 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
406ef77c
HX
128 err = -EHOSTUNREACH;
129 goto error_nolock;
130 }
e433430a 131 skb_dst_set(skb, dst);
406ef77c 132 x = dst->xfrm;
13996378 133 } while (x && !(x->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL));
406ef77c 134
ebd4687a 135 return 0;
406ef77c 136
406ef77c
HX
137error:
138 spin_unlock_bh(&x->lock);
862b82c6
HX
139error_nolock:
140 kfree_skb(skb);
ebd4687a
JS
141out:
142 return err;
862b82c6
HX
143}
144
c6581a45 145int xfrm_output_resume(struct sk_buff *skb, int err)
862b82c6 146{
29a26a56 147 struct net *net = xs_net(skb_dst(skb)->xfrm);
be10de0a 148
c6581a45 149 while (likely((err = xfrm_output_one(skb, err)) == 0)) {
862b82c6
HX
150 nf_reset(skb);
151
cf91a99d 152 err = skb_dst(skb)->ops->local_out(net, skb->sk, skb);
862b82c6 153 if (unlikely(err != 1))
c6581a45 154 goto out;
862b82c6 155
adf30907 156 if (!skb_dst(skb)->xfrm)
13206b6b 157 return dst_output(net, skb->sk, skb);
862b82c6 158
adf30907 159 err = nf_hook(skb_dst(skb)->ops->family,
29a26a56 160 NF_INET_POST_ROUTING, net, skb->sk, skb,
adf30907 161 NULL, skb_dst(skb)->dev, xfrm_output2);
862b82c6 162 if (unlikely(err != 1))
c6581a45 163 goto out;
862b82c6
HX
164 }
165
c6581a45
HX
166 if (err == -EINPROGRESS)
167 err = 0;
168
169out:
862b82c6
HX
170 return err;
171}
c6581a45 172EXPORT_SYMBOL_GPL(xfrm_output_resume);
862b82c6 173
0c4b51f0 174static int xfrm_output2(struct net *net, struct sock *sk, struct sk_buff *skb)
862b82c6 175{
c6581a45
HX
176 return xfrm_output_resume(skb, 1);
177}
862b82c6 178
0c4b51f0 179static int xfrm_output_gso(struct net *net, struct sock *sk, struct sk_buff *skb)
c6581a45
HX
180{
181 struct sk_buff *segs;
862b82c6 182
9207f9d4
KK
183 BUILD_BUG_ON(sizeof(*IPCB(skb)) > SKB_SGO_CB_OFFSET);
184 BUILD_BUG_ON(sizeof(*IP6CB(skb)) > SKB_SGO_CB_OFFSET);
862b82c6
HX
185 segs = skb_gso_segment(skb, 0);
186 kfree_skb(skb);
801678c5 187 if (IS_ERR(segs))
862b82c6 188 return PTR_ERR(segs);
330966e5
FW
189 if (segs == NULL)
190 return -EINVAL;
862b82c6
HX
191
192 do {
193 struct sk_buff *nskb = segs->next;
194 int err;
195
196 segs->next = NULL;
0c4b51f0 197 err = xfrm_output2(net, sk, segs);
862b82c6
HX
198
199 if (unlikely(err)) {
46cfd725 200 kfree_skb_list(nskb);
862b82c6
HX
201 return err;
202 }
203
204 segs = nskb;
205 } while (segs);
206
207 return 0;
406ef77c 208}
c6581a45 209
7026b1dd 210int xfrm_output(struct sock *sk, struct sk_buff *skb)
c6581a45 211{
adf30907 212 struct net *net = dev_net(skb_dst(skb)->dev);
d77e38e6 213 struct xfrm_state *x = skb_dst(skb)->xfrm;
c6581a45
HX
214 int err;
215
d77e38e6
SK
216 secpath_reset(skb);
217
218 if (xfrm_dev_offload_ok(skb, x)) {
219 struct sec_path *sp;
220
221 sp = secpath_dup(skb->sp);
222 if (!sp) {
223 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
224 kfree_skb(skb);
225 return -ENOMEM;
226 }
227 if (skb->sp)
228 secpath_put(skb->sp);
229 skb->sp = sp;
f1bd7d65 230 skb->encapsulation = 1;
d77e38e6
SK
231
232 sp->olen++;
233 sp->xvec[skb->sp->len++] = x;
234 xfrm_state_hold(x);
235
236 if (skb_is_gso(skb)) {
237 skb_shinfo(skb)->gso_type |= SKB_GSO_ESP;
238
239 return xfrm_output2(net, sk, skb);
240 }
241
242 if (x->xso.dev && x->xso.dev->features & NETIF_F_HW_ESP_TX_CSUM)
243 goto out;
244 }
245
c6581a45 246 if (skb_is_gso(skb))
0c4b51f0 247 return xfrm_output_gso(net, sk, skb);
c6581a45
HX
248
249 if (skb->ip_summed == CHECKSUM_PARTIAL) {
250 err = skb_checksum_help(skb);
251 if (err) {
59c9940e 252 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
c6581a45
HX
253 kfree_skb(skb);
254 return err;
255 }
256 }
257
d77e38e6 258out:
0c4b51f0 259 return xfrm_output2(net, sk, skb);
c6581a45 260}
fc68086c 261EXPORT_SYMBOL_GPL(xfrm_output);
df9dcb45
KM
262
263int xfrm_inner_extract_output(struct xfrm_state *x, struct sk_buff *skb)
264{
265 struct xfrm_mode *inner_mode;
266 if (x->sel.family == AF_UNSPEC)
267 inner_mode = xfrm_ip2inner_mode(x,
adf30907 268 xfrm_af2proto(skb_dst(skb)->ops->family));
df9dcb45
KM
269 else
270 inner_mode = x->inner_mode;
271
272 if (inner_mode == NULL)
273 return -EAFNOSUPPORT;
274 return inner_mode->afinfo->extract_output(x, skb);
275}
fc68086c 276EXPORT_SYMBOL_GPL(xfrm_inner_extract_output);
df9dcb45 277
628e341f
HFS
278void xfrm_local_error(struct sk_buff *skb, int mtu)
279{
844d4874 280 unsigned int proto;
628e341f
HFS
281 struct xfrm_state_afinfo *afinfo;
282
844d4874
HFS
283 if (skb->protocol == htons(ETH_P_IP))
284 proto = AF_INET;
285 else if (skb->protocol == htons(ETH_P_IPV6))
286 proto = AF_INET6;
287 else
288 return;
289
290 afinfo = xfrm_state_get_afinfo(proto);
46c0ef6e 291 if (afinfo) {
af5d27c4 292 afinfo->local_error(skb, mtu);
46c0ef6e
TY
293 rcu_read_unlock();
294 }
628e341f 295}
628e341f 296EXPORT_SYMBOL_GPL(xfrm_local_error);