From: Hugh Dickins <hughd@google.com>
To: Zi Yan <ziy@nvidia.com>
Cc: Gavin Guo <gavinguo@igalia.com>,
linux-mm@kvack.org, akpm@linux-foundation.org,
willy@infradead.org, linmiaohe@huawei.com, hughd@google.com,
revest@google.com, kernel-dev@igalia.com,
linux-kernel@vger.kernel.org, stable@vger.kernel.org,
Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Subject: Re: [PATCH] mm/huge_memory: fix dereferencing invalid pmd migration entry
Date: Wed, 16 Apr 2025 22:03:33 -0700 (PDT) [thread overview]
Message-ID: <eec1be5d-8b42-6dbb-432d-488650b79c40@google.com> (raw)
In-Reply-To: <A049A15F-1287-4943-8EE4-833CEEC4F988@nvidia.com>
[-- Attachment #1: Type: text/plain, Size: 4552 bytes --]
On Mon, 14 Apr 2025, Zi Yan wrote:
> On 14 Apr 2025, at 3:27, Gavin Guo wrote:
>
> > When migrating a THP, concurrent access to the PMD migration entry
> > during a deferred split scan can lead to a page fault, as illustrated
>
> It is an access violation, right? Because pmd_folio(*pmd_migration_entry)
> does not return a folio address. Page fault made this sounded like not
> a big issue.
>
> > below. To prevent this page fault, it is necessary to check the PMD
> > migration entry and return early. In this context, there is no need to
> > use pmd_to_swp_entry and pfn_swap_entry_to_page to verify the equality
> > of the target folio. Since the PMD migration entry is locked, it cannot
> > be served as the target.
>
> You mean split_huge_pmd_address() locks the PMD page table, so that
> page migration cannot proceed, or the THP is locked by migration,
> so that it cannot be split? The sentence is a little confusing to me.
No, split_huge_pmd_address() locks nothing. But its caller holds the
folio lock on this folio (as split_huge_pmd_locked() asserts with a
VM_WARN_ON_ONCE); and page migration holds folio lock on its folio
(as various swapops.h functions assert with BUG_ON).
So any PMD migration entry found here cannot be for the folio which
split_huge_pmd_address() is passing down. (And even if the impossible
did occur, what woud we want to do? Skip it as the patch does.)
>
> >
> > BUG: unable to handle page fault for address: ffffea60001db008
> > CPU: 0 UID: 0 PID: 2199114 Comm: tee Not tainted 6.14.0+ #4 NONE
> > Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.16.3-debian-1.16.3-2 04/01/2014
> > RIP: 0010:split_huge_pmd_locked+0x3b5/0x2b60
> > Call Trace:
> > <TASK>
> > try_to_migrate_one+0x28c/0x3730
> > rmap_walk_anon+0x4f6/0x770
> > unmap_folio+0x196/0x1f0
> > split_huge_page_to_list_to_order+0x9f6/0x1560
> > deferred_split_scan+0xac5/0x12a0
> > shrinker_debugfs_scan_write+0x376/0x470
> > full_proxy_write+0x15c/0x220
> > vfs_write+0x2fc/0xcb0
> > ksys_write+0x146/0x250
> > do_syscall_64+0x6a/0x120
> > entry_SYSCALL_64_after_hwframe+0x76/0x7e
> >
> > The bug is found by syzkaller on an internal kernel, then confirmed on
> > upstream.
> >
> > Fixes: 84c3fc4e9c56 ("mm: thp: check pmd migration entry in common path")
> > Cc: stable@vger.kernel.org
> > Signed-off-by: Gavin Guo <gavinguo@igalia.com>
> > ---
> > mm/huge_memory.c | 18 ++++++++++++++----
> > 1 file changed, 14 insertions(+), 4 deletions(-)
> >
> > diff --git a/mm/huge_memory.c b/mm/huge_memory.c
> > index 2a47682d1ab7..0cb9547dcff2 100644
> > --- a/mm/huge_memory.c
> > +++ b/mm/huge_memory.c
> > @@ -3075,6 +3075,8 @@ static void __split_huge_pmd_locked(struct vm_area_struct *vma, pmd_t *pmd,
> > void split_huge_pmd_locked(struct vm_area_struct *vma, unsigned long address,
> > pmd_t *pmd, bool freeze, struct folio *folio)
> > {
> > + bool pmd_migration = is_pmd_migration_entry(*pmd);
> > +
> > VM_WARN_ON_ONCE(folio && !folio_test_pmd_mappable(folio));
> > VM_WARN_ON_ONCE(!IS_ALIGNED(address, HPAGE_PMD_SIZE));
> > VM_WARN_ON_ONCE(folio && !folio_test_locked(folio));
> > @@ -3085,10 +3087,18 @@ void split_huge_pmd_locked(struct vm_area_struct *vma, unsigned long address,
> > * require a folio to check the PMD against. Otherwise, there
> > * is a risk of replacing the wrong folio.
> > */
> > - if (pmd_trans_huge(*pmd) || pmd_devmap(*pmd) ||
> > - is_pmd_migration_entry(*pmd)) {
> > - if (folio && folio != pmd_folio(*pmd))
> > - return;
> > + if (pmd_trans_huge(*pmd) || pmd_devmap(*pmd) || pmd_migration) {
> > + if (folio) {
> > + /*
> > + * Do not apply pmd_folio() to a migration entry; and
> > + * folio lock guarantees that it must be of the wrong
> > + * folio anyway.
>
> Why does the folio lock imply it is a wrong folio?
Because you cannot have two tasks holding folio lock on the same folio
at the same time. So therefore it is a different ("wrong") folio.
>
> > + */
> > + if (pmd_migration)
> > + return;
> > + if (folio != pmd_folio(*pmd))
> > + return;
> > + }
>
> Why not just
>
> if (folio && pmd_migration)
> return;
That looks nicer, less indentation, I agree. But Gavin's patch is
keeping the relevant check next to the "pmd_folio(*pmd)" to be avoided:
also good. I have no opinion which is the better.
Hugh
>
> if (pmd_trans_huge() …) {
> …
> }
> ?
>
> Thanks.
>
> Best Regards,
> Yan, Zi
>
next prev parent reply other threads:[~2025-04-17 5:03 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-14 7:27 Gavin Guo
2025-04-14 16:50 ` Zi Yan
2025-04-15 10:07 ` Gavin Guo
2025-04-15 15:57 ` Zi Yan
2025-04-17 5:29 ` Hugh Dickins
2025-04-18 13:25 ` Zi Yan
2025-04-17 5:03 ` Hugh Dickins [this message]
2025-04-16 16:10 ` David Hildenbrand
2025-04-17 5:36 ` Hugh Dickins
2025-04-17 7:18 ` David Hildenbrand
2025-04-17 8:07 ` David Hildenbrand
2025-04-17 8:09 ` David Hildenbrand
2025-04-17 8:55 ` Hugh Dickins
2025-04-17 9:04 ` David Hildenbrand
2025-04-17 11:21 ` Gavin Guo
2025-04-17 11:32 ` Zi Yan
2025-04-17 12:02 ` Gavin Guo
2025-04-17 12:10 ` Zi Yan
2025-04-17 12:38 ` Gavin Guo
2025-04-17 11:36 ` David Hildenbrand
2025-04-17 12:05 ` Gavin Guo
2025-04-17 4:38 ` Hugh Dickins
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=eec1be5d-8b42-6dbb-432d-488650b79c40@google.com \
--to=hughd@google.com \
--cc=akpm@linux-foundation.org \
--cc=gavinguo@igalia.com \
--cc=kernel-dev@igalia.com \
--cc=linmiaohe@huawei.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=n-horiguchi@ah.jp.nec.com \
--cc=revest@google.com \
--cc=stable@vger.kernel.org \
--cc=willy@infradead.org \
--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