2019-05-27 14:55:01 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* xfrm6_output.c - Common IPsec encapsulation code for IPv6.
|
|
|
|
* Copyright (C) 2002 USAGI/WIDE Project
|
|
|
|
* Copyright (c) 2004 Herbert Xu <herbert@gondor.apana.org.au>
|
|
|
|
*/
|
|
|
|
|
2007-10-09 08:16:30 +08:00
|
|
|
#include <linux/if_ether.h>
|
2007-11-14 13:40:52 +08:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/skbuff.h>
|
|
|
|
#include <linux/icmpv6.h>
|
2006-01-07 15:01:48 +08:00
|
|
|
#include <linux/netfilter_ipv6.h>
|
2007-11-14 13:40:52 +08:00
|
|
|
#include <net/dst.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <net/ipv6.h>
|
2010-12-17 19:42:42 +08:00
|
|
|
#include <net/ip6_route.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <net/xfrm.h>
|
|
|
|
|
2006-08-24 08:57:28 +08:00
|
|
|
int xfrm6_find_1stfragopt(struct xfrm_state *x, struct sk_buff *skb,
|
|
|
|
u8 **prevhdr)
|
|
|
|
{
|
|
|
|
return ip6_find_1stfragopt(skb, prevhdr);
|
|
|
|
}
|
2007-02-22 21:05:40 +08:00
|
|
|
EXPORT_SYMBOL(xfrm6_find_1stfragopt);
|
|
|
|
|
2020-05-04 16:06:06 +08:00
|
|
|
void xfrm6_local_rxpmtu(struct sk_buff *skb, u32 mtu)
|
2011-10-11 09:44:30 +08:00
|
|
|
{
|
|
|
|
struct flowi6 fl6;
|
|
|
|
struct sock *sk = skb->sk;
|
|
|
|
|
|
|
|
fl6.flowi6_oif = sk->sk_bound_dev_if;
|
2011-11-21 11:39:03 +08:00
|
|
|
fl6.daddr = ipv6_hdr(skb)->daddr;
|
2011-10-11 09:44:30 +08:00
|
|
|
|
|
|
|
ipv6_local_rxpmtu(sk, &fl6, mtu);
|
|
|
|
}
|
|
|
|
|
2013-08-14 19:05:23 +08:00
|
|
|
void xfrm6_local_error(struct sk_buff *skb, u32 mtu)
|
2011-10-11 09:44:30 +08:00
|
|
|
{
|
|
|
|
struct flowi6 fl6;
|
2013-08-18 19:46:57 +08:00
|
|
|
const struct ipv6hdr *hdr;
|
2011-10-11 09:44:30 +08:00
|
|
|
struct sock *sk = skb->sk;
|
|
|
|
|
2013-08-18 19:46:57 +08:00
|
|
|
hdr = skb->encapsulation ? inner_ipv6_hdr(skb) : ipv6_hdr(skb);
|
2011-10-11 09:44:30 +08:00
|
|
|
fl6.fl6_dport = inet_sk(sk)->inet_dport;
|
2013-08-18 19:46:57 +08:00
|
|
|
fl6.daddr = hdr->daddr;
|
2011-10-11 09:44:30 +08:00
|
|
|
|
|
|
|
ipv6_local_error(sk, EMSGSIZE, &fl6, mtu);
|
|
|
|
}
|
|
|
|
|
2015-06-13 11:12:04 +08:00
|
|
|
static int __xfrm6_output_finish(struct net *net, struct sock *sk, struct sk_buff *skb)
|
|
|
|
{
|
2020-05-04 16:06:09 +08:00
|
|
|
return xfrm_output(sk, skb);
|
2015-06-13 11:12:04 +08:00
|
|
|
}
|
|
|
|
|
2015-09-16 09:04:18 +08:00
|
|
|
static int __xfrm6_output(struct net *net, struct sock *sk, struct sk_buff *skb)
|
2010-12-17 19:42:42 +08:00
|
|
|
{
|
|
|
|
struct dst_entry *dst = skb_dst(skb);
|
|
|
|
struct xfrm_state *x = dst->xfrm;
|
2013-08-26 18:31:19 +08:00
|
|
|
int mtu;
|
2015-09-04 13:21:06 +08:00
|
|
|
bool toobig;
|
2013-08-13 10:35:58 +08:00
|
|
|
|
2014-04-07 14:08:52 +08:00
|
|
|
#ifdef CONFIG_NETFILTER
|
|
|
|
if (!x) {
|
|
|
|
IP6CB(skb)->flags |= IP6SKB_REROUTED;
|
2015-10-08 05:48:35 +08:00
|
|
|
return dst_output(net, sk, skb);
|
2014-04-07 14:08:52 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-09-04 13:21:06 +08:00
|
|
|
if (x->props.mode != XFRM_MODE_TUNNEL)
|
|
|
|
goto skip_frag;
|
|
|
|
|
2013-08-26 18:31:19 +08:00
|
|
|
if (skb->protocol == htons(ETH_P_IPV6))
|
|
|
|
mtu = ip6_skb_dst_mtu(skb);
|
|
|
|
else
|
|
|
|
mtu = dst_mtu(skb_dst(skb));
|
2011-10-11 09:44:30 +08:00
|
|
|
|
2015-09-04 13:21:06 +08:00
|
|
|
toobig = skb->len > mtu && !skb_is_gso(skb);
|
|
|
|
|
2020-05-04 16:06:07 +08:00
|
|
|
if (toobig && xfrm6_local_dontfrag(skb->sk)) {
|
2011-10-11 09:44:30 +08:00
|
|
|
xfrm6_local_rxpmtu(skb, mtu);
|
2018-08-31 19:38:49 +08:00
|
|
|
kfree_skb(skb);
|
2011-10-11 09:44:30 +08:00
|
|
|
return -EMSGSIZE;
|
2015-09-04 13:21:06 +08:00
|
|
|
} else if (!skb->ignore_df && toobig && skb->sk) {
|
2013-08-14 19:05:23 +08:00
|
|
|
xfrm_local_error(skb, mtu);
|
2018-08-31 19:38:49 +08:00
|
|
|
kfree_skb(skb);
|
2011-10-11 09:44:30 +08:00
|
|
|
return -EMSGSIZE;
|
|
|
|
}
|
2010-12-17 19:42:42 +08:00
|
|
|
|
2015-09-04 13:21:06 +08:00
|
|
|
if (toobig || dst_allfrag(skb_dst(skb)))
|
2015-06-13 11:12:04 +08:00
|
|
|
return ip6_fragment(net, sk, skb,
|
|
|
|
__xfrm6_output_finish);
|
2015-09-04 13:21:06 +08:00
|
|
|
|
|
|
|
skip_frag:
|
2020-05-04 16:06:09 +08:00
|
|
|
return xfrm_output(sk, skb);
|
2010-12-17 19:42:42 +08:00
|
|
|
}
|
|
|
|
|
2015-10-08 05:48:47 +08:00
|
|
|
int xfrm6_output(struct net *net, struct sock *sk, struct sk_buff *skb)
|
2006-01-07 15:01:48 +08:00
|
|
|
{
|
2015-09-16 09:04:16 +08:00
|
|
|
return NF_HOOK_COND(NFPROTO_IPV6, NF_INET_POST_ROUTING,
|
2019-11-13 00:14:37 +08:00
|
|
|
net, sk, skb, skb->dev, skb_dst(skb)->dev,
|
2015-09-16 09:04:16 +08:00
|
|
|
__xfrm6_output,
|
2014-04-07 14:08:52 +08:00
|
|
|
!(IP6CB(skb)->flags & IP6SKB_REROUTED));
|
2006-01-07 15:01:48 +08:00
|
|
|
}
|