Answer in brief
CVE-2026-64099 records a Unknown severity vulnerability in drm/v3d: Fix use-after-free of CPU job query arrays on error path. 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.
A CVSS score is not reported in the current record. 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 | >=9ba0ff3e083f6a4a0b6698f06bfff74805fefa5f <acd55ea40d03e06f20a9986363019e0e5173990e || >=9ba0ff3e083f6a4a0b6698f06bfff74805fefa5f <0f8efc45740b0628a787d1b0be8a0ddabd700625 || >=9ba0ff3e083f6a4a0b6698f06bfff74805fefa5f <69c2a1fec2e7ca25598180816f3bc56e1842eb41 || >=9ba0ff3e083f6a4a0b6698f06bfff74805fefa5f <b0fe80c0b9250b35e2211bf3117e7aca814a21b0 | acd55ea40d03e06f20a9986363019e0e5173990e, 0f8efc45740b0628a787d1b0be8a0ddabd700625, 69c2a1fec2e7ca25598180816f3bc56e1842eb41, b0fe80c0b9250b35e2211bf3117e7aca814a21b0 |
| Linux/Linuxgeneric | 6.8 | Not reported |
Published upstream
Jul 19, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 5, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 5, 2026
In the Linux kernel, the following vulnerability has been resolved: drm/v3d: Fix use-after-free of CPU job query arrays on error path The CPU job ioctl's fail label calls kvfree() on cpu_job's timestamp and performance query arrays after v3d_job_cleanup(), which drops the job's last reference and frees cpu_job. Reading cpu_job at that point is a use-after-free. Also, on the early v3d_job_init() failure path, it is a NULL dereference, since v3d_job_deallocate() zeroes the local pointer. In the success path, the arrays are released from the scheduler's .free_job callback, but on the error path, they are freed manually, as the job was never pushed to the scheduler. While the success path deals with this correctly, the fail path doesn't. On top of that, the manual kvfree() calls only free the array storage; they don't drm_syncobj_put() the per-query syncobjs that v3d_timestamp_query_info_free() and v3d_performance_query_info_free() release on the success path. So the same fail path that triggers the use-after-free also leaks one syncobj reference per query. Unify the CPU job teardown into the CPU job's kref destructor, mirroring v3d_render_job_free(). The scheduler's .free_job slot reverts to the generic v3d_sched_job_free() and the fail label drops the manual kvfree() calls, leaving a single teardown path that is reached from both the scheduler and the ioctl error path. That removes the use-after-free, the NULL dereference, and the syncobj leak by construction.
Quoted source text, attributed separately from HOL analysis.
Answer in brief
CVE-2026-64099 records a Unknown severity vulnerability in drm/v3d: Fix use-after-free of CPU job query arrays on error path. 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.
A CVSS score is not reported in the current record. 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 | >=9ba0ff3e083f6a4a0b6698f06bfff74805fefa5f <acd55ea40d03e06f20a9986363019e0e5173990e || >=9ba0ff3e083f6a4a0b6698f06bfff74805fefa5f <0f8efc45740b0628a787d1b0be8a0ddabd700625 || >=9ba0ff3e083f6a4a0b6698f06bfff74805fefa5f <69c2a1fec2e7ca25598180816f3bc56e1842eb41 || >=9ba0ff3e083f6a4a0b6698f06bfff74805fefa5f <b0fe80c0b9250b35e2211bf3117e7aca814a21b0 | acd55ea40d03e06f20a9986363019e0e5173990e, 0f8efc45740b0628a787d1b0be8a0ddabd700625, 69c2a1fec2e7ca25598180816f3bc56e1842eb41, b0fe80c0b9250b35e2211bf3117e7aca814a21b0 |
| Linux/Linuxgeneric | 6.8 | Not reported |
Published upstream
Jul 19, 2026
Evidence: source:cvelist:source_dates:source-dates:recordSource modified
Aug 5, 2026
Evidence: source:cvelist:source_dates:source-dates:recordFirst seen by HOL
Aug 5, 2026
In the Linux kernel, the following vulnerability has been resolved: drm/v3d: Fix use-after-free of CPU job query arrays on error path The CPU job ioctl's fail label calls kvfree() on cpu_job's timestamp and performance query arrays after v3d_job_cleanup(), which drops the job's last reference and frees cpu_job. Reading cpu_job at that point is a use-after-free. Also, on the early v3d_job_init() failure path, it is a NULL dereference, since v3d_job_deallocate() zeroes the local pointer. In the success path, the arrays are released from the scheduler's .free_job callback, but on the error path, they are freed manually, as the job was never pushed to the scheduler. While the success path deals with this correctly, the fail path doesn't. On top of that, the manual kvfree() calls only free the array storage; they don't drm_syncobj_put() the per-query syncobjs that v3d_timestamp_query_info_free() and v3d_performance_query_info_free() release on the success path. So the same fail path that triggers the use-after-free also leaks one syncobj reference per query. Unify the CPU job teardown into the CPU job's kref destructor, mirroring v3d_render_job_free(). The scheduler's .free_job slot reverts to the generic v3d_sched_job_free() and the fail label drops the manual kvfree() calls, leaving a single teardown path that is reached from both the scheduler and the ioctl error path. That removes the use-after-free, the NULL dereference, and the syncobj leak by construction.
Quoted source text, attributed separately from HOL analysis.