2007-07-01 11:41:27 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1982, 1986, 1988, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2007-12-10 16:03:40 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2011-04-27 19:28:42 +00:00
|
|
|
#include "opt_inet.h"
|
2015-05-07 12:15:45 +00:00
|
|
|
#include "opt_sctp.h"
|
2007-07-01 11:41:27 +00:00
|
|
|
#include "opt_ipsec.h"
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/mac.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/mbuf.h>
|
|
|
|
#include <sys/protosw.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/socketvar.h>
|
|
|
|
#include <sys/sysctl.h>
|
2011-04-27 19:28:42 +00:00
|
|
|
#include <sys/syslog.h>
|
2007-07-01 11:41:27 +00:00
|
|
|
|
|
|
|
#include <net/if.h>
|
2013-10-26 17:58:36 +00:00
|
|
|
#include <net/if_var.h>
|
Build on Jeff Roberson's linker-set based dynamic per-CPU allocator
(DPCPU), as suggested by Peter Wemm, and implement a new per-virtual
network stack memory allocator. Modify vnet to use the allocator
instead of monolithic global container structures (vinet, ...). This
change solves many binary compatibility problems associated with
VIMAGE, and restores ELF symbols for virtualized global variables.
Each virtualized global variable exists as a "reference copy", and also
once per virtual network stack. Virtualized global variables are
tagged at compile-time, placing the in a special linker set, which is
loaded into a contiguous region of kernel memory. Virtualized global
variables in the base kernel are linked as normal, but those in modules
are copied and relocated to a reserved portion of the kernel's vnet
region with the help of a the kernel linker.
Virtualized global variables exist in per-vnet memory set up when the
network stack instance is created, and are initialized statically from
the reference copy. Run-time access occurs via an accessor macro, which
converts from the current vnet and requested symbol to a per-vnet
address. When "options VIMAGE" is not compiled into the kernel, normal
global ELF symbols will be used instead and indirection is avoided.
This change restores static initialization for network stack global
variables, restores support for non-global symbols and types, eliminates
the need for many subsystem constructors, eliminates large per-subsystem
structures that caused many binary compatibility issues both for
monitoring applications (netstat) and kernel modules, removes the
per-function INIT_VNET_*() macros throughout the stack, eliminates the
need for vnet_symmap ksym(2) munging, and eliminates duplicate
definitions of virtualized globals under VIMAGE_GLOBALS.
Bump __FreeBSD_version and update UPDATING.
Portions submitted by: bz
Reviewed by: bz, zec
Discussed with: gnn, jamie, jeff, jhb, julian, sam
Suggested by: peter
Approved by: re (kensmith)
2009-07-14 22:48:30 +00:00
|
|
|
#include <net/vnet.h>
|
2007-07-01 11:41:27 +00:00
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/in_systm.h>
|
|
|
|
#include <netinet/in_var.h>
|
|
|
|
#include <netinet/ip.h>
|
2008-06-29 00:25:16 +00:00
|
|
|
#include <netinet/ip6.h>
|
2007-07-01 11:41:27 +00:00
|
|
|
#include <netinet/in_pcb.h>
|
|
|
|
#include <netinet/ip_var.h>
|
|
|
|
#include <netinet/ip_options.h>
|
2015-05-07 12:15:45 +00:00
|
|
|
#ifdef SCTP
|
|
|
|
#include <netinet/sctp_crc32.h>
|
|
|
|
#endif
|
2007-07-01 11:41:27 +00:00
|
|
|
|
|
|
|
#include <machine/in_cksum.h>
|
|
|
|
|
|
|
|
#include <netipsec/ipsec.h>
|
|
|
|
#include <netipsec/ipsec6.h>
|
|
|
|
#include <netipsec/xform.h>
|
|
|
|
#include <netipsec/key.h>
|
|
|
|
#ifdef IPSEC_DEBUG
|
|
|
|
#include <netipsec/key_debug.h>
|
|
|
|
#else
|
|
|
|
#define KEYDEBUG(lev,arg)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <netinet6/ip6_ipsec.h>
|
2008-06-29 07:34:21 +00:00
|
|
|
#include <netinet6/ip6_var.h>
|
2007-07-01 11:41:27 +00:00
|
|
|
|
|
|
|
extern struct protosw inet6sw[];
|
|
|
|
|
2010-11-22 19:32:54 +00:00
|
|
|
static VNET_DEFINE(int, ip6_ipsec6_filtertunnel) = 0;
|
2009-07-16 21:13:04 +00:00
|
|
|
#define V_ip6_ipsec6_filtertunnel VNET(ip6_ipsec6_filtertunnel)
|
Build on Jeff Roberson's linker-set based dynamic per-CPU allocator
(DPCPU), as suggested by Peter Wemm, and implement a new per-virtual
network stack memory allocator. Modify vnet to use the allocator
instead of monolithic global container structures (vinet, ...). This
change solves many binary compatibility problems associated with
VIMAGE, and restores ELF symbols for virtualized global variables.
Each virtualized global variable exists as a "reference copy", and also
once per virtual network stack. Virtualized global variables are
tagged at compile-time, placing the in a special linker set, which is
loaded into a contiguous region of kernel memory. Virtualized global
variables in the base kernel are linked as normal, but those in modules
are copied and relocated to a reserved portion of the kernel's vnet
region with the help of a the kernel linker.
Virtualized global variables exist in per-vnet memory set up when the
network stack instance is created, and are initialized statically from
the reference copy. Run-time access occurs via an accessor macro, which
converts from the current vnet and requested symbol to a per-vnet
address. When "options VIMAGE" is not compiled into the kernel, normal
global ELF symbols will be used instead and indirection is avoided.
This change restores static initialization for network stack global
variables, restores support for non-global symbols and types, eliminates
the need for many subsystem constructors, eliminates large per-subsystem
structures that caused many binary compatibility issues both for
monitoring applications (netstat) and kernel modules, removes the
per-function INIT_VNET_*() macros throughout the stack, eliminates the
need for vnet_symmap ksym(2) munging, and eliminates duplicate
definitions of virtualized globals under VIMAGE_GLOBALS.
Bump __FreeBSD_version and update UPDATING.
Portions submitted by: bz
Reviewed by: bz, zec
Discussed with: gnn, jamie, jeff, jhb, julian, sam
Suggested by: peter
Approved by: re (kensmith)
2009-07-14 22:48:30 +00:00
|
|
|
|
|
|
|
SYSCTL_DECL(_net_inet6_ipsec6);
|
2014-11-07 09:39:05 +00:00
|
|
|
SYSCTL_INT(_net_inet6_ipsec6, OID_AUTO, filtertunnel,
|
|
|
|
CTLFLAG_VNET | CTLFLAG_RW, &VNET_NAME(ip6_ipsec6_filtertunnel), 0,
|
Build on Jeff Roberson's linker-set based dynamic per-CPU allocator
(DPCPU), as suggested by Peter Wemm, and implement a new per-virtual
network stack memory allocator. Modify vnet to use the allocator
instead of monolithic global container structures (vinet, ...). This
change solves many binary compatibility problems associated with
VIMAGE, and restores ELF symbols for virtualized global variables.
Each virtualized global variable exists as a "reference copy", and also
once per virtual network stack. Virtualized global variables are
tagged at compile-time, placing the in a special linker set, which is
loaded into a contiguous region of kernel memory. Virtualized global
variables in the base kernel are linked as normal, but those in modules
are copied and relocated to a reserved portion of the kernel's vnet
region with the help of a the kernel linker.
Virtualized global variables exist in per-vnet memory set up when the
network stack instance is created, and are initialized statically from
the reference copy. Run-time access occurs via an accessor macro, which
converts from the current vnet and requested symbol to a per-vnet
address. When "options VIMAGE" is not compiled into the kernel, normal
global ELF symbols will be used instead and indirection is avoided.
This change restores static initialization for network stack global
variables, restores support for non-global symbols and types, eliminates
the need for many subsystem constructors, eliminates large per-subsystem
structures that caused many binary compatibility issues both for
monitoring applications (netstat) and kernel modules, removes the
per-function INIT_VNET_*() macros throughout the stack, eliminates the
need for vnet_symmap ksym(2) munging, and eliminates duplicate
definitions of virtualized globals under VIMAGE_GLOBALS.
Bump __FreeBSD_version and update UPDATING.
Portions submitted by: bz
Reviewed by: bz, zec
Discussed with: gnn, jamie, jeff, jhb, julian, sam
Suggested by: peter
Approved by: re (kensmith)
2009-07-14 22:48:30 +00:00
|
|
|
"If set filter packets from an IPsec tunnel.");
|
2009-05-23 16:42:38 +00:00
|
|
|
|
2007-07-01 11:41:27 +00:00
|
|
|
/*
|
|
|
|
* Check if we have to jump over firewall processing for this packet.
|
2011-06-08 03:02:11 +00:00
|
|
|
* Called from ip6_input().
|
2007-07-01 11:41:27 +00:00
|
|
|
* 1 = jump over firewall, 0 = packet goes through firewall.
|
|
|
|
*/
|
|
|
|
int
|
2007-08-05 16:16:15 +00:00
|
|
|
ip6_ipsec_filtertunnel(struct mbuf *m)
|
2007-07-01 11:41:27 +00:00
|
|
|
{
|
2009-05-23 16:42:38 +00:00
|
|
|
|
2007-07-01 11:41:27 +00:00
|
|
|
/*
|
2011-06-08 03:02:11 +00:00
|
|
|
* Bypass packet filtering for packets previously handled by IPsec.
|
2007-07-01 11:41:27 +00:00
|
|
|
*/
|
2009-05-23 16:42:38 +00:00
|
|
|
if (!V_ip6_ipsec6_filtertunnel &&
|
|
|
|
m_tag_find(m, PACKET_TAG_IPSEC_IN_DONE, NULL) != NULL)
|
2015-05-07 12:15:45 +00:00
|
|
|
return (1);
|
|
|
|
return (0);
|
2007-07-01 11:41:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if this packet has an active SA and needs to be dropped instead
|
|
|
|
* of forwarded.
|
2014-12-11 19:09:57 +00:00
|
|
|
* Called from ip6_forward().
|
2007-07-01 11:41:27 +00:00
|
|
|
* 1 = drop packet, 0 = forward packet.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
ip6_ipsec_fwd(struct mbuf *m)
|
|
|
|
{
|
2014-12-11 19:09:57 +00:00
|
|
|
|
|
|
|
return (ipsec6_in_reject(m, NULL));
|
2007-07-01 11:41:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if protocol type doesn't have a further header and do IPSEC
|
|
|
|
* decryption or reject right now. Protocols with further headers get
|
|
|
|
* their IPSEC treatment within the protocol specific processing.
|
2011-06-08 03:02:11 +00:00
|
|
|
* Called from ip6_input().
|
2007-07-01 11:41:27 +00:00
|
|
|
* 1 = drop packet, 0 = continue processing packet.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
ip6_ipsec_input(struct mbuf *m, int nxt)
|
|
|
|
{
|
2014-12-11 19:09:57 +00:00
|
|
|
|
2007-07-01 11:41:27 +00:00
|
|
|
/*
|
|
|
|
* enforce IPsec policy checking if we are seeing last header.
|
|
|
|
* note that we do not visit this with protocols with pcb layer
|
|
|
|
* code - like udp/tcp/raw ip.
|
|
|
|
*/
|
2014-12-11 19:09:57 +00:00
|
|
|
if ((inet6sw[ip6_protox[nxt]].pr_flags & PR_LASTHDR) != 0)
|
|
|
|
return (ipsec6_in_reject(m, NULL));
|
2014-12-11 14:58:55 +00:00
|
|
|
return (0);
|
2007-07-01 11:41:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Called from ip6_output().
|
|
|
|
* 1 = drop packet, 0 = continue processing packet,
|
2007-07-05 16:29:40 +00:00
|
|
|
* -1 = packet was reinjected and stop processing packet
|
|
|
|
*/
|
2007-07-01 11:41:27 +00:00
|
|
|
|
|
|
|
int
|
2014-12-11 18:35:34 +00:00
|
|
|
ip6_ipsec_output(struct mbuf **m, struct inpcb *inp, int *error)
|
2007-07-01 11:41:27 +00:00
|
|
|
{
|
2014-12-11 14:43:44 +00:00
|
|
|
struct secpolicy *sp;
|
2007-07-01 11:41:27 +00:00
|
|
|
|
2014-12-11 14:43:44 +00:00
|
|
|
/*
|
|
|
|
* Check the security policy (SP) for the packet and, if
|
|
|
|
* required, do IPsec-related processing. There are two
|
|
|
|
* cases here; the first time a packet is sent through
|
|
|
|
* it will be untagged and handled by ipsec4_checkpolicy.
|
|
|
|
* If the packet is resubmitted to ip6_output (e.g. after
|
|
|
|
* AH, ESP, etc. processing), there will be a tag to bypass
|
|
|
|
* the lookup and related policy checking.
|
|
|
|
*/
|
|
|
|
if (m_tag_find(*m, PACKET_TAG_IPSEC_OUT_DONE, NULL) != NULL) {
|
|
|
|
*error = 0;
|
|
|
|
return (0);
|
|
|
|
}
|
2014-12-11 18:35:34 +00:00
|
|
|
sp = ipsec4_checkpolicy(*m, IPSEC_DIR_OUTBOUND, error, inp);
|
2007-07-01 11:41:27 +00:00
|
|
|
/*
|
|
|
|
* There are four return cases:
|
2007-07-05 16:29:40 +00:00
|
|
|
* sp != NULL apply IPsec policy
|
2007-07-01 11:41:27 +00:00
|
|
|
* sp == NULL, error == 0 no IPsec handling needed
|
|
|
|
* sp == NULL, error == -EINVAL discard packet w/o error
|
|
|
|
* sp == NULL, error != 0 discard packet, report error
|
|
|
|
*/
|
2014-05-28 12:45:27 +00:00
|
|
|
if (sp != NULL) {
|
2007-07-01 11:41:27 +00:00
|
|
|
/*
|
|
|
|
* Do delayed checksums now because we send before
|
|
|
|
* this is done in the normal processing path.
|
|
|
|
*/
|
2012-07-31 05:44:03 +00:00
|
|
|
#ifdef INET
|
2007-07-01 11:41:27 +00:00
|
|
|
if ((*m)->m_pkthdr.csum_flags & CSUM_DELAY_DATA) {
|
|
|
|
in_delayed_cksum(*m);
|
|
|
|
(*m)->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA;
|
|
|
|
}
|
2012-07-31 05:44:03 +00:00
|
|
|
#endif
|
2014-05-28 12:45:27 +00:00
|
|
|
if ((*m)->m_pkthdr.csum_flags & CSUM_DELAY_DATA_IPV6) {
|
|
|
|
in6_delayed_cksum(*m, (*m)->m_pkthdr.len - sizeof(struct ip6_hdr),
|
|
|
|
sizeof(struct ip6_hdr));
|
|
|
|
(*m)->m_pkthdr.csum_flags &= ~CSUM_DELAY_DATA_IPV6;
|
|
|
|
}
|
|
|
|
#ifdef SCTP
|
|
|
|
if ((*m)->m_pkthdr.csum_flags & CSUM_SCTP_IPV6) {
|
|
|
|
sctp_delayed_cksum(*m, sizeof(struct ip6_hdr));
|
|
|
|
(*m)->m_pkthdr.csum_flags &= ~CSUM_SCTP_IPV6;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* NB: callee frees mbuf */
|
|
|
|
*error = ipsec6_process_packet(*m, sp->req);
|
2015-09-30 08:16:33 +00:00
|
|
|
KEY_FREESP(&sp);
|
2014-05-28 12:45:27 +00:00
|
|
|
if (*error == EJUSTRETURN) {
|
|
|
|
/*
|
|
|
|
* We had a SP with a level of 'use' and no SA. We
|
|
|
|
* will just continue to process the packet without
|
|
|
|
* IPsec processing.
|
|
|
|
*/
|
|
|
|
*error = 0;
|
|
|
|
goto done;
|
|
|
|
}
|
2007-07-01 11:41:27 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Preserve KAME behaviour: ENOENT can be returned
|
|
|
|
* when an SA acquire is in progress. Don't propagate
|
|
|
|
* this to user-level; it confuses applications.
|
|
|
|
*
|
|
|
|
* XXX this will go away when the SADB is redone.
|
|
|
|
*/
|
|
|
|
if (*error == ENOENT)
|
|
|
|
*error = 0;
|
2014-05-28 12:45:27 +00:00
|
|
|
goto reinjected;
|
2007-07-01 11:41:27 +00:00
|
|
|
} else { /* sp == NULL */
|
|
|
|
if (*error != 0) {
|
|
|
|
/*
|
|
|
|
* Hack: -EINVAL is used to signal that a packet
|
|
|
|
* should be silently discarded. This is typically
|
|
|
|
* because we asked key management for an SA and
|
|
|
|
* it was delayed (e.g. kicked up to IKE).
|
|
|
|
*/
|
|
|
|
if (*error == -EINVAL)
|
|
|
|
*error = 0;
|
|
|
|
goto bad;
|
|
|
|
}
|
2014-12-11 14:43:44 +00:00
|
|
|
/* No IPsec processing for this packet. */
|
2007-07-01 11:41:27 +00:00
|
|
|
}
|
|
|
|
done:
|
2015-04-27 01:11:09 +00:00
|
|
|
return (0);
|
2014-05-28 12:45:27 +00:00
|
|
|
reinjected:
|
2015-04-27 00:55:56 +00:00
|
|
|
return (-1);
|
2007-07-01 11:41:27 +00:00
|
|
|
bad:
|
2014-05-28 12:45:27 +00:00
|
|
|
if (sp != NULL)
|
|
|
|
KEY_FREESP(&sp);
|
2015-05-07 12:15:45 +00:00
|
|
|
return (1);
|
2007-07-01 11:41:27 +00:00
|
|
|
}
|
|
|
|
|
2008-03-14 11:44:30 +00:00
|
|
|
#if 0
|
2007-07-01 11:41:27 +00:00
|
|
|
/*
|
|
|
|
* Compute the MTU for a forwarded packet that gets IPSEC encapsulated.
|
|
|
|
* Called from ip_forward().
|
|
|
|
* Returns MTU suggestion for ICMP needfrag reply.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
ip6_ipsec_mtu(struct mbuf *m)
|
|
|
|
{
|
|
|
|
int mtu = 0;
|
|
|
|
/*
|
|
|
|
* If the packet is routed over IPsec tunnel, tell the
|
|
|
|
* originator the tunnel MTU.
|
|
|
|
* tunnel MTU = if MTU - sizeof(IP) - ESP/AH hdrsiz
|
|
|
|
* XXX quickhack!!!
|
|
|
|
*/
|
2008-03-14 11:44:30 +00:00
|
|
|
#ifdef IPSEC
|
2007-07-01 11:41:27 +00:00
|
|
|
struct secpolicy *sp = NULL;
|
|
|
|
int ipsecerror;
|
|
|
|
int ipsechdr;
|
|
|
|
struct route *ro;
|
|
|
|
sp = ipsec_getpolicybyaddr(m,
|
|
|
|
IPSEC_DIR_OUTBOUND,
|
|
|
|
IP_FORWARDING,
|
|
|
|
&ipsecerror);
|
|
|
|
if (sp != NULL) {
|
|
|
|
/* count IPsec header size */
|
2009-02-08 09:27:07 +00:00
|
|
|
ipsechdr = ipsec_hdrsiz(m, IPSEC_DIR_OUTBOUND, NULL);
|
2007-07-01 11:41:27 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* find the correct route for outer IPv4
|
|
|
|
* header, compute tunnel MTU.
|
|
|
|
*/
|
|
|
|
if (sp->req != NULL &&
|
|
|
|
sp->req->sav != NULL &&
|
|
|
|
sp->req->sav->sah != NULL) {
|
2010-10-23 20:35:40 +00:00
|
|
|
ro = &sp->req->sav->sah->route_cache.sa_route;
|
2007-07-01 11:41:27 +00:00
|
|
|
if (ro->ro_rt && ro->ro_rt->rt_ifp) {
|
2014-03-05 01:17:47 +00:00
|
|
|
mtu = ro->ro_rt->rt_mtu ? ro->ro_rt->rt_mtu :
|
2007-07-01 11:41:27 +00:00
|
|
|
ro->ro_rt->rt_ifp->if_mtu;
|
|
|
|
mtu -= ipsechdr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
KEY_FREESP(&sp);
|
|
|
|
}
|
2008-03-14 11:44:30 +00:00
|
|
|
#endif /* IPSEC */
|
|
|
|
/* XXX else case missing. */
|
2007-07-01 11:41:27 +00:00
|
|
|
return mtu;
|
|
|
|
}
|
2008-03-14 11:44:30 +00:00
|
|
|
#endif
|