From: Muchun Song <muchun.song@linux.dev>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Sourav Panda <souravpanda@google.com>,
osalvador@suse.de, usama.arif@linux.dev, shakeel.butt@linux.dev,
wangkefeng.wang@huawei.com, anshuman.khandual@arm.com,
david@kernel.org, surenb@google.com, fvdl@google.com,
gthelen@google.com, hannes@cmpxchg.org, riel@surriel.com,
sj@kernel.org, vbabka@suse.cz, mhocko@suse.com,
bjackman@google.com, zi.yan@sent.com, linux-mm@kvack.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v7] mm/hugetlb_cma: Fix null nodemask dereference in hugetlb_cma_alloc_frozen_folio
Date: Wed, 12 Aug 2026 10:02:45 +0800 [thread overview]
Message-ID: <D6E48175-9D38-49E3-ABEC-6283F00CE399@linux.dev> (raw)
In-Reply-To: <20260811185531.b8e3fb91c51713b2f29bc1f0@linux-foundation.org>
> On Aug 12, 2026, at 09:55, Andrew Morton <akpm@linux-foundation.org> wrote:
>
> On Tue, 11 Aug 2026 05:29:09 +0000 Sourav Panda <souravpanda@google.com> wrote:
>
>> alloc_buddy_hugetlb_folio_with_mpol() can pass a NULL nodemask to
>> alloc_fresh_hugetlb_folio() as a fallback to allocate from all
>> nodes. If order is gigantic, alloc_fresh_hugetlb_folio() propagates
>> the NULL nodemask down to hugetlb_cma_alloc_frozen_folio() via
>> alloc_gigantic_frozen_folio().
>>
>> Additionally, hugetlb_cma_alloc_frozen_folio() previously attempted
>> allocation on hugetlb_cma[nid] without verifying if nid is included in
>> the caller's nodemask. Adding a node_isset(nid, *nodemask) check ensures
>> the initial preferred node allocation honors the memory policy / nodemask.
>>
>> However, hugetlb_cma_alloc_frozen_folio() dereferences the nodemask in
>> node_isset(nid, *nodemask) and for_each_node_mask(node, *nodemask),
>> leading to a null pointer dereference kernel panic when nodemask is NULL.
>>
>> Fix this by checking if nodemask is NULL in
>> hugetlb_cma_alloc_frozen_folio() and defaulting it to
>> cpuset_current_mems_allowed. Enclose the allocation attempts within
>> the cpuset seqcount retry loop so that if the cpuset changes concurrently
>> during allocation, the attempts are retried using the updated nodemask.
>> This ensures that the initial node check and fallback loop safely honor
>> the task's cpuset without violating cpuset constraints or causing NULL
>> pointer dereferences or unexpected allocation failures.
>>
>> From a userspace perspective, this bug allows an unprivileged user to
>> crash the kernel (trigger a panic) by requesting a gigantic hugepage
>> allocation with MPOL_PREFERRED_MANY on a system where CMA is only
>> configured on a subset of NUMA nodes.
>
> Thanks. Sashio might have found another thing with MPOL_PREFERRED_MANY
> and CMA:
>
> https://sashiko.dev/#/patchset/20260811052909.475635-1-souravpanda@google.com
Yes, we already noticed that issue in the previous version. However, I believe
this should be addressed as a separate patch within alloc_contig_frozen_pages
itself, rather than in the HugeTLB code, since this is a low-level memory
allocation interface that should not be tied solely to HugeTLB usage.
Muchun,
Thanks.
>
>
>
> We're days away from 7.2 and I do dislike sending hotfixes upstream at
> such a late stage. I expect I'll upstream this and a few other
> hotfixes after 7.2 is released. It'll all end up in the same place.
>
> I would still upstream hotfixes which address added-in-this-cycle bugs,
> but there aren't any of those at present.
prev parent reply other threads:[~2026-08-12 2:03 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-11 5:29 [PATCH v7] mm/hugetlb_cma: Fix null nodemask dereference in hugetlb_cma_alloc_frozen_folio Sourav Panda
2026-08-11 7:07 ` Muchun Song
2026-08-11 8:14 ` Anshuman Khandual
2026-08-12 1:55 ` Andrew Morton
2026-08-12 2:02 ` Muchun Song [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=D6E48175-9D38-49E3-ABEC-6283F00CE399@linux.dev \
--to=muchun.song@linux.dev \
--cc=akpm@linux-foundation.org \
--cc=anshuman.khandual@arm.com \
--cc=bjackman@google.com \
--cc=david@kernel.org \
--cc=fvdl@google.com \
--cc=gthelen@google.com \
--cc=hannes@cmpxchg.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mhocko@suse.com \
--cc=osalvador@suse.de \
--cc=riel@surriel.com \
--cc=shakeel.butt@linux.dev \
--cc=sj@kernel.org \
--cc=souravpanda@google.com \
--cc=surenb@google.com \
--cc=usama.arif@linux.dev \
--cc=vbabka@suse.cz \
--cc=wangkefeng.wang@huawei.com \
--cc=zi.yan@sent.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox