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 if (x
->type
->flags
& XFRM_TYPE_REPLAY_PROT
) {
71 XFRM_SKB_CB(skb
)->seq
.output
= ++x
->replay
.oseq
;
72 if (unlikely(x
->replay
.oseq
== 0)) {
73 XFRM_INC_STATS(net
, LINUX_MIB_XFRMOUTSTATESEQERROR
);
75 xfrm_audit_state_replay_overflow(x
, skb
);
79 if (xfrm_aevent_is_on(net
))
80 xfrm_replay_notify(x
, XFRM_REPLAY_UPDATE
);
83 x
->curlft
.bytes
+= skb
->len
;
86 spin_unlock_bh(&x
->lock
);
88 err
= x
->type
->output(x
, skb
);
89 if (err
== -EINPROGRESS
)
94 XFRM_INC_STATS(net
, LINUX_MIB_XFRMOUTSTATEPROTOERROR
);
98 dst
= skb_dst_pop(skb
);
100 XFRM_INC_STATS(net
, LINUX_MIB_XFRMOUTERROR
);
104 skb_dst_set(skb
, dst_clone(dst
));
106 } while (x
&& !(x
->outer_mode
->flags
& XFRM_MODE_FLAG_TUNNEL
));
113 spin_unlock_bh(&x
->lock
);
119 int xfrm_output_resume(struct sk_buff
*skb
, int err
)
121 while (likely((err
= xfrm_output_one(skb
, err
)) == 0)) {
124 err
= skb_dst(skb
)->ops
->local_out(skb
);
125 if (unlikely(err
!= 1))
128 if (!skb_dst(skb
)->xfrm
)
129 return dst_output(skb
);
131 err
= nf_hook(skb_dst(skb
)->ops
->family
,
132 NF_INET_POST_ROUTING
, skb
,
133 NULL
, skb_dst(skb
)->dev
, xfrm_output2
);
134 if (unlikely(err
!= 1))
138 if (err
== -EINPROGRESS
)
144 EXPORT_SYMBOL_GPL(xfrm_output_resume
);
146 static int xfrm_output2(struct sk_buff
*skb
)
148 return xfrm_output_resume(skb
, 1);
151 static int xfrm_output_gso(struct sk_buff
*skb
)
153 struct sk_buff
*segs
;
155 segs
= skb_gso_segment(skb
, 0);
158 return PTR_ERR(segs
);
161 struct sk_buff
*nskb
= segs
->next
;
165 err
= xfrm_output2(segs
);
168 while ((segs
= nskb
)) {
182 int xfrm_output(struct sk_buff
*skb
)
184 struct net
*net
= dev_net(skb_dst(skb
)->dev
);
188 return xfrm_output_gso(skb
);
190 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
191 err
= skb_checksum_help(skb
);
193 XFRM_INC_STATS(net
, LINUX_MIB_XFRMOUTERROR
);
199 return xfrm_output2(skb
);
202 int xfrm_inner_extract_output(struct xfrm_state
*x
, struct sk_buff
*skb
)
204 struct xfrm_mode
*inner_mode
;
205 if (x
->sel
.family
== AF_UNSPEC
)
206 inner_mode
= xfrm_ip2inner_mode(x
,
207 xfrm_af2proto(skb_dst(skb
)->ops
->family
));
209 inner_mode
= x
->inner_mode
;
211 if (inner_mode
== NULL
)
212 return -EAFNOSUPPORT
;
213 return inner_mode
->afinfo
->extract_output(x
, skb
);
216 EXPORT_SYMBOL_GPL(xfrm_output
);
217 EXPORT_SYMBOL_GPL(xfrm_inner_extract_output
);