Re: [PATCH 1/6] KVM: guest_memfd: Add DEFAULT_SHARED flag, reject user page faults if not set
From: David Hildenbrand
Date: Mon Sep 29 2025 - 04:38:54 EST
On 26.09.25 18:31, Sean Christopherson wrote:
Add a guest_memfd flag to allow userspace to state that the underlying
memory should be configured to be shared by default, and reject user page
faults if the guest_memfd instance's memory isn't shared by default.
Because KVM doesn't yet support in-place private<=>shared conversions, all
guest_memfd memory effectively follows the default state.
I recall we discussed exactly that in the past (e.g., on April 17) in the call:
"Current plan:
* guest_memfd creation flag to specify “all memory starts as shared”
* Compatible with the old behavior where all memory started as private
* Initially, only these can be mmap (no in-place conversion)
"
Alternatively, KVM could deduce the default state based on MMAP, which for
all intents and purposes is what KVM currently does. However, implicitly
deriving the default state based on MMAP will result in a messy ABI when
support for in-place conversions is added.
I don't recall the details, but I faintly remember that we discussed later that with
mmap support, the default will be shared for now, and that no other flag would be
required for the time being.
We could always add a "DEFAULT_PRIVATE" flag when we realize that we would have
to change the default later.
Ackerley might remember more details.
--
Cheers
David / dhildenb