From: Vitaliy Shevtsov <v.shevtsov@mt-integration.ru>
To: Johannes Berg <johannes@sipsolutions.net>
Cc: Vitaliy Shevtsov <v.shevtsov@mt-integration.ru>,
"John W. Linville" <linville@tuxdriver.com>,
Michael Wu <flamingice@sourmilk.net>,
<linux-wireless@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<lvc-project@linuxtesting.org>,
<syzbot+2e5c1e55b9e5c28a3da7@syzkaller.appspotmail.com>
Subject: [PATCH] wifi: nl80211: override all other flags if MONITOR_FLAG_COOK_FRAMES is set
Date: Thu, 30 Jan 2025 17:34:21 +0500 [thread overview]
Message-ID: <20250130123432.4534-1-v.shevtsov@mt-integration.ru> (raw)
It is possible to set both MONITOR_FLAG_COOK_FRAMES and MONITOR_FLAG_ACTIVE
flags simultaneously on the same monitor interface from the userspace. This
causes a sub-interface to be created with no IEEE80211_SDATA_IN_DRIVER bit
set because the monitor interface is in the cooked state and it takes
precedence over all other states. When the interface is then being deleted
the kernel calls WARN_ONCE() from check_sdata_in_driver() because of missing
that bit.
Fix this by overriding all flags if MONITOR_FLAG_COOK_FRAMES is set because
this flag is incompatible with other monitor flags being set.
Found by Linux Verification Center (linuxtesting.org) with Syzkaller.
Fixes: 66f7ac50ed7c (nl80211: Add monitor interface configuration flags)
Reported-by: syzbot+2e5c1e55b9e5c28a3da7@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=2e5c1e55b9e5c28a3da7
Signed-off-by: Vitaliy Shevtsov <v.shevtsov@mt-integration.ru>
---
net/wireless/nl80211.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c
index d7d3da0f6833..1338b0a06f8d 100644
--- a/net/wireless/nl80211.c
+++ b/net/wireless/nl80211.c
@@ -4220,6 +4220,10 @@ static int parse_monitor_flags(struct nlattr *nla, u32 *mntrflags)
if (flags[flag])
*mntrflags |= (1<<flag);
+ /* MONITOR_FLAG_COOK_FRAMES must override all other flags */
+ if (*mntrflags & MONITOR_FLAG_COOK_FRAMES)
+ *mntrflags = MONITOR_FLAG_COOK_FRAMES;
+
*mntrflags |= MONITOR_FLAG_CHANGED;
return 0;
--
2.48.1
next reply other threads:[~2025-01-30 12:44 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-30 12:34 Vitaliy Shevtsov [this message]
2025-01-30 12:36 ` Johannes Berg
2025-01-30 19:23 ` [lvc-project] " Fedor Pchelkin
2025-01-30 21:13 ` Johannes Berg
2025-02-03 10:40 ` Jouni Malinen
2025-02-03 10:55 ` Johannes Berg
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250130123432.4534-1-v.shevtsov@mt-integration.ru \
--to=v.shevtsov@mt-integration.ru \
--cc=flamingice@sourmilk.net \
--cc=johannes@sipsolutions.net \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-wireless@vger.kernel.org \
--cc=linville@tuxdriver.com \
--cc=lvc-project@linuxtesting.org \
--cc=syzbot+2e5c1e55b9e5c28a3da7@syzkaller.appspotmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®