mirror of
https://github.com/qemu/qemu.git
synced 2026-04-05 21:46:25 +00:00
qom: add 'confidential-guest-reset' property for x86 confidential vms
Through the new 'confidential-guest-reset' property, control plane should be able to detect if the hypervisor supports x86 confidential guest resets. Older hypervisors that do not support resets will not have this property populated. Suggested-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Ani Sinha <anisinha@redhat.com> Link: https://lore.kernel.org/r/20260225035000.385950-35-anisinha@redhat.com Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
@@ -1009,13 +1009,19 @@
|
||||
# designated guest firmware page for measured boot with -kernel
|
||||
# (default: false) (since 6.2)
|
||||
#
|
||||
# Features:
|
||||
#
|
||||
# @confidential-guest-reset: If present, the hypervisor supports
|
||||
# confidential guest resets (since 11.0).
|
||||
#
|
||||
# Since: 9.1
|
||||
##
|
||||
{ 'struct': 'SevCommonProperties',
|
||||
'data': { '*sev-device': 'str',
|
||||
'*cbitpos': 'uint32',
|
||||
'reduced-phys-bits': 'uint32',
|
||||
'*kernel-hashes': 'bool' } }
|
||||
'*kernel-hashes': 'bool' },
|
||||
'features': ['confidential-guest-reset']}
|
||||
|
||||
##
|
||||
# @SevGuestProperties:
|
||||
@@ -1136,6 +1142,11 @@
|
||||
# it, the guest will not be able to get a TD quote for
|
||||
# attestation.
|
||||
#
|
||||
# Features:
|
||||
#
|
||||
# @confidential-guest-reset: If present, the hypervisor supports
|
||||
# confidential guest resets (since 11.0).
|
||||
#
|
||||
# Since: 10.1
|
||||
##
|
||||
{ 'struct': 'TdxGuestProperties',
|
||||
@@ -1144,7 +1155,8 @@
|
||||
'*mrconfigid': 'str',
|
||||
'*mrowner': 'str',
|
||||
'*mrownerconfig': 'str',
|
||||
'*quote-generation-socket': 'SocketAddress' } }
|
||||
'*quote-generation-socket': 'SocketAddress' },
|
||||
'features': ['confidential-guest-reset']}
|
||||
|
||||
##
|
||||
# @ThreadContextProperties:
|
||||
|
||||
Reference in New Issue
Block a user