CVE-2026-68262: drm/imagination: Fix user array stride in pvr_set_uobj_array()
In the Linux kernel, the following vulnerability has been resolved:
drm/imagination: Fix user array stride in pvrsetuobjarray()
pvrsetuobjarray() copies an array of kernel objects to a userspace array whose element size is described by out->stride. When out->stride is different from the kernel object size, the slow path advances the userspace pointer by the kernel object size and the kernel pointer by the userspace stride.
This reverses the intended layout. For larger userspace strides, later copies read from the wrong kernel addresses. For smaller userspace strides, later copies are written at the wrong userspace offsets. The padding clear is also done only for the first element instead of the padding area for each element.
Advance the userspace pointer by out->stride and the kernel pointer by objsize, and clear per-element padding while the current userspace pointer is still available.
Event History
Frequently Asked Questions
What is the severity of CVE-2026-68262?
CVE-2026-68262 has a risk score of 37, indicating a medium-level vulnerability.
How do I fix CVE-2026-68262?
To mitigate CVE-2026-68262, update your Linux kernel to the latest version where the vulnerability has been resolved.
What does CVE-2026-68262 affect?
CVE-2026-68262 affects the Linux kernel's handling of user array strides in the pvr_set_uobj_array() function.
Is CVE-2026-68262 a local or remote vulnerability?
CVE-2026-68262 is primarily a local vulnerability that can be exploited by users with access to the affected system.
When was CVE-2026-68262 published?
CVE-2026-68262 was published on August 10, 2026.