Answer in brief
CVE-2025-39863 records a High severity (CVSS 7.8) vulnerability in wifi: brcmfmac: fix use-after-free when rescheduling brcmf_btcoex_info work. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
CVSS is 7.8. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | 3.10 | Not reported |
| Linux/Linuxgeneric | >=61730d4dfffc2cc9d3a49fad87633008105c18ba <c75600e69e66a751cc046cd9c407b942f298d852 || >=61730d4dfffc2cc9d3a49fad87633008105c18ba <ae58f70bde0433f27ef4b388ab50634736607bf6 || >=61730d4dfffc2cc9d3a49fad87633008105c18ba <f1150153c4e5940fe49ab51136343c5b4fe49d63 || >=61730d4dfffc2cc9d3a49fad87633008105c18ba <3e789f8475f6c857c88de5c5bf4b24b11a477dd7 || >=61730d4dfffc2cc9d3a49fad87633008105c18ba <2f6fbc8e04ca1d1d5c560be694199f847229c625 || >=61730d4dfffc2cc9d3a49fad87633008105c18ba <9cb83d4be0b9b697eae93d321e0da999f9cdfcfc | c75600e69e66a751cc046cd9c407b942f298d852, ae58f70bde0433f27ef4b388ab50634736607bf6, f1150153c4e5940fe49ab51136343c5b4fe49d63, 3e789f8475f6c857c88de5c5bf4b24b11a477dd7, 2f6fbc8e04ca1d1d5c560be694199f847229c625, 9cb83d4be0b9b697eae93d321e0da999f9cdfcfc |
Published upstream
Sep 19, 2025
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 5, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Jun 19, 2026
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.
Quoted source text, attributed separately from HOL analysis.
Answer in brief
CVE-2025-39863 records a High severity (CVSS 7.8) vulnerability in wifi: brcmfmac: fix use-after-free when rescheduling brcmf_btcoex_info work. The current sources do not mark it as known exploited. The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
Analysis pending evidence review
HOL Guard separates source facts from reviewed analysis. See the methodology.
CVSS is 7.8. The current sources do not mark it as known exploited. Treat this as a source-backed prioritization signal, not a statement about your environment.
Analysis status
Analysis pending evidence review
Factual feed record only; HOL analysis is not approved for indexing. Read the methodology.
The current feed maps Linux/Linux (generic), Linux/Linux (generic). Check affected ranges and fixed versions before updating.
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | 3.10 | Not reported |
| Linux/Linuxgeneric | >=61730d4dfffc2cc9d3a49fad87633008105c18ba <c75600e69e66a751cc046cd9c407b942f298d852 || >=61730d4dfffc2cc9d3a49fad87633008105c18ba <ae58f70bde0433f27ef4b388ab50634736607bf6 || >=61730d4dfffc2cc9d3a49fad87633008105c18ba <f1150153c4e5940fe49ab51136343c5b4fe49d63 || >=61730d4dfffc2cc9d3a49fad87633008105c18ba <3e789f8475f6c857c88de5c5bf4b24b11a477dd7 || >=61730d4dfffc2cc9d3a49fad87633008105c18ba <2f6fbc8e04ca1d1d5c560be694199f847229c625 || >=61730d4dfffc2cc9d3a49fad87633008105c18ba <9cb83d4be0b9b697eae93d321e0da999f9cdfcfc | c75600e69e66a751cc046cd9c407b942f298d852, ae58f70bde0433f27ef4b388ab50634736607bf6, f1150153c4e5940fe49ab51136343c5b4fe49d63, 3e789f8475f6c857c88de5c5bf4b24b11a477dd7, 2f6fbc8e04ca1d1d5c560be694199f847229c625, 9cb83d4be0b9b697eae93d321e0da999f9cdfcfc |
Published upstream
Sep 19, 2025
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 5, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Jun 19, 2026
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.
Quoted source text, attributed separately from HOL analysis.