PERFORCE change 45108 for review
Sam Leffler
sam at FreeBSD.org
Sat Jan 10 21:32:01 PST 2004
http://perforce.freebsd.org/chv.cgi?CH=45108
Change 45108 by sam at sam_ebb on 2004/01/10 21:31:47
correct bounds checking of 802.11 mtu
Affected files ...
.. //depot/projects/netperf+sockets/sys/net80211/ieee80211.h#4 edit
.. //depot/projects/netperf+sockets/sys/net80211/ieee80211_ioctl.c#6 edit
Differences ...
==== //depot/projects/netperf+sockets/sys/net80211/ieee80211.h#4 (text+ko) ====
@@ -427,7 +427,16 @@
#define IEEE80211_CRC_LEN 4
-#define IEEE80211_MTU 1500
+/*
+ * Maximum acceptable MTU is:
+ * IEEE80211_MAX_LEN - WEP overhead - CRC -
+ * QoS overhead - RSN/WPA overhead
+ * Min is arbitrarily chosen > IEEE80211_MIN_LEN. The default
+ * mtu is Ethernet-compatible; it's set by ether_ifattach.
+ */
+#define IEEE80211_MTU_MAX 2290
+#define IEEE80211_MTU_MIN 32
+
#define IEEE80211_MAX_LEN (2300 + IEEE80211_CRC_LEN + \
(IEEE80211_WEP_IVLEN + IEEE80211_WEP_KIDLEN + IEEE80211_WEP_CRCLEN))
#define IEEE80211_MIN_LEN \
==== //depot/projects/netperf+sockets/sys/net80211/ieee80211_ioctl.c#6 (text+ko) ====
@@ -1098,7 +1098,8 @@
break;
case SIOCSIFMTU:
ifr = (struct ifreq *)data;
- if (ifr->ifr_mtu > IEEE80211_MTU)
+ if (!(IEEE80211_MTU_MIN >= ifr->ifr_mtu &&
+ ifr->ifr_mtu <= IEEE80211_MTU_MAX))
error = EINVAL;
else
ifp->if_mtu = ifr->ifr_mtu;
More information about the p4-projects
mailing list