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/kernel.h>
14 #include <linux/module.h>
15 #include <linux/skbuff.h>
16 #include <linux/icmpv6.h>
17 #include <linux/netfilter_ipv6.h>
20 #include <net/ip6_route.h>
23 int xfrm6_find_1stfragopt(struct xfrm_state
*x
, struct sk_buff
*skb
,
26 return ip6_find_1stfragopt(skb
, prevhdr
);
29 EXPORT_SYMBOL(xfrm6_find_1stfragopt
);
31 static int xfrm6_local_dontfrag(struct sk_buff
*skb
)
34 struct sock
*sk
= skb
->sk
;
37 proto
= sk
->sk_protocol
;
39 if (proto
== IPPROTO_UDP
|| proto
== IPPROTO_RAW
)
40 return inet6_sk(sk
)->dontfrag
;
46 static void xfrm6_local_rxpmtu(struct sk_buff
*skb
, u32 mtu
)
49 struct sock
*sk
= skb
->sk
;
51 fl6
.flowi6_oif
= sk
->sk_bound_dev_if
;
52 fl6
.daddr
= ipv6_hdr(skb
)->daddr
;
54 ipv6_local_rxpmtu(sk
, &fl6
, mtu
);
57 static void xfrm6_local_error(struct sk_buff
*skb
, u32 mtu
)
60 struct sock
*sk
= skb
->sk
;
62 fl6
.fl6_dport
= inet_sk(sk
)->inet_dport
;
63 fl6
.daddr
= ipv6_hdr(skb
)->daddr
;
65 ipv6_local_error(sk
, EMSGSIZE
, &fl6
, mtu
);
68 static int xfrm6_tunnel_check_size(struct sk_buff
*skb
)
71 struct dst_entry
*dst
= skb_dst(skb
);
74 if (mtu
< IPV6_MIN_MTU
)
77 if (!skb
->local_df
&& skb
->len
> mtu
) {
80 if (xfrm6_local_dontfrag(skb
))
81 xfrm6_local_rxpmtu(skb
, mtu
);
83 xfrm6_local_error(skb
, mtu
);
85 icmpv6_send(skb
, ICMPV6_PKT_TOOBIG
, 0, mtu
);
92 int xfrm6_extract_output(struct xfrm_state
*x
, struct sk_buff
*skb
)
96 err
= xfrm6_tunnel_check_size(skb
);
100 XFRM_MODE_SKB_CB(skb
)->protocol
= ipv6_hdr(skb
)->nexthdr
;
102 return xfrm6_extract_header(skb
);
105 int xfrm6_prepare_output(struct xfrm_state
*x
, struct sk_buff
*skb
)
109 err
= xfrm_inner_extract_output(x
, skb
);
113 memset(IP6CB(skb
), 0, sizeof(*IP6CB(skb
)));
114 #ifdef CONFIG_NETFILTER
115 IP6CB(skb
)->flags
|= IP6SKB_XFRM_TRANSFORMED
;
118 skb
->protocol
= htons(ETH_P_IPV6
);
121 return x
->outer_mode
->output2(x
, skb
);
123 EXPORT_SYMBOL(xfrm6_prepare_output
);
125 int xfrm6_output_finish(struct sk_buff
*skb
)
127 #ifdef CONFIG_NETFILTER
128 IP6CB(skb
)->flags
|= IP6SKB_XFRM_TRANSFORMED
;
131 skb
->protocol
= htons(ETH_P_IPV6
);
132 return xfrm_output(skb
);
135 static int __xfrm6_output(struct sk_buff
*skb
)
137 struct dst_entry
*dst
= skb_dst(skb
);
138 struct xfrm_state
*x
= dst
->xfrm
;
139 int mtu
= ip6_skb_dst_mtu(skb
);
141 if (skb
->len
> mtu
&& xfrm6_local_dontfrag(skb
)) {
142 xfrm6_local_rxpmtu(skb
, mtu
);
144 } else if (!skb
->local_df
&& skb
->len
> mtu
&& skb
->sk
) {
145 xfrm6_local_error(skb
, mtu
);
149 if (x
->props
.mode
== XFRM_MODE_TUNNEL
&&
150 ((skb
->len
> mtu
&& !skb_is_gso(skb
)) ||
151 dst_allfrag(skb_dst(skb
)))) {
152 return ip6_fragment(skb
, x
->outer_mode
->afinfo
->output_finish
);
154 return x
->outer_mode
->afinfo
->output_finish(skb
);
157 int xfrm6_output(struct sk_buff
*skb
)
159 return NF_HOOK(NFPROTO_IPV6
, NF_INET_POST_ROUTING
, skb
, NULL
,
160 skb_dst(skb
)->dev
, __xfrm6_output
);