All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86: clear CPUID output of leaf 0xd for Dom0 when xsave is disabled
@ 2011-05-18  9:53 Jan Beulich
  2011-05-18 21:01 ` Wei Huang
  0 siblings, 1 reply; 4+ messages in thread
From: Jan Beulich @ 2011-05-18  9:53 UTC (permalink / raw)
  To: xen-devel

[-- Attachment #1: Type: text/plain, Size: 1146 bytes --]

Linux starting with 2.6.36 uses the XSAVEOPT instruction and has
certain code paths that look only at the feature bit reported through
CPUID leaf 0xd sub-leaf 1 (i.e. without qualifying the check with one
evaluating leaf 4 output). Consequently the hypervisor ought to mimic
actual hardware in clearing leaf 0xd output when not supporting xsave.

(Note that this is only a minimal fix. It may be necessary, e.g. for
LWP, to also adjust sub-leaf 0's bit masks and perhaps zap output of
sub-leaves > 1 when the respective bit in sub-leaf 0 is getting
cleared.)

Signed-off-by: Jan Beulich <jbeulich@novell.com>

--- a/xen/arch/x86/traps.c
+++ b/xen/arch/x86/traps.c
@@ -836,6 +836,10 @@ static void pv_cpuid(struct cpu_user_reg
         __clear_bit(X86_FEATURE_NODEID_MSR % 32, &c);
         __clear_bit(X86_FEATURE_TOPOEXT % 32, &c);
         break;
+    case 0xd: /* XSAVE */
+        if ( xsave_enabled(current) )
+            break;
+        /* fall through */
     case 5: /* MONITOR/MWAIT */
     case 0xa: /* Architectural Performance Monitor Features */
     case 0x8000000a: /* SVM revision and features */




[-- Attachment #2: x86-cpuid-xsave-hide.patch --]
[-- Type: text/plain, Size: 1140 bytes --]

Linux starting with 2.6.36 uses the XSAVEOPT instruction and has
certain code paths that look only at the feature bit reported through
CPUID leaf 0xd sub-leaf 1 (i.e. without qualifying the check with one
evaluating leaf 4 output). Consequently the hypervisor ought to mimic
actual hardware in clearing leaf 0xd output when not supporting xsave.

(Note that this is only a minimal fix. It may be necessary, e.g. for
LWP, to also adjust sub-leaf 0's bit masks and perhaps zap output of
sub-leaves > 1 when the respective bit in sub-leaf 0 is getting
cleared.)

Signed-off-by: Jan Beulich <jbeulich@novell.com>

--- a/xen/arch/x86/traps.c
+++ b/xen/arch/x86/traps.c
@@ -836,6 +836,10 @@ static void pv_cpuid(struct cpu_user_reg
         __clear_bit(X86_FEATURE_NODEID_MSR % 32, &c);
         __clear_bit(X86_FEATURE_TOPOEXT % 32, &c);
         break;
+    case 0xd: /* XSAVE */
+        if ( xsave_enabled(current) )
+            break;
+        /* fall through */
     case 5: /* MONITOR/MWAIT */
     case 0xa: /* Architectural Performance Monitor Features */
     case 0x8000000a: /* SVM revision and features */

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

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

* Re: [PATCH] x86: clear CPUID output of leaf 0xd for Dom0 when xsave is disabled
  2011-05-18  9:53 [PATCH] x86: clear CPUID output of leaf 0xd for Dom0 when xsave is disabled Jan Beulich
@ 2011-05-18 21:01 ` Wei Huang
  2011-05-19  6:47   ` Jan Beulich
  0 siblings, 1 reply; 4+ messages in thread
From: Wei Huang @ 2011-05-18 21:01 UTC (permalink / raw)
  To: Jan Beulich; +Cc: xen-devel

I tested cpuid on a real hardware. If software wants, reading all 
sub-leaves are allowed even on hardware which doesn't support XSAVE. The 
instruction just returns 0. So I don't think we need to zap output for 
sub-leaves > 1.


    0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 
edx=0x00000000
    0x0000000d 0x00: eax=0x00000003 ebx=0x00000240 ecx=0x00000240 
edx=0x00000000
    0x0000000d 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 
edx=0x00000000
    0x0000000d 0x3e: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 
edx=0x00000000

On 05/18/2011 04:53 AM, Jan Beulich wrote:
> Linux starting with 2.6.36 uses the XSAVEOPT instruction and has
> certain code paths that look only at the feature bit reported through
> CPUID leaf 0xd sub-leaf 1 (i.e. without qualifying the check with one
> evaluating leaf 4 output). Consequently the hypervisor ought to mimic
> actual hardware in clearing leaf 0xd output when not supporting xsave.
>
> (Note that this is only a minimal fix. It may be necessary, e.g. for
> LWP, to also adjust sub-leaf 0's bit masks and perhaps zap output of
> sub-leaves>  1 when the respective bit in sub-leaf 0 is getting
> cleared.)
>
> Signed-off-by: Jan Beulich<jbeulich@novell.com>
>
> --- a/xen/arch/x86/traps.c
> +++ b/xen/arch/x86/traps.c
> @@ -836,6 +836,10 @@ static void pv_cpuid(struct cpu_user_reg
>           __clear_bit(X86_FEATURE_NODEID_MSR % 32,&c);
>           __clear_bit(X86_FEATURE_TOPOEXT % 32,&c);
>           break;
> +    case 0xd: /* XSAVE */
> +        if ( xsave_enabled(current) )
> +            break;
> +        /* fall through */
>       case 5: /* MONITOR/MWAIT */
>       case 0xa: /* Architectural Performance Monitor Features */
>       case 0x8000000a: /* SVM revision and features */
>
>
>

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

* Re: [PATCH] x86: clear CPUID output of leaf 0xd for Dom0 when xsave is disabled
  2011-05-18 21:01 ` Wei Huang
