All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] [RESEND] SEV firmware error list touchups
@ 2021-04-30 13:48 Connor Kuehl
  2021-04-30 13:48 ` [PATCH 1/2] [RESEND] sev: use explicit indices for mapping firmware error codes to strings Connor Kuehl
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Connor Kuehl @ 2021-04-30 13:48 UTC (permalink / raw)
  To: qemu-devel
  Cc: thomas.lendacky, brijesh.singh, ehabkost, richard.henderson,
	pbonzini, Philippe Mathieu-Daudé

Connor Kuehl (2):
  sev: use explicit indices for mapping firmware error codes to strings
  sev: add missing firmware error conditions

 target/i386/sev.c | 48 ++++++++++++++++++++++++-----------------------
 1 file changed, 25 insertions(+), 23 deletions(-)

-- 
2.30.2



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/2] [RESEND] sev: use explicit indices for mapping firmware error codes to strings
  2021-04-30 13:48 [PATCH 0/2] [RESEND] SEV firmware error list touchups Connor Kuehl
@ 2021-04-30 13:48 ` Connor Kuehl
  2021-04-30 13:48 ` [PATCH 2/2] [RESEND] sev: add missing firmware error conditions Connor Kuehl
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Connor Kuehl @ 2021-04-30 13:48 UTC (permalink / raw)
  To: qemu-devel
  Cc: thomas.lendacky, brijesh.singh, ehabkost, richard.henderson,
	pbonzini, Philippe Mathieu-Daudé

This can help lower any margin for error when making future additions to
the list, especially if they're made out of order.

While doing so, make capitalization of ASID consistent with its usage in
the SEV firmware spec (Asid -> ASID).

Signed-off-by: Connor Kuehl <ckuehl@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 target/i386/sev.c | 46 +++++++++++++++++++++++-----------------------
 1 file changed, 23 insertions(+), 23 deletions(-)

diff --git a/target/i386/sev.c b/target/i386/sev.c
index 72b9e2ab40..9e2e47012f 100644
--- a/target/i386/sev.c
+++ b/target/i386/sev.c
@@ -88,29 +88,29 @@ static SevGuestState *sev_guest;
 static Error *sev_mig_blocker;
 
 static const char *const sev_fw_errlist[] = {
-    "",
-    "Platform state is invalid",
-    "Guest state is invalid",
-    "Platform configuration is invalid",
-    "Buffer too small",
-    "Platform is already owned",
-    "Certificate is invalid",
-    "Policy is not allowed",
-    "Guest is not active",
-    "Invalid address",
-    "Bad signature",
-    "Bad measurement",
-    "Asid is already owned",
-    "Invalid ASID",
-    "WBINVD is required",
-    "DF_FLUSH is required",
-    "Guest handle is invalid",
-    "Invalid command",
-    "Guest is active",
-    "Hardware error",
-    "Hardware unsafe",
-    "Feature not supported",
-    "Invalid parameter"
+    [SEV_RET_SUCCESS]                = "",
+    [SEV_RET_INVALID_PLATFORM_STATE] = "Platform state is invalid",
+    [SEV_RET_INVALID_GUEST_STATE]    = "Guest state is invalid",
+    [SEV_RET_INAVLID_CONFIG]         = "Platform configuration is invalid",
+    [SEV_RET_INVALID_LEN]            = "Buffer too small",
+    [SEV_RET_ALREADY_OWNED]          = "Platform is already owned",
+    [SEV_RET_INVALID_CERTIFICATE]    = "Certificate is invalid",
+    [SEV_RET_POLICY_FAILURE]         = "Policy is not allowed",
+    [SEV_RET_INACTIVE]               = "Guest is not active",
+    [SEV_RET_INVALID_ADDRESS]        = "Invalid address",
+    [SEV_RET_BAD_SIGNATURE]          = "Bad signature",
+    [SEV_RET_BAD_MEASUREMENT]        = "Bad measurement",
+    [SEV_RET_ASID_OWNED]             = "ASID is already owned",
+    [SEV_RET_INVALID_ASID]           = "Invalid ASID",
+    [SEV_RET_WBINVD_REQUIRED]        = "WBINVD is required",
+    [SEV_RET_DFFLUSH_REQUIRED]       = "DF_FLUSH is required",
+    [SEV_RET_INVALID_GUEST]          = "Guest handle is invalid",
+    [SEV_RET_INVALID_COMMAND]        = "Invalid command",
+    [SEV_RET_ACTIVE]                 = "Guest is active",
+    [SEV_RET_HWSEV_RET_PLATFORM]     = "Hardware error",
+    [SEV_RET_HWSEV_RET_UNSAFE]       = "Hardware unsafe",
+    [SEV_RET_UNSUPPORTED]            = "Feature not supported",
+    [SEV_RET_INVALID_PARAM]          = "Invalid parameter",
 };
 
 #define SEV_FW_MAX_ERROR      ARRAY_SIZE(sev_fw_errlist)
-- 
2.30.2



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/2] [RESEND] sev: add missing firmware error conditions
  2021-04-30 13:48 [PATCH 0/2] [RESEND] SEV firmware error list touchups Connor Kuehl
  2021-04-30 13:48 ` [PATCH 1/2] [RESEND] sev: use explicit indices for mapping firmware error codes to strings Connor Kuehl
