lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <94e4ba07-42bb-4567-b0c9-b719f81dc61b@lucifer.local>
Date: Tue, 5 Nov 2024 16:10:17 +0000
From: Lorenzo Stoakes <lorenzo.stoakes@...cle.com>
To: Jann Horn <jannh@...gle.com>
Cc: Jonathan Corbet <corbet@....net>,
        Andrew Morton <akpm@...ux-foundation.org>,
        "Liam R . Howlett" <Liam.Howlett@...cle.com>,
        Vlastimil Babka <vbabka@...e.cz>, Alice Ryhl <aliceryhl@...gle.com>,
        Boqun Feng <boqun.feng@...il.com>,
        Matthew Wilcox <willy@...radead.org>, Mike Rapoport <rppt@...nel.org>,
        linux-mm@...ck.org, linux-kernel@...r.kernel.org,
        Suren Baghdasaryan <surenb@...gle.com>,
        "open list:DOCUMENTATION" <linux-doc@...r.kernel.org>
Subject: Re: [RFC PATCH] docs/mm: add VMA locks documentation

On Mon, Nov 04, 2024 at 10:29:47PM +0100, Jann Horn wrote:
> On Mon, Nov 4, 2024 at 5:42 PM Lorenzo Stoakes
> <lorenzo.stoakes@...cle.com> wrote:
> > On Sat, Nov 02, 2024 at 02:45:35AM +0100, Jann Horn wrote:
> > > On Fri, Nov 1, 2024 at 7:50 PM Lorenzo Stoakes
> > > <lorenzo.stoakes@...cle.com> wrote:
> > > > Locking around VMAs is complicated and confusing. While we have a number of
> > > > disparate comments scattered around the place, we seem to be reaching a
> > > > level of complexity that justifies a serious effort at clearly documenting
> > > > how locks are expected to be interacted with when it comes to interacting
> > > > with mm_struct and vm_area_struct objects.
> > > >
> > > > This is especially pertinent as regards efforts to find sensible
> > > > abstractions for these fundamental objects within the kernel rust
> > > > abstraction whose compiler strictly requires some means of expressing these
> > > > rules (and through this expression can help self-document these
> > > > requirements as well as enforce them which is an exciting concept).
> > > >
> > > > The document limits scope to mmap and VMA locks and those that are
> > > > immediately adjacent and relevant to them - so additionally covers page
> > > > table locking as this is so very closely tied to VMA operations (and relies
> > > > upon us handling these correctly).
> > > >
> > > > The document tries to cover some of the nastier and more confusing edge
> > > > cases and concerns especially around lock ordering and page table teardown.
> > > >
> > > > The document also provides some VMA lock internals, which are up to date
> > > > and inclusive of recent changes to recent sequence number changes.
>
> > > > +Overview
> > > > +--------
> > > > +
> > > > +Userland memory ranges are tracked by the kernel via Virtual Memory Areas or
> > > > +'VMA's of type `struct vm_area_struct`.
> > > > +
> > > > +Each VMA describes a virtually contiguous memory range with identical
> > > > +attributes, each of which described by a `struct vm_area_struct`
> > > > +object. Userland access outside of VMAs is invalid except in the case where an
> > > > +adjacent stack VMA could be extended to contain the accessed address.
> > > > +
> > > > +All VMAs are contained within one and only one virtual address space, described
> > > > +by a `struct mm_struct` object which is referenced by all tasks (that is,
> > > > +threads) which share the virtual address space. We refer to this as the `mm`.
> > > > +
> > > > +Each mm object contains a maple tree data structure which describes all VMAs
> > > > +within the virtual address space.
> > >
> > > The gate VMA is special, on architectures that have it: Userland
> > > access to its area is allowed, but the area is outside the VA range
> > > managed by the normal MM code, and the gate VMA is a global object
> > > (not per-MM), and only a few places in MM code can interact with it
> > > (for example, page fault handling can't, but GUP can through
> > > get_gate_page()).
> > >
> > > (I think this also has the fun consequence that vm_normal_page() can
> > > get called on a VMA whose ->vm_mm is NULL, when called from
> > > get_gate_page().)
> >
> > Yeah the gate page is weird, I'm not sure it's worth going into too much detail
> > here, but perhaps a note explaining in effect 'except for the gate page..'
> > unless you think it'd be valuable to go into that in more detail than a passing
> > 'hey of course there's an exception to this!' comment? :)
>
> Yeah I think that's good enough.

