Re: [PATCH] mm/uffd: UFFD_FEATURE_WP_ZEROPAGE

From: David Hildenbrand
Date: Wed Feb 22 2023 - 12:03:42 EST


On 22.02.23 00:13, Peter Xu wrote:
On Tue, Feb 21, 2023 at 01:43:28PM +0100, David Hildenbrand wrote:
I think what we really want to avoid is, creating a new VMA and requiring to
populate page tables just to set the PTEs softdirty.

The VMA flag is one way, but it might prevent merging as we discovered.
Changing the semantic of "pte_none()" to mean " dirty" is another one.

AFAIU, seeing pte_none() as dirty obviously adds false positives in another
way, comparing to what happens when we merge vmas.

Yeah ... I think it's all tuned for "well, let's allow some false positives, but keep it simple such that we don't have to allocate a bunch of page tables just to track memory that won't eventually be written either way".

So when merging, we say "well, let's consider all pte_none() as dirty again" by setting the softdirty flag. Otherwise, we'd have to handle allocation pf page tables and whatnot to make merging work without setting the VM flag.


Allocating all these page tables to install uffd-wp flags is also one of the things I actually dislike about the new approach just to get more precision. I wondered if it could be avoided, but my brain started to hurt. Just an idea how to eventually avoid it:


We can catch access to these virtual memory that are not populated using UFFD_MISSING mode. When installing a zeropage, we could set the uffd-wp bit. But we don't want to mix in the missing mode I guess. But maybe we could use a similar approach for the uffd-wp async mode? Something like the following.


We'd want another mode(s?) for that, in addition to _ASYNC mode:

(a) When we hit an unpopulated PTE using read-access, we map a fresh page (e.g., zeropage) and set the uffd-wp bit. This will make sure that the next write access triggers uffd-wp.

(b) When we hit an unpopulated PTE using write-access, we only map a fresh page (not setting the bit). We would want to trigger uffd-wp in !_ASYNC mode after that. In _ASYNC mode, all is good.


pte_none() without the uffd-wp bit set would be assumed to be clean -- because touching them would turn them dirty (!pte_none() and not have the uffd-wp bit set). We might have to handle discarding of memory, by using a uffd-wp marker. Then we could detect that (where we already had page tables allcoated!) directly.


Such a mode (excluding the _ASYNC stuff) would even make sense for background snapshots in QEMU, and would avoid us having to populate page tables completely. Simply uffd-wp all that's populated and don't care about pte_none(). These will be properly handled on fault.


Does something like that make sense?



Simply because we cared about getting it precise for uffd-wp, which nobody
cared for before for soft-dirty. And yes, there are similar issues to be
solve.

You are much rather turning uffd-wp with the async mode into a soft-dirty
replacement,

Exactly. When I was discussing uffd-wp years ago with Andrea, Andrea
already mentioned about replacing soft-dirty with uffd-wp since then.

We wasn't really clear about what interface it would look like; at that
time the plan was not using pagemap, but probably something else to avoid
the pgtable walking.

I thought about that later with other forms like ring structures, not so
much. Later on I figured that maybe it's not that trivial to do so, and the
benefit is not clear, either. We know we may avoid pgtable walks, but we
don't yet know what to lose.

Interesting idea.


instead using what we learned with uffd-wp to make soft-dirty more
precise.

I hope it's not in a way we duplicate many things from userfaultfd, though.

As I mentioned before, we can have yet another bit reserved in pte markers
for soft-dirty and that was actually the plan, but if they'll grow into
something even more similar, it'll be fair if someone asks "why bother?".

The other thing is IIUC soft dirty just took the burden of compatibility,
if that works out we don't probably need uffd-wp async mode on the other
way round - in short, if we can have one thing working for all cases IMHO
we don't bother duplicating in the other.

Right. I wish we didn't have softdirty and could start with something clean. :)



Fair enough, I won't interfere. The natural way for me to tackle this would
be to try fixing soft-dirty instead, or handle the details on how soft-dirty
is implemented internally: not exposing to user space that we are using
uffd-wp under the hood, for example.


Maybe that would be a reasonable approach? Handle this all internally if
possible, and remove the old soft-dirty infrastructure once it's working.

We wouldn't be able to use uffd-wp + softdirty, but who really cares I guess
...

The thing is userfaultfd is an exposed and formal kernel interface to
userspace already, before / if this new async mode will land. IMHO it's
necessary in this case to let the user know what's happening inside rather
than thinking this is not important and make decision for the user. We
don't want to surprise anyone I guess..

It's not only from the angle where an user may be using userfault in its
tracee app, so the user will know why the "new soft-dirty" won't work.

It's also about maintaining compatible with soft-dirty even if we want to
replace it some day with uffd-wp - it means there'll at least be a period
of having both of them exist, not until we know they're solidly replaceable
between each other.

So far it's definitely not in that stage.. and they're not alike - it's
just that some of us wanted to have soft-dirty change into something like
uffd-wp, then since the 1st way is not easily achievable, we can try the
other way round.

Right. And uffd-wp even supports hugetlb :)


While the other "uffd cannot be nested" defect is actually the same to
soft-dirty (no way to have a tracee being able to clear_refs itself or
it'll also go a mess), it's just that we can still use soft-dirty to track
an uffd application.

I wonder if we really care about that. Would be good to know if there are
any relevant softdirty users still around ... from what I understoodm even
CRIU wants to handle it using uffd-wp.

Yeah I don't know either.

Jup.

What does this mean?

Yes to the statement "So I assume there's no major issue to not continue with a new version, then I'll move on." :)

But my idea at the very beginning might make sense to consider: can we instead handle this at fault time and avoid allocating all these page tables. Happy to hear if I am missing something important.

--
Thanks,

David / dhildenb