lkml.org 
[lkml]   [2021]   [Jan]   [15]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH RFC 16/30] shmem/userfaultfd: Handle the left-overed special swap ptes
    Date
    Note that the special uffd-wp swap pte can be left over even if the page under
    the pte got evicted. Normally when evict a page, we will unmap the ptes by
    walking through the reverse mapping. However we never tracked such information
    for the special swap ptes because they're not real mappings but just markers.
    So we need to take care of that when we see a marker but when it's actually
    meaningless (the page behind it got evicted).

    We have already taken care of that in e.g. alloc_set_pte() where we'll treat
    the special swap pte as pte_none() when necessary. However we need to also
    teach userfaultfd itself on either UFFDIO_COPY or handling page faults, so that
    everything will still work as expected.

    Signed-off-by: Peter Xu <peterx@redhat.com>
    ---
    fs/userfaultfd.c | 15 +++++++++++++++
    mm/shmem.c | 13 ++++++++++++-
    2 files changed, 27 insertions(+), 1 deletion(-)

    diff --git a/fs/userfaultfd.c b/fs/userfaultfd.c
    index 000b457ad087..3537a43b69c9 100644
    --- a/fs/userfaultfd.c
    +++ b/fs/userfaultfd.c
    @@ -331,6 +331,21 @@ static inline bool userfaultfd_must_wait(struct userfaultfd_ctx *ctx,
    */
    if (pte_none(*pte))
    ret = true;
    + /*
    + * We also treat the swap special uffd-wp pte as the pte_none() here.
    + * This should in most cases be a missing event, as we never handle
    + * wr-protect upon a special uffd-wp swap pte - it should first be
    + * converted into a normal read request before handling wp. It just
    + * means the page/swap cache that backing this pte is gone, so this
    + * special pte is leftover.
    + *
    + * We can't simply replace it with a none pte because we're not with
    + * the pgtable lock here. Instead of taking it and clearing the pte,
    + * the easy way is to let UFFDIO_COPY understand this pte too when
    + * trying to install a new page onto it.
    + */
    + if (pte_swp_uffd_wp_special(*pte))
    + ret = true;
    if (!pte_write(*pte) && (reason & VM_UFFD_WP))
    ret = true;
    pte_unmap(pte);
    diff --git a/mm/shmem.c b/mm/shmem.c
    index de45333626f7..9947bcf92663 100644
    --- a/mm/shmem.c
    +++ b/mm/shmem.c
    @@ -2456,7 +2456,18 @@ static int shmem_mfill_atomic_pte(struct mm_struct *dst_mm,
    goto out_release_unlock;

    ret = -EEXIST;
    - if (!pte_none(*dst_pte))
    + /*
    + * Besides the none pte, we also allow UFFDIO_COPY to install a pte
    + * onto the uffd-wp swap special pte, because that pte should be the
    + * same as a pte_none() just in that it contains wr-protect information
    + * (which could only be dropped when unmap the memory).
    + *
    + * It's safe to drop that marker because we know this is part of a
    + * MISSING fault, and the caller is very clear about this page missing
    + * rather than wr-protected. Then we're sure the wr-protect bit is
    + * just a leftover so it's useless already.
    + */
    + if (!pte_none(*dst_pte) && !pte_swp_uffd_wp_special(*dst_pte))
    goto out_release_unlock;

    lru_cache_add(page);
    --
    2.26.2
    \
     
     \ /
      Last update: 2021-01-15 18:14    [W:4.231 / U:0.036 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site