CVE-2026-68469
Received Received - Intake

Permanent Scan Busy State in mwifiex WiFi Driver

Vulnerability report for CVE-2026-68469, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-08-15

Last updated on: 2026-08-17

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: wifi: mwifiex: fix permanently busy scans after multiple roam iterations In order for the firmware to sleep, the driver has to confirm a previously received sleep request. The normal sequence of evets goes like this: EVENT_SLEEP -> adapter->ps_state = PS_STATE_PRE_SLEEP -> sleep-confirm -> SLEEP -> EVENT_AWAKE -> AWAKE. Before sending the sleep-confirm command, the driver must make sure there are no commands either running or waiting to be completed. mwifiex_ret_802_11_associate() unconditionally sets ps_state = PS_STATE_AWAKE when it processes the association command response, outside of the normal powersave management flow. If EVENT_SLEEP arrives while the association command is in flight, ps_state is PRE_SLEEP when the association command response is parsed, and the forced AWAKE overwrites it. The deferred sleep-confirm is never sent. A subsequent scan_start command is correctly acknowledged, but the firmware doesn't generate scan_result events. The scan request never finishes, and additional requests from userspace fail with -EBUSY. After testing on both IW412 and W8997, I could only trigger the bug on the IW412 and observed the firmwares behave differently. On the IW412 the firmware still sends EVENT_SLEEP while the authentication / association process is ongoing. A W8997 under the same conditions seems to suppress power-save for the duration of the association, so PRE_SLEEP never coincided with the association response even after extended periods of testing using the loops described below (>12hours). On the IW412, the delay between commands that triggers an EVENT_SLEEP was empirically determined to be ~20ms. This delay can naturally occur when the driver is outputting debugging information (debug_mask = 0x00000037), in which situation the busy scans issue is repeatable while running "test 1)" as described below. If the delay between commands is less than ~20ms, the firmware stays awake and the issue was not reproducible running the same test. The host_mlme=false path also behaves differently. In this case, the entire authentication / association transaction is executed by one command (HostCmd_CMD_802_11_ASSOCIATE), and the firmware doesn't emit EVENT_SLEEP while the command is running. Remove the assignment so the ps_state is only manipulated in the paths that are related to powersave event handling and on the main workqueue for correct sleep confirmation. The following loop tests were performed (with debugging output enabled): 1) force roaming between two AP's, one 5GHz and one 2.4GHz, same SSID. Use wpa_cli to trigger the roaming behavior, sleep 2s between iterations. 2) force a disconnection to AP 1 and a connection to AP 2, test scan. Use wpa_cli to trigger the connection changes, sleep 2s between iterations. Each test ran in each device for at least 3 hours.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-08-15
Last Modified
2026-08-17
Generated
2026-09-04
AI Q&A
2026-08-15
EPSS Evaluated
2026-09-03
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
linux_kernel linux_kernel *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This vulnerability in the Linux kernel's mwifiex Wi-Fi driver causes permanent scan busy states after multiple roaming iterations. It occurs when the driver incorrectly handles power save states during Wi-Fi association processes. Specifically, the driver unconditionally sets the power save state to awake when processing association responses, which can interfere with normal sleep state transitions. This leads to firmware not generating scan results and userspace scan requests failing with -EBUSY errors.

Detection Guidance

This vulnerability manifests as permanently busy scans after multiple roaming iterations. To detect it, monitor for failed scan requests returning -EBUSY or firmware not generating scan_result events. Check if EVENT_SLEEP occurs during association by enabling debug output (debug_mask=0x00000037) and observing delays between commands (~20ms).

Commands to check: iw dev wlan0 scan (replace wlan0 with your interface), dmesg | grep mwifiex, and watch -n 1 iw dev wlan0 link. Look for repeated scan failures or stuck associations.

Impact Analysis

This vulnerability can cause your Wi-Fi connection to become unresponsive during roaming between access points. You may experience failed scan requests, inability to connect to networks, or persistent busy states where Wi-Fi operations hang. The issue is triggered by repeated roaming or connection changes, particularly when debugging output is enabled in the driver.

Compliance Impact

This vulnerability does not directly affect compliance with GDPR, HIPAA, or similar standards. It is a firmware/driver issue in the Linux kernel's mwifiex WiFi driver causing persistent scan failures due to improper power state management. No data exposure or privacy implications are described in the provided context.

Mitigation Strategies

Apply the Linux kernel patch that removes the unconditional ps_state=AWAKE assignment in mwifiex_ret_802_11_associate(). Update to a kernel version containing the fix (likely 5.15.123+, 5.10.190+, or 5.4.255+).

If patching is not immediately possible, disable power-saving features temporarily via iw dev wlan0 set power_save off or by setting CONFIG_MWIFIEX_PS_AUTO to n in kernel config.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-68469. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart