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/spinlock.h>
21 static int xfrm_output2(struct sk_buff *skb);
23 static int xfrm_state_check_space(struct xfrm_state *x, struct sk_buff *skb)
25 struct dst_entry *dst = skb->dst;
26 int nhead = dst->header_len + LL_RESERVED_SPACE(dst->dev)
28 int ntail = dst->dev->needed_tailroom - skb_tailroom(skb);
37 return pskb_expand_head(skb, nhead, ntail, GFP_ATOMIC);
40 static int xfrm_output_one(struct sk_buff *skb, int err)
42 struct dst_entry *dst = skb->dst;
43 struct xfrm_state *x = dst->xfrm;
44 struct net *net = xs_net(x);
50 err = xfrm_state_check_space(x, skb);
52 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
56 err = x->outer_mode->output(x, skb);
58 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEMODEERROR);
62 spin_lock_bh(&x->lock);
63 err = xfrm_state_check_expire(x);
65 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEEXPIRED);
69 if (x->type->flags & XFRM_TYPE_REPLAY_PROT) {
70 XFRM_SKB_CB(skb)->seq.output = ++x->replay.oseq;
71 if (unlikely(x->replay.oseq == 0)) {
72 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATESEQERROR);
74 xfrm_audit_state_replay_overflow(x, skb);
78 if (xfrm_aevent_is_on(net))
79 xfrm_replay_notify(x, XFRM_REPLAY_UPDATE);
82 x->curlft.bytes += skb->len;
85 spin_unlock_bh(&x->lock);
87 err = x->type->output(x, skb);
88 if (err == -EINPROGRESS)
93 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEPROTOERROR);
97 if (!(skb->dst = dst_pop(dst))) {
98 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
104 } while (x && !(x->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL));
111 spin_unlock_bh(&x->lock);
117 int xfrm_output_resume(struct sk_buff *skb, int err)
119 while (likely((err = xfrm_output_one(skb, err)) == 0)) {
122 err = skb->dst->ops->local_out(skb);
123 if (unlikely(err != 1))
127 return dst_output(skb);
129 err = nf_hook(skb->dst->ops->family,
130 NF_INET_POST_ROUTING, skb,
131 NULL, skb->dst->dev, xfrm_output2);
132 if (unlikely(err != 1))
136 if (err == -EINPROGRESS)
142 EXPORT_SYMBOL_GPL(xfrm_output_resume);
144 static int xfrm_output2(struct sk_buff *skb)
146 return xfrm_output_resume(skb, 1);
149 static int xfrm_output_gso(struct sk_buff *skb)
151 struct sk_buff *segs;
153 segs = skb_gso_segment(skb, 0);
156 return PTR_ERR(segs);
159 struct sk_buff *nskb = segs->next;
163 err = xfrm_output2(segs);
166 while ((segs = nskb)) {
180 int xfrm_output(struct sk_buff *skb)
182 struct net *net = dev_net(skb->dst->dev);
186 return xfrm_output_gso(skb);
188 if (skb->ip_summed == CHECKSUM_PARTIAL) {
189 err = skb_checksum_help(skb);
191 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
197 return xfrm_output2(skb);
200 int xfrm_inner_extract_output(struct xfrm_state *x, struct sk_buff *skb)
202 struct xfrm_mode *inner_mode;
203 if (x->sel.family == AF_UNSPEC)
204 inner_mode = xfrm_ip2inner_mode(x,
205 xfrm_af2proto(skb->dst->ops->family));
207 inner_mode = x->inner_mode;
209 if (inner_mode == NULL)
210 return -EAFNOSUPPORT;
211 return inner_mode->afinfo->extract_output(x, skb);
214 EXPORT_SYMBOL_GPL(xfrm_output);
215 EXPORT_SYMBOL_GPL(xfrm_inner_extract_output);