Re: [PATCH v2 2/3] userfaultfd: UFFDIO_REMAP uABI

From: David Hildenbrand
Date: Mon Oct 02 2023 - 03:50:38 EST


On 28.09.23 21:00, Peter Xu wrote:
On Thu, Sep 28, 2023 at 07:15:13PM +0200, David Hildenbrand wrote:
There are some interesting questions to ask here:

1) What happens if the old VMA has VM_SOFTDIRTY set but the new one not? You
most probably have to mark the PTE softdirty and not make it writable.

I don't know whether anyone would care about soft-dirty used with uffd
remap, but if to think about it..

Logically if the dst vma has !SOFTDIRTY (means, soft-dirty tracking
enabled), then IIUC the right thing to do is to assume this page is
modified, hence mark softdirty and perhaps proceed with other checks (where
write bit can be set if all check pass)?

I think so, yes.


Because from a soft-dirty monitor POV on dst_vma I see this REMAP the same
as writting data onto the missing page and got a page fault
(e.g. UFFDIO_COPY); we just avoided the allocation and copy.

The src vma seems also fine in this regard: soft-dirty should ignore holes
always anyway (e.g. DONTNEED on a page should report !soft-dirty later even
if tracking).

Sounds good to me.



2) VM_UFFD_WP requires similar care I assume? Peter might know.

UFFD_WP shouldn't be affected, iiuc.

Let's first discuss dst vma side.

WP_UNPOPULATED made it slightly complicated but not so much. The core
should be that REMAP only installs pages if it's exactly pte_none():

+ if (!pte_none(orig_dst_pte)) {
+ err = -EEXIST;
+ goto out;
+ }

Then it already covers things like pte markers, and any marker currently
will fail the REMAP ioctl already. May not be always wanted, but no risk
of losing wp notifications. If that'll be a valid use case we can work it
out.

Agreed.


On src vma, REMAP ioctl should behave the same as DONTNEED. Now we drop
the src pte along with the uffd-wp bit even if set, which is the correct
behavior from that regard.

Again, I don't know whether anyone cares on any of those, though..

If it's easy to handle, we should just handle it or instead spell it out why we believe we can break other features. Seems to be very easy to handle.

--
Cheers,

David / dhildenb