Skip to main content

Boteraser | Website and Server Security Solutions

🛡️ CVE-2025-39863 — kernel

🟠 CVSS 7.8 — High ✅ No Known Exploit NVD
7.8
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

wifi: brcmfmac: fix use-after-free when rescheduling brcmf_btcoex_info work

In the Linux kernel, the following vulnerability has been resolved:

wifi: brcmfmac: fix use-after-free when rescheduling brcmf_btcoex_info work

The brcmf_btcoex_detach() only shuts down the btcoex timer, if the

flag timer_on is false. However, the brcmf_btcoex_timerfunc(), which

runs as timer handler, sets timer_on to false. This creates critical

race conditions:

1.If brcmf_btcoex_detach() is called while brcmf_btcoex_timerfunc()

is executing, it may observe timer_on as false and skip the call to

timer_shutdown_sync().

2.The brcmf_btcoex_timerfunc() may then reschedule the brcmf_btcoex_info

worker after the cancel_work_sync() has been executed, resulting in

use-after-free bugs.

The use-after-free bugs occur in two distinct scenarios, depending on

the timing of when the brcmf_btcoex_info struct is freed relative to

the execution of its worker thread.

Scenario 1: Freed before the worker is scheduled

The brcmf_btcoex_info is deallocated before the worker is scheduled.

A race condition can occur when schedule_work(&bt_local->work) is

called after the target memory has been freed. The sequence of events

is detailed below:

CPU0 | CPU1

brcmf_btcoex_detach | brcmf_btcoex_timerfunc

| bt_local->timer_on = false;

if (cfg->btcoex->timer_on) |

... |

cancel_work_sync(); |

... |

kfree(cfg->btcoex); // FREE |

| schedule_work(&bt_local->work); // USE

Scenario 2: Freed after the worker is scheduled

The brcmf_btcoex_info is freed after the worker has been scheduled

but before or during its execution. In this case, statements within

the brcmf_btcoex_handler() — such as the container_of macro and

subsequent dereferences of the brcmf_btcoex_info object will cause

a use-after-free access. The following timeline illustrates this

scenario:

CPU0 | CPU1

brcmf_btcoex_detach | brcmf_btcoex_timerfunc

| bt_local->timer_on = false;

if (cfg->btcoex->timer_on) |

... |

cancel_work_sync(); |

... | schedule_work(); // Reschedule

|

kfree(cfg->btcoex); // FREE | brcmf_btcoex_handler() // Worker

/* | btci = container_of(....); // USE

The kfree() above could | ...

also occur at any point | btci-> // USE

during the worker's execution|

*/ |

To resolve the race conditions, drop the conditional check and call

timer_shutdown_sync() directly. It can deactivate the timer reliably,

regardless of its current state. Once stopped, the timer_on state is

then set to false.

How this vulnerability can be exploited

This issue can be reached with local access to the system, attack complexity is low, an attacker needs low-level privileges on the target. No user interaction is required. The scope is unchanged, so the impact stays within the vulnerable component. Rated impact: confidentiality high, integrity high, availability high.

Affected software

CVE-2025-39863 is recorded against 2 packages.

  • kernel (from 6.13.0 up to 6.16.6)
  • linux-kernel

Timeline and source

Published on 19 September 2025 and last revised on 12 August 2026. No public exploit is currently recorded for this entry. A vendor advisory or fix has been published. Record sourced from NVD.

References

git.kernel.org (Web)
git.kernel.org (Web)
git.kernel.org (Web)
git.kernel.org (Web)
git.kernel.org (Web)
git.kernel.org (Web)
github.com (Advisory)
nvd.nist.gov (Advisory)
git.kernel.org (Package)

CVE-2025-39863 on other distributions

Each distribution ships its own build and its own fixed version. Pick the one you run:

Details

Severity High
CVSS Score 7.8
CVSS Vector CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
CWE N/A
Public Exploit ✅ No
Source NVD
Published 2025-09-19
Updated 2026-08-20
Modified 2026-08-12

Affected Packages

Software From version Fixed in
kernel 6.13.0 6.16.6
linux-kernel

Similar Threats

Site Security Check

Is kernel part of your stack?

CVE-2025-39863 is rated CVSS 7.8 High. BotEraser scans your installation against known CVE records and tells you whether this vulnerability applies to the versions you actually run.

Scan My Site Free →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.