summaryrefslogtreecommitdiffstats
path: root/sys/netinet6
diff options
context:
space:
mode:
authorLuiz Otavio O Souza <luiz@netgate.com>2015-09-15 12:30:22 -0500
committerLuiz Otavio O Souza <luiz@netgate.com>2015-10-20 11:33:19 -0500
commit15988797df0ce562e67d6fa1c912e4cda6194678 (patch)
treedb88a434d06f9d750cc1b7e8b42a2908a937aafe /sys/netinet6
parente778bc828bb26f886d4405003534b0c83aae21be (diff)
downloadFreeBSD-src-15988797df0ce562e67d6fa1c912e4cda6194678.zip
FreeBSD-src-15988797df0ce562e67d6fa1c912e4cda6194678.tar.gz
Revert IPSEC patches.
Revert "Importing pfSense patch IPSEC_sysctl.RELENG_10.diff" This reverts commit 1a5bcc816de96758225aa0a4d2b5ddc7b88b6b58. TAG: IPSEC-HEAD Issue: #4841
Diffstat (limited to 'sys/netinet6')
-rw-r--r--sys/netinet6/ip6_input.c3
-rw-r--r--sys/netinet6/ip6_output.c101
2 files changed, 47 insertions, 57 deletions
diff --git a/sys/netinet6/ip6_input.c b/sys/netinet6/ip6_input.c
index 08f29a0..b6602d3 100644
--- a/sys/netinet6/ip6_input.c
+++ b/sys/netinet6/ip6_input.c
@@ -133,7 +133,6 @@ static struct netisr_handler ip6_nh = {
.nh_policy = NETISR_POLICY_FLOW,
};
-#define V_ipipsec_in_use VNET(ipipsec_in_use)
VNET_DECLARE(struct callout, in6_tmpaddrtimer_ch);
#define V_in6_tmpaddrtimer_ch VNET(in6_tmpaddrtimer_ch)
@@ -1005,7 +1004,6 @@ passin:
}
#ifdef IPSEC
- if (V_ipipsec_in_use) {
/*
* enforce IPsec policy checking if we are seeing last header.
* note that we do not visit this with protocols with pcb layer
@@ -1013,7 +1011,6 @@ passin:
*/
if (ip6_ipsec_input(m, nxt))
goto bad;
- }
#endif /* IPSEC */
/*
diff --git a/sys/netinet6/ip6_output.c b/sys/netinet6/ip6_output.c
index 43c86d9..4fbac61 100644
--- a/sys/netinet6/ip6_output.c
+++ b/sys/netinet6/ip6_output.c
@@ -147,7 +147,6 @@ static int ip6_getpmtu(struct route_in6 *, struct route_in6 *,
struct ifnet *, struct in6_addr *, u_long *, int *, u_int);
static int copypktopts(struct ip6_pktopts *, struct ip6_pktopts *, int);
-#define V_ipipsec_in_use VNET(ipipsec_in_use)
/*
* Make an extension header from option data. hp is the source, and
@@ -346,21 +345,19 @@ ip6_output(struct mbuf *m0, struct ip6_pktopts *opt,
}
#ifdef IPSEC
- if (V_ipipsec_in_use) {
- /*
- * IPSec checking which handles several cases.
- * FAST IPSEC: We re-injected the packet.
- */
- switch(ip6_ipsec_output(&m, inp, &flags, &error, &ifp))
- {
- case 1: /* Bad packet */
- goto freehdrs;
- case -1: /* IPSec done */
- goto done;
- case 0: /* No IPSec */
- default:
- break;
- }
+ /*
+ * IPSec checking which handles several cases.
+ * FAST IPSEC: We re-injected the packet.
+ */
+ switch(ip6_ipsec_output(&m, inp, &flags, &error, &ifp))
+ {
+ case 1: /* Bad packet */
+ goto freehdrs;
+ case -1: /* IPSec done */
+ goto done;
+ case 0: /* No IPSec */
+ default:
+ break;
}
#endif /* IPSEC */
@@ -1725,21 +1722,19 @@ do { \
#ifdef IPSEC
case IPV6_IPSEC_POLICY:
{
- if (V_ipipsec_in_use) {
- caddr_t req;
- struct mbuf *m;
+ caddr_t req;
+ struct mbuf *m;
- if ((error = soopt_getm(sopt, &m)) != 0) /* XXX */
- break;
- if ((error = soopt_mcopyin(sopt, m)) != 0) /* XXX */
- break;
- req = mtod(m, caddr_t);
- error = ipsec_set_policy(in6p, optname, req,
- m->m_len, (sopt->sopt_td != NULL) ?
- sopt->sopt_td->td_ucred : NULL);
- m_freem(m);
+ if ((error = soopt_getm(sopt, &m)) != 0) /* XXX */
break;
- }
+ if ((error = soopt_mcopyin(sopt, m)) != 0) /* XXX */
+ break;
+ req = mtod(m, caddr_t);
+ error = ipsec_set_policy(in6p, optname, req,
+ m->m_len, (sopt->sopt_td != NULL) ?
+ sopt->sopt_td->td_ucred : NULL);
+ m_freem(m);
+ break;
}
#endif /* IPSEC */
@@ -1938,33 +1933,31 @@ do { \
#ifdef IPSEC
case IPV6_IPSEC_POLICY:
{
- if (V_ipipsec_in_use) {
- caddr_t req = NULL;
- size_t len = 0;
- struct mbuf *m = NULL;
- struct mbuf **mp = &m;
- size_t ovalsize = sopt->sopt_valsize;
- caddr_t oval = (caddr_t)sopt->sopt_val;
-
- error = soopt_getm(sopt, &m); /* XXX */
- if (error != 0)
- break;
- error = soopt_mcopyin(sopt, m); /* XXX */
- if (error != 0)
- break;
- sopt->sopt_valsize = ovalsize;
- sopt->sopt_val = oval;
- if (m) {
- req = mtod(m, caddr_t);
- len = m->m_len;
- }
- error = ipsec_get_policy(in6p, req, len, mp);
- if (error == 0)
- error = soopt_mcopyout(sopt, m); /* XXX */
- if (error == 0 && m)
- m_freem(m);
+ caddr_t req = NULL;
+ size_t len = 0;
+ struct mbuf *m = NULL;
+ struct mbuf **mp = &m;
+ size_t ovalsize = sopt->sopt_valsize;
+ caddr_t oval = (caddr_t)sopt->sopt_val;
+
+ error = soopt_getm(sopt, &m); /* XXX */
+ if (error != 0)
+ break;
+ error = soopt_mcopyin(sopt, m); /* XXX */
+ if (error != 0)
break;
+ sopt->sopt_valsize = ovalsize;
+ sopt->sopt_val = oval;
+ if (m) {
+ req = mtod(m, caddr_t);
+ len = m->m_len;
}
+ error = ipsec_get_policy(in6p, req, len, mp);
+ if (error == 0)
+ error = soopt_mcopyout(sopt, m); /* XXX */
+ if (error == 0 && m)
+ m_freem(m);
+ break;
}
#endif /* IPSEC */
OpenPOWER on IntegriCloud