You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
cve 2023 53376
About this tag
CVE-2023-53376 is a Linux kernel vulnerability in the mpi3mr SCSI driver, where bitmap sizes were calculated in bytes but bitmap helper functions expect sizes in bits. This mismatch causes out-of-bounds memory access, triggering KASAN slab-out-of-bounds errors during firmware operations, particularly on eHBA-9600 devices. The fix replaces manual byte arithmetic with kernel bitmap helpers like bitmap_zalloc and bitmap_clear, and updates bitmap bookkeeping to use bits. While this is a Linux-specific issue, Windows users running virtualized or dual-boot environments may encounter related stability concerns. The tag covers the vulnerability details, affected driver, and the upstream patch.
A subtle but dangerous memory-handling bug in the Linux kernel’s mpi3mr SCSI driver — tracked as CVE-2023-53376 — has been fixed upstream after maintainers discovered that the driver was calculating bitmap sizes in bytes while calling bitmap helper functions that expect sizes in bits, allowing...