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 net *net, struct sock *sk, 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 /* Children define the path of the packet through the
42 * Linux networking. Thus, destinations are stackable.
45 static struct dst_entry *skb_dst_pop(struct sk_buff *skb)
47 struct dst_entry *child = dst_clone(skb_dst(skb)->child);
53 static int xfrm_output_one(struct sk_buff *skb, int err)
55 struct dst_entry *dst = skb_dst(skb);
56 struct xfrm_state *x = dst->xfrm;
57 struct net *net = xs_net(x);
63 err = xfrm_skb_check_space(skb);
65 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
69 if (x->props.output_mark)
70 skb->mark = x->props.output_mark;
72 err = x->outer_mode->output(x, skb);
74 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEMODEERROR);
78 spin_lock_bh(&x->lock);
80 if (unlikely(x->km.state != XFRM_STATE_VALID)) {
81 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEINVALID);
86 err = xfrm_state_check_expire(x);
88 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEEXPIRED);
92 err = x->repl->overflow(x, skb);
94 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATESEQERROR);
98 x->curlft.bytes += skb->len;
101 spin_unlock_bh(&x->lock);
105 if (xfrm_offload(skb)) {
106 x->type_offload->encap(x, skb);
108 /* Inner headers are invalid now. */
109 skb->encapsulation = 0;
111 err = x->type->output(x, skb);
112 if (err == -EINPROGRESS)
118 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEPROTOERROR);
122 dst = skb_dst_pop(skb);
124 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
128 skb_dst_set(skb, dst);
130 } while (x && !(x->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL));
135 spin_unlock_bh(&x->lock);
142 int xfrm_output_resume(struct sk_buff *skb, int err)
144 struct net *net = xs_net(skb_dst(skb)->xfrm);
146 while (likely((err = xfrm_output_one(skb, err)) == 0)) {
149 err = skb_dst(skb)->ops->local_out(net, skb->sk, skb);
150 if (unlikely(err != 1))
153 if (!skb_dst(skb)->xfrm)
154 return dst_output(net, skb->sk, skb);
156 err = nf_hook(skb_dst(skb)->ops->family,
157 NF_INET_POST_ROUTING, net, skb->sk, skb,
158 NULL, skb_dst(skb)->dev, xfrm_output2);
159 if (unlikely(err != 1))
163 if (err == -EINPROGRESS)
169 EXPORT_SYMBOL_GPL(xfrm_output_resume);
171 static int xfrm_output2(struct net *net, struct sock *sk, struct sk_buff *skb)
173 return xfrm_output_resume(skb, 1);
176 static int xfrm_output_gso(struct net *net, struct sock *sk, struct sk_buff *skb)
178 struct sk_buff *segs;
180 BUILD_BUG_ON(sizeof(*IPCB(skb)) > SKB_SGO_CB_OFFSET);
181 BUILD_BUG_ON(sizeof(*IP6CB(skb)) > SKB_SGO_CB_OFFSET);
182 segs = skb_gso_segment(skb, 0);
185 return PTR_ERR(segs);
190 struct sk_buff *nskb = segs->next;
194 err = xfrm_output2(net, sk, segs);
197 kfree_skb_list(nskb);
207 int xfrm_output(struct sock *sk, struct sk_buff *skb)
209 struct net *net = dev_net(skb_dst(skb)->dev);
210 struct xfrm_state *x = skb_dst(skb)->xfrm;
215 if (xfrm_dev_offload_ok(skb, x)) {
218 sp = secpath_dup(skb->sp);
220 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
225 secpath_put(skb->sp);
227 skb->encapsulation = 1;
230 sp->xvec[skb->sp->len++] = x;
233 if (skb_is_gso(skb)) {
234 skb_shinfo(skb)->gso_type |= SKB_GSO_ESP;
236 return xfrm_output2(net, sk, skb);
239 if (x->xso.dev && x->xso.dev->features & NETIF_F_HW_ESP_TX_CSUM)
244 return xfrm_output_gso(net, sk, skb);
246 if (skb->ip_summed == CHECKSUM_PARTIAL) {
247 err = skb_checksum_help(skb);
249 XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
256 return xfrm_output2(net, sk, skb);
258 EXPORT_SYMBOL_GPL(xfrm_output);
260 int xfrm_inner_extract_output(struct xfrm_state *x, struct sk_buff *skb)
262 struct xfrm_mode *inner_mode;
263 if (x->sel.family == AF_UNSPEC)
264 inner_mode = xfrm_ip2inner_mode(x,
265 xfrm_af2proto(skb_dst(skb)->ops->family));
267 inner_mode = x->inner_mode;
269 if (inner_mode == NULL)
270 return -EAFNOSUPPORT;
271 return inner_mode->afinfo->extract_output(x, skb);
273 EXPORT_SYMBOL_GPL(xfrm_inner_extract_output);
275 void xfrm_local_error(struct sk_buff *skb, int mtu)
278 struct xfrm_state_afinfo *afinfo;
280 if (skb->protocol == htons(ETH_P_IP))
282 else if (skb->protocol == htons(ETH_P_IPV6))
287 afinfo = xfrm_state_get_afinfo(proto);
289 afinfo->local_error(skb, mtu);
292 EXPORT_SYMBOL_GPL(xfrm_local_error);