| Seq | Timestamp | Type | Name | Duration |
|---|---|---|---|---|
| 0/0 | 2026/06/28 13:19 | flow | patch-triage |
0mArgs:null Results: {
"EnableConfigs": [
"MAC80211"
],
"FocusSymbols": [
"ieee80211_do_stop"
],
"Reasoning": "The patch makes functional changes to the mac80211 subsystem by clearing the beaconing state in `ieee80211_do_stop`. This can be reached via mac80211_hwsim.",
"WorthFuzzing": true
} |
| 1/1 | 2026/06/28 13:19 | action | read-patch-diff |
0mArgs:null Results: {
"PatchDiff": "commit 7c8671973573f32d77c9c9985e3da1abc5c027fb\nAuthor: syz-cluster \u003ctriage@syzkaller.com\u003e\nDate: Sun Jun 28 13:19:33 2026 +0000\n\n syz-cluster: applied patch under review\n\ndiff --git a/net/mac80211/iface.c b/net/mac80211/iface.c\nindex 086272c3ec08c1..c070d47cb631c9 100644\n--- a/net/mac80211/iface.c\n+++ b/net/mac80211/iface.c\n@@ -719,6 +719,10 @@ static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata, bool going_do\n \n \tsdata-\u003evif.bss_conf.beacon_int = 0;\n \n+\t/* mirror stop_ap()/IBSS/mesh: also clear the beaconing state */\n+\tsdata-\u003evif.bss_conf.enable_beacon = false;\n+\tclear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, \u0026sdata-\u003estate);\n+\n \t/*\n \t * If the interface goes down while suspended, presumably because\n \t * the device was unplugged and that happens before our resume,\n"
} |
| 2/1 | 2026/06/28 13:19 | agent | patch-evaluator |
0mModel:gemini-3.1-pro-preview Args: null Results: {
"EnableConfigs": [
"MAC80211"
],
"FocusSymbols": [
"ieee80211_do_stop"
],
"Reasoning": "The patch makes functional changes to the mac80211 subsystem by clearing the beaconing state in `ieee80211_do_stop`. This can be reached via mac80211_hwsim.",
"WorthFuzzing": true
}Instruction: You are an expert Linux kernel maintainer. Your job is to review a provided patch series and determine if it makes functional changes to the kernel that should be fuzzed. IMPORTANT: The changes have ALREADY been applied and committed as the HEAD commit in your workspace. Do NOT rely on your internal knowledge of the kernel. You must actively use your code access tools to examine the actual source code and confirm any assumptions. Return WorthFuzzing=false if the patch only contains: - Modifications to Documentation/, Kconfig files, or code comments. - Purely decorative changes, such as logging (e.g., pr_err, printk) or tracepoints. - Changes to numeric constants or macros that do not functionally alter execution flow. - Code paths that are impossible to reach in virtualized environments like GCE or QEMU, even when utilizing software-emulated hardware (e.g., usb gadget, mac80211_hwsim). If it modifies reachable core kernel logic, drivers, or architectures, use your code search tools to verify the code can be executed, then return WorthFuzzing=true. When returning WorthFuzzing=true, you MUST ALSO: 1. Extract any specific kernel functions that should be heavily fuzzed into FocusSymbols. Avoid listing generic hot-path functions to prevent skewed test distributions. 2. Identify any specific CONFIG_ options required to properly test this new/modified feature. Go and look into the Kconfig files and check for ifdefs around the code, do not make assumptions. Do not list too generic configs (we already have them enabled). Only list those that specifically cover the modified code. List them in the EnableConfigs output array, and DO NOT add a 'CONFIG_' prefix (e.g., return "NET_IPV4" instead of "CONFIG_NET_IPV4"). Prefer calling several tools at the same time to save round-trips. Use set-results tool to provide results of the analysis. It must be called exactly once before the final reply. Ignore results of this tool. Prompt: For your convenience, here is the diff of the changes:
commit 7c8671973573f32d77c9c9985e3da1abc5c027fb
Author: syz-cluster <triage@syzkaller.com>
Date: Sun Jun 28 13:19:33 2026 +0000
syz-cluster: applied patch under review
diff --git a/net/mac80211/iface.c b/net/mac80211/iface.c
index 086272c3ec08c1..c070d47cb631c9 100644
--- a/net/mac80211/iface.c
+++ b/net/mac80211/iface.c
@@ -719,6 +719,10 @@ static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata, bool going_do
sdata->vif.bss_conf.beacon_int = 0;
+ /* mirror stop_ap()/IBSS/mesh: also clear the beaconing state */
+ sdata->vif.bss_conf.enable_beacon = false;
+ clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);
+
/*
* If the interface goes down while suspended, presumably because
* the device was unplugged and that happens before our resume,
|
| 3/2 | 2026/06/28 13:19 | llm | patch-evaluator |
0mModel:gemini-3.1-pro-preview Args: null Results: null Tokens: input: 1908 output: 44 thoughts: 160 Thoughts: **Analyzing a mac80211 Patch** Okay, so I've got this patch here that's touching `net/mac80211/iface.c`. It looks like it's adding some specific logic within `ieee80211_do_stop()`. I need to dig into this to understand the implications. The patch introduces two lines: a flag is being flipped, `sdata->vif.bss_conf.enable_beacon = false;`, and a bit is being cleared, `clear_bit(SDATA_STATE_OFFCHANNEL_BEACON_STOPPED, &sdata->state);`. It's described as mirroring the behavior of `stop_ap()`, IBSS, and mesh scenarios. Specifically, it's about clearing the "beaconing state". My initial impression is this is a functional change within the mac80211 subsystem, and I want to understand *exactly* what state and beaconing aspects are being affected by the change. My next step is to carefully examine the `ieee80211_do_stop` function itself and the surrounding context within `net/mac80211/iface.c`. I need to assess how this alteration affects the various operation modes. I want to see how this interacts with the overall state machine and how this beacon-related state is *supposed* to behave when an interface is stopped. Understanding the implications for different configurations (AP, IBSS, mesh) is essential for evaluating the patch's correctness and potential side effects. |
| 4/2 | 2026/06/28 13:19 | tool | grepper |
0mArgs:{
"Expression": "ieee80211_do_stop",
"PathPrefix": "net/mac80211/iface.c"
}Results: {
"Output": "net/mac80211/iface.c=461=static int ieee80211_open(struct net_device *dev)\n--\nnet/mac80211/iface.c-478-\nnet/mac80211/iface.c:479:static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata, bool going_down)\nnet/mac80211/iface.c-480-{\n--\nnet/mac80211/iface.c=843=static int ieee80211_stop(struct net_device *dev)\n--\nnet/mac80211/iface.c-865-\nnet/mac80211/iface.c:866:\tieee80211_do_stop(sdata, true);\nnet/mac80211/iface.c-867-\n--\nnet/mac80211/iface.c=1978=static int ieee80211_runtime_change_iftype(struct ieee80211_sub_if_data *sdata,\n--\nnet/mac80211/iface.c-2042-\t/* do_stop will synchronize_rcu() first thing */\nnet/mac80211/iface.c:2043:\tieee80211_do_stop(sdata, false);\nnet/mac80211/iface.c-2044-\n--\nnet/mac80211/iface.c=2438=void ieee80211_sdata_stop(struct ieee80211_sub_if_data *sdata)\n--\nnet/mac80211/iface.c-2441-\t\treturn;\nnet/mac80211/iface.c:2442:\tieee80211_do_stop(sdata, true);\nnet/mac80211/iface.c-2443-}\n"
} |
| 5/2 | 2026/06/28 13:19 | llm | patch-evaluator |
0mModel:gemini-3.1-pro-preview Args: null Results: null Tokens: input: 2996 output: 36 thoughts: 130 Thoughts: **Analyzing the `ieee80211_do_stop` Function's Usage and Context** Okay, so I'm looking at `ieee80211_do_stop`. The kernel code reveals that this function is triggered from a few key places: `ieee80211_stop`, `ieee80211_runtime_change_iftype`, and `ieee80211_sdata_stop`. This immediately tells me we're dealing with the cessation of 802.11 operations, potentially triggered by a complete interface shutdown, a change in interface type, or the stopping of a specific station's data stream. Given it’s part of the mac80211 subsystem, the obvious route to fuzzing this is through the `mac80211_hwsim` module. It’s the go-to tool for testing mac80211 functionality. The build config I'll need to enable is definitely `MAC80211`. Now, I want to double-check the Kconfig, specifically for `net/mac80211/iface.c`, just to get a fuller picture of the surrounding options and potential dependencies. |
| 6/2 | 2026/06/28 13:19 | tool | grepper |
0mArgs:{
"Expression": "MAC80211",
"PathPrefix": "net/mac80211/Makefile"
}Results: {
"Output": "net/mac80211/Makefile-1-# SPDX-License-Identifier: GPL-2.0\nnet/mac80211/Makefile:2:obj-$(CONFIG_MAC80211) += mac80211.o\nnet/mac80211/Makefile-3-\n--\nnet/mac80211/Makefile=5=mac80211-y := \\\n--\nnet/mac80211/Makefile-39-\nnet/mac80211/Makefile:40:mac80211-$(CONFIG_MAC80211_LEDS) += led.o\nnet/mac80211/Makefile:41:mac80211-$(CONFIG_MAC80211_DEBUGFS) += \\\nnet/mac80211/Makefile-42-\tdebugfs.o \\\n--\nnet/mac80211/Makefile-46-\nnet/mac80211/Makefile:47:mac80211-$(CONFIG_MAC80211_MESH) += \\\nnet/mac80211/Makefile-48-\tmesh.o \\\n--\nnet/mac80211/Makefile=59=rc80211_minstrel-y := \\\n--\nnet/mac80211/Makefile-61-\nnet/mac80211/Makefile:62:rc80211_minstrel-$(CONFIG_MAC80211_DEBUGFS) += \\\nnet/mac80211/Makefile-63-\trc80211_minstrel_ht_debugfs.o\nnet/mac80211/Makefile-64-\nnet/mac80211/Makefile:65:mac80211-$(CONFIG_MAC80211_RC_MINSTREL) += $(rc80211_minstrel-y)\nnet/mac80211/Makefile-66-\n"
} |
| 7/2 | 2026/06/28 13:19 | llm | patch-evaluator |
0mModel:gemini-3.1-pro-preview Args: null Results: null Tokens: input: 3928 output: 101 thoughts: 47 Thoughts: Okay, here's my take on those thoughts, framed as my own mental processing as an expert: **Analyzing the Proposed Change for Fuzzing Potential** Alright, so the config under consideration is `MAC80211`. That immediately tells me we're dealing with the core wireless networking stack, a notoriously complex and security-critical area. My attention is drawn to the `ieee80211_do_stop` function. Given its name, it's highly likely this function handles the graceful shutdown or termination of a wireless interface or connection. This is intriguing because any function that manages connection termination often has edge cases and error handling that can be exploited, especially around the states and transitions associated with stopping operations. The fact that it's flagged as a "functional change" and thus `WorthFuzzing` is set to true reinforces my initial suspicion. Functional changes, by definition, modify the intended behavior. That means there's a good chance that new code paths have been introduced, or existing ones modified. These new or modified paths are exactly the types of things I want to subject to fuzzing. It signifies there is new functionality that might contain unknown vulnerabilities and the possibility of unexpected behavior. I'm going to want to deeply analyze this function, trace its dependencies, understand the input parameters and how they are handled, and design a fuzzing strategy that specifically targets scenarios related to stopping wireless operations – things like incomplete frames, corrupted control signals, and unusual sequence of stop/start calls. This has potential written all over it. |
| 8/2 | 2026/06/28 13:19 | tool | set-results |
0mArgs:{
"EnableConfigs": [
"MAC80211"
],
"FocusSymbols": [
"ieee80211_do_stop"
],
"Reasoning": "The patch makes functional changes to the mac80211 subsystem by clearing the beaconing state in `ieee80211_do_stop`. This can be reached via mac80211_hwsim.",
"WorthFuzzing": true
}Results: {
"EnableConfigs": [
"MAC80211"
],
"FocusSymbols": [
"ieee80211_do_stop"
],
"Reasoning": "The patch makes functional changes to the mac80211 subsystem by clearing the beaconing state in `ieee80211_do_stop`. This can be reached via mac80211_hwsim.",
"WorthFuzzing": true
} |
| Total Calls | Total Tokens | Avg Tokens | Total Duration (Seconds) | Avg Duration (Seconds) |
|---|
| Total Calls | Total Duration (Seconds) | Avg Duration (Seconds) |
|---|