The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: "Lorenzo Stoakes (ARM)" <ljs@kernel.org>
To: Suren Baghdasaryan <surenb@google.com>
Cc: Matthew Wilcox <willy@infradead.org>,
	akpm@linux-foundation.org,  dave.hansen@linux.intel.com,
	Liam.Howlett@oracle.com, david@kernel.org,
	 shakeel.butt@linux.dev, vbabka@kernel.org, jannh@google.com,
	aliceryhl@google.com,  arve@android.com, cmllamas@google.com,
	christian@brauner.io, tkjos@android.com,  dsahern@kernel.org,
	davem@davemloft.net, gregkh@linuxfoundation.org,
	 linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	netdev@vger.kernel.org
Subject: Re: [PATCH v4 3/5] mm: Add RCU-based VMA lookup helper that waits for writers
Date: Mon, 10 Aug 2026 11:24:08 +0100	[thread overview]
Message-ID: <anmmd0tIiqu2V6Lr@lucifer> (raw)
In-Reply-To: <CAJuCfpGdyNq10F15G9Z=TrkcGL8my5RB1w+nZMKOTaH1o9mrGA@mail.gmail.com>

On Sat, Aug 08, 2026 at 06:07:41PM -0700, Suren Baghdasaryan wrote:
> On Sat, Aug 8, 2026 at 12:24 AM Matthew Wilcox <willy@infradead.org> wrote:
> >
> > On Thu, Aug 06, 2026 at 01:05:46PM -0700, Suren Baghdasaryan wrote:
> > > From: Dave Hansen <dave.hansen@linux.intel.com>
> > >
> > > == Background ==
> >
> > I think we can do without the headings?
> >
> > > There are basically two parallel ways to look up a VMA: the
> > > traditional way, which is protected by mmap_read_lock, and the RCU-based
> > > per-VMA lock way which is based on RCU and refcounts.
> > >
> > > == Problem ==
> > >
> > > The mmap_lock one is more straightforward to use but it has a big
> > > disadvantage in that it can not be mixed with page faults since those
> > > can take mmap_lock for read, which can deadlock when mixed with nested
> > > page faults and parallel writers.
> > > For example:
> > >
> > >       mmap_read_lock(mm);
> > >       // Another thread does mmap_write_lock().
> > >       // New mmap_lock readers are blocked.
> > >       vma = vma_lookup(mm, address);
> > >       // This deadlocks on mmap_read_lock() if it faults:
> > >       copy_from_user(address);
> > >       mmap_read_unlock(mm);
> > >
> > > The per-VMA lock can be mixed with faults, but they can fail and need to
> > > be able to fall back to the traditional way.
> >
> > Umm.  I don't see how this avoids deadlock.  Assuming the next patch
> > converts copy_from_user() to use the VMA lock, surely the following
> > situation would obtain:
> >
> > A takes mmap_read_lock
> > B tries to take mmap_write_lock, blocks
> > A calls copy_from_user()
> > A calls vma_start_read_unlocked() (because it doesn't know A actually
> > holds the mmap_read_lock() already)
> > A does a lookup under RCU, but gets NULL back (maybe it's calling
> > c_f_u() with an invalid address?)
> > A tries to take the mmap_read_lock again to make sure.  Deadlock
> > because B is waiting for A to release the mmap_read_lock.
> >
> > Am I missing something?
>
> I think Dave's idea was that A would take a VMA lock (which might
> require taking mmap read lock temporarily) and then call
> copy_from_user() with VMA lock only, which allows copy_from_user() to
> take the mmap lock. This was used in the last patch [1] of the
> original RFC. That patch is dropped from the series because this
> approach has a conceptual lock ordering problem - it takes VMA lock
> and then mmap_lock (see explanation at [2]).

Yeah I wonder about the value of this. Dave can write all this up when he makes
the change to use this in the relevant shadow stack (I think it was?) code.

Having it here when just adding the function is not really helpful I don't think.

Other use cases are stronger arguments for it anyway - we are essentially doing
stuff like this in places and falling back to mmap when we don't need to - when
we have the option to 'twiddle' the mmap lock and get a VMA lock.

