From: Markus Armbruster <armbru@redhat.com>
To: Michael Roth <michael.roth@amd.com>
Cc: Markus Armbruster <armbru@redhat.com>, <qemu-devel@nongnu.org>,
<kvm@vger.kernel.org>, <pbonzini@redhat.com>,
<berrange@redhat.com>, <pankaj.gupta@amd.com>,
<isaku.yamahata@intel.com>, <xiaoyao.li@intel.com>,
<chao.p.peng@linux.intel.com>, <david@kernel.org>,
<ashish.kalra@amd.com>, <ackerleytng@google.com>
Subject: Re: [PATCH RFC 02/12] hostmem: Introduce dedicated memory backend for guest_memfd
Date: Mon, 08 Jun 2026 10:20:22 +0200 [thread overview]
Message-ID: <87v7btl9yx.fsf@pond.sub.org> (raw)
In-Reply-To: <ge6uyrbigeoym74thogtolbe3e3jgya7hsibzrrqum6nevusys@ixh7rwe7lzsx> (Michael Roth's message of "Wed, 3 Jun 2026 01:19:32 -0500")
Michael Roth <michael.roth@amd.com> writes:
> On Tue, Jun 02, 2026 at 10:22:01AM +0200, Markus Armbruster wrote:
>> Michael Roth <michael.roth@amd.com> writes:
>>
>> > In the initial implementation of guest_memfd in the linux kernel, it
>> > was not possible to map memory into userspace for direct access; instead
>> > the memory provided by the memory backend would be used for cases where
>> > a confidential VM wants to access normal/unprotected/unencrypted memory
>> > that can be used for shared memory use cases, and for access to private
>> > memory a guest_memfd could be associated with the same memslot. A memory
>> > 'private' attribute set via KVM_SET_MEMORY_ATTRIBUTES could then be used
>> > to have KVM route to the approprate backing memory.
>> >
>> > In that model, it didn't make sense to introduce a specific backend for
>> > guest_memfd, since there was always a generally need to have a separate
>>
>> a general need?
>
> Much nicer :)
>
>>
>> > backend type to handle shared memory access/allocation. Instead, QEMU
>> > configures the guest_memfd support for the associated memslots
>> > internally for cases where it is running a confidential VM.
>> >
>> > However, with recent changes in guest_memfd kernel support, it is now
>> > possible to mmap() a guest_memfd FD into userspace and use it for shared
>> > memory, as well as continue to use the same physical pages for the same
>> > GPA ranges after they are converted to private ("in-place conversion").
>> >
>> > To enable the use of this mmap()-able/guest_memfd-provided memory to be
>> > used for normal/shared memory instead of just for private memory,
>> > introduce a dedicated guest_memfd memory backend that can be used both
>> > for confidential VMs that wish to make use of in-place conversion, as
>> > well as for non-confidential VMs that just want to make use of
>> > guest_memfd for normal memory (which can be useful both for testing as
>> > well as a stepping stone to things like software-protected VMs where the
>> > host can be trusted to provided some additional degree of isolation for
>> > the VM independently of hardware support).
>> >
>> > Signed-off-by: Michael Roth <michael.roth@amd.com>
>>
>> [...]
>>
>> > diff --git a/qapi/qom.json b/qapi/qom.json
>> > index dd45ac1087..502fafeb15 100644
>> > --- a/qapi/qom.json
>> > +++ b/qapi/qom.json
>> > @@ -661,7 +661,8 @@
>> > # @share: if false, the memory is private to QEMU; if true, it is
>> > # shared (default false for backends memory-backend-file and
>> > # memory-backend-ram, true for backends memory-backend-epc,
>> > -# memory-backend-memfd, and memory-backend-shm)
>> > +# memory-backend-memfd, memory-backend-shm, and
>> > +# memory-backend-guest-memfd)
>> > #
>> > # @reserve: if true, reserve swap space (or huge pages) if applicable
>> > # (default: true) (since 6.1)
>> > @@ -780,6 +781,18 @@
>> > '*seal': 'bool' },
>> > 'if': 'CONFIG_LINUX' }
>> >
>> > +##
>> > +# @MemoryBackendGuestMemfdProperties:
>> > +#
>> > +# Properties for memory-backend-guest-memfd objects.
>> > +#
>> > +# Since: 11.1
>> > +##
>> > +{ 'struct': 'MemoryBackendGuestMemfdProperties',
>> > + 'base': 'MemoryBackendProperties',
>> > + 'data': {},
>> > + 'if': 'CONFIG_LINUX' }
>> > +
>>
>> Identical to MemoryBackendProperties so far.
>>
>> > ##
>> > # @MemoryBackendShmProperties:
>> > #
>> > @@ -1234,6 +1247,8 @@
>> > 'memory-backend-file',
>> > { 'name': 'memory-backend-memfd',
>> > 'if': 'CONFIG_LINUX' },
>> > + { 'name': 'memory-backend-guest-memfd',
>> > + 'if': 'CONFIG_LINUX' },
>> > 'memory-backend-ram',
>> > { 'name': 'memory-backend-shm',
>> > 'if': 'CONFIG_POSIX' },
>> > @@ -1312,6 +1327,8 @@
>> > 'memory-backend-file': 'MemoryBackendFileProperties',
>> > 'memory-backend-memfd': { 'type': 'MemoryBackendMemfdProperties',
>> > 'if': 'CONFIG_LINUX' },
>> > + 'memory-backend-guest-memfd': { 'type': 'MemoryBackendGuestMemfdProperties',
>> > + 'if': 'CONFIG_LINUX' },
>>
>> You could use MemoryBackendProperties here, and drop
>> MemoryBackendGuestMemfdProperties, similar to how memory-backend-ram
>> is done.
>
> That's true. I think I was anticipating it being warranted at some point, but
> that doesn't need to happen here.
>
>>
>> > 'memory-backend-ram': 'MemoryBackendProperties',
>> > 'memory-backend-shm': { 'type': 'MemoryBackendShmProperties',
>> > 'if': 'CONFIG_POSIX' },
>>
>> Should we provide guidance on when to use which memory backend? The
>> commit message provides some clues...
>
> Were you thinking from a schema perspective, or something more
> user-facing?
The QAPI schema doc comments become the QEMU QMP Reference Manual, which
I believe is the first stop for "how do I use this?"
Sometimes, a full answer just doesn't fit there comfortably. So we put
it elsewhere, and point to it from the QMP Reference.
> Either way, docs/system/confidential-guest-support.rst could definitely
> use some sprucing up as part of this series, so I can cover this aspect
> there as well.
>
>>
>> > diff --git a/qemu-options.hx b/qemu-options.hx
>> > index 96ae41f787..3c754c149f 100644
>> > --- a/qemu-options.hx
>> > +++ b/qemu-options.hx
>> > @@ -5858,6 +5858,11 @@ SRST
>> > off will cause a failure during allocation because it is not supported
>> > by this backend.
>> >
>> > + ``-object memory-backend-guest-memfd,id=id,prealloc=on|off,size=size,host-nodes=host-nodes,policy=default|preferred|bind|interleave``
>> > + Creates an anonymous memory file backend object that has similar
>> > + semantics to memfd, but is also usable as private memory when
>> > + running as a confidential VM. (Linux only)
>>
>> There is no object type "memfd". Do you mean "memory-backend-memfd"?
>
> Yes, will update.
>
>>
>> If yes, that one has additional properties @hugetlb, @hugetlbsize, and
>> @seal. Why are they not needed for memory-backend-guest-memfd?
>
> ATM, hugetlb is not enabled for guest_memfd in the kernel. It's likely the
> same set of options will apply, but there are also efforts to do things like
> plumb DAX memory through guest_memfd for confidential VMs where maybe we end
> up needing to be a bit more flexible/creative... not sure, but it seemed
> like a good idea to give ourselves a clean slate since the support isn't
> there yet anyway.
I gather these properties cannot work today. I agree we shouldn't add
them until they do.
> For seal, I'm not aware of any plan to support that for guest_memfd, so
> it seems like unecessary baggage to pull in.
Likewise.
> Thanks,
>
> Mike
>
>>
>> > +
>> > ``-object iommufd,id=id[,fd=fd]``
>> > Creates an iommufd backend which allows control of DMA mapping
>> > through the ``/dev/iommu`` device.
>>
next prev parent reply other threads:[~2026-06-08 10:40 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-28 0:03 [PATCH RFC 00/12] guest_memfd: support in-place memory conversion Michael Roth
2026-05-28 0:03 ` [PATCH RFC 01/12] accel/kvm: Decouple guest_memfd checks from memory attribute checks Michael Roth
2026-05-28 0:03 ` [PATCH RFC 02/12] hostmem: Introduce dedicated memory backend for guest_memfd Michael Roth
2026-06-02 8:22 ` Markus Armbruster
2026-06-03 6:19 ` Michael Roth
2026-06-08 8:20 ` Markus Armbruster [this message]
2026-06-08 20:42 ` Michael Roth
2026-05-28 0:03 ` [PATCH RFC 04/12] accel/kvm: Add CGS option to control in-place conversion support Michael Roth
2026-06-02 8:23 ` Markus Armbruster
2026-06-03 6:39 ` Michael Roth
2026-06-08 8:15 ` Markus Armbruster
2026-06-08 20:21 ` Michael Roth
2026-05-28 0:03 ` [PATCH RFC 05/12] system/memory: Re-use memory-backend-guest-memfd inode for private memory Michael Roth
2026-05-28 0:03 ` [PATCH RFC 06/12] system/memory: Default to guest_memfd for RAM for in-place conversion Michael Roth
2026-05-28 0:03 ` [PATCH RFC 07/12] accel/kvm: Move post-conversion updates to a separate helper Michael Roth
2026-05-28 0:03 ` [PATCH RFC 08/12] accel/kvm: Re-order attribute notifications for in-place conversion Michael Roth
2026-05-28 0:03 ` [PATCH RFC 09/12] accel/kvm: Support shared/private conversions via guest_memfd ioctls Michael Roth
2026-06-04 13:19 ` Gupta, Pankaj
2026-06-04 23:36 ` Michael Roth
2026-05-28 0:03 ` [PATCH RFC 10/12] accel/kvm: Don't default to private attributes for in-place conversion Michael Roth
2026-05-28 0:03 ` [PATCH RFC 11/12] i386/sev: Update SNP_LAUNCH_UPDATE " Michael Roth
2026-05-28 0:03 ` [PATCH RFC 12/12] i386/sev: Allow in-place conversion for SEV-SNP guests Michael Roth
2026-05-28 5:44 ` [PATCH RFC 00/12] guest_memfd: support in-place memory conversion Xiaoyao Li
2026-06-02 22:20 ` Michael Roth
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=87v7btl9yx.fsf@pond.sub.org \
--to=armbru@redhat.com \
--cc=ackerleytng@google.com \
--cc=ashish.kalra@amd.com \
--cc=berrange@redhat.com \
--cc=chao.p.peng@linux.intel.com \
--cc=david@kernel.org \
--cc=isaku.yamahata@intel.com \
--cc=kvm@vger.kernel.org \
--cc=michael.roth@amd.com \
--cc=pankaj.gupta@amd.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=xiaoyao.li@intel.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