Blame SOURCES/kvm-target-i386-sev-provide-proper-error-reporting-for-q.patch

902636
From 8789f2662c6ddacc5472a803d253b94d93c6e9f0 Mon Sep 17 00:00:00 2001
902636
From: Paolo Bonzini <pbonzini@redhat.com>
902636
Date: Fri, 31 Jul 2020 18:08:34 -0400
902636
Subject: [PATCH 2/4] target/i386: sev: provide proper error reporting for
902636
 query-sev-capabilities
902636
MIME-Version: 1.0
902636
Content-Type: text/plain; charset=UTF-8
902636
Content-Transfer-Encoding: 8bit
902636
902636
RH-Author: Paolo Bonzini <pbonzini@redhat.com>
902636
Message-id: <20200731180835.86786-2-pbonzini@redhat.com>
902636
Patchwork-id: 98123
902636
O-Subject: [RHEL-8.3.0 qemu-kvm PATCH 1/2] target/i386: sev: provide proper error reporting for query-sev-capabilities
902636
Bugzilla: 1689341
902636
RH-Acked-by: Danilo de Paula <ddepaula@redhat.com>
902636
RH-Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
902636
RH-Acked-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
902636
902636
The query-sev-capabilities was reporting errors through error_report;
902636
change it to use Error** so that the cause of the failure is clearer.
902636
902636
Reviewed-by: Eric Blake <eblake@redhat.com>
902636
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
902636
Cherry picked from commit e4f6278557148151e77260b872b41bcd7ceb4737
902636
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
902636
---
902636
 target/i386/monitor.c  | 10 +---------
902636
 target/i386/sev-stub.c |  3 ++-
902636
 target/i386/sev.c      | 18 +++++++++---------
902636
 target/i386/sev_i386.h |  2 +-
902636
 4 files changed, 13 insertions(+), 20 deletions(-)
902636
902636
diff --git a/target/i386/monitor.c b/target/i386/monitor.c
902636
index 9fb4d641d5..cfd8075e4f 100644
902636
--- a/target/i386/monitor.c
902636
+++ b/target/i386/monitor.c
902636
@@ -727,13 +727,5 @@ SevLaunchMeasureInfo *qmp_query_sev_launch_measure(Error **errp)
902636
 
902636
 SevCapability *qmp_query_sev_capabilities(Error **errp)
902636
 {
902636
-    SevCapability *data;
902636
-
902636
-    data = sev_get_capabilities();
902636
-    if (!data) {
902636
-        error_setg(errp, "SEV feature is not available");
902636
-        return NULL;
902636
-    }
902636
-
902636
-    return data;
902636
+    return sev_get_capabilities(errp);
902636
 }
902636
diff --git a/target/i386/sev-stub.c b/target/i386/sev-stub.c
902636
index e5ee13309c..88e3f39a1e 100644
902636
--- a/target/i386/sev-stub.c
902636
+++ b/target/i386/sev-stub.c
902636
@@ -44,7 +44,8 @@ char *sev_get_launch_measurement(void)
902636
     return NULL;
902636
 }
902636
 
902636
-SevCapability *sev_get_capabilities(void)
902636
+SevCapability *sev_get_capabilities(Error **errp)
902636
 {
902636
+    error_setg(errp, "SEV is not available in this QEMU");
902636
     return NULL;
902636
 }
902636
diff --git a/target/i386/sev.c b/target/i386/sev.c
902636
index 024bb24e51..054f2d846a 100644
902636
--- a/target/i386/sev.c
902636
+++ b/target/i386/sev.c
902636
@@ -453,7 +453,7 @@ sev_get_info(void)
902636
 
902636
 static int
902636
 sev_get_pdh_info(int fd, guchar **pdh, size_t *pdh_len, guchar **cert_chain,
902636
-                 size_t *cert_chain_len)
902636
+                 size_t *cert_chain_len, Error **errp)
902636
 {
902636
     guchar *pdh_data = NULL;
902636
     guchar *cert_chain_data = NULL;
902636
@@ -464,8 +464,8 @@ sev_get_pdh_info(int fd, guchar **pdh, size_t *pdh_len, guchar **cert_chain,
902636
     r = sev_platform_ioctl(fd, SEV_PDH_CERT_EXPORT, &export, &err;;
902636
     if (r < 0) {
902636
         if (err != SEV_RET_INVALID_LEN) {
902636
-            error_report("failed to export PDH cert ret=%d fw_err=%d (%s)",
902636
-                         r, err, fw_error_to_str(err));
902636
+            error_setg(errp, "failed to export PDH cert ret=%d fw_err=%d (%s)",
902636
+                       r, err, fw_error_to_str(err));
902636
             return 1;
902636
         }
902636
     }
902636
@@ -477,8 +477,8 @@ sev_get_pdh_info(int fd, guchar **pdh, size_t *pdh_len, guchar **cert_chain,
902636
 
902636
     r = sev_platform_ioctl(fd, SEV_PDH_CERT_EXPORT, &export, &err;;
902636
     if (r < 0) {
902636
-        error_report("failed to export PDH cert ret=%d fw_err=%d (%s)",
902636
-                     r, err, fw_error_to_str(err));
902636
+        error_setg(errp, "failed to export PDH cert ret=%d fw_err=%d (%s)",
902636
+                   r, err, fw_error_to_str(err));
902636
         goto e_free;
902636
     }
902636
 
902636
@@ -495,7 +495,7 @@ e_free:
902636
 }
902636
 
902636
 SevCapability *
902636
-sev_get_capabilities(void)
902636
+sev_get_capabilities(Error **errp)
902636
 {
902636
     SevCapability *cap = NULL;
902636
     guchar *pdh_data = NULL;
902636
@@ -506,13 +506,13 @@ sev_get_capabilities(void)
902636
 
902636
     fd = open(DEFAULT_SEV_DEVICE, O_RDWR);
902636
     if (fd < 0) {
902636
-        error_report("%s: Failed to open %s '%s'", __func__,
902636
-                     DEFAULT_SEV_DEVICE, strerror(errno));
902636
+        error_setg_errno(errp, errno, "Failed to open %s",
902636
+                         DEFAULT_SEV_DEVICE);
902636
         return NULL;
902636
     }
902636
 
902636
     if (sev_get_pdh_info(fd, &pdh_data, &pdh_len,
902636
-                         &cert_chain_data, &cert_chain_len)) {
902636
+                         &cert_chain_data, &cert_chain_len, errp)) {
902636
         goto out;
902636
     }
902636
 
902636
diff --git a/target/i386/sev_i386.h b/target/i386/sev_i386.h
902636
index 8ada9d385d..1e073342ba 100644
902636
--- a/target/i386/sev_i386.h
902636
+++ b/target/i386/sev_i386.h
902636
@@ -38,7 +38,7 @@ extern SevInfo *sev_get_info(void);
902636
 extern uint32_t sev_get_cbit_position(void);
902636
 extern uint32_t sev_get_reduced_phys_bits(void);
902636
 extern char *sev_get_launch_measurement(void);
902636
-extern SevCapability *sev_get_capabilities(void);
902636
+extern SevCapability *sev_get_capabilities(Error **errp);
902636
 
902636
 typedef struct QSevGuestInfo QSevGuestInfo;
902636
 typedef struct QSevGuestInfoClass QSevGuestInfoClass;
902636
-- 
902636
2.27.0
902636