Thanks!

>
> > > > +The kernel is designed to be highly scalable against concurrent access to
> > > > +userland memory, so a complicated set of locks are required to ensure no data
> > > > +races or memory corruption occurs.
> > > > +
> > > > +This document explores this locking in detail.
> > > > +
> > > > +.. note::
> > > > +
> > > > +   There are three different things that a user might want to achieve via
> > > > +   locks - the first of which is **stability**. That is - ensuring that the VMA
> > > > +   won't be freed or modified in any way from underneath us.
> > > > +
> > > > +   All MM and VMA locks ensure stability.
> > > > +
> > > > +   Secondly we have locks which allow **reads** but not writes (and which might
> > > > +   be held concurrent with other CPUs who also hold the read lock).
>
> (maybe also note more clearly here that "read" is talking about the
> VMA metadata, so an operation that writes page table entries normally
> counts as "read")

Yeah good point will add a clarification. This aligns with a point Mike raised
about being clear the read/write is not in reference to user data.

>
> > > > +   Finally, we have locks which permit exclusive access to the VMA to allow for
> > > > +   **writes** to the VMA.
> > >
> > > Maybe also mention that there are three major paths you can follow to
> > > reach a VMA? You can come through the mm's VMA tree, you can do an
> > > anon page rmap walk that goes page -> anon_vma -> vma, or you can do a
> > > file rmap walk from the address_space. Which is why just holding the
> > > mmap lock and vma lock in write mode is not enough to permit arbitrary
> > > changes to a VMA struct.
> >
> > I totally agree that adding something about _where_ you can come from is a good
> > idea, will do.
> >
> > However, in terms of the VMA itself, mmap lock and vma lock _are_ sufficient to
> > prevent arbitrary _changes_ to the VMA struct right?
>
> Yes. But the sentence "Finally, we have locks which permit exclusive
> access to the VMA to allow for **writes** to the VMA" kinda sounds as
> if there is a single lock you can take that allows you to write to the
> VMA struct.
>
> > It isn't sufficient to prevent _reading_ of vma metadata fields, nor walking of
> > underlying page tables, so if you're going to do something that changes
> > fundamentals you need to hide it from rmap.
> >
> > Maybe worth going over relevant fields? Or rather adding an additional 'read
> > lock' column?
> >
> > vma->vm_mm ('static' anyway after VMA created)
> > vma->vm_start (change on merge/split)
>
> and on stack expansion :P
> But I guess nowadays that's basically semantically just a special case
> of merge, so no need to explicitly mention it here...

Well actually no... hm I wonder if we should make that call vma_expand()... but
that's another thing :) will clarify this anyway.

>
> > vma->vm_end (change on merge/split)
> > vma->vm_flags (can change)
> > vma->vm_ops ('static' anyway after call_mmap())
> >
> > In any case this is absolutely _crucial_ I agree, will add.
> >
> > >
> > > > +MM and VMA locks
> > > > +----------------
> > > > +
> > > > +There are two key classes of lock utilised when reading and manipulating VMAs -
> > > > +the `mmap_lock` which is a read/write semaphore maintained at the `mm_struct`
> > > > +level of granularity and, if CONFIG_PER_VMA_LOCK is set, a per-VMA lock at the
> > > > +VMA level of granularity.
> > > > +
> > > > +.. note::
> > > > +
> > > > +   Generally speaking, a read/write semaphore is a class of lock which permits
> > > > +   concurrent readers. However a write lock can only be obtained once all
> > > > +   readers have left the critical region (and pending readers made to wait).
> > > > +
> > > > +   This renders read locks on a read/write semaphore concurrent with other
> > > > +   readers and write locks exclusive against all others holding the semaphore.
> > > > +
> > > > +If CONFIG_PER_VMA_LOCK is not set, then things are relatively simple - a write
> > > > +mmap lock gives you exclusive write access to a VMA, and a read lock gives you
> > > > +concurrent read-only access.
> > > > +
> > > > +In the presence of CONFIG_PER_VMA_LOCK, i.e. VMA locks, things are more
> > > > +complicated. In this instance, a write semaphore is no longer enough to gain
> > > > +exclusive access to a VMA, a VMA write lock is also required.
> > > > +
> > > > +The VMA lock is implemented via the use of both a read/write semaphore and
> > > > +per-VMA and per-mm sequence numbers. We go into detail on this in the VMA lock
> > > > +internals section below, so for the time being it is important only to note that
> > > > +we can obtain either a VMA read or write lock.
> > > > +
> > > > +.. note::
> > > > +
> > > > +   VMAs under VMA **read** lock are obtained by the `lock_vma_under_rcu()`
> > > > +   function, and **no** existing mmap or VMA lock must be held, This function
> > >
> > > uffd_move_lock() calls lock_vma_under_rcu() after having already
> > > VMA-locked another VMA with uffd_lock_vma().
> >
> > Oh uffd, how we love you...
> >
> > I think it might be worth adding a note for this exception. Obviously they do
> > some pretty careful manipulation to avoid issues here so probably worth saying
> > 'hey except uffd'
>
> I guess another way to write it would be something like:
>
> "Taking the mmap lock in read mode while you're holding a vma lock is
> forbidden because it can deadlock. Calling lock_vma_under_rcu()
> normally only makes sense when you're not holding the mmap lock
> (otherwise it would be redundant). lock_vma_under_rcu() has trylock
> semantics, and if it fails you need a plan B (which normally is to
> take the mmap lock in read mode instead; notably this would get more
> annoying if you were already holding another VMA lock, because then
> you'd have to drop that first)."?

Will extract some stuff from here and add in.

>
> > > > +   lock, page faults can race against you even if you hold an mmap write lock.
> > > > +
> > > > +VMA Fields
> > > > +----------
> > > > +
> > > > +We examine each field of the `struct vm_area_struct` type in detail in the table
> > > > +below.
> > > > +
> > > > +Reading of each field requires either an mmap read lock or a VMA read lock to be
> > > > +held, except where 'unstable RCU read' is specified, in which case unstable
> > > > +access to the field is permitted under RCU alone.
> > > > +
> > > > +The table specifies which write locks must be held to write to the field.
> > >
> > > vm_start, vm_end and vm_pgoff also require that the associated
> > > address_space and anon_vma (if applicable) are write-locked, and that
> > > their rbtrees are updated as needed.
> >
> > Surely vm_flags too...
>
> Nah, there are a bunch of madvise() operations that change vm_flags,
> and at least the simple ones don't touch rmap locks (I don't know if
> maybe any of the more complex ones do). See MADV_DONTFORK, for example
> - we basically just take the mmap lock in write mode, write-lock the
> VMA, and overwrite the flags.
>
> Not even do_mprotect_pkey() takes rmap locks! Just takes the mmap lock
> in write mode, write-locks the VMA, changes the VM flags, and then
> fixes up all the existing PTEs.

Sure was aware of course about the madvise() cases (which are, thankfully,
always mmap locked), just wondered if there was a need to be careful about flags
in the same way but you're right... :)

>
> > > > +     -
> > > > +     - mmap write, VMA write
> > > > +   * - vm_file
> > > > +     -
> > > > +     - If the VMA is file-backed, points to a `struct file` object describing
> > > > +       the underlying file, if anonymous then `NULL`.
> > > > +     -
> > > > +     - (Static)
> > > > +   * - vm_private_data
> > > > +     -
> > > > +     - A `void *` field for driver-specific metadata.
> > > > +     -
> > > > +     - Driver-mandated.
> > > > +   * - anon_name
> > > > +     - anon name
> > > > +     - A field for storing a `struct anon_vma_name` object providing a name for
> > > > +       anonymous mappings, or `NULL` if none is set or the VMA is file-backed.
> > > > +     -
> > > > +     - mmap write, VMA write
> > > > +   * - swap_readahead_info
> > > > +     - swap
> > > > +     - Metadata used by the swap mechanism to perform readahead.
> > > > +     -
> > > > +     - mmap read
> > > > +   * - vm_region
> > > > +     - nommu
> > > > +     - The containing region for the VMA for architectures which do not
> > > > +       possess an MMU.
> > > > +     - N/A
> > > > +     - N/A
> > > > +   * - vm_policy
> > > > +     - numa
> > > > +     - `mempolicy` object which describes NUMA behaviour of the VMA.
> > > > +     -
> > > > +     - mmap write, VMA write
> > > > +   * - numab_state
> > > > +     - numab
> > > > +     - `vma_numab_state` object which describes the current state of NUMA

