CVE-2026-53202
Analyzed Analyzed - Analysis Complete

Signed Integer Truncation in Linux Kernel accel/ivpu Driver

Vulnerability report for CVE-2026-53202, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-06-25

Last updated on: 2026-07-15

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: accel/ivpu: Fix signed integer truncation in IPC receive Fix potential buffer overflow where firmware-supplied data_size is cast to signed int before being used in min_t(). Large unsigned values (>= 0x80000000) become negative, causing unsigned wraparound and oversized memcpy operations that can overflow the stack buffer. Change min_t(int, ...) to min() as both values are unsigned and can be handled by min() without explicit cast.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-06-25
Last Modified
2026-07-15
Generated
2026-07-15
AI Q&A
2026-06-26
EPSS Evaluated
2026-07-14
NVD
EUVD

Affected Vendors & Products

Showing 10 associated CPEs
Vendor Product Version / Range
linux linux_kernel 7.1
linux linux_kernel 7.1
linux linux_kernel 7.1
linux linux_kernel 7.1
linux linux_kernel From 6.13 (inc) to 6.18.36 (exc)
linux linux_kernel From 6.19 (inc) to 7.0.13 (exc)
linux linux_kernel 7.1
linux linux_kernel 7.1
linux linux_kernel 7.1
linux linux_kernel From 6.8 (inc) to 6.12.94 (exc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-674 The product does not properly control the amount of recursion that takes place, consuming excessive resources, such as allocated memory or the program stack.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Mitigation Strategies

The vulnerability is fixed by correcting the signed integer truncation in the Linux kernel's accel/ivpu component. To mitigate this vulnerability, you should update your Linux kernel to a version that includes this fix.

Specifically, ensure your system is running a kernel version released after 2026-06-25 that addresses this issue.

Executive Summary

This vulnerability exists in the Linux kernel's accel/ivpu component where a signed integer truncation occurs during IPC receive operations.

Specifically, firmware-supplied data_size is cast to a signed int before being used in a min_t() function. When large unsigned values (greater than or equal to 0x80000000) are cast to signed int, they become negative, which causes an unsigned wraparound.

This wraparound leads to oversized memcpy operations that can overflow the stack buffer, potentially causing memory corruption.

The fix involved changing min_t(int, ...) to min() since both values are unsigned and can be safely handled without casting.

Impact Analysis

This vulnerability can lead to a buffer overflow in the Linux kernel, which may cause memory corruption.

Such memory corruption could potentially be exploited to execute arbitrary code, cause system crashes, or escalate privileges depending on the attacker's capabilities and system configuration.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-53202. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart