Instituto Nacional de ciberseguridad. Sección Incibe
Instituto Nacional de Ciberseguridad. Sección INCIBE-CERT

CVE-2026-64280

Gravedad CVSS v3.1:
ALTA
Tipo:
No Disponible / Otro tipo
Fecha de publicación:
25/07/2026
Última modificación:
03/08/2026

Descripción

*** Pendiente de traducción *** In the Linux kernel, the following vulnerability has been resolved:<br /> <br /> fpga: dfl-afu: validate DMA mapping length in afu_dma_map_region()<br /> <br /> afu_ioctl_dma_map() accepts a 64-bit length from userspace via<br /> DFL_FPGA_PORT_DMA_MAP ioctl without an upper bound check. The value<br /> is passed to afu_dma_pin_pages() where npages is derived as<br /> length &gt;&gt; PAGE_SHIFT and passed to pin_user_pages_fast() which takes<br /> int nr_pages, causing implicit truncation if length is very large.<br /> <br /> Validate map.length at the ioctl entry point before calling<br /> afu_dma_map_region(), rejecting values whose page count exceeds<br /> INT_MAX.