2 * xfrm6_output.c - Common IPsec encapsulation code for IPv6.
3 * Copyright (C) 2002 USAGI/WIDE Project
4 * Copyright (c) 2004 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/compiler.h>
13 #include <linux/skbuff.h>
14 #include <linux/spinlock.h>
15 #include <linux/icmpv6.h>
16 #include <linux/netfilter_ipv6.h>
20 int xfrm6_find_1stfragopt(struct xfrm_state
*x
, struct sk_buff
*skb
,
23 return ip6_find_1stfragopt(skb
, prevhdr
);
26 EXPORT_SYMBOL(xfrm6_find_1stfragopt
);
28 static int xfrm6_tunnel_check_size(struct sk_buff
*skb
)
31 struct dst_entry
*dst
= skb
->dst
;
34 if (mtu
< IPV6_MIN_MTU
)
39 icmpv6_send(skb
, ICMPV6_PKT_TOOBIG
, 0, mtu
, skb
->dev
);
46 static int xfrm6_output_one(struct sk_buff
*skb
)
48 struct dst_entry
*dst
= skb
->dst
;
49 struct xfrm_state
*x
= dst
->xfrm
;
52 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
53 err
= skb_checksum_help(skb
);
58 if (x
->props
.mode
== XFRM_MODE_TUNNEL
) {
59 err
= xfrm6_tunnel_check_size(skb
);
65 spin_lock_bh(&x
->lock
);
66 err
= xfrm_state_check(x
, skb
);
70 err
= x
->mode
->output(x
, skb
);
74 err
= x
->type
->output(x
, skb
);
78 x
->curlft
.bytes
+= skb
->len
;
80 if (x
->props
.mode
== XFRM_MODE_ROUTEOPTIMIZATION
)
81 x
->lastused
= get_seconds();
83 spin_unlock_bh(&x
->lock
);
85 skb_reset_network_header(skb
);
87 if (!(skb
->dst
= dst_pop(dst
))) {
93 } while (x
&& (x
->props
.mode
!= XFRM_MODE_TUNNEL
));
95 IP6CB(skb
)->flags
|= IP6SKB_XFRM_TRANSFORMED
;
101 spin_unlock_bh(&x
->lock
);
107 static int xfrm6_output_finish2(struct sk_buff
*skb
)
111 while (likely((err
= xfrm6_output_one(skb
)) == 0)) {
114 err
= nf_hook(PF_INET6
, NF_IP6_LOCAL_OUT
, &skb
, NULL
,
115 skb
->dst
->dev
, dst_output
);
116 if (unlikely(err
!= 1))
120 return dst_output(skb
);
122 err
= nf_hook(PF_INET6
, NF_IP6_POST_ROUTING
, &skb
, NULL
,
123 skb
->dst
->dev
, xfrm6_output_finish2
);
124 if (unlikely(err
!= 1))
131 static int xfrm6_output_finish(struct sk_buff
*skb
)
133 struct sk_buff
*segs
;
135 if (!skb_is_gso(skb
))
136 return xfrm6_output_finish2(skb
);
138 skb
->protocol
= htons(ETH_P_IPV6
);
139 segs
= skb_gso_segment(skb
, 0);
141 if (unlikely(IS_ERR(segs
)))
142 return PTR_ERR(segs
);
145 struct sk_buff
*nskb
= segs
->next
;
149 err
= xfrm6_output_finish2(segs
);
152 while ((segs
= nskb
)) {
166 int xfrm6_output(struct sk_buff
*skb
)
168 return NF_HOOK(PF_INET6
, NF_IP6_POST_ROUTING
, skb
, NULL
, skb
->dst
->dev
,
169 xfrm6_output_finish
);