2005-01-07 01:45:51 +00:00
|
|
|
/*-
|
2017-11-20 19:43:44 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
1999-12-07 17:39:16 +00:00
|
|
|
* Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
|
2018-06-05 21:24:59 +00:00
|
|
|
* Copyright (c) 2018 Andrey V. Elsukov <ae@FreeBSD.org>
|
1999-12-07 17:39:16 +00:00
|
|
|
* 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.
|
|
|
|
* 3. Neither the name of the project 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 PROJECT 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 PROJECT 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.
|
2014-10-14 13:31:47 +00:00
|
|
|
*
|
|
|
|
* $KAME: in_gif.c,v 1.54 2001/05/14 14:02:16 itojun Exp $
|
1999-12-07 17:39:16 +00:00
|
|
|
*/
|
|
|
|
|
2007-10-07 20:44:24 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
#include "opt_inet.h"
|
1999-12-07 17:39:16 +00:00
|
|
|
#include "opt_inet6.h"
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
2018-06-05 21:24:59 +00:00
|
|
|
#include <sys/jail.h>
|
1999-12-07 17:39:16 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/sockio.h>
|
|
|
|
#include <sys/mbuf.h>
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/sysctl.h>
|
2000-07-04 16:35:15 +00:00
|
|
|
#include <sys/malloc.h>
|
2018-07-04 02:47:16 +00:00
|
|
|
#include <sys/proc.h>
|
1999-12-07 17:39:16 +00:00
|
|
|
|
2018-06-05 21:24:59 +00:00
|
|
|
#include <net/ethernet.h>
|
1999-12-07 17:39:16 +00:00
|
|
|
#include <net/if.h>
|
2013-10-26 17:58:36 +00:00
|
|
|
#include <net/if_var.h>
|
1999-12-07 17:39:16 +00:00
|
|
|
#include <net/route.h>
|
2009-08-01 19:26:27 +00:00
|
|
|
#include <net/vnet.h>
|
1999-12-07 17:39:16 +00:00
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/in_systm.h>
|
|
|
|
#include <netinet/ip.h>
|
|
|
|
#include <netinet/ip_var.h>
|
2000-07-04 16:35:15 +00:00
|
|
|
#include <netinet/in_var.h>
|
|
|
|
#include <netinet/ip_encap.h>
|
1999-12-22 19:13:38 +00:00
|
|
|
#include <netinet/ip_ecn.h>
|
Merge helper fib* functions used for basic lookups.
Vast majority of rtalloc(9) users require only basic info from
route table (e.g. "does the rtentry interface match with the interface
I have?". "what is the MTU?", "Give me the IPv4 source address to use",
etc..).
Instead of hand-rolling lookups, checking if rtentry is up, valid,
dealing with IPv6 mtu, finding "address" ifp (almost never done right),
provide easy-to-use API hiding all the complexity and returning the
needed info into small on-stack structure.
This change also helps hiding route subsystem internals (locking, direct
rtentry accesses).
Additionaly, using this API improves lookup performance since rtentry is not
locked.
(This is safe, since all the rtentry changes happens under both radix WLOCK
and rtentry WLOCK).
Sponsored by: Yandex LLC
2015-12-08 10:50:03 +00:00
|
|
|
#include <netinet/in_fib.h>
|
2000-07-04 16:35:15 +00:00
|
|
|
|
1999-12-07 17:39:16 +00:00
|
|
|
#ifdef INET6
|
2000-07-04 16:35:15 +00:00
|
|
|
#include <netinet/ip6.h>
|
1999-12-07 17:39:16 +00:00
|
|
|
#endif
|
|
|
|
|
2014-10-14 13:31:47 +00:00
|
|
|
#include <net/if_gif.h>
|
1999-12-07 17:39:16 +00:00
|
|
|
|
2014-12-23 16:17:37 +00:00
|
|
|
#define GIF_TTL 30
|
2018-07-24 16:35:52 +00:00
|
|
|
VNET_DEFINE_STATIC(int, ip_gif_ttl) = GIF_TTL;
|
2010-04-29 11:52:42 +00:00
|
|
|
#define V_ip_gif_ttl VNET(ip_gif_ttl)
|
2014-11-07 09:39:05 +00:00
|
|
|
SYSCTL_INT(_net_inet_ip, IPCTL_GIF_TTL, gifttl, CTLFLAG_VNET | CTLFLAG_RW,
|
Rework IP encapsulation handling code.
Currently it has several disadvantages:
- it uses single mutex to protect internal structures. It is used by
data- and control- path, thus there are no parallelism at all.
- it uses single list to keep encap handlers for both INET and INET6
families.
- struct encaptab keeps unneeded information (src, dst, masks, protosw),
that isn't used by code in the source tree.
- matches are prioritized and when many tunneling interfaces are
registered, encapcheck handler of each interface is invoked for each
packet. The search takes O(n) for n interfaces. All this work is done
with exclusive lock held.
What this patch includes:
- the datapath is converted to be lockless using epoch(9) KPI.
- struct encaptab now linked using CK_LIST.
- all unused fields removed from struct encaptab. Several new fields
addedr: min_length is the minimum packet length, that encapsulation
handler expects to see; exact_match is maximum number of bits, that
can return an encapsulation handler, when it wants to consume a packet.
- IPv6 and IPv4 handlers are stored in separate lists;
- added new "encap_lookup_t" method, that will be used later. It is
targeted to speedup lookup of needed interface, when gif(4)/gre(4) have
many interfaces.
- the need to use protosw structure is eliminated. The only pr_input
method was used from this structure, so I don't see the need to keep
using it.
- encap_input_t method changed to avoid using mbuf tags to store softc
pointer. Now it is passed directly trough encap_input_t method.
encap_getarg() funtions is removed.
- all sockaddr structures and code that uses them removed. We don't have
any code in the tree that uses them. All consumers use encap_attach_func()
method, that relies on invoking of encapcheck() to determine the needed
handler.
- introduced struct encap_config, it contains parameters of encap handler
that is going to be registered by encap_attach() function.
- encap handlers are stored in lists ordered by exact_match value, thus
handlers that need more bits to match will be checked first, and if
encapcheck method returns exact_match value, the search will be stopped.
- all current consumers changed to use new KPI.
Reviewed by: mmacy
Sponsored by: Yandex LLC
Differential Revision: https://reviews.freebsd.org/D15617
2018-06-05 20:51:01 +00:00
|
|
|
&VNET_NAME(ip_gif_ttl), 0, "Default TTL value for encapsulated packets");
|
1999-12-07 17:39:16 +00:00
|
|
|
|
2018-06-05 21:24:59 +00:00
|
|
|
/*
|
|
|
|
* We keep interfaces in a hash table using src+dst as key.
|
|
|
|
* Interfaces with GIF_IGNORE_SOURCE flag are linked into plain list.
|
|
|
|
*/
|
2018-07-24 16:35:52 +00:00
|
|
|
VNET_DEFINE_STATIC(struct gif_list *, ipv4_hashtbl) = NULL;
|
2018-10-21 18:06:15 +00:00
|
|
|
VNET_DEFINE_STATIC(struct gif_list *, ipv4_srchashtbl) = NULL;
|
2018-07-24 16:35:52 +00:00
|
|
|
VNET_DEFINE_STATIC(struct gif_list, ipv4_list) = CK_LIST_HEAD_INITIALIZER();
|
2018-06-05 21:24:59 +00:00
|
|
|
#define V_ipv4_hashtbl VNET(ipv4_hashtbl)
|
2018-10-21 18:06:15 +00:00
|
|
|
#define V_ipv4_srchashtbl VNET(ipv4_srchashtbl)
|
2018-06-05 21:24:59 +00:00
|
|
|
#define V_ipv4_list VNET(ipv4_list)
|
|
|
|
|
|
|
|
#define GIF_HASH(src, dst) (V_ipv4_hashtbl[\
|
|
|
|
in_gif_hashval((src), (dst)) & (GIF_HASH_SIZE - 1)])
|
2018-10-21 18:06:15 +00:00
|
|
|
#define GIF_SRCHASH(src) (V_ipv4_srchashtbl[\
|
|
|
|
fnv_32_buf(&(src), sizeof(src), FNV1_32_INIT) & (GIF_HASH_SIZE - 1)])
|
2018-06-05 21:24:59 +00:00
|
|
|
#define GIF_HASH_SC(sc) GIF_HASH((sc)->gif_iphdr->ip_src.s_addr,\
|
|
|
|
(sc)->gif_iphdr->ip_dst.s_addr)
|
|
|
|
static uint32_t
|
|
|
|
in_gif_hashval(in_addr_t src, in_addr_t dst)
|
|
|
|
{
|
|
|
|
uint32_t ret;
|
|
|
|
|
|
|
|
ret = fnv_32_buf(&src, sizeof(src), FNV1_32_INIT);
|
|
|
|
return (fnv_32_buf(&dst, sizeof(dst), ret));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
in_gif_checkdup(const struct gif_softc *sc, in_addr_t src, in_addr_t dst)
|
|
|
|
{
|
|
|
|
struct gif_softc *tmp;
|
|
|
|
|
|
|
|
if (sc->gif_family == AF_INET &&
|
|
|
|
sc->gif_iphdr->ip_src.s_addr == src &&
|
|
|
|
sc->gif_iphdr->ip_dst.s_addr == dst)
|
|
|
|
return (EEXIST);
|
|
|
|
|
|
|
|
CK_LIST_FOREACH(tmp, &GIF_HASH(src, dst), chain) {
|
|
|
|
if (tmp == sc)
|
|
|
|
continue;
|
|
|
|
if (tmp->gif_iphdr->ip_src.s_addr == src &&
|
|
|
|
tmp->gif_iphdr->ip_dst.s_addr == dst)
|
|
|
|
return (EADDRNOTAVAIL);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2018-10-21 18:06:15 +00:00
|
|
|
/*
|
|
|
|
* Check that ingress address belongs to local host.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
in_gif_set_running(struct gif_softc *sc)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (in_localip(sc->gif_iphdr->ip_src))
|
|
|
|
GIF2IFP(sc)->if_drv_flags |= IFF_DRV_RUNNING;
|
|
|
|
else
|
|
|
|
GIF2IFP(sc)->if_drv_flags &= ~IFF_DRV_RUNNING;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ifaddr_event handler.
|
|
|
|
* Clear IFF_DRV_RUNNING flag when ingress address disappears to prevent
|
|
|
|
* source address spoofing.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
in_gif_srcaddr(void *arg __unused, const struct sockaddr *sa,
|
|
|
|
int event __unused)
|
|
|
|
{
|
|
|
|
const struct sockaddr_in *sin;
|
|
|
|
struct gif_softc *sc;
|
|
|
|
|
2018-10-23 13:11:45 +00:00
|
|
|
/* Check that VNET is ready */
|
|
|
|
if (V_ipv4_hashtbl == NULL)
|
2018-10-21 18:06:15 +00:00
|
|
|
return;
|
|
|
|
|
2020-01-15 05:45:27 +00:00
|
|
|
NET_EPOCH_ASSERT();
|
2018-10-21 18:06:15 +00:00
|
|
|
sin = (const struct sockaddr_in *)sa;
|
|
|
|
CK_LIST_FOREACH(sc, &GIF_SRCHASH(sin->sin_addr.s_addr), srchash) {
|
|
|
|
if (sc->gif_iphdr->ip_src.s_addr != sin->sin_addr.s_addr)
|
|
|
|
continue;
|
|
|
|
in_gif_set_running(sc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-05 21:24:59 +00:00
|
|
|
static void
|
|
|
|
in_gif_attach(struct gif_softc *sc)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (sc->gif_options & GIF_IGNORE_SOURCE)
|
|
|
|
CK_LIST_INSERT_HEAD(&V_ipv4_list, sc, chain);
|
|
|
|
else
|
|
|
|
CK_LIST_INSERT_HEAD(&GIF_HASH_SC(sc), sc, chain);
|
2018-10-21 18:06:15 +00:00
|
|
|
|
|
|
|
CK_LIST_INSERT_HEAD(&GIF_SRCHASH(sc->gif_iphdr->ip_src.s_addr),
|
|
|
|
sc, srchash);
|
2018-06-05 21:24:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
in_gif_setopts(struct gif_softc *sc, u_int options)
|
|
|
|
{
|
|
|
|
|
|
|
|
/* NOTE: we are protected with gif_ioctl_sx lock */
|
|
|
|
MPASS(sc->gif_family == AF_INET);
|
|
|
|
MPASS(sc->gif_options != options);
|
|
|
|
|
|
|
|
if ((options & GIF_IGNORE_SOURCE) !=
|
|
|
|
(sc->gif_options & GIF_IGNORE_SOURCE)) {
|
2018-10-21 18:06:15 +00:00
|
|
|
CK_LIST_REMOVE(sc, srchash);
|
2018-06-05 21:24:59 +00:00
|
|
|
CK_LIST_REMOVE(sc, chain);
|
|
|
|
sc->gif_options = options;
|
|
|
|
in_gif_attach(sc);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
in_gif_ioctl(struct gif_softc *sc, u_long cmd, caddr_t data)
|
|
|
|
{
|
|
|
|
struct ifreq *ifr = (struct ifreq *)data;
|
2021-10-10 17:02:26 +00:00
|
|
|
struct epoch_tracker et;
|
2018-06-05 21:24:59 +00:00
|
|
|
struct sockaddr_in *dst, *src;
|
|
|
|
struct ip *ip;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
/* NOTE: we are protected with gif_ioctl_sx lock */
|
|
|
|
error = EINVAL;
|
|
|
|
switch (cmd) {
|
|
|
|
case SIOCSIFPHYADDR:
|
|
|
|
src = &((struct in_aliasreq *)data)->ifra_addr;
|
|
|
|
dst = &((struct in_aliasreq *)data)->ifra_dstaddr;
|
|
|
|
|
|
|
|
/* sanity checks */
|
|
|
|
if (src->sin_family != dst->sin_family ||
|
|
|
|
src->sin_family != AF_INET ||
|
|
|
|
src->sin_len != dst->sin_len ||
|
|
|
|
src->sin_len != sizeof(*src))
|
|
|
|
break;
|
|
|
|
if (src->sin_addr.s_addr == INADDR_ANY ||
|
|
|
|
dst->sin_addr.s_addr == INADDR_ANY) {
|
|
|
|
error = EADDRNOTAVAIL;
|
|
|
|
break;
|
|
|
|
}
|
2018-10-21 18:06:15 +00:00
|
|
|
if (V_ipv4_hashtbl == NULL) {
|
2018-06-05 21:24:59 +00:00
|
|
|
V_ipv4_hashtbl = gif_hashinit();
|
2018-10-21 18:06:15 +00:00
|
|
|
V_ipv4_srchashtbl = gif_hashinit();
|
|
|
|
}
|
2018-06-05 21:24:59 +00:00
|
|
|
error = in_gif_checkdup(sc, src->sin_addr.s_addr,
|
|
|
|
dst->sin_addr.s_addr);
|
|
|
|
if (error == EADDRNOTAVAIL)
|
|
|
|
break;
|
|
|
|
if (error == EEXIST) {
|
|
|
|
/* Addresses are the same. Just return. */
|
|
|
|
error = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ip = malloc(sizeof(*ip), M_GIF, M_WAITOK | M_ZERO);
|
|
|
|
ip->ip_src.s_addr = src->sin_addr.s_addr;
|
|
|
|
ip->ip_dst.s_addr = dst->sin_addr.s_addr;
|
|
|
|
if (sc->gif_family != 0) {
|
|
|
|
/* Detach existing tunnel first */
|
2018-10-21 18:06:15 +00:00
|
|
|
CK_LIST_REMOVE(sc, srchash);
|
2018-06-05 21:24:59 +00:00
|
|
|
CK_LIST_REMOVE(sc, chain);
|
|
|
|
GIF_WAIT();
|
|
|
|
free(sc->gif_hdr, M_GIF);
|
|
|
|
/* XXX: should we notify about link state change? */
|
|
|
|
}
|
|
|
|
sc->gif_family = AF_INET;
|
|
|
|
sc->gif_iphdr = ip;
|
|
|
|
in_gif_attach(sc);
|
2021-10-10 17:02:26 +00:00
|
|
|
NET_EPOCH_ENTER(et);
|
2018-10-21 18:06:15 +00:00
|
|
|
in_gif_set_running(sc);
|
2021-10-10 17:02:26 +00:00
|
|
|
NET_EPOCH_EXIT(et);
|
2018-06-05 21:24:59 +00:00
|
|
|
break;
|
|
|
|
case SIOCGIFPSRCADDR:
|
|
|
|
case SIOCGIFPDSTADDR:
|
|
|
|
if (sc->gif_family != AF_INET) {
|
|
|
|
error = EADDRNOTAVAIL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
src = (struct sockaddr_in *)&ifr->ifr_addr;
|
|
|
|
memset(src, 0, sizeof(*src));
|
|
|
|
src->sin_family = AF_INET;
|
|
|
|
src->sin_len = sizeof(*src);
|
|
|
|
src->sin_addr = (cmd == SIOCGIFPSRCADDR) ?
|
|
|
|
sc->gif_iphdr->ip_src: sc->gif_iphdr->ip_dst;
|
|
|
|
error = prison_if(curthread->td_ucred, (struct sockaddr *)src);
|
|
|
|
if (error != 0)
|
|
|
|
memset(src, 0, sizeof(*src));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
1999-12-07 17:39:16 +00:00
|
|
|
int
|
2014-10-14 13:31:47 +00:00
|
|
|
in_gif_output(struct ifnet *ifp, struct mbuf *m, int proto, uint8_t ecn)
|
1999-12-07 17:39:16 +00:00
|
|
|
{
|
2005-06-10 16:49:24 +00:00
|
|
|
struct gif_softc *sc = ifp->if_softc;
|
2014-10-14 13:31:47 +00:00
|
|
|
struct ip *ip;
|
|
|
|
int len;
|
1999-12-07 17:39:16 +00:00
|
|
|
|
|
|
|
/* prepend new IP header */
|
2020-01-15 05:45:27 +00:00
|
|
|
NET_EPOCH_ASSERT();
|
2009-03-07 19:08:58 +00:00
|
|
|
len = sizeof(struct ip);
|
|
|
|
#ifndef __NO_STRICT_ALIGNMENT
|
2014-10-14 13:31:47 +00:00
|
|
|
if (proto == IPPROTO_ETHERIP)
|
2009-03-07 19:08:58 +00:00
|
|
|
len += ETHERIP_ALIGN;
|
|
|
|
#endif
|
2012-12-05 08:04:20 +00:00
|
|
|
M_PREPEND(m, len, M_NOWAIT);
|
2014-10-14 13:31:47 +00:00
|
|
|
if (m == NULL)
|
|
|
|
return (ENOBUFS);
|
2009-03-07 19:08:58 +00:00
|
|
|
#ifndef __NO_STRICT_ALIGNMENT
|
2014-10-14 13:31:47 +00:00
|
|
|
if (proto == IPPROTO_ETHERIP) {
|
2009-03-07 19:08:58 +00:00
|
|
|
len = mtod(m, vm_offset_t) & 3;
|
|
|
|
KASSERT(len == 0 || len == ETHERIP_ALIGN,
|
|
|
|
("in_gif_output: unexpected misalignment"));
|
|
|
|
m->m_data += len;
|
|
|
|
m->m_len -= ETHERIP_ALIGN;
|
|
|
|
}
|
|
|
|
#endif
|
2014-10-14 13:31:47 +00:00
|
|
|
ip = mtod(m, struct ip *);
|
1999-12-07 17:39:16 +00:00
|
|
|
|
2018-06-05 21:24:59 +00:00
|
|
|
MPASS(sc->gif_family == AF_INET);
|
|
|
|
bcopy(sc->gif_iphdr, ip, sizeof(struct ip));
|
2014-10-14 13:31:47 +00:00
|
|
|
ip->ip_p = proto;
|
|
|
|
/* version will be set in ip_output() */
|
|
|
|
ip->ip_ttl = V_ip_gif_ttl;
|
|
|
|
ip->ip_len = htons(m->m_pkthdr.len);
|
|
|
|
ip->ip_tos = ecn;
|
2004-12-06 19:02:43 +00:00
|
|
|
|
2014-10-14 13:31:47 +00:00
|
|
|
return (ip_output(m, NULL, NULL, 0, NULL, NULL));
|
1999-12-07 17:39:16 +00:00
|
|
|
}
|
|
|
|
|
2014-12-23 16:17:37 +00:00
|
|
|
static int
|
Rework IP encapsulation handling code.
Currently it has several disadvantages:
- it uses single mutex to protect internal structures. It is used by
data- and control- path, thus there are no parallelism at all.
- it uses single list to keep encap handlers for both INET and INET6
families.
- struct encaptab keeps unneeded information (src, dst, masks, protosw),
that isn't used by code in the source tree.
- matches are prioritized and when many tunneling interfaces are
registered, encapcheck handler of each interface is invoked for each
packet. The search takes O(n) for n interfaces. All this work is done
with exclusive lock held.
What this patch includes:
- the datapath is converted to be lockless using epoch(9) KPI.
- struct encaptab now linked using CK_LIST.
- all unused fields removed from struct encaptab. Several new fields
addedr: min_length is the minimum packet length, that encapsulation
handler expects to see; exact_match is maximum number of bits, that
can return an encapsulation handler, when it wants to consume a packet.
- IPv6 and IPv4 handlers are stored in separate lists;
- added new "encap_lookup_t" method, that will be used later. It is
targeted to speedup lookup of needed interface, when gif(4)/gre(4) have
many interfaces.
- the need to use protosw structure is eliminated. The only pr_input
method was used from this structure, so I don't see the need to keep
using it.
- encap_input_t method changed to avoid using mbuf tags to store softc
pointer. Now it is passed directly trough encap_input_t method.
encap_getarg() funtions is removed.
- all sockaddr structures and code that uses them removed. We don't have
any code in the tree that uses them. All consumers use encap_attach_func()
method, that relies on invoking of encapcheck() to determine the needed
handler.
- introduced struct encap_config, it contains parameters of encap handler
that is going to be registered by encap_attach() function.
- encap handlers are stored in lists ordered by exact_match value, thus
handlers that need more bits to match will be checked first, and if
encapcheck method returns exact_match value, the search will be stopped.
- all current consumers changed to use new KPI.
Reviewed by: mmacy
Sponsored by: Yandex LLC
Differential Revision: https://reviews.freebsd.org/D15617
2018-06-05 20:51:01 +00:00
|
|
|
in_gif_input(struct mbuf *m, int off, int proto, void *arg)
|
1999-12-07 17:39:16 +00:00
|
|
|
{
|
Rework IP encapsulation handling code.
Currently it has several disadvantages:
- it uses single mutex to protect internal structures. It is used by
data- and control- path, thus there are no parallelism at all.
- it uses single list to keep encap handlers for both INET and INET6
families.
- struct encaptab keeps unneeded information (src, dst, masks, protosw),
that isn't used by code in the source tree.
- matches are prioritized and when many tunneling interfaces are
registered, encapcheck handler of each interface is invoked for each
packet. The search takes O(n) for n interfaces. All this work is done
with exclusive lock held.
What this patch includes:
- the datapath is converted to be lockless using epoch(9) KPI.
- struct encaptab now linked using CK_LIST.
- all unused fields removed from struct encaptab. Several new fields
addedr: min_length is the minimum packet length, that encapsulation
handler expects to see; exact_match is maximum number of bits, that
can return an encapsulation handler, when it wants to consume a packet.
- IPv6 and IPv4 handlers are stored in separate lists;
- added new "encap_lookup_t" method, that will be used later. It is
targeted to speedup lookup of needed interface, when gif(4)/gre(4) have
many interfaces.
- the need to use protosw structure is eliminated. The only pr_input
method was used from this structure, so I don't see the need to keep
using it.
- encap_input_t method changed to avoid using mbuf tags to store softc
pointer. Now it is passed directly trough encap_input_t method.
encap_getarg() funtions is removed.
- all sockaddr structures and code that uses them removed. We don't have
any code in the tree that uses them. All consumers use encap_attach_func()
method, that relies on invoking of encapcheck() to determine the needed
handler.
- introduced struct encap_config, it contains parameters of encap handler
that is going to be registered by encap_attach() function.
- encap handlers are stored in lists ordered by exact_match value, thus
handlers that need more bits to match will be checked first, and if
encapcheck method returns exact_match value, the search will be stopped.
- all current consumers changed to use new KPI.
Reviewed by: mmacy
Sponsored by: Yandex LLC
Differential Revision: https://reviews.freebsd.org/D15617
2018-06-05 20:51:01 +00:00
|
|
|
struct gif_softc *sc = arg;
|
2014-10-14 13:31:47 +00:00
|
|
|
struct ifnet *gifp;
|
1999-12-07 17:39:16 +00:00
|
|
|
struct ip *ip;
|
2014-10-14 13:31:47 +00:00
|
|
|
uint8_t ecn;
|
1999-12-07 17:39:16 +00:00
|
|
|
|
2020-01-15 05:45:27 +00:00
|
|
|
NET_EPOCH_ASSERT();
|
2005-06-20 08:39:30 +00:00
|
|
|
if (sc == NULL) {
|
|
|
|
m_freem(m);
|
2009-08-02 19:43:32 +00:00
|
|
|
KMOD_IPSTAT_INC(ips_nogif);
|
2014-08-08 01:57:15 +00:00
|
|
|
return (IPPROTO_DONE);
|
2005-06-20 08:39:30 +00:00
|
|
|
}
|
|
|
|
gifp = GIF2IFP(sc);
|
2014-10-14 13:31:47 +00:00
|
|
|
if ((gifp->if_flags & IFF_UP) != 0) {
|
1999-12-07 17:39:16 +00:00
|
|
|
ip = mtod(m, struct ip *);
|
2014-10-14 13:31:47 +00:00
|
|
|
ecn = ip->ip_tos;
|
Rework IP encapsulation handling code.
Currently it has several disadvantages:
- it uses single mutex to protect internal structures. It is used by
data- and control- path, thus there are no parallelism at all.
- it uses single list to keep encap handlers for both INET and INET6
families.
- struct encaptab keeps unneeded information (src, dst, masks, protosw),
that isn't used by code in the source tree.
- matches are prioritized and when many tunneling interfaces are
registered, encapcheck handler of each interface is invoked for each
packet. The search takes O(n) for n interfaces. All this work is done
with exclusive lock held.
What this patch includes:
- the datapath is converted to be lockless using epoch(9) KPI.
- struct encaptab now linked using CK_LIST.
- all unused fields removed from struct encaptab. Several new fields
addedr: min_length is the minimum packet length, that encapsulation
handler expects to see; exact_match is maximum number of bits, that
can return an encapsulation handler, when it wants to consume a packet.
- IPv6 and IPv4 handlers are stored in separate lists;
- added new "encap_lookup_t" method, that will be used later. It is
targeted to speedup lookup of needed interface, when gif(4)/gre(4) have
many interfaces.
- the need to use protosw structure is eliminated. The only pr_input
method was used from this structure, so I don't see the need to keep
using it.
- encap_input_t method changed to avoid using mbuf tags to store softc
pointer. Now it is passed directly trough encap_input_t method.
encap_getarg() funtions is removed.
- all sockaddr structures and code that uses them removed. We don't have
any code in the tree that uses them. All consumers use encap_attach_func()
method, that relies on invoking of encapcheck() to determine the needed
handler.
- introduced struct encap_config, it contains parameters of encap handler
that is going to be registered by encap_attach() function.
- encap handlers are stored in lists ordered by exact_match value, thus
handlers that need more bits to match will be checked first, and if
encapcheck method returns exact_match value, the search will be stopped.
- all current consumers changed to use new KPI.
Reviewed by: mmacy
Sponsored by: Yandex LLC
Differential Revision: https://reviews.freebsd.org/D15617
2018-06-05 20:51:01 +00:00
|
|
|
m_adj(m, off);
|
2014-10-14 13:31:47 +00:00
|
|
|
gif_input(m, gifp, proto, ecn);
|
|
|
|
} else {
|
1999-12-07 17:39:16 +00:00
|
|
|
m_freem(m);
|
2014-10-14 13:31:47 +00:00
|
|
|
KMOD_IPSTAT_INC(ips_nogif);
|
1999-12-07 17:39:16 +00:00
|
|
|
}
|
2014-08-08 01:57:15 +00:00
|
|
|
return (IPPROTO_DONE);
|
1999-12-07 17:39:16 +00:00
|
|
|
}
|
2000-07-04 16:35:15 +00:00
|
|
|
|
2018-06-05 21:24:59 +00:00
|
|
|
static int
|
|
|
|
in_gif_lookup(const struct mbuf *m, int off, int proto, void **arg)
|
2002-10-16 19:49:37 +00:00
|
|
|
{
|
2015-07-29 14:07:43 +00:00
|
|
|
const struct ip *ip;
|
|
|
|
struct gif_softc *sc;
|
2015-05-15 12:19:45 +00:00
|
|
|
int ret;
|
2000-07-04 16:35:15 +00:00
|
|
|
|
2018-06-28 11:39:27 +00:00
|
|
|
if (V_ipv4_hashtbl == NULL)
|
|
|
|
return (0);
|
|
|
|
|
2020-01-15 05:45:27 +00:00
|
|
|
NET_EPOCH_ASSERT();
|
2015-07-29 14:07:43 +00:00
|
|
|
ip = mtod(m, const struct ip *);
|
2018-06-05 21:24:59 +00:00
|
|
|
/*
|
|
|
|
* NOTE: it is safe to iterate without any locking here, because softc
|
|
|
|
* can be reclaimed only when we are not within net_epoch_preempt
|
|
|
|
* section, but ip_encap lookup+input are executed in epoch section.
|
|
|
|
*/
|
|
|
|
ret = 0;
|
|
|
|
CK_LIST_FOREACH(sc, &GIF_HASH(ip->ip_dst.s_addr,
|
|
|
|
ip->ip_src.s_addr), chain) {
|
|
|
|
/*
|
|
|
|
* This is an inbound packet, its ip_dst is source address
|
|
|
|
* in softc.
|
|
|
|
*/
|
|
|
|
if (sc->gif_iphdr->ip_src.s_addr == ip->ip_dst.s_addr &&
|
|
|
|
sc->gif_iphdr->ip_dst.s_addr == ip->ip_src.s_addr) {
|
|
|
|
ret = ENCAP_DRV_LOOKUP;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* No exact match.
|
|
|
|
* Check the list of interfaces with GIF_IGNORE_SOURCE flag.
|
|
|
|
*/
|
|
|
|
CK_LIST_FOREACH(sc, &V_ipv4_list, chain) {
|
|
|
|
if (sc->gif_iphdr->ip_src.s_addr == ip->ip_dst.s_addr) {
|
|
|
|
ret = 32 + 8; /* src + proto */
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
done:
|
|
|
|
if ((GIF2IFP(sc)->if_flags & IFF_UP) == 0)
|
2014-10-14 13:31:47 +00:00
|
|
|
return (0);
|
2000-07-04 16:35:15 +00:00
|
|
|
/* ingress filters on outer source */
|
2015-07-29 14:07:43 +00:00
|
|
|
if ((GIF2IFP(sc)->if_flags & IFF_LINK2) == 0) {
|
2020-05-28 07:26:18 +00:00
|
|
|
if (fib4_check_urpf(sc->gif_fibnum, ip->ip_src, 0, NHR_NONE,
|
|
|
|
m->m_pkthdr.rcvif) == 0)
|
2014-10-14 13:31:47 +00:00
|
|
|
return (0);
|
2000-07-04 16:35:15 +00:00
|
|
|
}
|
2018-06-05 21:24:59 +00:00
|
|
|
*arg = sc;
|
2015-05-15 12:19:45 +00:00
|
|
|
return (ret);
|
2000-07-04 16:35:15 +00:00
|
|
|
}
|
2002-10-16 19:49:37 +00:00
|
|
|
|
2018-10-21 18:06:15 +00:00
|
|
|
static const struct srcaddrtab *ipv4_srcaddrtab;
|
2018-06-05 21:24:59 +00:00
|
|
|
static struct {
|
|
|
|
const struct encap_config encap;
|
|
|
|
const struct encaptab *cookie;
|
|
|
|
} ipv4_encap_cfg[] = {
|
|
|
|
{
|
|
|
|
.encap = {
|
|
|
|
.proto = IPPROTO_IPV4,
|
|
|
|
.min_length = 2 * sizeof(struct ip),
|
|
|
|
.exact_match = ENCAP_DRV_LOOKUP,
|
|
|
|
.lookup = in_gif_lookup,
|
|
|
|
.input = in_gif_input
|
|
|
|
},
|
|
|
|
},
|
|
|
|
#ifdef INET6
|
|
|
|
{
|
|
|
|
.encap = {
|
|
|
|
.proto = IPPROTO_IPV6,
|
|
|
|
.min_length = sizeof(struct ip) +
|
|
|
|
sizeof(struct ip6_hdr),
|
|
|
|
.exact_match = ENCAP_DRV_LOOKUP,
|
|
|
|
.lookup = in_gif_lookup,
|
|
|
|
.input = in_gif_input
|
|
|
|
},
|
|
|
|
},
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
.encap = {
|
|
|
|
.proto = IPPROTO_ETHERIP,
|
|
|
|
.min_length = sizeof(struct ip) +
|
|
|
|
sizeof(struct etherip_header) +
|
|
|
|
sizeof(struct ether_header),
|
|
|
|
.exact_match = ENCAP_DRV_LOOKUP,
|
|
|
|
.lookup = in_gif_lookup,
|
|
|
|
.input = in_gif_input
|
|
|
|
},
|
|
|
|
}
|
Rework IP encapsulation handling code.
Currently it has several disadvantages:
- it uses single mutex to protect internal structures. It is used by
data- and control- path, thus there are no parallelism at all.
- it uses single list to keep encap handlers for both INET and INET6
families.
- struct encaptab keeps unneeded information (src, dst, masks, protosw),
that isn't used by code in the source tree.
- matches are prioritized and when many tunneling interfaces are
registered, encapcheck handler of each interface is invoked for each
packet. The search takes O(n) for n interfaces. All this work is done
with exclusive lock held.
What this patch includes:
- the datapath is converted to be lockless using epoch(9) KPI.
- struct encaptab now linked using CK_LIST.
- all unused fields removed from struct encaptab. Several new fields
addedr: min_length is the minimum packet length, that encapsulation
handler expects to see; exact_match is maximum number of bits, that
can return an encapsulation handler, when it wants to consume a packet.
- IPv6 and IPv4 handlers are stored in separate lists;
- added new "encap_lookup_t" method, that will be used later. It is
targeted to speedup lookup of needed interface, when gif(4)/gre(4) have
many interfaces.
- the need to use protosw structure is eliminated. The only pr_input
method was used from this structure, so I don't see the need to keep
using it.
- encap_input_t method changed to avoid using mbuf tags to store softc
pointer. Now it is passed directly trough encap_input_t method.
encap_getarg() funtions is removed.
- all sockaddr structures and code that uses them removed. We don't have
any code in the tree that uses them. All consumers use encap_attach_func()
method, that relies on invoking of encapcheck() to determine the needed
handler.
- introduced struct encap_config, it contains parameters of encap handler
that is going to be registered by encap_attach() function.
- encap handlers are stored in lists ordered by exact_match value, thus
handlers that need more bits to match will be checked first, and if
encapcheck method returns exact_match value, the search will be stopped.
- all current consumers changed to use new KPI.
Reviewed by: mmacy
Sponsored by: Yandex LLC
Differential Revision: https://reviews.freebsd.org/D15617
2018-06-05 20:51:01 +00:00
|
|
|
};
|
|
|
|
|
2018-06-05 21:24:59 +00:00
|
|
|
void
|
|
|
|
in_gif_init(void)
|
2002-10-16 19:49:37 +00:00
|
|
|
{
|
2018-06-05 21:24:59 +00:00
|
|
|
int i;
|
2002-10-16 19:49:37 +00:00
|
|
|
|
2018-06-05 21:24:59 +00:00
|
|
|
if (!IS_DEFAULT_VNET(curvnet))
|
|
|
|
return;
|
2018-10-21 18:06:15 +00:00
|
|
|
|
|
|
|
ipv4_srcaddrtab = ip_encap_register_srcaddr(in_gif_srcaddr,
|
|
|
|
NULL, M_WAITOK);
|
2018-06-05 21:24:59 +00:00
|
|
|
for (i = 0; i < nitems(ipv4_encap_cfg); i++)
|
|
|
|
ipv4_encap_cfg[i].cookie = ip_encap_attach(
|
|
|
|
&ipv4_encap_cfg[i].encap, NULL, M_WAITOK);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
in_gif_uninit(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (IS_DEFAULT_VNET(curvnet)) {
|
|
|
|
for (i = 0; i < nitems(ipv4_encap_cfg); i++)
|
|
|
|
ip_encap_detach(ipv4_encap_cfg[i].cookie);
|
2018-10-21 18:06:15 +00:00
|
|
|
ip_encap_unregister_srcaddr(ipv4_srcaddrtab);
|
2018-06-05 21:24:59 +00:00
|
|
|
}
|
2018-10-21 18:06:15 +00:00
|
|
|
if (V_ipv4_hashtbl != NULL) {
|
2018-06-05 21:24:59 +00:00
|
|
|
gif_hashdestroy(V_ipv4_hashtbl);
|
2018-10-23 13:11:45 +00:00
|
|
|
V_ipv4_hashtbl = NULL;
|
|
|
|
GIF_WAIT();
|
2018-10-21 18:06:15 +00:00
|
|
|
gif_hashdestroy(V_ipv4_srchashtbl);
|
|
|
|
}
|
2002-10-16 19:49:37 +00:00
|
|
|
}
|