CVE-2025-38377: rose: fix dangling neighbour pointers in rose_rt_device_down()
In the Linux kernel, the following vulnerability has been resolved:
rose: fix dangling neighbour pointers in rosertdevicedown()
There are two bugs in rosertdevicedown() that can cause use-after-free:
1. The loop bound t->count is modified within the loop, which can cause the loop to terminate early and miss some entries.
2. When removing an entry from the neighbour array, the subsequent entries are moved up to fill the gap, but the loop index i is still incremented, causing the next entry to be skipped.
For example, if a node has three neighbours (A, A, B) with count=3 and A is being removed, the second A is not checked.
i=0: (A, A, B) -> (A, B) with count=2 ^ checked i=1: (A, B) -> (A, B) with count=2 ^ checked (B, not A!) i=2: (doesn't occur because i < count is false)
This leaves the second A in the array with count=2, but the roseneigh structure has been freed. Code that accesses these entries assumes that the first count entries are valid pointers, causing a use-after-free when it accesses the dangling pointer.
Fix both issues by iterating over the array in reverse order with a fixed loop bound. This ensures that all entries are examined and that the removal of an entry doesn't affect subsequent iterations.
Affected Software
Event History
Frequently Asked Questions
What is the severity of CVE-2025-38377?
CVE-2025-38377 has a high severity due to the potential for use-after-free vulnerabilities in the Linux kernel.
How do I fix CVE-2025-38377?
To fix CVE-2025-38377, update your Linux kernel to the latest version where the vulnerability has been patched.
What systems are affected by CVE-2025-38377?
CVE-2025-38377 affects various versions of the Linux kernel that include the rose protocol implementation.
Can CVE-2025-38377 cause system crashes?
Yes, CVE-2025-38377 can lead to system instability and crashes due to the use-after-free nature of the vulnerability.
Is there a workaround for CVE-2025-38377?
Currently, the best workaround for CVE-2025-38377 is to apply the kernel patch or upgrade to a safe version.