> > > > +       balancing in relation to this VMA.
> > > > +     -
> > > > +     - mmap write, VMA write
> > >
> > > I think task_numa_work() is only holding the mmap lock in read mode
> > > when it sets this pointer to a non-NULL value.
> >
> > ugh lord... knew I'd get at least one of these wrong :P
>
> to be fair I think task_numa_work() looks kinda dodgy ^^ I remember
> spending quite a bit of time staring at it at one point (my very
> sparse notes suggest I was looking in that area because I was
> surprised that change_protection() can run with the mmap lock only
> read-locked for some NUMA hinting fault stuff); I don't remember
> whether I concluded that the ->vma_numab_state locking in
> task_numa_work() is fine or just not overly terrible...

Yeah I guess we are documenting _what is_ rather than _what is sane_ anyway :P

>
> > > > +   * - vm_userfaultfd_ctx
> > > > +     -
> > > > +     - Userfaultfd context wrapper object of type `vm_userfaultfd_ctx`, either
> > > > +       of zero size if userfaultfd is disabled, or containing a pointer to an
> > > > +       underlying `userfaultfd_ctx` object which describes userfaultfd metadata.
> > > > +     -
> > > > +     - mmap write, VMA write
> > > > +
> > > > +.. note::
> > > > +
> > > > +   In the config column 'vma lock' configuration means CONFIG_PER_VMA_LOCK,
> > > > +   'anon name' means CONFIG_ANON_VMA_NAME, 'swap' means CONFIG_SWAP, 'nommu'
> > > > +   means that CONFIG_MMU is not set, 'numa' means CONFIG_NUMA and 'numab' means
> > > > +   CONFIG_NUMA_BALANCING'.
> > > > +
> > > > +   In the write lock column '(Static)' means that the field is set only once
> > > > +   upon initialisation of the VMA and not changed after this, the VMA would
> > > > +   either have been under an mmap write and VMA write lock at the time or not
> > > > +   yet inserted into any tree.
> > > > +
> > > > +Page table locks
> > > > +----------------
> > > > +
> > > > +When allocating a P4D, PUD or PMD and setting the relevant entry in the above
> > > > +PGD, P4D or PUD, the `mm->page_table_lock` is acquired to do so. This is
> > > > +acquired in `__p4d_alloc()`, `__pud_alloc()` and `__pmd_alloc()` respectively.
> > > > +
> > > > +.. note::
> > > > +   `__pmd_alloc()` actually invokes `pud_lock()` and `pud_lockptr()` in turn,
> > > > +   however at the time of writing it ultimately references the
> > > > +   `mm->page_table_lock`.
> > > > +
> > > > +Allocating a PTE will either use the `mm->page_table_lock` or, if
> > > > +`USE_SPLIT_PMD_PTLOCKS` is defined, used a lock embedded in the PMD physical
> > > > +page metadata in the form of a `struct ptdesc`, acquired by `pmd_ptdesc()`
> > > > +called from `pmd_lock()` and ultimately `__pte_alloc()`.
> > > >+
> > > > +Finally, modifying the contents of the PTE has special treatment, as this is a
> > > > +lock that we must acquire whenever we want stable and exclusive access to
> > > > +entries pointing to data pages within a PTE, especially when we wish to modify
> > > > +them.
> > >
> > > I guess one other perspective on this would be to focus on the
> > > circumstances under which you're allowed to write entries:
> > >
> > > 0. page tables can be concurrently read by hardware and GUP-fast, so
> > > writes must always be appropriately atomic
> >
> > Yeah I definitely need to mention GUP-fast considerations (and consequently
> > the pXX_lockless..() functions). Thanks for raising that,  important one.
> >
> > > 1. changing a page table entry always requires locking the containing
> > > page table (except when the write is an A/D update by hardware)
> >
> > I think we can ignore the hardware writes altogether, though I think worth
> > adding a 'note' to explain this can happen outside of this framework
> > altogether.
>
> I think it's important to know about the existence of hardware writes
> because it means you need atomic operations when making changes to
> page tables. Like, for example, in many cases when changing a present
> PTE, you can't even use READ_ONCE()/WRITE_ONCE() for PTEs and need
> atomic RMW operations instead - see for example ptep_get_and_clear(),
> which is basically implemented in arch code as an atomic xchg so that
> it can't miss concurrent A/D bit updates.
>
> (The non-SMP version of that on X86 doesn't use atomics, I have no
> idea if that is actually correct or just mostly-working. Either way, I
> guess the !SMP build doesn't matter very much nowadays.)

Ack will document.

>
> > > 2. in page tables higher than PMD level, page table entries that point
> > > to page tables can only be changed to point to something else when
> > > holding all the relevant high-level locks leading to the VMA in
> > > exclusive mode: mmap lock (unless the VMA is detached), VMA lock,
> > > anon_vma, address_space
> >
> > Right this seems mremap()-specific when you say 'change' here :) and of
> > course, we have code that explicitly does this (take_rmap_locks() +
> > drop_rmap_locks()).
>
> munmap and mremap, yes. Basically what I'm trying to express with this
> is "as a reader, you can assume that higher page tables are stable
> just by having some kind of read lock on the VMA or its rmaps".
>
> (IIRC back when this was the rule for all page table levels,
> khugepaged used to do this too, write-locking both the rmap and the
> mm.)

