CVE-2026-64304
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
25/07/2026
Last modified:
25/07/2026
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
crypto: qat - validate RSA CRT component lengths<br />
<br />
The generic RSA key parser (rsa_helper.c) bounds each CRT component (p,<br />
q, dp, dq, qinv) by the modulus size n_sz, but qat_rsa_setkey_crt()<br />
allocates half-size DMA buffers (key_sz / 2) and right-aligns each<br />
component with:<br />
<br />
memcpy(dst + half_key_sz - len, src, len)<br />
<br />
When a CRT component is larger than half_key_sz the subtraction<br />
underflows and memcpy writes past the DMA buffer, causing memory<br />
corruption.<br />
<br />
Add a len > half_key_sz check next to the existing !len check for each<br />
of the five CRT components so the driver falls back to the non-CRT path<br />
instead of writing out of bounds.
Impact
References to Advisories, Solutions, and Tools
- https://git.kernel.org/stable/c/1002719d13072a5e4be1e993aa61dffb4a604e82
- https://git.kernel.org/stable/c/3d61a214fdcda41f1ebfabbb483404032a7b4d91
- https://git.kernel.org/stable/c/500319830d76911c120dc0b9605f8c16d7702844
- https://git.kernel.org/stable/c/6d99c5fadd2df488103f64d6475b63ba6852202b
- https://git.kernel.org/stable/c/6fb62b767f3e27661e8f8d2f7b85f4e098fcdb1a
- https://git.kernel.org/stable/c/b3ac78756588059729b9195fcc9f4b37d54057a5
- https://git.kernel.org/stable/c/c34369473bfe92a0b46ec78d6358e30341c7f481
- https://git.kernel.org/stable/c/ce42224487c504aee4b7ff3a7342e7b4d7e28cc9



