Linux-mm Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Qi Xi <xiqi2@huawei.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Vlastimil Babka <vbabka@kernel.org>,
	Suren Baghdasaryan <surenb@google.com>,
	Michal Hocko <mhocko@suse.com>,
	Brendan Jackman <brendan.jackman@linux.dev>,
	Johannes Weiner <hannes@cmpxchg.org>, Zi Yan <ziy@nvidia.com>,
	<linux-mm@kvack.org>, <linux-kernel@vger.kernel.org>,
	<sunnanyong@huawei.com>, <wangkefeng.wang@huawei.com>
Subject: Re: [PATCH v3 2/2] mm/page_isolation: guard compound_order() against racing
Date: Sat, 29 Aug 2026 15:16:51 +0800	[thread overview]
Message-ID: <c7b0dc34-ae1e-4a3d-a286-fdae0e1d978b@huawei.com> (raw)
In-Reply-To: <20260827204732.367c52ad420acb0b87bf29ed@linux-foundation.org>

Thanks for raising this. I checked the path: PageHuge(head) resolves to
folio_test_hugetlb(), which reads page_type via data_race(). I don't think
it's the same issue this series targets:

- It never touches page->flags or PF_SECOND — folio_test_hugetlb() reads
page_type on the head page via FOLIO_TYPE_OPS, a separate "page type" mechanism,
so neither folio_flags() nor its VM_BUG_ON_PGFLAGS assertions are on its path.
- The only shift is a fixed >> 24 on a u32, not a variable 1 << order,
so it can't produce the shift-out-of-bounds UBSAN this series fixes.

So no extra stabilization seems needed for PageHuge() itself.
Happy to add it if you see a case I missed.

Qi

On 28/08/2026 11:47, Andrew Morton wrote:
> On Tue, 25 Aug 2026 20:05:49 +0800 Qi Xi <xiqi2@huawei.com> wrote:
>
>> The PageCompound branch reads compound_head() without holding a reference.
>> A racing split or free can cause compound_head() to return a stale pointer,
>> and compound_nr() reads the order from that stale head, leading to
>> out-of-range shifts and making the skip distance meaningless.
>>
>> Read the order explicitly with compound_order() and validate it is within
>> MAX_FOLIO_ORDER before shifting. Also verify the derived head_pfn against
>> the legitimate pfn: the head must not be past pfn, must be aligned to
>> nr_pages, and pfn must fall within the compound page. Bail out with
>> -EBUSY if any check fails.
>>
>> ...
>>
>> --- a/mm/page_isolation.c
>> +++ b/mm/page_isolation.c
>> @@ -418,10 +418,28 @@ static int isolate_single_pageblock(unsigned long boundary_pfn,
>>   		if (PageCompound(page)) {
>>   			struct page *head = compound_head(page);
>>   			unsigned long head_pfn = page_to_pfn(head);
>> -			unsigned long nr_pages = compound_nr(head);
>> +			unsigned int order = compound_order(head);
>> +			unsigned long nr_pages;
>> +
>> +			/* compound_order() is racy. Cap it at MAX_FOLIO_ORDER. */
>> +			if (order > MAX_FOLIO_ORDER)
>> +				goto failed;
>> +
>> +			nr_pages = 1UL << order;
>> +
>> +			/*
>> +			 * compound_head() is also racy, so the derived head_pfn
>> +			 * needs additional checks to make sure it is valid.
>> +			 * Otherwise, just fail the check. pfn comes from
>> +			 * __first_valid_page() as a legitimate PFN, so use it to
>> +			 * check head_pfn.
>> +			 */
>> +			if (head_pfn > pfn || !IS_ALIGNED(head_pfn, nr_pages) ||
>> +			    pfn - head_pfn >= nr_pages)
>> +				goto failed;
>>   
>>   			if (head_pfn + nr_pages <= boundary_pfn ||
>> -			    PageHuge(page)) {
>> +			    PageHuge(head)) {
> Sashiko suggests that this PageHuge() test suffers the same issue?
>
> 	https://sashiko.dev/#/patchset/20260825120549.966271-1-xiqi2@huawei.com
>
>>   				pfn = head_pfn + nr_pages;
>>   				continue;
>>   			}
>> -- 
>> 2.33.0
>>


      reply	other threads:[~2026-08-29  7:17 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-25 12:05 [PATCH v3 0/2] mm/page_isolation: fix UBSAN shift-out-of-bounds in isolate_single_pageblock Qi Xi
2026-08-25 12:05 ` [PATCH v3 1/2] mm/page_isolation: fix UBSAN shift-out-of-bounds warning Qi Xi
2026-08-25 12:05 ` [PATCH v3 2/2] mm/page_isolation: guard compound_order() against racing Qi Xi
2026-08-28  3:47   ` Andrew Morton
2026-08-29  7:16     ` Qi Xi [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=c7b0dc34-ae1e-4a3d-a286-fdae0e1d978b@huawei.com \
    --to=xiqi2@huawei.com \
    --cc=akpm@linux-foundation.org \
    --cc=brendan.jackman@linux.dev \
    --cc=hannes@cmpxchg.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mhocko@suse.com \
    --cc=sunnanyong@huawei.com \
    --cc=surenb@google.com \
    --cc=vbabka@kernel.org \
    --cc=wangkefeng.wang@huawei.com \
    --cc=ziy@nvidia.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