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