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/if_ether.h>
13 #include <linux/compiler.h>
14 #include <linux/skbuff.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 inline int xfrm6_output_one(struct sk_buff
*skb
)
48 struct dst_entry
*dst
= skb
->dst
;
49 struct xfrm_state
*x
= dst
->xfrm
;
52 if (x
->props
.mode
== XFRM_MODE_TUNNEL
) {
53 err
= xfrm6_tunnel_check_size(skb
);
58 err
= xfrm_output(skb
);
62 IP6CB(skb
)->flags
|= IP6SKB_XFRM_TRANSFORMED
;
72 static int xfrm6_output_finish2(struct sk_buff
*skb
)
76 while (likely((err
= xfrm6_output_one(skb
)) == 0)) {
79 err
= nf_hook(PF_INET6
, NF_IP6_LOCAL_OUT
, &skb
, NULL
,
80 skb
->dst
->dev
, dst_output
);
81 if (unlikely(err
!= 1))
85 return dst_output(skb
);
87 err
= nf_hook(PF_INET6
, NF_IP6_POST_ROUTING
, &skb
, NULL
,
88 skb
->dst
->dev
, xfrm6_output_finish2
);
89 if (unlikely(err
!= 1))
96 static int xfrm6_output_finish(struct sk_buff
*skb
)
100 if (!skb_is_gso(skb
))
101 return xfrm6_output_finish2(skb
);
103 skb
->protocol
= htons(ETH_P_IPV6
);
104 segs
= skb_gso_segment(skb
, 0);
106 if (unlikely(IS_ERR(segs
)))
107 return PTR_ERR(segs
);
110 struct sk_buff
*nskb
= segs
->next
;
114 err
= xfrm6_output_finish2(segs
);
117 while ((segs
= nskb
)) {
131 int xfrm6_output(struct sk_buff
*skb
)
133 return NF_HOOK(PF_INET6
, NF_IP6_POST_ROUTING
, skb
, NULL
, skb
->dst
->dev
,
134 xfrm6_output_finish
);