In the Linux kernel, the following vulnerability has been resolved:
crypto: ccp - Check for page allocation failure correctly in TIO
Sashiko notes:
if __snpallocfirmwarepages() returns NULL under memory pressure, is it safe to pass it directly to pageaddress()?
On architectures without HASHEDPAGEVIRTUAL, pageaddress(NULL) might compute a deterministic but invalid, non-zero virtual address. The subsequent if (tiostatus) check would then evaluate to true, and sevtsminit_locked() would dereference the invalid pointer.
Indeed, page_address(NULL) will return non-NULL garbage here. Fix this by checking the page allocation itself for NULL, not the resulting virtual address.
{
"osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/74xxx/CVE-2026-74403.json",
"cna_assigner": "Linux"
}