From: David Hildenbrand <david@redhat.com>
To: Matthew Wilcox <willy@infradead.org>,
Suren Baghdasaryan <surenb@google.com>
Cc: akpm@linux-foundation.org, viro@zeniv.linux.org.uk,
brauner@kernel.org, shuah@kernel.org, aarcange@redhat.com,
lokeshgidra@google.com, peterx@redhat.com, hughd@google.com,
mhocko@suse.com, axelrasmussen@google.com, rppt@kernel.org,
Liam.Howlett@oracle.com, jannh@google.com,
zhangpeng362@huawei.com, bgeffon@google.com,
kaleshsingh@google.com, ngeoffray@google.com, jdduke@google.com,
linux-mm@kvack.org, linux-fsdevel@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org,
kernel-team@android.com
Subject: Re: [PATCH 2/3] userfaultfd: UFFDIO_REMAP uABI
Date: Thu, 14 Sep 2023 20:43:36 +0200 [thread overview]
Message-ID: <e77b75f9-ab9e-f20b-6484-22f73524c159@redhat.com> (raw)
In-Reply-To: <ZQNMze6SXdIm13CW@casper.infradead.org>
On 14.09.23 20:11, Matthew Wilcox wrote:
> On Thu, Sep 14, 2023 at 08:26:12AM -0700, Suren Baghdasaryan wrote:
>> +++ b/include/linux/userfaultfd_k.h
>> @@ -93,6 +93,23 @@ extern int mwriteprotect_range(struct mm_struct *dst_mm,
>> extern long uffd_wp_range(struct vm_area_struct *vma,
>> unsigned long start, unsigned long len, bool enable_wp);
>>
>> +/* remap_pages */
>> +extern void double_pt_lock(spinlock_t *ptl1, spinlock_t *ptl2);
>> +extern void double_pt_unlock(spinlock_t *ptl1, spinlock_t *ptl2);
>> +extern ssize_t remap_pages(struct mm_struct *dst_mm,
>> + struct mm_struct *src_mm,
>> + unsigned long dst_start,
>> + unsigned long src_start,
>> + unsigned long len, __u64 flags);
>> +extern int remap_pages_huge_pmd(struct mm_struct *dst_mm,
>> + struct mm_struct *src_mm,
>> + pmd_t *dst_pmd, pmd_t *src_pmd,
>> + pmd_t dst_pmdval,
>> + struct vm_area_struct *dst_vma,
>> + struct vm_area_struct *src_vma,
>> + unsigned long dst_addr,
>> + unsigned long src_addr);
>
> Drop the 'extern' markers from function declarations.
>
>> +int remap_pages_huge_pmd(struct mm_struct *dst_mm,
>> + struct mm_struct *src_mm,
>> + pmd_t *dst_pmd, pmd_t *src_pmd,
>> + pmd_t dst_pmdval,
>> + struct vm_area_struct *dst_vma,
>> + struct vm_area_struct *src_vma,
>> + unsigned long dst_addr,
>> + unsigned long src_addr)
>> +{
>> + pmd_t _dst_pmd, src_pmdval;
>> + struct page *src_page;
>> + struct anon_vma *src_anon_vma, *dst_anon_vma;
>> + spinlock_t *src_ptl, *dst_ptl;
>> + pgtable_t pgtable;
>> + struct mmu_notifier_range range;
>> +
>> + src_pmdval = *src_pmd;
>> + src_ptl = pmd_lockptr(src_mm, src_pmd);
>> +
>> + BUG_ON(!pmd_trans_huge(src_pmdval));
>> + BUG_ON(!pmd_none(dst_pmdval));
>> + BUG_ON(!spin_is_locked(src_ptl));
>> + mmap_assert_locked(src_mm);
>> + mmap_assert_locked(dst_mm);
>> + BUG_ON(src_addr & ~HPAGE_PMD_MASK);
>> + BUG_ON(dst_addr & ~HPAGE_PMD_MASK);
>> +
>> + src_page = pmd_page(src_pmdval);
>> + BUG_ON(!PageHead(src_page));
>> + BUG_ON(!PageAnon(src_page));
>
> Better to add a src_folio = page_folio(src_page);
> and then folio_test_anon() here.
>
>> + if (unlikely(page_mapcount(src_page) != 1)) {
>
> Brr, this is going to miss PTE mappings of this folio. I think you
> actually want folio_mapcount() instead, although it'd be more efficient
> to look at folio->_entire_mapcount == 1 and _nr_pages_mapped == 0.
> Not wure what a good name for that predicate would be.
We have
* It only works on non shared anonymous pages because those can
* be relocated without generating non linear anon_vmas in the rmap
* code.
*
* It provides a zero copy mechanism to handle userspace page faults.
* The source vma pages should have mapcount == 1, which can be
* enforced by using madvise(MADV_DONTFORK) on src vma.
Use PageAnonExclusive(). As long as KSM is not involved and you don't
use fork(), that flag should be good enough for that use case here.
[...]
>> + /*
>> + * Pin the page while holding the lock to be sure the
>> + * page isn't freed under us
>> + */
>> + spin_lock(src_ptl);
>> + if (!pte_same(orig_src_pte, *src_pte)) {
>> + spin_unlock(src_ptl);
>> + err = -EAGAIN;
>> + goto out;
>> + }
>> +
>> + folio = vm_normal_folio(src_vma, src_addr, orig_src_pte);
>> + if (!folio || !folio_test_anon(folio) ||
>> + folio_estimated_sharers(folio) != 1) {
>
> I wonder if we also want to fail if folio_test_large()? While we don't
> have large anon folios today, it seems to me that trying to migrate one
> of them like this is just not going to work.
Yes, refuse any PTE-mapped large folios.
--
Cheers,
David / dhildenb
next prev parent reply other threads:[~2023-09-14 18:50 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-14 15:26 [PATCH 0/3] userfaultfd remap option Suren Baghdasaryan
2023-09-14 15:26 ` [PATCH 1/3] userfaultfd: UFFDIO_REMAP: rmap preparation Suren Baghdasaryan
2023-09-14 17:56 ` Matthew Wilcox
2023-09-14 18:34 ` Suren Baghdasaryan
2023-09-14 15:26 ` [PATCH 2/3] userfaultfd: UFFDIO_REMAP uABI Suren Baghdasaryan
2023-09-14 18:11 ` Matthew Wilcox
2023-09-14 18:43 ` David Hildenbrand [this message]
2023-09-14 18:45 ` David Hildenbrand
2023-09-21 18:04 ` Suren Baghdasaryan
2023-09-21 18:17 ` David Hildenbrand
2023-09-22 1:57 ` Suren Baghdasaryan
2023-09-14 18:47 ` David Hildenbrand
2023-09-14 18:54 ` Suren Baghdasaryan
2023-09-14 19:28 ` Jann Horn
2023-09-14 20:57 ` Suren Baghdasaryan
2023-09-19 23:08 ` Suren Baghdasaryan
2023-09-19 23:40 ` Suren Baghdasaryan
2023-09-19 23:50 ` Jann Horn
2023-09-20 1:49 ` Suren Baghdasaryan
2023-09-20 16:11 ` Jann Horn
2023-09-21 16:59 ` Jann Horn
2023-09-14 21:57 ` Nadav Amit
2023-09-15 3:28 ` Suren Baghdasaryan
2023-09-15 4:03 ` Nadav Amit
2023-09-15 4:15 ` Suren Baghdasaryan
2023-09-15 23:33 ` Jann Horn
2023-09-15 23:39 ` Suren Baghdasaryan
2023-09-14 15:26 ` [PATCH 3/3] selftests/mm: add UFFDIO_REMAP ioctl test 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=e77b75f9-ab9e-f20b-6484-22f73524c159@redhat.com \
--to=david@redhat.com \
--cc=Liam.Howlett@oracle.com \
--cc=aarcange@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=axelrasmussen@google.com \
--cc=bgeffon@google.com \
--cc=brauner@kernel.org \
--cc=hughd@google.com \
--cc=jannh@google.com \
--cc=jdduke@google.com \
--cc=kaleshsingh@google.com \
--cc=kernel-team@android.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=lokeshgidra@google.com \
--cc=mhocko@suse.com \
--cc=ngeoffray@google.com \
--cc=peterx@redhat.com \
--cc=rppt@kernel.org \
--cc=shuah@kernel.org \
--cc=surenb@google.com \
--cc=viro@zeniv.linux.org.uk \
--cc=willy@infradead.org \
--cc=zhangpeng362@huawei.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;
as well as URLs for NNTP newsgroup(s).