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