CVE-2026-80832

Source
https://cve.org/CVERecord?id=CVE-2026-80832
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-80832.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2026-80832
Downstream
Published
2026-09-04T15:54:40.017Z
Modified
2026-09-06T03:46:50.934945552Z
Summary
crypto: qce - fix CCM AAD buffer underallocation
Details

In the Linux kernel, the following vulnerability has been resolved:

crypto: qce - fix CCM AAD buffer underallocation

The AAD buffer allocated in qceaeadccmpreparebuf_assoclen() can be smaller than the length later programmed into the DMA scatterlist.

The allocation size is currently calculated as:

ALIGN(assoclen, 16) + MAXCCMADATAHEADERLEN

while the DMA length is set to:

ALIGN(assoclen + adataheaderlen, 16)

Since ALIGN() does not distribute over addition, the allocation can be smaller than the DMA length. For example, when assoclen = 32 and adataheaderlen = 2:

allocation = ALIGN(32, 16) + 6 = 38 DMA length = ALIGN(32 + 2, 16) = 48

As a result, the QCE hardware can read beyond the allocated buffer while computing the CBC-MAC over the associated data. The extra bytes are folded into the authentication tag, resulting in an incorrect tag and causing CCM self-test failures such as:

alg: aead: ccm-aes-qce encryption test failed (wrong result) on test vector 8

Fix the allocation by adding the maximum possible AAD header length before alignment:

ALIGN(assoclen + MAXCCMADATAHEADERLEN, 16)

This guarantees that the allocated buffer is large enough for the fully padded AAD data for all supported header sizes.

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/80xxx/CVE-2026-80832.json"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
9363efb4181c5e0fbf86bdfa759262aa29f0eb50
Fixed
11775b35ce9f27e73d62188d7d38aa0dc0a219aa
Fixed
c9e0f06a023107694698a7930616aeb460d91816
Fixed
cc56d2b0d77cfeea061e98114992ee687d5eb4dd
Fixed
002f1f99aef7ea631cb687fc17bce64e4963f6aa
Fixed
2f65718b9c1095eef1ae9b374aa0384b1b083f3c
Fixed
46a84efe2dbaddde89073a3c00c694486937c34b
Fixed
4839f4c21f9c577eedef2919ced878a3057c7fc3
Fixed
7f2345f47dd189625f657cd72437179ab4170ee1

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-80832.json"

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
5.14.0
Fixed
5.15.220
Type
ECOSYSTEM
Events
Introduced
5.16.0
Fixed
6.1.187
Type
ECOSYSTEM
Events
Introduced
6.2.0
Fixed
6.6.156
Type
ECOSYSTEM
Events
Introduced
6.7.0
Fixed
6.12.108
Type
ECOSYSTEM
Events
Introduced
6.13.0
Fixed
6.18.49
Type
ECOSYSTEM
Events
Introduced
6.19.0
Fixed
7.1.13
Type
ECOSYSTEM
Events
Introduced
7.2.0
Fixed
7.2.3

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-80832.json"