summaryrefslogtreecommitdiffstats
path: root/sys/sys/priv.h
diff options
context:
space:
mode:
authorhrs <hrs@FreeBSD.org>2009-06-07 23:00:40 +0000
committerhrs <hrs@FreeBSD.org>2009-06-07 23:00:40 +0000
commit9bf362d0cc3f533a0c7e793fd354bfabfce44de6 (patch)
tree9a067cbb66c280e9da4ac4cea8c84e204039d753 /sys/sys/priv.h
parent92f847edaf37d804dffd489728e6af48a60a4fbb (diff)
downloadFreeBSD-src-9bf362d0cc3f533a0c7e793fd354bfabfce44de6.zip
FreeBSD-src-9bf362d0cc3f533a0c7e793fd354bfabfce44de6.tar.gz
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
Diffstat (limited to 'sys/sys/priv.h')
-rw-r--r--sys/sys/priv.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/sys/priv.h b/sys/sys/priv.h
index 6f9f63b..7936de0 100644
--- a/sys/sys/priv.h
+++ b/sys/sys/priv.h
@@ -324,6 +324,7 @@
#define PRIV_NET_ADDIFADDR 413 /* Add protocol addr to interface. */
#define PRIV_NET_DELIFADDR 414 /* Delete protocol addr on interface. */
#define PRIV_NET_LAGG 415 /* Administer lagg interface. */
+#define PRIV_NET_GIF 416 /* Administer gif interface. */
/*
* 802.11-related privileges.
OpenPOWER on IntegriCloud