CVE-2026-68198
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
10/08/2026
Last modified:
17/08/2026
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
wifi: ath6kl: fix use-after-free in aggr_reset_state()<br />
<br />
The aggr_reset_state() function uses timer_delete() (non-synchronous)<br />
for the aggregation timer before proceeding to delete TID state and<br />
before the structure is freed by callers like aggr_module_destroy().<br />
<br />
If the timer callback (aggr_timeout) is executing when aggr_reset_state()<br />
is called, the callback will continue to access aggr_conn fields like<br />
rx_tid[] and stat[] which may be freed immediately after by<br />
kfree(aggr_info->aggr_conn) in aggr_module_destroy().<br />
<br />
Additionally, the timer callback can re-arm itself via mod_timer() while<br />
aggr_reset_state() is running, creating a more complex race condition.<br />
<br />
Use timer_delete_sync() instead to ensure any running timer callback<br />
has completed before returning.
Impact
Base Score 3.x
8.80
Severity 3.x
HIGH
References to Advisories, Solutions, and Tools
- https://git.kernel.org/stable/c/18965470d41e69d3fc10eb62afae29d10f4cdfd1
- https://git.kernel.org/stable/c/64af6534a085f49d6ed33338a19ab9cf0d0523c9
- https://git.kernel.org/stable/c/a3313111b5d9046af60b370c93eec105b27380c1
- https://git.kernel.org/stable/c/b5d618fd61b9069b4c0a6b487022dd3117ad5acc
- https://git.kernel.org/stable/c/ba7debb4dd6427386862220e8335a53a4bfc235d


