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(skb
);
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(skb
);
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
);
99 XFRM_INC_STATS(net
, LINUX_MIB_XFRMOUTERROR
);
103 skb_dst_set(skb
, dst
);
105 } while (x
&& !(x
->outer_mode
->flags
& XFRM_MODE_FLAG_TUNNEL
));
112 spin_unlock_bh(&x
->lock
);
118 int xfrm_output_resume(struct sk_buff
*skb
, int err
)
120 while (likely((err
= xfrm_output_one(skb
, err
)) == 0)) {
123 err
= skb_dst(skb
)->ops
->local_out(skb
);
124 if (unlikely(err
!= 1))
127 if (!skb_dst(skb
)->xfrm
)
128 return dst_output(skb
);
130 err
= nf_hook(skb_dst(skb
)->ops
->family
,
131 NF_INET_POST_ROUTING
, skb
,
132 NULL
, skb_dst(skb
)->dev
, xfrm_output2
);
133 if (unlikely(err
!= 1))
137 if (err
== -EINPROGRESS
)
143 EXPORT_SYMBOL_GPL(xfrm_output_resume
);
145 static int xfrm_output2(struct sk_buff
*skb
)
147 return xfrm_output_resume(skb
, 1);
150 static int xfrm_output_gso(struct sk_buff
*skb
)
152 struct sk_buff
*segs
;
154 segs
= skb_gso_segment(skb
, 0);
157 return PTR_ERR(segs
);
160 struct sk_buff
*nskb
= segs
->next
;
164 err
= xfrm_output2(segs
);
167 while ((segs
= nskb
)) {
181 int xfrm_output(struct sk_buff
*skb
)
183 struct net
*net
= dev_net(skb_dst(skb
)->dev
);
187 return xfrm_output_gso(skb
);
189 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
190 err
= skb_checksum_help(skb
);
192 XFRM_INC_STATS(net
, LINUX_MIB_XFRMOUTERROR
);
198 return xfrm_output2(skb
);
201 int xfrm_inner_extract_output(struct xfrm_state
*x
, struct sk_buff
*skb
)
203 struct xfrm_mode
*inner_mode
;
204 if (x
->sel
.family
== AF_UNSPEC
)
205 inner_mode
= xfrm_ip2inner_mode(x
,
206 xfrm_af2proto(skb_dst(skb
)->ops
->family
));
208 inner_mode
= x
->inner_mode
;
210 if (inner_mode
== NULL
)
211 return -EAFNOSUPPORT
;
212 return inner_mode
->afinfo
->extract_output(x
, skb
);
215 EXPORT_SYMBOL_GPL(xfrm_output
);
216 EXPORT_SYMBOL_GPL(xfrm_inner_extract_output
);