>
> [1] https://lore.kernel.org/all/20260429182005.00BF70D8@davehans-spike.ostc.intel.com/
> [2] https://lore.kernel.org/all/CAJuCfpHBzYUNEe_LBpeERf68_fso=Hy+UZWtqejTUkm1O4NLfA@mail.gmail.com/
>
> So, yeah. I need to rewrite this commit message.
>
> >
> > > +/**
> > > + * vma_start_read_unlocked() - Find the VMA covering 'address' and read-lock it.
> > > + * @mm: the mm_struct of the address space to search
> > > + * @address: address that the vma should contain
> > > + *
> > > + * The fast path does not take mmap_lock. Waits for writers to finish if the
> > > + * VMA is being modified by taking mmap_lock.
> > > + * Use when mmap_lock is not held, otherwise use vma_start_read_locked().
> > > + * Nothing prevents VMAs being unmapped/mapped before or after the VMA is
> > > + * looked up, if a stronger guarantee is required, take an mmap_lock.
> > > + *
> > > + * Return: If a VMA exists which spans @address, return that VMA, read-locked.
> > > + * If no VMA is mapped there or, very unlikely, a reference count overflow
> > > + * occurred, return NULL.
> > > + */
> > > +struct vm_area_struct *vma_start_read_unlocked(struct mm_struct *mm,
> > > +                                            unsigned long address)
> > > +{
> > > +     struct vm_area_struct *vma;
> > > +
> > > +     /* Fast path: return stable VMA covering 'address': */
> > > +     vma = lock_vma_under_rcu(mm, address);
> > > +     if (vma)
> > > +             return vma;
> > > +
> > > +     /* Slow path: preclude VMA writers by temporarily getting mmap read lock. */
> > > +     mmap_read_lock(mm);
> > > +     vma = vma_lookup(mm, address);
> > > +     if (vma && !vma_start_read_locked(vma))
> > > +             vma = NULL;
> > > +     mmap_read_unlock(mm);
> > > +
> > > +     return vma;
> > > +}

--
Cheers, Lorenzo

  reply	other threads:[~2026-08-10 10:24 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-06 20:05 [PATCH v4 0/5] mm: Unconditional per-VMA locks and cleanups Suren Baghdasaryan
2026-08-06 20:05 ` [PATCH v4 1/5] mm: Make per-VMA locks available universally Suren Baghdasaryan
2026-08-07 15:37   ` Vlastimil Babka (SUSE)
2026-08-08  1:12   ` Matthew Wilcox
2026-08-08  6:08     ` Suren Baghdasaryan
2026-08-10  8:52     ` Lorenzo Stoakes (ARM)
2026-08-10  9:42       ` Lorenzo Stoakes (ARM)
2026-08-10 16:40         ` Suren Baghdasaryan
2026-08-10 10:17   ` Lorenzo Stoakes (ARM)
2026-08-10 15:22     ` Dave Hansen
2026-08-10 15:56     ` Matthew Wilcox
2026-08-10 17:04     ` Suren Baghdasaryan
2026-08-06 20:05 ` [PATCH v4 2/5] binder: Make shrinker rely solely on per-VMA lock Suren Baghdasaryan
2026-08-07 14:26   ` Alice Ryhl
2026-08-10 10:22   ` Lorenzo Stoakes (ARM)
2026-08-06 20:05 ` [PATCH v4 3/5] mm: Add RCU-based VMA lookup helper that waits for writers Suren Baghdasaryan
2026-08-07 15:39   ` Vlastimil Babka (SUSE)
2026-08-08  7:24   ` Matthew Wilcox
2026-08-09  1:07     ` Suren Baghdasaryan
2026-08-10 10:24       ` Lorenzo Stoakes (ARM) [this message]
2026-08-10 15:25         ` Dave Hansen
2026-08-08  7:37   ` Matthew Wilcox
2026-08-10 10:41   ` Lorenzo Stoakes (ARM)
2026-08-10 17:07     ` Suren Baghdasaryan
2026-08-06 20:05 ` [PATCH v4 4/5] binder: Remove mmap_lock fallback Suren Baghdasaryan
2026-08-06 20:05 ` [PATCH v4 5/5] tcp: Remove mmap_lock fallback path Suren Baghdasaryan
2026-08-08  7:26   ` Matthew Wilcox
2026-08-09  0:51     ` Suren Baghdasaryan
2026-08-10 15:26       ` Dave Hansen
2026-08-10 17:09         ` Suren Baghdasaryan

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=anmmd0tIiqu2V6Lr@lucifer \
    --to=ljs@kernel.org \
    --cc=Liam.Howlett@oracle.com \
    --cc=akpm@linux-foundation.org \
    --cc=aliceryhl@google.com \
    --cc=arve@android.com \
    --cc=christian@brauner.io \
    --cc=cmllamas@google.com \
    --cc=dave.hansen@linux.intel.com \
    --cc=davem@davemloft.net \
    --cc=david@kernel.org \
    --cc=dsahern@kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=jannh@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=netdev@vger.kernel.org \
    --cc=shakeel.butt@linux.dev \
    --cc=surenb@google.com \
    --cc=tkjos@android.com \
    --cc=vbabka@kernel.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