2 * xfrm_output.c - Common IPsec encapsulation code.
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);
70 err = xfrm_state_check_expire(x);
72 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEEXPIRED);
76 err = x->repl->overflow(x, skb);
78 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATESEQERROR);
82 x->curlft.bytes += skb->len;
85 spin_unlock_bh(&x->lock);
89 err = x->type->output(x, skb);
90 if (err == -EINPROGRESS)
95 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEPROTOERROR);
99 dst = skb_dst_pop(skb);
101 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
105 skb_dst_set(skb, dst);
107 } while (x && !(x->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL));
114 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 EXPORT_SYMBOL_GPL(xfrm_output);
218 EXPORT_SYMBOL_GPL(xfrm_inner_extract_output);