2005-01-07 01:45:51 +00:00
|
|
|
/*-
|
2017-11-27 15:23:17 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
|
|
|
*
|
2002-09-06 17:12:50 +00:00
|
|
|
* Copyright (c) 1998 The NetBSD Foundation, Inc.
|
2014-11-07 19:13:19 +00:00
|
|
|
* Copyright (c) 2014 Andrey V. Elsukov <ae@FreeBSD.org>
|
2002-09-06 17:12:50 +00:00
|
|
|
* All rights reserved
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Heiko W.Rupp <hwr@pilhuhn.de>
|
|
|
|
*
|
|
|
|
* 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.
|
2004-01-26 12:21:59 +00:00
|
|
|
*
|
2002-09-06 17:12:50 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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-11-07 19:13:19 +00:00
|
|
|
*
|
|
|
|
* $NetBSD: if_gre.h,v 1.13 2003/11/10 08:51:52 wiz Exp $
|
|
|
|
* $FreeBSD$
|
2002-09-06 17:12:50 +00:00
|
|
|
*/
|
|
|
|
|
2014-11-07 19:13:19 +00:00
|
|
|
#ifndef _NET_IF_GRE_H_
|
|
|
|
#define _NET_IF_GRE_H_
|
2002-09-06 17:12:50 +00:00
|
|
|
|
2002-09-09 08:25:00 +00:00
|
|
|
#ifdef _KERNEL
|
2014-11-07 19:13:19 +00:00
|
|
|
/* GRE header according to RFC 2784 and RFC 2890 */
|
|
|
|
struct grehdr {
|
|
|
|
uint16_t gre_flags; /* GRE flags */
|
|
|
|
#define GRE_FLAGS_CP 0x8000 /* checksum present */
|
|
|
|
#define GRE_FLAGS_KP 0x2000 /* key present */
|
|
|
|
#define GRE_FLAGS_SP 0x1000 /* sequence present */
|
|
|
|
#define GRE_FLAGS_MASK (GRE_FLAGS_CP|GRE_FLAGS_KP|GRE_FLAGS_SP)
|
|
|
|
uint16_t gre_proto; /* protocol type */
|
|
|
|
uint32_t gre_opts[0]; /* optional fields */
|
2002-09-23 06:25:08 +00:00
|
|
|
} __packed;
|
2002-09-06 17:12:50 +00:00
|
|
|
|
2014-11-07 19:13:19 +00:00
|
|
|
#ifdef INET
|
2002-09-06 17:12:50 +00:00
|
|
|
struct greip {
|
2014-11-07 19:13:19 +00:00
|
|
|
struct ip gi_ip;
|
|
|
|
struct grehdr gi_gre;
|
2002-09-23 06:25:08 +00:00
|
|
|
} __packed;
|
2019-04-24 09:05:45 +00:00
|
|
|
|
|
|
|
struct greudp {
|
|
|
|
struct ip gi_ip;
|
|
|
|
struct udphdr gi_udp;
|
|
|
|
struct grehdr gi_gre;
|
|
|
|
} __packed;
|
|
|
|
#endif /* INET */
|
2002-09-06 17:12:50 +00:00
|
|
|
|
2014-11-07 19:13:19 +00:00
|
|
|
#ifdef INET6
|
|
|
|
struct greip6 {
|
|
|
|
struct ip6_hdr gi6_ip6;
|
|
|
|
struct grehdr gi6_gre;
|
|
|
|
} __packed;
|
2019-04-24 09:05:45 +00:00
|
|
|
|
|
|
|
struct greudp6 {
|
|
|
|
struct ip6_hdr gi6_ip6;
|
|
|
|
struct udphdr gi6_udp;
|
|
|
|
struct grehdr gi6_gre;
|
|
|
|
} __packed;
|
|
|
|
#endif /* INET6 */
|
|
|
|
|
|
|
|
CK_LIST_HEAD(gre_list, gre_softc);
|
|
|
|
CK_LIST_HEAD(gre_sockets, gre_socket);
|
|
|
|
struct gre_socket {
|
|
|
|
struct socket *so;
|
|
|
|
struct gre_list list;
|
|
|
|
CK_LIST_ENTRY(gre_socket) chain;
|
|
|
|
struct epoch_context epoch_ctx;
|
|
|
|
};
|
2002-09-06 17:12:50 +00:00
|
|
|
|
2014-11-07 19:13:19 +00:00
|
|
|
struct gre_softc {
|
|
|
|
struct ifnet *gre_ifp;
|
|
|
|
int gre_family; /* AF of delivery header */
|
|
|
|
uint32_t gre_iseq;
|
|
|
|
uint32_t gre_oseq;
|
|
|
|
uint32_t gre_key;
|
|
|
|
uint32_t gre_options;
|
2019-04-24 09:05:45 +00:00
|
|
|
uint32_t gre_csumflags;
|
|
|
|
uint32_t gre_port;
|
2014-11-07 19:13:19 +00:00
|
|
|
u_int gre_fibnum;
|
|
|
|
u_int gre_hlen; /* header size */
|
|
|
|
union {
|
|
|
|
void *hdr;
|
|
|
|
#ifdef INET
|
2019-04-24 09:05:45 +00:00
|
|
|
struct greip *iphdr;
|
|
|
|
struct greudp *udphdr;
|
2014-11-07 19:13:19 +00:00
|
|
|
#endif
|
|
|
|
#ifdef INET6
|
2019-04-24 09:05:45 +00:00
|
|
|
struct greip6 *ip6hdr;
|
|
|
|
struct greudp6 *udp6hdr;
|
2014-11-07 19:13:19 +00:00
|
|
|
#endif
|
|
|
|
} gre_uhdr;
|
2019-04-24 09:05:45 +00:00
|
|
|
struct gre_socket *gre_so;
|
2018-06-13 11:11:33 +00:00
|
|
|
|
|
|
|
CK_LIST_ENTRY(gre_softc) chain;
|
2018-10-21 18:13:45 +00:00
|
|
|
CK_LIST_ENTRY(gre_softc) srchash;
|
2014-11-07 19:13:19 +00:00
|
|
|
};
|
2018-06-13 11:11:33 +00:00
|
|
|
MALLOC_DECLARE(M_GRE);
|
|
|
|
|
|
|
|
#ifndef GRE_HASH_SIZE
|
|
|
|
#define GRE_HASH_SIZE (1 << 4)
|
|
|
|
#endif
|
|
|
|
|
2014-11-07 19:13:19 +00:00
|
|
|
#define GRE2IFP(sc) ((sc)->gre_ifp)
|
2018-10-21 18:13:45 +00:00
|
|
|
#define GRE_RLOCK_TRACKER struct epoch_tracker gre_et
|
|
|
|
#define GRE_RLOCK() epoch_enter_preempt(net_epoch_preempt, &gre_et)
|
2018-07-04 02:47:16 +00:00
|
|
|
#define GRE_RUNLOCK() epoch_exit_preempt(net_epoch_preempt, &gre_et)
|
2018-06-13 11:11:33 +00:00
|
|
|
#define GRE_WAIT() epoch_wait_preempt(net_epoch_preempt)
|
2014-11-07 19:13:19 +00:00
|
|
|
|
|
|
|
#define gre_hdr gre_uhdr.hdr
|
2019-04-24 09:05:45 +00:00
|
|
|
#define gre_iphdr gre_uhdr.iphdr
|
|
|
|
#define gre_ip6hdr gre_uhdr.ip6hdr
|
|
|
|
#define gre_udphdr gre_uhdr.udphdr
|
|
|
|
#define gre_udp6hdr gre_uhdr.udp6hdr
|
|
|
|
|
|
|
|
#define gre_oip gre_iphdr->gi_ip
|
|
|
|
#define gre_udp gre_udphdr->gi_udp
|
|
|
|
#define gre_oip6 gre_ip6hdr->gi6_ip6
|
|
|
|
#define gre_udp6 gre_udp6hdr->gi6_udp
|
2002-09-06 17:12:50 +00:00
|
|
|
|
2018-06-13 11:11:33 +00:00
|
|
|
struct gre_list *gre_hashinit(void);
|
|
|
|
void gre_hashdestroy(struct gre_list *);
|
|
|
|
|
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
|
|
|
int gre_input(struct mbuf *, int, int, void *);
|
2019-04-24 09:05:45 +00:00
|
|
|
void gre_update_hdr(struct gre_softc *, struct grehdr *);
|
|
|
|
void gre_update_udphdr(struct gre_softc *, struct udphdr *, uint16_t);
|
|
|
|
void gre_sofree(epoch_context_t);
|
2018-06-13 11:11:33 +00:00
|
|
|
|
|
|
|
void in_gre_init(void);
|
|
|
|
void in_gre_uninit(void);
|
2019-04-24 09:05:45 +00:00
|
|
|
int in_gre_setopts(struct gre_softc *, u_long, uint32_t);
|
2018-06-13 11:11:33 +00:00
|
|
|
int in_gre_ioctl(struct gre_softc *, u_long, caddr_t);
|
2014-12-25 21:32:37 +00:00
|
|
|
int in_gre_output(struct mbuf *, int, int);
|
2018-06-13 11:11:33 +00:00
|
|
|
|
|
|
|
void in6_gre_init(void);
|
|
|
|
void in6_gre_uninit(void);
|
2019-04-24 09:05:45 +00:00
|
|
|
int in6_gre_setopts(struct gre_softc *, u_long, uint32_t);
|
2018-06-13 11:11:33 +00:00
|
|
|
int in6_gre_ioctl(struct gre_softc *, u_long, caddr_t);
|
2019-04-24 09:05:45 +00:00
|
|
|
int in6_gre_output(struct mbuf *, int, int, uint32_t);
|
2002-12-07 14:22:05 +00:00
|
|
|
/*
|
|
|
|
* CISCO uses special type for GRE tunnel created as part of WCCP
|
|
|
|
* connection, while in fact those packets are just IPv4 encapsulated
|
|
|
|
* into GRE.
|
|
|
|
*/
|
2014-11-07 19:13:19 +00:00
|
|
|
#define ETHERTYPE_WCCP 0x883E
|
2002-09-09 08:25:00 +00:00
|
|
|
#endif /* _KERNEL */
|
|
|
|
|
2002-09-06 17:12:50 +00:00
|
|
|
#define GRESADDRS _IOW('i', 101, struct ifreq)
|
2004-01-26 12:21:59 +00:00
|
|
|
#define GRESADDRD _IOW('i', 102, struct ifreq)
|
2002-09-06 17:12:50 +00:00
|
|
|
#define GREGADDRS _IOWR('i', 103, struct ifreq)
|
|
|
|
#define GREGADDRD _IOWR('i', 104, struct ifreq)
|
|
|
|
#define GRESPROTO _IOW('i' , 105, struct ifreq)
|
|
|
|
#define GREGPROTO _IOWR('i', 106, struct ifreq)
|
|
|
|
|
2014-11-07 19:13:19 +00:00
|
|
|
#define GREGKEY _IOWR('i', 107, struct ifreq)
|
|
|
|
#define GRESKEY _IOW('i', 108, struct ifreq)
|
|
|
|
#define GREGOPTS _IOWR('i', 109, struct ifreq)
|
|
|
|
#define GRESOPTS _IOW('i', 110, struct ifreq)
|
2019-04-24 09:05:45 +00:00
|
|
|
#define GREGPORT _IOWR('i', 111, struct ifreq)
|
|
|
|
#define GRESPORT _IOW('i', 112, struct ifreq)
|
|
|
|
|
|
|
|
/* GRE-in-UDP encapsulation destination port as defined in RFC8086 */
|
|
|
|
#define GRE_UDPPORT 4754
|
2014-09-21 03:56:06 +00:00
|
|
|
|
2014-11-07 19:13:19 +00:00
|
|
|
#define GRE_ENABLE_CSUM 0x0001
|
|
|
|
#define GRE_ENABLE_SEQ 0x0002
|
2019-04-24 09:05:45 +00:00
|
|
|
#define GRE_UDPENCAP 0x0004
|
|
|
|
#define GRE_OPTMASK (GRE_ENABLE_CSUM|GRE_ENABLE_SEQ|GRE_UDPENCAP)
|
2002-09-06 17:12:50 +00:00
|
|
|
|
2014-11-07 19:13:19 +00:00
|
|
|
#endif /* _NET_IF_GRE_H_ */
|