2000-07-04 16:35:15 +00:00
|
|
|
/* $FreeBSD$ */
|
2001-06-11 12:39:29 +00:00
|
|
|
/* $KAME: if_gif.h,v 1.17 2000/09/11 11:36:41 sumikawa Exp $ */
|
2000-07-04 16:35:15 +00:00
|
|
|
|
2005-01-07 01:45:51 +00:00
|
|
|
/*-
|
2017-11-20 19:43:44 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
1999-11-22 02:45:11 +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-11-22 02:45:11 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NET_IF_GIF_H_
|
|
|
|
#define _NET_IF_GIF_H_
|
|
|
|
|
2001-09-26 23:37:15 +00:00
|
|
|
#ifdef _KERNEL
|
2000-07-04 16:35:15 +00:00
|
|
|
|
2014-10-14 13:31:47 +00:00
|
|
|
struct ip;
|
|
|
|
struct ip6_hdr;
|
2000-07-04 16:35:15 +00:00
|
|
|
|
2001-09-26 23:50:17 +00:00
|
|
|
extern void (*ng_gif_input_p)(struct ifnet *ifp, struct mbuf **mp,
|
|
|
|
int af);
|
|
|
|
extern void (*ng_gif_input_orphan_p)(struct ifnet *ifp, struct mbuf *m,
|
|
|
|
int af);
|
|
|
|
extern int (*ng_gif_output_p)(struct ifnet *ifp, struct mbuf **mp);
|
|
|
|
extern void (*ng_gif_attach_p)(struct ifnet *ifp);
|
|
|
|
extern void (*ng_gif_detach_p)(struct ifnet *ifp);
|
|
|
|
|
1999-11-22 02:45:11 +00:00
|
|
|
struct gif_softc {
|
2014-10-14 13:31:47 +00:00
|
|
|
struct ifnet *gif_ifp;
|
|
|
|
int gif_family;
|
|
|
|
int gif_flags;
|
|
|
|
u_int gif_fibnum;
|
|
|
|
u_int gif_options;
|
|
|
|
void *gif_netgraph; /* netgraph node info */
|
1999-11-22 02:45:11 +00:00
|
|
|
union {
|
2014-10-14 13:31:47 +00:00
|
|
|
void *hdr;
|
|
|
|
struct ip *iphdr;
|
|
|
|
struct ip6_hdr *ip6hdr;
|
|
|
|
} gif_uhdr;
|
2018-06-05 21:24:59 +00:00
|
|
|
|
|
|
|
CK_LIST_ENTRY(gif_softc) chain;
|
2018-10-21 18:06:15 +00:00
|
|
|
CK_LIST_ENTRY(gif_softc) srchash;
|
1999-11-22 02:45:11 +00:00
|
|
|
};
|
2018-06-05 21:24:59 +00:00
|
|
|
CK_LIST_HEAD(gif_list, gif_softc);
|
|
|
|
MALLOC_DECLARE(M_GIF);
|
2014-10-14 13:31:47 +00:00
|
|
|
|
2018-06-05 21:24:59 +00:00
|
|
|
#ifndef GIF_HASH_SIZE
|
|
|
|
#define GIF_HASH_SIZE (1 << 4)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define GIF2IFP(sc) ((sc)->gif_ifp)
|
2014-10-14 13:31:47 +00:00
|
|
|
#define gif_iphdr gif_uhdr.iphdr
|
|
|
|
#define gif_hdr gif_uhdr.hdr
|
|
|
|
#define gif_ip6hdr gif_uhdr.ip6hdr
|
1999-11-22 02:45:11 +00:00
|
|
|
|
2000-07-04 16:35:15 +00:00
|
|
|
#define GIF_MTU (1280) /* Default MTU */
|
1999-11-22 02:45:11 +00:00
|
|
|
#define GIF_MTU_MIN (1280) /* Minimum MTU */
|
|
|
|
#define GIF_MTU_MAX (8192) /* Maximum MTU */
|
|
|
|
|
2005-12-21 21:29:45 +00:00
|
|
|
struct etherip_header {
|
Fix and add a workaround on an issue of EtherIP packet with reversed
version field sent via gif(4)+if_bridge(4). The EtherIP
implementation found on FreeBSD 6.1, 6.2, 6.3, 7.0, 7.1, and 7.2 had
an interoperability issue because it sent the incorrect EtherIP
packets and discarded the correct ones.
This change introduces the following two flags to gif(4):
accept_rev_ethip_ver: accepts both correct EtherIP packets and ones
with reversed version field, if enabled. If disabled, the gif
accepts the correct packets only. This flag is enabled by
default.
send_rev_ethip_ver: sends EtherIP packets with reversed version field
intentionally, if enabled. If disabled, the gif sends the correct
packets only. This flag is disabled by default.
These flags are stored in struct gif_softc and can be set by
ifconfig(8) on per-interface basis.
Note that this is an incompatible change of EtherIP with the older
FreeBSD releases. If you need to interoperate older FreeBSD boxes and
new versions after this commit, setting "send_rev_ethip_ver" is
needed.
Reviewed by: thompsa and rwatson
Spotted by: Shunsuke SHINOMIYA
PR: kern/125003
MFC after: 2 weeks
2009-06-07 23:00:40 +00:00
|
|
|
#if BYTE_ORDER == LITTLE_ENDIAN
|
|
|
|
u_int eip_resvl:4, /* reserved */
|
|
|
|
eip_ver:4; /* version */
|
|
|
|
#endif
|
|
|
|
#if BYTE_ORDER == BIG_ENDIAN
|
|
|
|
u_int eip_ver:4, /* version */
|
|
|
|
eip_resvl:4; /* reserved */
|
|
|
|
#endif
|
|
|
|
u_int8_t eip_resvh; /* reserved */
|
|
|
|
} __packed;
|
|
|
|
|
|
|
|
#define ETHERIP_VERSION 0x3
|
2009-03-07 19:08:58 +00:00
|
|
|
/* mbuf adjust factor to force 32-bit alignment of IP header */
|
|
|
|
#define ETHERIP_ALIGN 2
|
2005-12-21 21:29:45 +00:00
|
|
|
|
2018-06-05 21:24:59 +00:00
|
|
|
#define GIF_WAIT() epoch_wait_preempt(net_epoch_preempt)
|
|
|
|
|
1999-11-22 02:45:11 +00:00
|
|
|
/* Prototypes */
|
2018-06-05 21:24:59 +00:00
|
|
|
struct gif_list *gif_hashinit(void);
|
|
|
|
void gif_hashdestroy(struct gif_list *);
|
|
|
|
|
2014-10-14 13:31:47 +00:00
|
|
|
void gif_input(struct mbuf *, struct ifnet *, int, uint8_t);
|
2013-04-26 12:50:32 +00:00
|
|
|
int gif_output(struct ifnet *, struct mbuf *, const struct sockaddr *,
|
2009-04-16 20:30:28 +00:00
|
|
|
struct route *);
|
2018-06-05 21:24:59 +00:00
|
|
|
|
|
|
|
void in_gif_init(void);
|
|
|
|
void in_gif_uninit(void);
|
2014-12-25 21:32:37 +00:00
|
|
|
int in_gif_output(struct ifnet *, struct mbuf *, int, uint8_t);
|
2018-06-05 21:24:59 +00:00
|
|
|
int in_gif_ioctl(struct gif_softc *, u_long, caddr_t);
|
|
|
|
int in_gif_setopts(struct gif_softc *, u_int);
|
|
|
|
|
|
|
|
void in6_gif_init(void);
|
|
|
|
void in6_gif_uninit(void);
|
2014-12-25 21:32:37 +00:00
|
|
|
int in6_gif_output(struct ifnet *, struct mbuf *, int, uint8_t);
|
2018-06-05 21:24:59 +00:00
|
|
|
int in6_gif_ioctl(struct gif_softc *, u_long, caddr_t);
|
|
|
|
int in6_gif_setopts(struct gif_softc *, u_int);
|
2001-09-26 23:37:15 +00:00
|
|
|
#endif /* _KERNEL */
|
|
|
|
|
2009-06-09 02:27:59 +00:00
|
|
|
#define GIFGOPTS _IOWR('i', 150, struct ifreq)
|
Fix and add a workaround on an issue of EtherIP packet with reversed
version field sent via gif(4)+if_bridge(4). The EtherIP
implementation found on FreeBSD 6.1, 6.2, 6.3, 7.0, 7.1, and 7.2 had
an interoperability issue because it sent the incorrect EtherIP
packets and discarded the correct ones.
This change introduces the following two flags to gif(4):
accept_rev_ethip_ver: accepts both correct EtherIP packets and ones
with reversed version field, if enabled. If disabled, the gif
accepts the correct packets only. This flag is enabled by
default.
send_rev_ethip_ver: sends EtherIP packets with reversed version field
intentionally, if enabled. If disabled, the gif sends the correct
packets only. This flag is disabled by default.
These flags are stored in struct gif_softc and can be set by
ifconfig(8) on per-interface basis.
Note that this is an incompatible change of EtherIP with the older
FreeBSD releases. If you need to interoperate older FreeBSD boxes and
new versions after this commit, setting "send_rev_ethip_ver" is
needed.
Reviewed by: thompsa and rwatson
Spotted by: Shunsuke SHINOMIYA
PR: kern/125003
MFC after: 2 weeks
2009-06-07 23:00:40 +00:00
|
|
|
#define GIFSOPTS _IOW('i', 151, struct ifreq)
|
|
|
|
|
2015-05-15 12:19:45 +00:00
|
|
|
#define GIF_IGNORE_SOURCE 0x0002
|
2015-09-10 05:59:39 +00:00
|
|
|
#define GIF_OPTMASK (GIF_IGNORE_SOURCE)
|
Fix and add a workaround on an issue of EtherIP packet with reversed
version field sent via gif(4)+if_bridge(4). The EtherIP
implementation found on FreeBSD 6.1, 6.2, 6.3, 7.0, 7.1, and 7.2 had
an interoperability issue because it sent the incorrect EtherIP
packets and discarded the correct ones.
This change introduces the following two flags to gif(4):
accept_rev_ethip_ver: accepts both correct EtherIP packets and ones
with reversed version field, if enabled. If disabled, the gif
accepts the correct packets only. This flag is enabled by
default.
send_rev_ethip_ver: sends EtherIP packets with reversed version field
intentionally, if enabled. If disabled, the gif sends the correct
packets only. This flag is disabled by default.
These flags are stored in struct gif_softc and can be set by
ifconfig(8) on per-interface basis.
Note that this is an incompatible change of EtherIP with the older
FreeBSD releases. If you need to interoperate older FreeBSD boxes and
new versions after this commit, setting "send_rev_ethip_ver" is
needed.
Reviewed by: thompsa and rwatson
Spotted by: Shunsuke SHINOMIYA
PR: kern/125003
MFC after: 2 weeks
2009-06-07 23:00:40 +00:00
|
|
|
|
1999-11-22 02:45:11 +00:00
|
|
|
#endif /* _NET_IF_GIF_H_ */
|