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