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
;
49 err
= xfrm_state_check_space(x
, skb
);
51 XFRM_INC_STATS(LINUX_MIB_XFRMOUTERROR
);
55 err
= x
->outer_mode
->output(x
, skb
);
57 XFRM_INC_STATS(LINUX_MIB_XFRMOUTSTATEMODEERROR
);
61 spin_lock_bh(&x
->lock
);
62 err
= xfrm_state_check_expire(x
);
64 XFRM_INC_STATS(LINUX_MIB_XFRMOUTSTATEEXPIRED
);
68 if (x
->type
->flags
& XFRM_TYPE_REPLAY_PROT
) {
69 XFRM_SKB_CB(skb
)->seq
.output
= ++x
->replay
.oseq
;
70 if (unlikely(x
->replay
.oseq
== 0)) {
71 XFRM_INC_STATS(LINUX_MIB_XFRMOUTSTATESEQERROR
);
73 xfrm_audit_state_replay_overflow(x
, skb
);
77 if (xfrm_aevent_is_on())
78 xfrm_replay_notify(x
, XFRM_REPLAY_UPDATE
);
81 x
->curlft
.bytes
+= skb
->len
;
84 spin_unlock_bh(&x
->lock
);
86 err
= x
->type
->output(x
, skb
);
87 if (err
== -EINPROGRESS
)
92 XFRM_INC_STATS(LINUX_MIB_XFRMOUTSTATEPROTOERROR
);
96 if (!(skb
->dst
= dst_pop(dst
))) {
97 XFRM_INC_STATS(LINUX_MIB_XFRMOUTERROR
);
103 } while (x
&& !(x
->outer_mode
->flags
& XFRM_MODE_FLAG_TUNNEL
));
110 spin_unlock_bh(&x
->lock
);
116 int xfrm_output_resume(struct sk_buff
*skb
, int err
)
118 while (likely((err
= xfrm_output_one(skb
, err
)) == 0)) {
121 err
= skb
->dst
->ops
->local_out(skb
);
122 if (unlikely(err
!= 1))
126 return dst_output(skb
);
128 err
= nf_hook(skb
->dst
->ops
->family
,
129 NF_INET_POST_ROUTING
, skb
,
130 NULL
, skb
->dst
->dev
, xfrm_output2
);
131 if (unlikely(err
!= 1))
135 if (err
== -EINPROGRESS
)
141 EXPORT_SYMBOL_GPL(xfrm_output_resume
);
143 static int xfrm_output2(struct sk_buff
*skb
)
145 return xfrm_output_resume(skb
, 1);
148 static int xfrm_output_gso(struct sk_buff
*skb
)
150 struct sk_buff
*segs
;
152 segs
= skb_gso_segment(skb
, 0);
155 return PTR_ERR(segs
);
158 struct sk_buff
*nskb
= segs
->next
;
162 err
= xfrm_output2(segs
);
165 while ((segs
= nskb
)) {
179 int xfrm_output(struct sk_buff
*skb
)
184 return xfrm_output_gso(skb
);
186 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
187 err
= skb_checksum_help(skb
);
189 XFRM_INC_STATS(LINUX_MIB_XFRMOUTERROR
);
195 return xfrm_output2(skb
);
198 int xfrm_inner_extract_output(struct xfrm_state
*x
, struct sk_buff
*skb
)
200 struct xfrm_mode
*inner_mode
;
201 if (x
->sel
.family
== AF_UNSPEC
)
202 inner_mode
= xfrm_ip2inner_mode(x
,
203 xfrm_af2proto(skb
->dst
->ops
->family
));
205 inner_mode
= x
->inner_mode
;
207 if (inner_mode
== NULL
)
208 return -EAFNOSUPPORT
;
209 return inner_mode
->afinfo
->extract_output(x
, skb
);
212 EXPORT_SYMBOL_GPL(xfrm_output
);
213 EXPORT_SYMBOL_GPL(xfrm_inner_extract_output
);