2019-05-27 14:55:01 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* xfrm4_output.c - Common IPsec encapsulation code for IPv4.
|
|
|
|
* Copyright (c) 2004 Herbert Xu <herbert@gondor.apana.org.au>
|
|
|
|
*/
|
|
|
|
|
2006-06-22 18:08:03 +08:00
|
|
|
#include <linux/if_ether.h>
|
|
|
|
#include <linux/kernel.h>
|
2007-11-14 13:40:52 +08:00
|
|
|
#include <linux/module.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/skbuff.h>
|
2006-01-07 15:01:48 +08:00
|
|
|
#include <linux/netfilter_ipv4.h>
|
2007-11-14 13:40:52 +08:00
|
|
|
#include <net/dst.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <net/ip.h>
|
|
|
|
#include <net/xfrm.h>
|
|
|
|
#include <net/icmp.h>
|
|
|
|
|
2015-09-16 09:04:18 +08:00
|
|
|
static int __xfrm4_output(struct net *net, struct sock *sk, struct sk_buff *skb)
|
2014-04-07 14:08:52 +08:00
|
|
|
{
|
2020-05-11 16:33:42 +08:00
|
|
|
#ifdef CONFIG_NETFILTER
|
2014-04-07 14:08:52 +08:00
|
|
|
struct xfrm_state *x = skb_dst(skb)->xfrm;
|
|
|
|
|
|
|
|
if (!x) {
|
2006-06-22 18:08:03 +08:00
|
|
|
IPCB(skb)->flags |= IPSKB_REROUTED;
|
2015-10-08 05:48:35 +08:00
|
|
|
return dst_output(net, sk, skb);
|
2006-06-22 18:08:03 +08:00
|
|
|
}
|
2007-11-14 13:43:11 +08:00
|
|
|
#endif
|
2006-06-22 18:08:03 +08:00
|
|
|
|
2020-05-04 16:06:09 +08:00
|
|
|
return xfrm_output(sk, skb);
|
2006-06-22 18:08:03 +08:00
|
|
|
}
|
|
|
|
|
2015-10-08 05:48:47 +08:00
|
|
|
int xfrm4_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_IPV4, 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
|
|
|
__xfrm4_output,
|
2006-02-16 07:10:22 +08:00
|
|
|
!(IPCB(skb)->flags & IPSKB_REROUTED));
|
2006-01-07 15:01:48 +08:00
|
|
|
}
|
2013-08-14 19:05:23 +08:00
|
|
|
|
|
|
|
void xfrm4_local_error(struct sk_buff *skb, u32 mtu)
|
|
|
|
{
|
|
|
|
struct iphdr *hdr;
|
|
|
|
|
|
|
|
hdr = skb->encapsulation ? inner_ip_hdr(skb) : ip_hdr(skb);
|
|
|
|
ip_local_error(skb->sk, EMSGSIZE, hdr->daddr,
|
|
|
|
inet_sk(skb->sk)->inet_dport, mtu);
|
|
|
|
}
|