Linux kernel -stable discussions
 help / color / mirror / Atom feed
From: Sasha Levin <sashal@kernel.org>
To: gregkh@linuxfoundation.org, mhocko@suse.com
Cc: thellstrom@vmware.com, akpm@linux-foundation.org, arnd@arndb.de,
	kirill.shutemov@linux.intel.com, stable@vger.kernel.org,
	torvalds@linux-foundation.org, willy@infradead.org
Subject: Re: FAILED: patch "[PATCH] mm/memory.c: fix a huge pud insertion race during faulting" failed to apply to 4.19-stable tree
Date: Mon, 16 Dec 2019 10:57:18 -0500	[thread overview]
Message-ID: <20191216155718.GF17708@sasha-vm> (raw)
In-Reply-To: <1576497644874@kroah.com>

On Mon, Dec 16, 2019 at 01:00:44PM +0100, gregkh@linuxfoundation.org wrote:
>
>The patch below does not apply to the 4.19-stable tree.
>If someone wants it applied there, or to any other stable or longterm
>tree, then please email the backport, including the original git commit
>id to <stable@vger.kernel.org>.
>
>thanks,
>
>greg k-h
>
>------------------ original commit in Linus's tree ------------------
>
>From 625110b5e9dae9074d8a7e67dd07f821a053eed7 Mon Sep 17 00:00:00 2001
>From: Thomas Hellstrom <thellstrom@vmware.com>
>Date: Sat, 30 Nov 2019 17:51:32 -0800
>Subject: [PATCH] mm/memory.c: fix a huge pud insertion race during faulting
>
>A huge pud page can theoretically be faulted in racing with pmd_alloc()
>in __handle_mm_fault().  That will lead to pmd_alloc() returning an
>invalid pmd pointer.
>
>Fix this by adding a pud_trans_unstable() function similar to
>pmd_trans_unstable() and check whether the pud is really stable before
>using the pmd pointer.
>
>Race:
>  Thread 1:             Thread 2:                 Comment
>  create_huge_pud()                               Fallback - not taken.
>                        create_huge_pud()         Taken.
>  pmd_alloc()                                     Returns an invalid pointer.
>
>This will result in user-visible huge page data corruption.
>
>Note that this was caught during a code audit rather than a real
>experienced problem.  It looks to me like the only implementation that
>currently creates huge pud pagetable entries is dev_dax_huge_fault()
>which doesn't appear to care much about private (COW) mappings or
>write-tracking which is, I believe, a prerequisite for create_huge_pud()
>falling back on thread 1, but not in thread 2.
>
>Link: http://lkml.kernel.org/r/20191115115808.21181-2-thomas_os@shipmail.org
>Fixes: a00cc7d9dd93 ("mm, x86: add support for PUD-sized transparent hugepages")
>Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
>Acked-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
>Cc: Arnd Bergmann <arnd@arndb.de>
>Cc: Matthew Wilcox <willy@infradead.org>
>Cc: <stable@vger.kernel.org>
>Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
>Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

This one doesn't apply cleanly because 7635d9cbe832 ("mm, thp, proc:
report THP eligibility for each vma") has changed what
transparent_hugepage_enabled() does.

The "right" backport here would be to simply change from calling
__transparent_hugepage_enabled() to calling
transparent_hugepage_enabled() as we don't have 7635d9cbe832 in older
kernels, but I worry that if we do end up backporting some part of that
logic change later it will diverge us from upstream and will cause for
subtle issues that are difficult to debug.

So unless Michal / Andrew yell at me for this, I'm going to take in
7635d9cbe832 even though it's clearly a new feature just to make
625110b5e9da and future patches apply cleanly, and avoid future issues.

-- 
Thanks,
Sasha

  reply	other threads:[~2019-12-16 15:57 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-16 12:00 FAILED: patch "[PATCH] mm/memory.c: fix a huge pud insertion race during faulting" failed to apply to 4.19-stable tree gregkh
2019-12-16 15:57 ` Sasha Levin [this message]
2019-12-16 16:15   ` Thomas Hellstrom

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=20191216155718.GF17708@sasha-vm \
    --to=sashal@kernel.org \
    --cc=akpm@linux-foundation.org \
    --cc=arnd@arndb.de \
    --cc=gregkh@linuxfoundation.org \
    --cc=kirill.shutemov@linux.intel.com \
    --cc=mhocko@suse.com \
    --cc=stable@vger.kernel.org \
    --cc=thellstrom@vmware.com \
    --cc=torvalds@linux-foundation.org \
    --cc=willy@infradead.org \
    /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