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;
53 if (x->props.mode == XFRM_MODE_TUNNEL) {
54 err = xfrm6_tunnel_check_size(skb);
59 err = xfrm_output(skb);
64 iph->payload_len = htons(skb->len - sizeof(*iph));
66 IP6CB(skb)->flags |= IP6SKB_XFRM_TRANSFORMED;
76 static int xfrm6_output_finish2(struct sk_buff *skb)
80 while (likely((err = xfrm6_output_one(skb)) == 0)) {
83 err = nf_hook(PF_INET6, NF_IP6_LOCAL_OUT, &skb, NULL,
84 skb->dst->dev, dst_output);
85 if (unlikely(err != 1))
89 return dst_output(skb);
91 err = nf_hook(PF_INET6, NF_IP6_POST_ROUTING, &skb, NULL,
92 skb->dst->dev, xfrm6_output_finish2);
93 if (unlikely(err != 1))
100 static int xfrm6_output_finish(struct sk_buff *skb)
102 struct sk_buff *segs;
104 if (!skb_is_gso(skb))
105 return xfrm6_output_finish2(skb);
107 skb->protocol = htons(ETH_P_IPV6);
108 segs = skb_gso_segment(skb, 0);
110 if (unlikely(IS_ERR(segs)))
111 return PTR_ERR(segs);
114 struct sk_buff *nskb = segs->next;
118 err = xfrm6_output_finish2(segs);
121 while ((segs = nskb)) {
135 int xfrm6_output(struct sk_buff *skb)
137 return NF_HOOK(PF_INET6, NF_IP6_POST_ROUTING, skb, NULL, skb->dst->dev,
138 xfrm6_output_finish);