Answer in brief
CVE-2023-53606 records a High severity (CVSS 7.5) vulnerability in nfsd: clean up potential nfsd_file refcount leaks in COPY codepath. 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.5. 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.
| Product | Affected versions | Fixed versions |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | Not reported | Not reported |
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=e0639dc5805a9d4faaa2c07ad98fa853b9529dd3 <fd63299db8090307eae66f2aef17c8f00aafa0a9 || >=e0639dc5805a9d4faaa2c07ad98fa853b9529dd3 <b3169b6ffe036b549c296a9e71591d29a1fb3209 || >=e0639dc5805a9d4faaa2c07ad98fa853b9529dd3 <75b8c681c563ef7e85da6862354efc18d2a08b1b || >=e0639dc5805a9d4faaa2c07ad98fa853b9529dd3 <8f565846fbe8182961498d4cbe618b15076a683b || >=e0639dc5805a9d4faaa2c07ad98fa853b9529dd3 <6ba434cb1a8d403ea9aad1b667c3ea3ad8b3191f | fd63299db8090307eae66f2aef17c8f00aafa0a9, b3169b6ffe036b549c296a9e71591d29a1fb3209, 75b8c681c563ef7e85da6862354efc18d2a08b1b, 8f565846fbe8182961498d4cbe618b15076a683b, 6ba434cb1a8d403ea9aad1b667c3ea3ad8b3191f |
| Linux/Linuxgeneric | 4.20 | Not reported |
Published upstream
Oct 4, 2025
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 5, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 4, 2026
In the Linux kernel, the following vulnerability has been resolved: nfsd: clean up potential nfsd_file refcount leaks in COPY codepath There are two different flavors of the nfsd4_copy struct. One is embedded in the compound and is used directly in synchronous copies. The other is dynamically allocated, refcounted and tracked in the client struture. For the embedded one, the cleanup just involves releasing any nfsd_files held on its behalf. For the async one, the cleanup is a bit more involved, and we need to dequeue it from lists, unhash it, etc. There is at least one potential refcount leak in this code now. If the kthread_create call fails, then both the src and dst nfsd_files in the original nfsd4_copy object are leaked. The cleanup in this codepath is also sort of weird. In the async copy case, we'll have up to four nfsd_file references (src and dst for both flavors of copy structure). They are both put at the end of nfsd4_do_async_copy, even though the ones held on behalf of the embedded one outlive that structure. Change it so that we always clean up the nfsd_file refs held by the embedded copy structure before nfsd4_copy returns. Rework cleanup_async_copy to handle both inter and intra copies. Eliminate nfsd4_cleanup_intra_ssc since it now becomes a no-op.
Quoted source text, attributed separately from HOL analysis.
Answer in brief
CVE-2023-53606 records a High severity (CVSS 7.5) vulnerability in nfsd: clean up potential nfsd_file refcount leaks in COPY codepath. 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.5. 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.
| Product | Affected versions | Fixed versions |
|---|---|---|
| cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* | Not reported | Not reported |
| Package | Affected range | Fixed version |
|---|---|---|
| Linux/Linuxgeneric | >=e0639dc5805a9d4faaa2c07ad98fa853b9529dd3 <fd63299db8090307eae66f2aef17c8f00aafa0a9 || >=e0639dc5805a9d4faaa2c07ad98fa853b9529dd3 <b3169b6ffe036b549c296a9e71591d29a1fb3209 || >=e0639dc5805a9d4faaa2c07ad98fa853b9529dd3 <75b8c681c563ef7e85da6862354efc18d2a08b1b || >=e0639dc5805a9d4faaa2c07ad98fa853b9529dd3 <8f565846fbe8182961498d4cbe618b15076a683b || >=e0639dc5805a9d4faaa2c07ad98fa853b9529dd3 <6ba434cb1a8d403ea9aad1b667c3ea3ad8b3191f | fd63299db8090307eae66f2aef17c8f00aafa0a9, b3169b6ffe036b549c296a9e71591d29a1fb3209, 75b8c681c563ef7e85da6862354efc18d2a08b1b, 8f565846fbe8182961498d4cbe618b15076a683b, 6ba434cb1a8d403ea9aad1b667c3ea3ad8b3191f |
| Linux/Linuxgeneric | 4.20 | Not reported |
Published upstream
Oct 4, 2025
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 5, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 4, 2026
In the Linux kernel, the following vulnerability has been resolved: nfsd: clean up potential nfsd_file refcount leaks in COPY codepath There are two different flavors of the nfsd4_copy struct. One is embedded in the compound and is used directly in synchronous copies. The other is dynamically allocated, refcounted and tracked in the client struture. For the embedded one, the cleanup just involves releasing any nfsd_files held on its behalf. For the async one, the cleanup is a bit more involved, and we need to dequeue it from lists, unhash it, etc. There is at least one potential refcount leak in this code now. If the kthread_create call fails, then both the src and dst nfsd_files in the original nfsd4_copy object are leaked. The cleanup in this codepath is also sort of weird. In the async copy case, we'll have up to four nfsd_file references (src and dst for both flavors of copy structure). They are both put at the end of nfsd4_do_async_copy, even though the ones held on behalf of the embedded one outlive that structure. Change it so that we always clean up the nfsd_file refs held by the embedded copy structure before nfsd4_copy returns. Rework cleanup_async_copy to handle both inter and intra copies. Eliminate nfsd4_cleanup_intra_ssc since it now becomes a no-op.
Quoted source text, attributed separately from HOL analysis.