aboutsummaryrefslogtreecommitdiff
path: root/sys/net80211
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2022-08-17 16:48:37 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2022-08-18 20:29:25 +0000
commit9d2ba51806c32e7ea8ad83439cb48df91575b5bf (patch)
tree8ca3172b8aac4fe702605dec7bfb28c2942b94d7 /sys/net80211
parent4a7e8c7bd40bc39b3e247df069fa913f0197ea01 (diff)
downloadsrc-9d2ba51806c32e7ea8ad83439cb48df91575b5bf.tar.gz
src-9d2ba51806c32e7ea8ad83439cb48df91575b5bf.zip
net80211: ieee80211_ies_expand() add extra length check
Make sure the given IE length fits into the total length left when parsing through the information elements. In theory I would say discard everything if there is an error but that proves hard with the current code. Sponsored by: The FreeBSD Foundation MFC after: 1 week Reviewed by: adrian Differential Revision: https://reviews.freebsd.org/D36245
Diffstat (limited to 'sys/net80211')
-rw-r--r--sys/net80211/ieee80211_node.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/sys/net80211/ieee80211_node.c b/sys/net80211/ieee80211_node.c
index a739b0586088..bc8a240811de 100644
--- a/sys/net80211/ieee80211_node.c
+++ b/sys/net80211/ieee80211_node.c
@@ -1137,6 +1137,14 @@ ieee80211_ies_expand(struct ieee80211_ies *ies)
ie = ies->data;
ielen = ies->len;
while (ielen > 1) {
+ /* Make sure the given IE length fits into the total length. */
+ if ((2 + ie[1]) > ielen) {
+ printf("%s: malformed IEs! ies %p { data %p len %d }: "
+ "ie %u len 2+%u > total len left %d\n",
+ __func__, ies, ies->data, ies->len,
+ ie[0], ie[1], ielen);
+ return;
+ }
switch (ie[0]) {
case IEEE80211_ELEMID_VENDOR:
if (iswpaoui(ie))