@ 2011-05-19  6:47   ` Jan Beulich
       [not found]     ` <4DD538A2.7050801@amd.com>
  0 siblings, 1 reply; 4+ messages in thread
From: Jan Beulich @ 2011-05-19  6:47 UTC (permalink / raw)
  To: Wei Huang; +Cc: xen-devel

>>> On 18.05.11 at 23:01, Wei Huang <wei.huang2@amd.com> wrote:
> I tested cpuid on a real hardware. If software wants, reading all 
> sub-leaves are allowed even on hardware which doesn't support XSAVE. The 
> instruction just returns 0. So I don't think we need to zap output for 
> sub-leaves > 1.

"Returning zero" is what "zapping" means to me. Returning non-zero
possibly mis-guiding OSes (just as is the case with the xsaveopt
feature flag in Linux) is what I want to avoid.

Jan

>     0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 
> edx=0x00000000
>     0x0000000d 0x00: eax=0x00000003 ebx=0x00000240 ecx=0x00000240 
> edx=0x00000000
>     0x0000000d 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 
> edx=0x00000000
>     0x0000000d 0x3e: eax=0x00000000 ebx=0x00000000 ecx=0x00000000 
> edx=0x00000000
> 
> On 05/18/2011 04:53 AM, Jan Beulich wrote:
>> Linux starting with 2.6.36 uses the XSAVEOPT instruction and has
>> certain code paths that look only at the feature bit reported through
>> CPUID leaf 0xd sub-leaf 1 (i.e. without qualifying the check with one
>> evaluating leaf 4 output). Consequently the hypervisor ought to mimic
>> actual hardware in clearing leaf 0xd output when not supporting xsave.
>>
>> (Note that this is only a minimal fix. It may be necessary, e.g. for
>> LWP, to also adjust sub-leaf 0's bit masks and perhaps zap output of
>> sub-leaves>  1 when the respective bit in sub-leaf 0 is getting
>> cleared.)
>>
>> Signed-off-by: Jan Beulich<jbeulich@novell.com>
>>
>> --- a/xen/arch/x86/traps.c
>> +++ b/xen/arch/x86/traps.c
>> @@ -836,6 +836,10 @@ static void pv_cpuid(struct cpu_user_reg
>>           __clear_bit(X86_FEATURE_NODEID_MSR % 32,&c);
>>           __clear_bit(X86_FEATURE_TOPOEXT % 32,&c);
>>           break;
>> +    case 0xd: /* XSAVE */
>> +        if ( xsave_enabled(current) )
>> +            break;
>> +        /* fall through */
>>       case 5: /* MONITOR/MWAIT */
>>       case 0xa: /* Architectural Performance Monitor Features */
>>       case 0x8000000a: /* SVM revision and features */
>>
>>
>>

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

* RE: [PATCH] x86: clear CPUID output of leaf 0xd for Dom0 when xsave is disabled
       [not found]         ` <EE335F95F28A664DB4A21289D2AA053B0109C14662@SAUSEXMBP01.amd.com>
@ 2011-05-20  7:08           ` Jan Beulich
  0 siblings, 0 replies; 4+ messages in thread
From: Jan Beulich @ 2011-05-20  7:08 UTC (permalink / raw)
  To: Wei Huang2; +Cc: xen-devel

>>> On 19.05.11 at 18:08, "Huang2, Wei" <Wei.Huang2@amd.com> wrote:
> That is right. Could you slip it into your patch and I can sign it off? Or I 
> can crank up one. Keir hasn't put your patch into tree yet.

I would specifically want this change to be separate from the one I did.

Jan

> Thanks,
> -Wei
> 
> -----Original Message-----
> From: Jan Beulich [mailto:JBeulich@novell.com] 
> Sent: Thursday, May 19, 2011 11:06 AM
> To: Huang2, Wei
> Subject: Re: [Xen-devel] [PATCH] x86: clear CPUID output of leaf 0xd for Dom0 
> when xsave is disabled
> 
>>>> On 19.05.11 at 17:34, Wei Huang <wei.huang2@amd.com> wrote:
>> I misunderstood your email then. Doesn't your patch already achieve this 
>> objective? We didn't check sub-leaf ID (ECX) in switch-case statement. 
>> So all sub-leaves will be cleaned out by your patch.
> 
> Exactly - all of them. However, with LWP currently supported for HVM
> guests only, the respective leaf should be cleared for Dom0 (while not
> clearing the others).
> 
> Jan
> 
>> -Wei
>> 
>> On 05/19/2011 01:47 AM, Jan Beulich wrote:
>>>>>> On 18.05.11 at 23:01, Wei Huang<wei.huang2@amd.com>  wrote:
>>>> I tested cpuid on a real hardware. If software wants, reading all
>>>> sub-leaves are allowed even on hardware which doesn't support XSAVE. The
>>>> instruction just returns 0. So I don't think we need to zap output for
>>>> sub-leaves>  1.
>>> "Returning zero" is what "zapping" means to me. Returning non-zero
>>> possibly mis-guiding OSes (just as is the case with the xsaveopt
>>> feature flag in Linux) is what I want to avoid.
>>>
>>> Jan
>>>
>>>>      0x0000000c 0x00: eax=0x00000000 ebx=0x00000000 ecx=0x00000000
>>>> edx=0x00000000
>>>>      0x0000000d 0x00: eax=0x00000003 ebx=0x00000240 ecx=0x00000240
>>>> edx=0x00000000
>>>>      0x0000000d 0x02: eax=0x00000000 ebx=0x00000000 ecx=0x00000000
>>>> edx=0x00000000
>>>>      0x0000000d 0x3e: eax=0x00000000 ebx=0x00000000 ecx=0x00000000
>>>> edx=0x00000000
>>>>
>>>> On 05/18/2011 04:53 AM, Jan Beulich wrote:
>>>>> Linux starting with 2.6.36 uses the XSAVEOPT instruction and has
>>>>> certain code paths that look only at the feature bit reported through
>>>>> CPUID leaf 0xd sub-leaf 1 (i.e. without qualifying the check with one
>>>>> evaluating leaf 4 output). Consequently the hypervisor ought to mimic
>>>>> actual hardware in clearing leaf 0xd output when not supporting xsave.
>>>>>
>>>>> (Note that this is only a minimal fix. It may be necessary, e.g. for
>>>>> LWP, to also adjust sub-leaf 0's bit masks and perhaps zap output of
>>>>> sub-leaves>   1 when the respective bit in sub-leaf 0 is getting
>>>>> cleared.)
>>>>>
>>>>> Signed-off-by: Jan Beulich<jbeulich@novell.com>
>>>>>
>>>>> --- a/xen/arch/x86/traps.c
>>>>> +++ b/xen/arch/x86/traps.c
>>>>> @@ -836,6 +836,10 @@ static void pv_cpuid(struct cpu_user_reg
>>>>>            __clear_bit(X86_FEATURE_NODEID_MSR % 32,&c);
>>>>>            __clear_bit(X86_FEATURE_TOPOEXT % 32,&c);
>>>>>            break;
>>>>> +    case 0xd: /* XSAVE */
>>>>> +        if ( xsave_enabled(current) )
>>>>> +            break;
>>>>> +        /* fall through */
>>>>>        case 5: /* MONITOR/MWAIT */
>>>>>        case 0xa: /* Architectural Performance Monitor Features */
>>>>>        case 0x8000000a: /* SVM revision and features */
>>>>>
>>>>>
>>>>>
>>>
>>>
>>>

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

end of thread, other threads:[~2011-05-20  7:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-18  9:53 [PATCH] x86: clear CPUID output of leaf 0xd for Dom0 when xsave is disabled Jan Beulich
2011-05-18 21:01 ` Wei Huang
2011-05-19  6:47   ` Jan Beulich
     [not found]     ` <4DD538A2.7050801@amd.com>
     [not found]       ` <4DD55BF402000078000422E8@vpn.id2.novell.com>
     [not found]         ` <EE335F95F28A664DB4A21289D2AA053B0109C14662@SAUSEXMBP01.amd.com>
2011-05-20  7:08           ` Jan Beulich

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.