CVE-2026-46325

In the Linux kernel, the following vulnerability has been resolved: RDMA/rxe: Fix iova-to-va conversion for MR page sizes != PAGE_SIZE The current implementation incorrectly handles memory regions (MRs) with page sizes different from the system PAGE_SIZE. The core issue is that rxe_set_page() is called with mr->page_size step increments, but the page_list stores individual struct page pointers, each representing PAGE_SIZE of memory. ib_sg_to_page() has ensured that when i>=1 either a) SG[i-1].dma_end and SG[i].dma_addr are contiguous or b) SG[i-1].dma_end and SG[i].dma_addr are mr->page_size aligned. This leads to incorrect iova-to-va conversion in scenarios: 1) page_size < PAGE_SIZE (e.g., MR: 4K, system: 64K): ibmr->iova = 0x181800 sg[0]: dma_addr=0x181800, len=0x800 sg[1]: dma_addr=0x173000, len=0x1000 Access iova = 0x181800 + 0x810 = 0x182010 Expected VA: 0x173010 (second SG, offset 0x10) Before fix: - index = (0x182010 >> 12) - (0x181800 >> 12) = 1 - page_offset = 0x182010 & 0xFFF = 0x10 - xarray[1] stores system page base 0x170000 - Resulting VA: 0x170000 + 0x10 = 0x170010 (wrong) 2) page_size > PAGE_SIZE (e.g., MR: 64K, system: 4K): ibmr->iova = 0x18f800 sg[0]: dma_addr=0x18f800, len=0x800 sg[1]: dma_addr=0x170000, len=0x1000 Access iova = 0x18f800 + 0x810 = 0x190010 Expected VA: 0x170010 (second SG, offset 0x10) Before fix: - index = (0x190010 >> 16) - (0x18f800 >> 16) = 1 - page_offset = 0x190010 & 0xFFFF = 0x10 - xarray[1] stores system page for dma_addr 0x170000 - Resulting VA: system page of 0x170000 + 0x10 = 0x170010 (wrong) Yi Zhang reported a kernel panic[1] years ago related to this defect. Solution: 1. Replace xarray with pre-allocated rxe_mr_page array for sequential indexing (all MR page indices are contiguous) 2. Each rxe_mr_page stores both struct page* and offset within the system page 3. Handle MR page_size != PAGE_SIZE relationships: - page_size > PAGE_SIZE: Split MR pages into multiple system pages - page_size <= PAGE_SIZE: Store offset within system page 4. Add boundary checks and compatibility validation This ensures correct iova-to-va conversion regardless of MR page size and system PAGE_SIZE relationship, while improving performance through array-based sequential access. Tests on 4K and 64K PAGE_SIZE hosts: - rdma-core/pytests $ ./build/bin/run_tests.py --dev eth0_rxe - blktest: $ TIMEOUT=30 QUICK_RUN=1 USE_RXE=1 NVMET_TRTYPES=rdma ./check nvme srp rnbd [1] https://lore.kernel.org/all/CAHj4cs9XRqE25jyVw9rj9YugffLn5+f=1znaBEnu1usLOciD+g@mail.gmail.com/T/
Configurations

Configuration 1 (hide)

OR cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*

History

23 Jul 2026, 08:10

