84 lines
2.2 KiB
Diff
84 lines
2.2 KiB
Diff
|
From 49a869039c960dbc02e6bbee9d0f0d0ce39003d5 Mon Sep 17 00:00:00 2001
|
||
|
From: Brijesh Singh <brijesh.singh@amd.com>
|
||
|
Date: Tue, 6 Feb 2018 19:08:11 -0600
|
||
|
Subject: [PATCH] qmp: add query-sev-launch-measure command
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
The command can be used by libvirt to retrieve the measurement of SEV guest.
|
||
|
This measurement is a signature of the memory contents that was encrypted
|
||
|
through the LAUNCH_UPDATE_DATA.
|
||
|
|
||
|
Cc: "Daniel P. Berrangé" <berrange@redhat.com>
|
||
|
Cc: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
|
||
|
Cc: Markus Armbruster <armbru@redhat.com>
|
||
|
Signed-off-by: Brijesh Singh <brijesh.singh@amd.com>
|
||
|
[BR: FATE#322124]
|
||
|
Signed-off-by: Bruce Rogers <brogers@suse.com>
|
||
|
---
|
||
|
qapi-schema.json | 30 ++++++++++++++++++++++++++++++
|
||
|
qmp.c | 14 ++++++++++++++
|
||
|
2 files changed, 44 insertions(+)
|
||
|
|
||
|
diff --git a/qapi-schema.json b/qapi-schema.json
|
||
|
index 40c2de3026..8ab8e74956 100644
|
||
|
--- a/qapi-schema.json
|
||
|
+++ b/qapi-schema.json
|
||
|
@@ -3247,3 +3247,33 @@
|
||
|
#
|
||
|
##
|
||
|
{ 'command': 'query-sev', 'returns': 'SevInfo' }
|
||
|
+
|
||
|
+##
|
||
|
+# @SevLaunchMeasureInfo:
|
||
|
+#
|
||
|
+# SEV Guest Launch measurement information
|
||
|
+#
|
||
|
+# @data: the measurement value encoded in base64
|
||
|
+#
|
||
|
+# Since: 2.12
|
||
|
+#
|
||
|
+# Notes: If measurement is not available then a null measurement is returned.
|
||
|
+##
|
||
|
+{ 'struct': 'SevLaunchMeasureInfo', 'data': {'data': 'str'} }
|
||
|
+
|
||
|
+##
|
||
|
+# @query-sev-launch-measure:
|
||
|
+#
|
||
|
+# Query the SEV guest launch information.
|
||
|
+#
|
||
|
+# Returns: The @SevLaunchMeasureInfo for the guest
|
||
|
+#
|
||
|
+# Since: 2.12
|
||
|
+#
|
||
|
+# Example:
|
||
|
+#
|
||
|
+# -> { "execute": "query-sev-launch-measure" }
|
||
|
+# <- { "return": { "data": "4l8LXeNlSPUDlXPJG5966/8%YZ" } }
|
||
|
+#
|
||
|
+##
|
||
|
+{ 'command': 'query-sev-launch-measure', 'returns': 'SevLaunchMeasureInfo' }
|
||
|
diff --git a/qmp.c b/qmp.c
|
||
|
index 4cd01ea666..d9ec4bf18e 100644
|
||
|
--- a/qmp.c
|
||
|
+++ b/qmp.c
|
||
|
@@ -738,3 +738,17 @@ SevInfo *qmp_query_sev(Error **errp)
|
||
|
|
||
|
return info;
|
||
|
}
|
||
|
+
|
||
|
+SevLaunchMeasureInfo *qmp_query_sev_launch_measure(Error **errp)
|
||
|
+{
|
||
|
+ SevLaunchMeasureInfo *info = NULL;
|
||
|
+
|
||
|
+ if (sev_enabled()) {
|
||
|
+ info = g_malloc0(sizeof(*info));
|
||
|
+ info->data = sev_get_launch_measurement();
|
||
|
+ } else {
|
||
|
+ error_setg(errp, "SEV is not enabled");
|
||
|
+ }
|
||
|
+
|
||
|
+ return info;
|
||
|
+}
|