summaryrefslogtreecommitdiffstats
path: root/sys/netinet/ip_input.c
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2015-08-17 13:53:05 -0300
committerRenato Botelho <renato@netgate.com>2015-08-17 13:53:05 -0300
commit1a5bcc816de96758225aa0a4d2b5ddc7b88b6b58 (patch)
treef3719f5fc32497bee1670f4d905a743252da0714 /sys/netinet/ip_input.c
parentcd974c33ee2686b51a072a0938c0e5dc45729e00 (diff)
downloadFreeBSD-src-1a5bcc816de96758225aa0a4d2b5ddc7b88b6b58.zip
FreeBSD-src-1a5bcc816de96758225aa0a4d2b5ddc7b88b6b58.tar.gz
Importing pfSense patch IPSEC_sysctl.RELENG_10.diff
Diffstat (limited to 'sys/netinet/ip_input.c')
-rw-r--r--sys/netinet/ip_input.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/sys/netinet/ip_input.c b/sys/netinet/ip_input.c
index 77e6a48..81974fd 100644
--- a/sys/netinet/ip_input.c
+++ b/sys/netinet/ip_input.c
@@ -97,6 +97,11 @@ SYSCTL_VNET_INT(_net_inet_ip, IPCTL_FORWARDING, forwarding, CTLFLAG_RW,
&VNET_NAME(ipforwarding), 0,
"Enable IP forwarding between interfaces");
+VNET_DEFINE(int, ipipsec_in_use);
+SYSCTL_VNET_INT(_net_inet_ip, IPCTL_IPSEC_INUSE, ipsec_in_use, CTLFLAG_RW,
+ &VNET_NAME(ipipsec_in_use), 0,
+ "Enable IPSec processing of packets");
+
static VNET_DEFINE(int, ipsendredirects) = 1; /* XXX */
#define V_ipsendredirects VNET(ipsendredirects)
SYSCTL_VNET_INT(_net_inet_ip, IPCTL_SENDREDIRECTS, redirect, CTLFLAG_RW,
@@ -471,7 +476,7 @@ tooshort:
/*
* Bypass packet filtering for packets previously handled by IPsec.
*/
- if (ip_ipsec_filtertunnel(m))
+ if (V_ipipsec_in_use && ip_ipsec_filtertunnel(m))
goto passin;
#endif /* IPSEC */
@@ -678,7 +683,7 @@ passin:
m_freem(m);
} else {
#ifdef IPSEC
- if (ip_ipsec_fwd(m))
+ if (V_ipipsec_in_use && ip_ipsec_fwd(m))
goto bad;
#endif /* IPSEC */
ip_forward(m, dchg);
@@ -725,7 +730,7 @@ ours:
* note that we do not visit this with protocols with pcb layer
* code - like udp/tcp/raw ip.
*/
- if (ip_ipsec_input(m))
+ if (V_ipipsec_in_use && ip_ipsec_input(m))
goto bad;
#endif /* IPSEC */
@@ -1524,7 +1529,8 @@ ip_forward(struct mbuf *m, int srcrt)
* If IPsec is configured for this path,
* override any possibly mtu value set by ip_output.
*/
- mtu = ip_ipsec_mtu(mcopy, mtu);
+ if (V_ipipsec_in_use)
+ mtu = ip_ipsec_mtu(mcopy, mtu);
#endif /* IPSEC */
/*
* If the MTU was set before make sure we are below the
OpenPOWER on IntegriCloud