I feel that talking about stability in the page table section is a good
idea also then.

>
> > > 3. PMD entries that point to page tables can be changed while holding
> > > the page table spinlocks for the entry and the table it points to
> >
> > Hm wut? When you say 'entry' what do you mean? Obviously a page table in
>
> By "PMD entry" I mean a pmd_t (located in a Page Middle Directory),
> and by "that point to page tables" I mean "that point to a PTE-level
> page table".
>
> In other words, from the reader perspective (as I think you already
> mentioned further down):
>
> Rule 2 means: From the perspective of a reader who is holding the VMA
> lock in read mode, once you have seen that e.g. a PUD entry
> (overlapping the VMA's virtual address region) points to a PMD page
> table, you know that this PUD entry will keep pointing to that PMD
> table.
>
> Rule 3 means: From the perspective of a reader who is holding the VMA
> lock in read mode, once you have seen that a PMD entry (overlapping
> the VMA's virtual address region) points to a page table, you don't
> know whether this PMD entry will keep pointing to the same page table
> unless you're also holding a spinlock on either the PMD or the page
> table (because khugepaged).

Thanks right I see what you mean.

Might be worth having an explicit THP (thus khugepaged) section? And
perhaps even KSM...

>
> > theory could be changed at any point you don't have it locked and to be
> > sure it hasn't you have to lock + check again.
>
>
> > > 5. entries in "none" state can only be populated with leaf entries
> > > while holding the mmap or vma lock (doing it through the rmap would be
> > > bad because that could race with munmap() zapping data pages in the
> > > region)
> > > 6. leaf entries can be zapped (changed to "none") while holding any
> > > one of mmap lock, vma lock, address_space lock, or anon_vma lock
> >
> > For both 5 and 6 - I'm not sure if we ever zap without holding the mmap
> > lock do we?
> >
> > Unless you're including folio_mkclean() and pfn_mkclean_range()? I guess
> > this is 'strike of the linux kernel terminology' once again :P
> >
> > Yeah in that case sure.
>
> There are a bunch of paths that zap without taking the mmap lock, the
> easiest to reach is probably the ftruncate() syscall:
>
> do_sys_ftruncate -> do_ftruncate -> do_truncate -> notify_change ->
> simple_setattr -> truncate_setsize -> truncate_pagecache ->
> unmap_mapping_range -> unmap_mapping_pages -> unmap_mapping_range_tree
> -> {loop over file rmap tree} -> unmap_mapping_range_vma ->
> zap_page_range_single
>
> GPU drivers and such do it too, search for "unmap_mapping_range".

Yeah sorry I missed unmap_mapping_range(), I don't love the naming around
this...

Might be worth spelling out these paths specifically actually.

>
> But you're right, I was being imprecise - as you pointed out, it's not
> just used for zapping. Maybe the right version of 6 is something like:
>
>     Leaf entries that are not in "none" state can
>     be changed while holding any one of [...].
>
> Though I'm not sure if that is overly broad - I think in practice the
> changes we make under the rmap locks are something like the following,
> though that might be missing some:
>
>  - zapping leaf entries
>  - zapping PMD entries pointing to page tables
>  - clearing A/D bits
>  - migration
>
> > OK so interestingly this really aligns with what Alice said as to this not
> > giving a clear indicator from a user's perspective as to 'what lock do I
> > need to hold'.
> >
> > So I will absolutely address all this and try to get the fundamentals
> > boiled down.
> >
> > Also obviously the exception to your rules are - _freeing_ of higher level
> > page tables because we assume we are in a state where nothing can access
> > them so no such locks are required. But I cover that below.
> >
> > >
> > > And then the rules for readers mostly follow from that:
> > > 1 => holding the appropriate page table lock makes the contents of a
> > > page table stable, except for A/D updates
> > > 2 => page table entries higher than PMD level that point to lower page
> > > tables can be followed without taking page table locks
> >
> > Yeah this is true actually, might be worth mentioning page table walkers
> > here and how they operate as they're instructive on page table locking
> > requirements.
> >
> > > 3+4 => following PMD entries pointing to page tables requires careful
> > > locking, and pte_offset_map_lock() does that for you
> >
> > Well, pte_offset_map_lock() is obtained at the PTE level right?
>
> pte_offset_map_lock() is given a pointer to a PMD entry, and it
> follows the PMD entry to a PTE-level page table. My point here is that
> you can't just simply start a "lock this PTE-level page table"
> operation at the PTE level because by the time you've locked the page
> table, the PMD entry may have changed, and the page table you just
> locked may be empty and doomed to be deleted after RCU delay. So you
> have to use __pte_offset_map_lock(), which takes a pointer to a PMD
> entry, and in a loop, looks up the page table from the PMD entry,
> locks the referenced page table, rechecks that the PMD entry still
> points to the locked page table, and if not, retries all these steps
> until it manages to lock a stable page table.

Right yeah, I mean this is kind of a standard pattern in the kernel though
like:

1. Grab some pointer to something
2. Lock
3. Really make sure it hasn't disappeared from under us
4. If so, unlock and try again
5. Otherwise proceed

You have this pattern with folios too...

But yeah maybe worth spelling this out.

>
> > pmd_lock() at the PMD level (pud_lock() ostensibly at PUD level but this
> > amounts to an mm->page_table_lock anyway there)
>
> > > I think something like
> > > https://www.kernel.org/doc/html/latest/doc-guide/kernel-doc.html#overview-documentation-comments
> > > is supposed to let you include the current version of the comment into
> > > the rendered documentation HTML without having to manually keep things
> > > in sync. I've never used that myself, but there are a bunch of
> > > examples in the tree; for example, grep for "DMA fences overview".
> >
> > Ah, but this isn't a kernel doc is just a raw comment :) so I'm not sure there
> > is a great way of grabbing just that, reliably. Maybe can turn that into a
> > kernel doc comment in a follow up patch or something?
>
> Ah, yeah, sounds reasonable.

Thanks.


I think all this makes me think that we should actually have entirely
separate top level descriptions and internals sections in this document,
which align's again with Alice's comments.

As the level of detail and caveats here mean that if you provide
implementation details everywhere you end up constantly on a tangent
(important, relevant internal details but to a _user_ of the functionality
not so important).

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