@ 2021-04-30 13:48 ` Connor Kuehl
  2021-05-11  7:35 ` [PATCH 0/2] [RESEND] SEV firmware error list touchups Philippe Mathieu-Daudé
  2021-05-31 20:09 ` Eduardo Habkost
  3 siblings, 0 replies; 6+ messages in thread
From: Connor Kuehl @ 2021-04-30 13:48 UTC (permalink / raw)
  To: qemu-devel
  Cc: thomas.lendacky, brijesh.singh, ehabkost, richard.henderson,
	pbonzini, Philippe Mathieu-Daudé

The SEV userspace header[1] exports a couple of other error conditions that
aren't listed in QEMU's SEV implementation, so let's just round out the
list.

[1] linux-headers/linux/psp-sev.h

Signed-off-by: Connor Kuehl <ckuehl@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 target/i386/sev.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/target/i386/sev.c b/target/i386/sev.c
index 9e2e47012f..dfafd3b543 100644
--- a/target/i386/sev.c
+++ b/target/i386/sev.c
@@ -111,6 +111,8 @@ static const char *const sev_fw_errlist[] = {
     [SEV_RET_HWSEV_RET_UNSAFE]       = "Hardware unsafe",
     [SEV_RET_UNSUPPORTED]            = "Feature not supported",
     [SEV_RET_INVALID_PARAM]          = "Invalid parameter",
+    [SEV_RET_RESOURCE_LIMIT]         = "Required firmware resource depleted",
+    [SEV_RET_SECURE_DATA_INVALID]    = "Part-specific integrity check failure",
 };
 
 #define SEV_FW_MAX_ERROR      ARRAY_SIZE(sev_fw_errlist)
-- 
2.30.2



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 0/2] [RESEND] SEV firmware error list touchups
  2021-04-30 13:48 [PATCH 0/2] [RESEND] SEV firmware error list touchups Connor Kuehl
  2021-04-30 13:48 ` [PATCH 1/2] [RESEND] sev: use explicit indices for mapping firmware error codes to strings Connor Kuehl
  2021-04-30 13:48 ` [PATCH 2/2] [RESEND] sev: add missing firmware error conditions Connor Kuehl
@ 2021-05-11  7:35 ` Philippe Mathieu-Daudé
  2021-05-27 21:36   ` Philippe Mathieu-Daudé
  2021-05-31 20:09 ` Eduardo Habkost
  3 siblings, 1 reply; 6+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-05-11  7:35 UTC (permalink / raw)
  To: Connor Kuehl, qemu-devel, QEMU Trivial
  Cc: pbonzini, richard.henderson, ehabkost, brijesh.singh, thomas.lendacky

Cc'ing qemu-trivial@

On 4/30/21 3:48 PM, Connor Kuehl wrote:
> Connor Kuehl (2):
>   sev: use explicit indices for mapping firmware error codes to strings
>   sev: add missing firmware error conditions
> 
>  target/i386/sev.c | 48 ++++++++++++++++++++++++-----------------------
>  1 file changed, 25 insertions(+), 23 deletions(-)
> 



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 0/2] [RESEND] SEV firmware error list touchups
  2021-05-11  7:35 ` [PATCH 0/2] [RESEND] SEV firmware error list touchups Philippe Mathieu-Daudé
@ 2021-05-27 21:36   ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 6+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-05-27 21:36 UTC (permalink / raw)
  To: Connor Kuehl, QEMU Developers, QEMU Trivial
  Cc: Paolo Bonzini, Richard Henderson, Eduardo Habkost, Brijesh Singh,
	Tom Lendacky

ping^3...

On Tue, May 11, 2021 at 9:35 AM Philippe Mathieu-Daudé
<philmd@redhat.com> wrote:
>
> Cc'ing qemu-trivial@
>
> On 4/30/21 3:48 PM, Connor Kuehl wrote:
> > Connor Kuehl (2):
> >   sev: use explicit indices for mapping firmware error codes to strings
> >   sev: add missing firmware error conditions
> >
> >  target/i386/sev.c | 48 ++++++++++++++++++++++++-----------------------
> >  1 file changed, 25 insertions(+), 23 deletions(-)
> >
>



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 0/2] [RESEND] SEV firmware error list touchups
  2021-04-30 13:48 [PATCH 0/2] [RESEND] SEV firmware error list touchups Connor Kuehl
                   ` (2 preceding siblings ...)
  2021-05-11  7:35 ` [PATCH 0/2] [RESEND] SEV firmware error list touchups Philippe Mathieu-Daudé
@ 2021-05-31 20:09 ` Eduardo Habkost
  3 siblings, 0 replies; 6+ messages in thread
From: Eduardo Habkost @ 2021-05-31 20:09 UTC (permalink / raw)
  To: Connor Kuehl
  Cc: thomas.lendacky, brijesh.singh, richard.henderson, qemu-devel,
	pbonzini, Philippe Mathieu-Daudé

On Fri, Apr 30, 2021 at 08:48:28AM -0500, Connor Kuehl wrote:
> Connor Kuehl (2):
>   sev: use explicit indices for mapping firmware error codes to strings
>   sev: add missing firmware error conditions
> 
>  target/i386/sev.c | 48 ++++++++++++++++++++++++-----------------------
>  1 file changed, 25 insertions(+), 23 deletions(-)

I'm queueing this on x86-next, apologies for the delay.

-- 
Eduardo



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-05-31 20:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-30 13:48 [PATCH 0/2] [RESEND] SEV firmware error list touchups Connor Kuehl
2021-04-30 13:48 ` [PATCH 1/2] [RESEND] sev: use explicit indices for mapping firmware error codes to strings Connor Kuehl
2021-04-30 13:48 ` [PATCH 2/2] [RESEND] sev: add missing firmware error conditions Connor Kuehl
2021-05-11  7:35 ` [PATCH 0/2] [RESEND] SEV firmware error list touchups Philippe Mathieu-Daudé
2021-05-27 21:36   ` Philippe Mathieu-Daudé
2021-05-31 20:09 ` Eduardo Habkost

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.