All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] x86: Assign a canonical address before execute invpcid
@ 2022-01-17  8:46 Zhenzhong Duan
  2022-01-17 17:34 ` Paolo Bonzini
  0 siblings, 1 reply; 2+ messages in thread
From: Zhenzhong Duan @ 2022-01-17  8:46 UTC (permalink / raw)
  To: kvm; +Cc: pbonzini, Zhenzhong Duan, Sean Christopherson

Accidently we see pcid test failed as INVPCID_DESC[127:64] is
uninitialized before execute invpcid.

According to Intel spec: "#GP If INVPCID_TYPE is 0 and the linear
address in INVPCID_DESC[127:64] is not canonical."

By zeroing the whole invpcid_desc structure, ensure the address
canonical and reserved bit zero in desc.

By this chance change invpcid_desc to be 128bit in size no matter
in 64bit or 32bit mode to match the description in spec, even
though this test case is 64bit only.

Fixes: b44d84dae10c ("Add PCID/INVPCID test")
Suggested-by: Sean Christopherson <seanjc@google.com>
Signed-off-by: Zhenzhong Duan <zhenzhong.duan@intel.com>
Reviewed-by: Sean Christopherson <seanjc@google.com>
---
v3: update patch description

 x86/pcid.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/x86/pcid.c b/x86/pcid.c
index 527a4a9..80a4611 100644
--- a/x86/pcid.c
+++ b/x86/pcid.c
@@ -5,9 +5,9 @@
 #include "desc.h"
 
 struct invpcid_desc {
-    unsigned long pcid : 12;
-    unsigned long rsv  : 52;
-    unsigned long addr : 64;
+    u64 pcid : 12;
+    u64 rsv  : 52;
+    u64 addr : 64;
 };
 
 static int write_cr0_checking(unsigned long val)
@@ -73,12 +73,12 @@ static void test_invpcid_enabled(int pcid_enabled)
     int passed = 0, i;
     ulong cr4 = read_cr4();
     struct invpcid_desc desc;
-    desc.rsv = 0;
+
+    memset(&desc, 0, sizeof(desc));
 
     /* try executing invpcid when CR4.PCIDE=0, desc.pcid=0 and type=0..3
      * no exception expected
      */
-    desc.pcid = 0;
     for (i = 0; i < 4; i++) {
         if (invpcid_checking(i, &desc) != 0)
             goto report;
-- 
2.25.1


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

* Re: [PATCH v3] x86: Assign a canonical address before execute invpcid
  2022-01-17  8:46 [PATCH v3] x86: Assign a canonical address before execute invpcid Zhenzhong Duan
@ 2022-01-17 17:34 ` Paolo Bonzini
  0 siblings, 0 replies; 2+ messages in thread
From: Paolo Bonzini @ 2022-01-17 17:34 UTC (permalink / raw)
  To: Zhenzhong Duan, kvm; +Cc: Sean Christopherson

On 1/17/22 09:46, Zhenzhong Duan wrote:
> Accidently we see pcid test failed as INVPCID_DESC[127:64] is
> uninitialized before execute invpcid.
> 
> According to Intel spec: "#GP If INVPCID_TYPE is 0 and the linear
> address in INVPCID_DESC[127:64] is not canonical."
> 
> By zeroing the whole invpcid_desc structure, ensure the address
> canonical and reserved bit zero in desc.
> 
> By this chance change invpcid_desc to be 128bit in size no matter
> in 64bit or 32bit mode to match the description in spec, even
> though this test case is 64bit only.
> 
> Fixes: b44d84dae10c ("Add PCID/INVPCID test")
> Suggested-by: Sean Christopherson <seanjc@google.com>
> Signed-off-by: Zhenzhong Duan <zhenzhong.duan@intel.com>
> Reviewed-by: Sean Christopherson <seanjc@google.com>
> ---
> v3: update patch description
> 
>   x86/pcid.c | 10 +++++-----
>   1 file changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/x86/pcid.c b/x86/pcid.c
> index 527a4a9..80a4611 100644
> --- a/x86/pcid.c
> +++ b/x86/pcid.c
> @@ -5,9 +5,9 @@
>   #include "desc.h"
>   
>   struct invpcid_desc {
> -    unsigned long pcid : 12;
> -    unsigned long rsv  : 52;
> -    unsigned long addr : 64;
> +    u64 pcid : 12;
> +    u64 rsv  : 52;
> +    u64 addr : 64;
>   };
>   
>   static int write_cr0_checking(unsigned long val)
> @@ -73,12 +73,12 @@ static void test_invpcid_enabled(int pcid_enabled)
>       int passed = 0, i;
>       ulong cr4 = read_cr4();
>       struct invpcid_desc desc;
> -    desc.rsv = 0;
> +
> +    memset(&desc, 0, sizeof(desc));
>   
>       /* try executing invpcid when CR4.PCIDE=0, desc.pcid=0 and type=0..3
>        * no exception expected
>        */
> -    desc.pcid = 0;
>       for (i = 0; i < 4; i++) {
>           if (invpcid_checking(i, &desc) != 0)
>               goto report;

Queued, thanks.

Paolo


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

end of thread, other threads:[~2022-01-17 17:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-17  8:46 [PATCH v3] x86: Assign a canonical address before execute invpcid Zhenzhong Duan
2022-01-17 17:34 ` Paolo Bonzini

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.