Merge branch 'for-linus-4.2-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[deliverable/linux.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
7026b1dd 22static int xfrm_output2(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{
47 struct dst_entry *child = dst_clone(skb_dst(skb)->child);
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
a2deb6d2 69 err = x->outer_mode->output(x, skb);
b15c4bcd 70 if (err) {
59c9940e 71 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEMODEERROR);
910ef70a 72 goto error_nolock;
b15c4bcd 73 }
a2deb6d2 74
406ef77c 75 spin_lock_bh(&x->lock);
bb65a9cb
LR
76
77 if (unlikely(x->km.state != XFRM_STATE_VALID)) {
78 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEINVALID);
497574c7 79 err = -EINVAL;
fa8599db 80 goto error;
bb65a9cb
LR
81 }
82
910ef70a 83 err = xfrm_state_check_expire(x);
b15c4bcd 84 if (err) {
59c9940e 85 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEEXPIRED);
406ef77c 86 goto error;
b15c4bcd 87 }
406ef77c 88
9fdc4883
SK
89 err = x->repl->overflow(x, skb);
90 if (err) {
91 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATESEQERROR);
92 goto error;
436a0a40
HX
93 }
94
406ef77c
HX
95 x->curlft.bytes += skb->len;
96 x->curlft.packets++;
97
406ef77c
HX
98 spin_unlock_bh(&x->lock);
99
3bc07321
SK
100 skb_dst_force(skb);
101
b7c6538c 102 err = x->type->output(x, skb);
fcb8c156 103 if (err == -EINPROGRESS)
ebd4687a 104 goto out;
c6581a45
HX
105
106resume:
0aa64774 107 if (err) {
59c9940e 108 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEPROTOERROR);
b7c6538c 109 goto error_nolock;
0aa64774 110 }
b7c6538c 111
8764ab2c 112 dst = skb_dst_pop(skb);
adf30907 113 if (!dst) {
59c9940e 114 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
406ef77c
HX
115 err = -EHOSTUNREACH;
116 goto error_nolock;
117 }
e433430a 118 skb_dst_set(skb, dst);
406ef77c 119 x = dst->xfrm;
13996378 120 } while (x && !(x->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL));
406ef77c 121
ebd4687a 122 return 0;
406ef77c 123
406ef77c
HX
124error:
125 spin_unlock_bh(&x->lock);
862b82c6
HX
126error_nolock:
127 kfree_skb(skb);
ebd4687a
JS
128out:
129 return err;
862b82c6
HX
130}
131
c6581a45 132int xfrm_output_resume(struct sk_buff *skb, int err)
862b82c6 133{
c6581a45 134 while (likely((err = xfrm_output_one(skb, err)) == 0)) {
862b82c6
HX
135 nf_reset(skb);
136
adf30907 137 err = skb_dst(skb)->ops->local_out(skb);
862b82c6 138 if (unlikely(err != 1))
c6581a45 139 goto out;
862b82c6 140
adf30907 141 if (!skb_dst(skb)->xfrm)
862b82c6
HX
142 return dst_output(skb);
143
adf30907 144 err = nf_hook(skb_dst(skb)->ops->family,
7026b1dd 145 NF_INET_POST_ROUTING, skb->sk, skb,
adf30907 146 NULL, skb_dst(skb)->dev, xfrm_output2);
862b82c6 147 if (unlikely(err != 1))
c6581a45 148 goto out;
862b82c6
HX
149 }
150
c6581a45
HX
151 if (err == -EINPROGRESS)
152 err = 0;
153
154out:
862b82c6
HX
155 return err;
156}
c6581a45 157EXPORT_SYMBOL_GPL(xfrm_output_resume);
862b82c6 158
7026b1dd 159static int xfrm_output2(struct sock *sk, struct sk_buff *skb)
862b82c6 160{
c6581a45
HX
161 return xfrm_output_resume(skb, 1);
162}
862b82c6 163
7026b1dd 164static int xfrm_output_gso(struct sock *sk, struct sk_buff *skb)
c6581a45
HX
165{
166 struct sk_buff *segs;
862b82c6
HX
167
168 segs = skb_gso_segment(skb, 0);
169 kfree_skb(skb);
801678c5 170 if (IS_ERR(segs))
862b82c6 171 return PTR_ERR(segs);
330966e5
FW
172 if (segs == NULL)
173 return -EINVAL;
862b82c6
HX
174
175 do {
176 struct sk_buff *nskb = segs->next;
177 int err;
178
179 segs->next = NULL;
7026b1dd 180 err = xfrm_output2(sk, segs);
862b82c6
HX
181
182 if (unlikely(err)) {
46cfd725 183 kfree_skb_list(nskb);
862b82c6
HX
184 return err;
185 }
186
187 segs = nskb;
188 } while (segs);
189
190 return 0;
406ef77c 191}
c6581a45 192
7026b1dd 193int xfrm_output(struct sock *sk, struct sk_buff *skb)
c6581a45 194{
adf30907 195 struct net *net = dev_net(skb_dst(skb)->dev);
c6581a45
HX
196 int err;
197
198 if (skb_is_gso(skb))
7026b1dd 199 return xfrm_output_gso(sk, skb);
c6581a45
HX
200
201 if (skb->ip_summed == CHECKSUM_PARTIAL) {
202 err = skb_checksum_help(skb);
203 if (err) {
59c9940e 204 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
c6581a45
HX
205 kfree_skb(skb);
206 return err;
207 }
208 }
209
7026b1dd 210 return xfrm_output2(sk, skb);
c6581a45 211}
fc68086c 212EXPORT_SYMBOL_GPL(xfrm_output);
df9dcb45
KM
213
214int xfrm_inner_extract_output(struct xfrm_state *x, struct sk_buff *skb)
215{
216 struct xfrm_mode *inner_mode;
217 if (x->sel.family == AF_UNSPEC)
218 inner_mode = xfrm_ip2inner_mode(x,
adf30907 219 xfrm_af2proto(skb_dst(skb)->ops->family));
df9dcb45
KM
220 else
221 inner_mode = x->inner_mode;
222
223 if (inner_mode == NULL)
224 return -EAFNOSUPPORT;
225 return inner_mode->afinfo->extract_output(x, skb);
226}
fc68086c 227EXPORT_SYMBOL_GPL(xfrm_inner_extract_output);
df9dcb45 228
628e341f
HFS
229void xfrm_local_error(struct sk_buff *skb, int mtu)
230{
844d4874 231 unsigned int proto;
628e341f
HFS
232 struct xfrm_state_afinfo *afinfo;
233
844d4874
HFS
234 if (skb->protocol == htons(ETH_P_IP))
235 proto = AF_INET;
236 else if (skb->protocol == htons(ETH_P_IPV6))
237 proto = AF_INET6;
238 else
239 return;
240
241 afinfo = xfrm_state_get_afinfo(proto);
628e341f
HFS
242 if (!afinfo)
243 return;
244
245 afinfo->local_error(skb, mtu);
246 xfrm_state_put_afinfo(afinfo);
247}
628e341f 248EXPORT_SYMBOL_GPL(xfrm_local_error);
This page took 0.492391 seconds and 5 git commands to generate.