Get a Demo

Let's Patch It!

Book a short call with one our specialists, we'll walk you through how Endor Patches work, and ask you a few questions about your environment (like your primary programming languages and repository management). We'll also send you an email right after you fill out the form, feel free to reply with any questions you have in advance!

CVE

CVE-2026-74384

nvme-multipath: fix flex array size in struct nvme_ns_head
Back to all
CVE

CVE-2026-74384

nvme-multipath: fix flex array size in struct nvme_ns_head

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

nvme-multipath: fix flex array size in struct nvmenshead

struct nvmenshead contains a flexible array member, current_path[],

which is indexed using the NUMA node ID:

head->currentpath[numanode_id()]

The structure is currently allocated as:

size = sizeof(struct nvmenshead) +

       (numpossiblenodes()  sizeof(struct nvme_ns ));

head = kzalloc(size, GFP_KERNEL);

This allocation assumes that NUMA node IDs are sequential and densely

packed from 0 .. numpossiblenodes() - 1. While this assumption holds

on many systems, it is not always true on some architectures such as

powerpc.

On some powerpc systems, NUMA node IDs can be sparse. For example:

NUMA:

  NUMA node(s):              6

  NUMA node0 CPU(s):         80-159

  NUMA node8 CPU(s):         0-79

  NUMA node252 CPU(s):

  NUMA node253 CPU(s):

  NUMA node254 CPU(s):

  NUMA node255 CPU(s):

That is, the possible/online NUMA node IDs are: 0, 8, 252, 253, 254, 255

In this case: numpossiblenodes() = 6

So memory is allocated for only 6 entries in current_path[]. However,

the array is later indexed using the actual NUMA node ID. As a result,

accesses such as:

head->current_path[8] or

head->current_path[252]

goes out of bounds, leading to the following KASAN splat:

==================================================================

BUG: KASAN: slab-out-of-bounds in nvmempathrevalidatepaths+0x22c/0x290 [nvmecore]

Write of size 8 at addr c00020003bda35b8 by task kworker/u641:2/1997

CPU: 1 UID: 0 PID: 1997 Comm: kworker/u641:2 Not tainted 7.1.0-rc5-dirty #14 PREEMPT(lazy)

Hardware name: 8335-GTH POWER9 0x4e1202 opal:skiboot-v6.5.3-35-g1851b2a06 PowerNV

Workqueue: async asyncrunentry_fn

Call Trace:

[c000200037fa7510] [c0000000021c23d4] dumpstacklvl+0x88/0xdc (unreliable)

[c000200037fa7540] [c0000000009fda90] print_report+0x22c/0x67c

[c000200037fa7630] [c0000000009fd508] kasan_report+0x108/0x220

[c000200037fa7740] [c0000000009fff48] _asanstore8+0xe8/0x120

[c000200037fa7760] [c008000018e76474] nvmempathrevalidatepaths+0x22c/0x290 [nvmecore]

[c000200037fa7800] [c008000018e6556c] nvmeupdatensinfo+0x4a4/0x5e0 [nvmecore]

[c000200037fa7a50] [c008000018e66270] nvmeallocns+0x6d8/0x1a70 [nvme_core]

[c000200037fa7c20] [c008000018e679fc] nvmescanns+0x3f4/0x630 [nvme_core]

[c000200037fa7d10] [c00000000031f22c] asyncrunentry_fn+0x9c/0x3a0

[c000200037fa7db0] [c0000000002fa544] processonework+0x414/0xa10

[c000200037fa7ec0] [c0000000002fbf00] worker_thread+0x320/0x640

[c000200037fa7f80] [c00000000030d0f8] kthread+0x278/0x290

[c000200037fa7fe0] [c00000000000ded8] startkernelthread+0x14/0x18

Allocated by task 1997 on cpu 1 at 35.928317s:

The buggy address belongs to the object at c00020003bda3000

 which belongs to the cache kmalloc-rnd-15-2k of size 2048

The buggy address is located 16 bytes to the right of

 allocated 1448-byte region [c00020003bda3000, c00020003bda35a8)

The buggy address belongs to the physical page:

Memory state around the buggy address:

 c00020003bda3480: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

 c00020003bda3500: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

c00020003bda3580: 00 00 00 00 00 fc fc fc fc fc fc fc fc fc fc fc

                                        ^

 c00020003bda3600: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc

 c00020003bda3680: fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc fc

==================================================================

Fix this by allocating the flexible array using nrnodeids instead

of numpossiblenodes(). Since nrnodeids represents the maximum

possible NUMA node IDs, indexing currentpath[] using numanode_id()

becomes safe even on systems with sparse node IDs.

Package Versions Affected

Package Version
patch Availability
No items found.

Automatically patch vulnerabilities without upgrading

Fix Without Upgrading
Detect compatible fix
Apply safe remediation
Fix with a single pull request

CVSS Version

Severity
Base Score
CVSS Version
Score Vector
C
H
U
9.8
-
3.1
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
C
H
U
0
-
3.1
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
C
H
U
-

Related Resources

No items found.

References

https://git.kernel.org/stable/c/001e57554de81aa79c25c18fd53911d8a415c304, https://git.kernel.org/stable/c/140d6fff4ed266592492a23444043842b4af7a62, https://git.kernel.org/stable/c/1d4131b5c9823c7d2c86389898ad1b466af7df5e, https://git.kernel.org/stable/c/316b5f1168264844aa125959de1d6da2b1905795, https://git.kernel.org/stable/c/7173a741fed73de6247384056fe92e582ba12507, https://git.kernel.org/stable/c/7e7b167e65610dfa7564d449474f4b477f9d4c1c, https://git.kernel.org/stable/c/9ffdd11bd6c961b46b3689850ff6c5d7af5c5fe5, https://git.kernel.org/stable/c/bde4d6eb53f7d3cdae7e62c9ee84345fdd6e70a6, https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/74xxx/CVE-2026-74384.json, https://nvd.nist.gov/vuln/detail/CVE-2026-74384, https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Severity

9.8

CVSS Score
0
10

Basic Information

Base CVSS
9.8
EPSS Probability
0.00514%
EPSS Percentile
0.41568%
Introduced Version
f333444708f82c4a4d3ccac004da0bfd9cfdfa42,4.20.0,5.11.0,5.16.0,6.2.0,6.7.0,6.13.0,6.19.0,0
Fix Available
001e57554de81aa79c25c18fd53911d8a415c304,5.10.261,5.15.212,6.1.178,6.6.145,6.12.97,6.18.40,7.1.5,6.1.180-1,5.10.262-1,6.12.100-1,0:5.15.213-150.251.amzn2,0:1.0-0.amzn2

Fix Critical Vulnerabilities Instantly

Secure your app without upgrading.
Fix Without Upgrading