Type Values Removed Values Added
Summary
  • (es) En el kernel de Linux, la siguiente vulnerabilidad ha sido resuelta: RDMA/rxe: Corrección de la conversión iova-a-va para tamaños de página de MR != PAGE_SIZE La implementación actual maneja incorrectamente las regiones de memoria (MRs) con tamaños de página diferentes al PAGE_SIZE del sistema. El problema central es que rxe_set_page() se llama con incrementos de paso mr->page_size, pero la page_list almacena punteros individuales a struct page, cada uno representando PAGE_SIZE de memoria. ib_sg_to_page() ha asegurado que cuando i>=1, o bien a) SG[i-1].dma_end y SG[i].dma_addr son contiguos o b) SG[i-1].dma_end y SG[i].dma_addr están alineados con mr->page_size. Esto lleva a una conversión iova-a-va incorrecta en los siguientes escenarios: 1) page_size < PAGE_SIZE (ej., MR: 4K, sistema: 64K): ibmr->iova = 0x181800 sg[0]: dma_addr=0x181800, len=0x800 sg[1]: dma_addr=0x173000, len=0x1000 Acceso iova = 0x181800 + 0x810 = 0x182010 VA esperada: 0x173010 (segundo SG, desplazamiento 0x10) Antes de la corrección: - índice = (0x182010 >> 12) - (0x181800 >> 12) = 1 - page_offset = 0x182010 & 0xFFF = 0x10 - xarray[1] almacena la base de página del sistema 0x170000 - VA resultante: 0x170000 + 0x10 = 0x170010 (incorrecto) 2) page_size > PAGE_SIZE (ej., MR: 64K, sistema: 4K): ibmr->iova = 0x18f800 sg[0]: dma_addr=0x18f800, len=0x800 sg[1]: dma_addr=0x170000, len=0x1000 Acceso iova = 0x18f800 + 0x810 = 0x190010 VA esperada: 0x170010 (segundo SG, desplazamiento 0x10) Antes de la corrección: - índice = (0x190010 >> 16) - (0x18f800 >> 16) = 1 - page_offset = 0x190010 & 0xFFFF = 0x10 - xarray[1] almacena la página del sistema para dma_addr 0x170000 - VA resultante: página del sistema de 0x170000 + 0x10 = 0x170010 (incorrecto) Yi Zhang informó de un kernel panic[1] hace años relacionado con este defecto. Solución: 1. Reemplazar xarray con un array rxe_mr_page preasignado para indexación secuencial (todos los índices de página de MR son contiguos) 2. Cada rxe_mr_page almacena tanto struct page como el desplazamiento dentro de la página del sistema 3. Manejar las relaciones MR page_size != PAGE_SIZE: - page_size > PAGE_SIZE: Dividir las páginas de MR en múltiples páginas del sistema - page_size <= PAGE_SIZE: Almacenar el desplazamiento dentro de la página del sistema 4. Añadir comprobaciones de límites y validación de compatibilidad Esto asegura una conversión iova-a-va correcta independientemente del tamaño de página de MR y la relación PAGE_SIZE del sistema, al tiempo que mejora el rendimiento mediante el acceso secuencial basado en arrays. Pruebas en hosts con PAGE_SIZE de 4K y 64K: - rdma-core/pytests $ ./build/bin/run_tests.py --dev eth0_rxe - blktest: $ TIMEOUT=30 QUICK_RUN=1 USE_RXE=1 NVMET_TRTYPES=rdma ./check nvme srp rnbd [1] https://lore.kernel.org/all/CAHj4cs9XRqE25jyVw9rj9YugffLn5+f=1znaBEnu1usLOciD+g@mail.gmail.com/T/

08 Jul 2026, 15:54

Type Values Removed Values Added
CPE cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
First Time Linux linux Kernel
Linux
CWE NVD-CWE-noinfo
References () https://git.kernel.org/stable/c/12985e5915a0b8354796efadaaeb201eed115377 - () https://git.kernel.org/stable/c/12985e5915a0b8354796efadaaeb201eed115377 - Patch
References () https://git.kernel.org/stable/c/409c2c5508f3d30627bea576f8676de523cb906e - () https://git.kernel.org/stable/c/409c2c5508f3d30627bea576f8676de523cb906e - Patch
References () https://git.kernel.org/stable/c/836f6c13c9674027793f720be3f15ecd2b90b6ca - () https://git.kernel.org/stable/c/836f6c13c9674027793f720be3f15ecd2b90b6ca - Patch

14 Jun 2026, 06:16

Type Values Removed Values Added
CVSS v2 : unknown
v3 : unknown
v2 : unknown
v3 : 9.8

09 Jun 2026, 14:16

Type Values Removed Values Added
New CVE

Information

Published : 2026-06-09 14:16

Updated : 2026-07-23 08:10


NVD link : CVE-2026-46325

Mitre link : CVE-2026-46325

CVE.ORG link : CVE-2026-46325


JSON object : View

Products Affected

linux

  • linux_kernel