{"id":"CVE-2026-89966","summary":"mm/hugetlb_cma: fix null nodemask dereference in hugetlb_cma_alloc_frozen_folio","details":"In the Linux kernel, the following vulnerability has been resolved:\n\nmm/hugetlb_cma: fix null nodemask dereference in hugetlb_cma_alloc_frozen_folio\n\nalloc_buddy_hugetlb_folio_with_mpol() can pass a NULL nodemask to\nalloc_fresh_hugetlb_folio() as a fallback to allocate from all nodes.  If\norder is gigantic, alloc_fresh_hugetlb_folio() propagates the NULL\nnodemask down to hugetlb_cma_alloc_frozen_folio() via\nalloc_gigantic_frozen_folio().\n\nAdditionally, hugetlb_cma_alloc_frozen_folio() previously attempted\nallocation on hugetlb_cma[nid] without verifying if nid is included in the\ncaller's nodemask.  Adding a node_isset(nid, *nodemask) check ensures the\ninitial preferred node allocation honors the memory policy / nodemask.\n\nHowever, hugetlb_cma_alloc_frozen_folio() dereferences the nodemask in\nnode_isset(nid, *nodemask) and for_each_node_mask(node, *nodemask),\nleading to a null pointer dereference kernel panic when nodemask is NULL.\n\nFix this by checking if nodemask is NULL in\nhugetlb_cma_alloc_frozen_folio() and defaulting it to\ncpuset_current_mems_allowed.  Enclose the allocation attempts within the\ncpuset seqcount retry loop so that if the cpuset changes concurrently\nduring allocation, the attempts are retried using the updated nodemask. \nThis ensures that the initial node check and fallback loop safely honor\nthe task's cpuset without violating cpuset constraints or causing NULL\npointer dereferences or unexpected allocation failures.\n\nFrom a userspace perspective, this bug allows an unprivileged user to\ncrash the kernel (trigger a panic) by requesting a gigantic hugepage\nallocation with MPOL_PREFERRED_MANY on a system where CMA is only\nconfigured on a subset of NUMA nodes.\n\nThis can be reproduced by booting a VM with two NUMA nodes, restricting\nCMA to Node 1 (e.g., hugetlb_cma=1:1G default_hugepagesz=1G hugepagesz=1G\nhugepages=0), and running a program that allocates a 1GB hugepage area\nwithout reserving, restricts allocation to Node 0 using mbind() with\nMPOL_PREFERRED_MANY, and triggers a page fault:\n\n  void *ptr = mmap(NULL, 1UL \u003c\u003c 30, PROT_READ | PROT_WRITE,\n                   MAP_PRIVATE | MAP_ANONYMOUS | MAP_HUGETLB |\n                   MAP_HUGE_1GB | MAP_NORESERVE, -1, 0);\n  unsigned long nodemask = 1; /* Node 0 */\n  mbind(ptr, 1UL \u003c\u003c 30, MPOL_PREFERRED_MANY, &nodemask,\n        sizeof(nodemask) * 8, 0);\n  memset(ptr, 0, 1UL \u003c\u003c 30); /* Trigger fault */\n\nThis results in a NULL pointer dereference:\n\n  BUG: kernel NULL pointer dereference, address: 0000000000000000\n  #PF: supervisor read access in kernel mode\n  #PF: error_code(0x0000) - not-present page\n  Oops: Oops: 0000 [#1] SMP NOPTI\n  RIP: 0010:hugetlb_cma_alloc_frozen_folio+0x75/0x120\n  Call Trace:\n   \u003cTASK\u003e\n   only_alloc_fresh_hugetlb_folio.isra.0+0x2c/0x160\n   alloc_surplus_hugetlb_folio+0x6d/0x100\n   alloc_hugetlb_folio+0x3c5/0x660\n   hugetlb_no_page+0x3d9/0x650","modified":"2026-09-17T03:47:28.538736350Z","published":"2026-09-16T10:32:47.482Z","database_specific":{"cna_assigner":"Linux","osv_generated_from":"https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/89xxx/CVE-2026-89966.json"},"references":[{"type":"PACKAGE","url":"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git"},{"type":"WEB","url":"https://git.kernel.org/stable/c/10f616ef06c5bd2d656a0eebaf73f9b09d150c24"},{"type":"WEB","url":"https://git.kernel.org/stable/c/7b8a8ae4dd176a232e973017d2aa3c536a7275e2"},{"type":"ADVISORY","url":"https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/89xxx/CVE-2026-89966.json"},{"type":"ADVISORY","url":"https://nvd.nist.gov/vuln/detail/CVE-2026-89966"}],"affected":[{"ranges":[{"type":"GIT","repo":"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git","events":[{"introduced":"eb02f14c4a2bf4c242d91c4a5d7fb57c3c0ad1b1"},{"fixed":"10f616ef06c5bd2d656a0eebaf73f9b09d150c24"},{"fixed":"7b8a8ae4dd176a232e973017d2aa3c536a7275e2"}]}],"database_specific":{"source":"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-89966.json"}},{"package":{"name":"Kernel","ecosystem":"Linux"},"ranges":[{"type":"ECOSYSTEM","events":[{"introduced":"6.19.0"},{"fixed":"7.2.5"}]}],"database_specific":{"source":"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-89966.json"}}],"schema_version":"1.9.0"}