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_state_check_space(struct xfrm_state *x, 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_state_check_space(x, 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);
64 err = xfrm_state_check_expire(x);
66 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEEXPIRED);
70 err = x->repl->overflow(x, skb);
72 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATESEQERROR);
76 x->curlft.bytes += skb->len;
79 spin_unlock_bh(&x->lock);
83 err = x->type->output(x, skb);
84 if (err == -EINPROGRESS)
89 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEPROTOERROR);
93 dst = skb_dst_pop(skb);
95 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
99 skb_dst_set(skb, dst);
101 } while (x && !(x->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL));
108 spin_unlock_bh(&x->lock);
114 int xfrm_output_resume(struct sk_buff *skb, int err)
116 while (likely((err = xfrm_output_one(skb, err)) == 0)) {
119 err = skb_dst(skb)->ops->local_out(skb);
120 if (unlikely(err != 1))
123 if (!skb_dst(skb)->xfrm)
124 return dst_output(skb);
126 err = nf_hook(skb_dst(skb)->ops->family,
127 NF_INET_POST_ROUTING, skb,
128 NULL, skb_dst(skb)->dev, xfrm_output2);
129 if (unlikely(err != 1))
133 if (err == -EINPROGRESS)
139 EXPORT_SYMBOL_GPL(xfrm_output_resume);
141 static int xfrm_output2(struct sk_buff *skb)
143 return xfrm_output_resume(skb, 1);
146 static int xfrm_output_gso(struct sk_buff *skb)
148 struct sk_buff *segs;
150 segs = skb_gso_segment(skb, 0);
153 return PTR_ERR(segs);
156 struct sk_buff *nskb = segs->next;
160 err = xfrm_output2(segs);
163 while ((segs = nskb)) {
177 int xfrm_output(struct sk_buff *skb)
179 struct net *net = dev_net(skb_dst(skb)->dev);
183 return xfrm_output_gso(skb);
185 if (skb->ip_summed == CHECKSUM_PARTIAL) {
186 err = skb_checksum_help(skb);
188 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
194 return xfrm_output2(skb);
197 int xfrm_inner_extract_output(struct xfrm_state *x, struct sk_buff *skb)
199 struct xfrm_mode *inner_mode;
200 if (x->sel.family == AF_UNSPEC)
201 inner_mode = xfrm_ip2inner_mode(x,
202 xfrm_af2proto(skb_dst(skb)->ops->family));
204 inner_mode = x->inner_mode;
206 if (inner_mode == NULL)
207 return -EAFNOSUPPORT;
208 return inner_mode->afinfo->extract_output(x, skb);
211 EXPORT_SYMBOL_GPL(xfrm_output);
212 EXPORT_SYMBOL_GPL(xfrm_inner_extract_output);