All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFT] x86/pvh: disable all MTRR CPU features on cpuid for dom0
@ 2015-03-26 23:33 Luis R. Rodriguez
  2015-03-27  8:32 ` Roger Pau Monné
  2015-03-27  9:37 ` Andrew Cooper
  0 siblings, 2 replies; 5+ messages in thread
From: Luis R. Rodriguez @ 2015-03-26 23:33 UTC (permalink / raw)
  To: xen-devel
  Cc: jgross, mcgrof, mcgrof, david.vrabel, boris.ostrovsky,
	Roger Pau Monné

From: "Luis R. Rodriguez" <mcgrof@suse.com>

Commit 586ab6a by Roger disabled the main MTRR CPU feature
on the cpuid when on pvh in order to avoid having MTRR code
run on the OS on dom0. This missed the fact that not all CPUs
use this cpuid to identify MTRR support, this complets that.

This could in theory fix some potential issues where MTRR
code was previously enabled, for instance running cat /proc/mtrr
on a Linux system where MTRR was actually disabled.

Cc: Roger Pau Monné <roger.pau@citrix.com>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
---

Konrad asked me to submit this. I don't have time to test this
though so it goes as RFT. If it clears through the flames of
xen testing thunder please consider merging.

 xen/arch/x86/traps.c             | 6 ++++++
 xen/include/asm-x86/cpufeature.h | 3 +++
 2 files changed, 9 insertions(+)

diff --git a/xen/arch/x86/traps.c b/xen/arch/x86/traps.c
index ec324b0..23c3bbc 100644
--- a/xen/arch/x86/traps.c
+++ b/xen/arch/x86/traps.c
@@ -888,7 +888,13 @@ void pv_cpuid(struct cpu_user_regs *regs)
         __clear_bit(X86_FEATURE_ACC, &d);
         __clear_bit(X86_FEATURE_PBE, &d);
         if ( is_pvh_vcpu(curr) )
+        {
             __clear_bit(X86_FEATURE_MTRR, &d);
+            __clear_bit(X86_FEATURE_K6_MTRR, &d);
+            __clear_bit(X86_FEATURE_CENTAUR_MCR, &d);
+            __clear_bit(X86_FEATURE_CYRIX_ARR, &d);
+        }
+
 
         __clear_bit(X86_FEATURE_DTES64 % 32, &c);
         __clear_bit(X86_FEATURE_MWAIT % 32, &c);
diff --git a/xen/include/asm-x86/cpufeature.h b/xen/include/asm-x86/cpufeature.h
index 7963a3a..2ce5c7c 100644
--- a/xen/include/asm-x86/cpufeature.h
+++ b/xen/include/asm-x86/cpufeature.h
@@ -61,6 +61,9 @@
 
 /* Other features, Linux-defined mapping, word 3 */
 /* This range is used for feature bits which conflict or are synthesized */
+#define X86_FEATURE_K6_MTRR     (3*32+ 1) /* AMD K6 nonstandard MTRRs */
+#define X86_FEATURE_CYRIX_ARR   (3*32+ 2) /* Cyrix ARRs (= MTRRs) */
+#define X86_FEATURE_CENTAUR_MCR (3*32+ 3) /* Centaur MCRs (= MTRRs) */
 #define X86_FEATURE_CONSTANT_TSC (3*32+ 8) /* TSC ticks at a constant rate */
 #define X86_FEATURE_NONSTOP_TSC	(3*32+ 9) /* TSC does not stop in C states */
 #define X86_FEATURE_ARAT	(3*32+ 10) /* Always running APIC timer */
-- 
2.3.2.209.gd67f9d5.dirty


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

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

* Re: [RFT] x86/pvh: disable all MTRR CPU features on cpuid for dom0
  2015-03-26 23:33 [RFT] x86/pvh: disable all MTRR CPU features on cpuid for dom0 Luis R. Rodriguez
@ 2015-03-27  8:32 ` Roger Pau Monné
  2015-03-27 18:08   ` Luis R. Rodriguez
  2015-03-27  9:37 ` Andrew Cooper
  1 sibling, 1 reply; 5+ messages in thread
From: Roger Pau Monné @ 2015-03-27  8:32 UTC (permalink / raw)
  To: Luis R. Rodriguez, xen-devel
  Cc: jgross, boris.ostrovsky, mcgrof, david.vrabel

El 27/03/15 a les 0.33, Luis R. Rodriguez ha escrit:
> From: "Luis R. Rodriguez" <mcgrof@suse.com>
> 
> Commit 586ab6a by Roger disabled the main MTRR CPU feature
> on the cpuid when on pvh in order to avoid having MTRR code
> run on the OS on dom0. This missed the fact that not all CPUs
> use this cpuid to identify MTRR support, this complets that.
> 
> This could in theory fix some potential issues where MTRR
> code was previously enabled, for instance running cat /proc/mtrr
> on a Linux system where MTRR was actually disabled.

AFAICT we will never support PVH on those CPU types, so I'm not sure if
it's worth disabling it. AMD K6, Centaur and VIA chips don't have the
necessary hardware extensions to allow running PVH guests.

Roger.

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

* Re: [RFT] x86/pvh: disable all MTRR CPU features on cpuid for dom0
  2015-03-26 23:33 [RFT] x86/pvh: disable all MTRR CPU features on cpuid for dom0 Luis R. Rodriguez
  2015-03-27  8:32 ` Roger Pau Monné
@ 2015-03-27  9:37 ` Andrew Cooper
  2015-03-27 10:33   ` Jan Beulich
  1 sibling, 1 reply; 5+ messages in thread
From: Andrew Cooper @ 2015-03-27  9:37 UTC (permalink / raw)
  To: Luis R. Rodriguez, xen-devel
  Cc: jgross, mcgrof, david.vrabel, boris.ostrovsky,
	Roger Pau Monné

On 26/03/15 23:33, Luis R. Rodriguez wrote:
> From: "Luis R. Rodriguez" <mcgrof@suse.com>
>
> Commit 586ab6a by Roger disabled the main MTRR CPU feature
> on the cpuid when on pvh in order to avoid having MTRR code
> run on the OS on dom0. This missed the fact that not all CPUs
> use this cpuid to identify MTRR support, this complets that.
>
> This could in theory fix some potential issues where MTRR
> code was previously enabled, for instance running cat /proc/mtrr
> on a Linux system where MTRR was actually disabled.
>
> Cc: Roger Pau Monné <roger.pau@citrix.com>
> Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
> Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
> ---
>
> Konrad asked me to submit this. I don't have time to test this
> though so it goes as RFT. If it clears through the flames of
> xen testing thunder please consider merging.
>
>   xen/arch/x86/traps.c             | 6 ++++++
>   xen/include/asm-x86/cpufeature.h | 3 +++
>   2 files changed, 9 insertions(+)
>
> diff --git a/xen/arch/x86/traps.c b/xen/arch/x86/traps.c
> index ec324b0..23c3bbc 100644
> --- a/xen/arch/x86/traps.c
> +++ b/xen/arch/x86/traps.c
> @@ -888,7 +888,13 @@ void pv_cpuid(struct cpu_user_regs *regs)
>           __clear_bit(X86_FEATURE_ACC, &d);
>           __clear_bit(X86_FEATURE_PBE, &d);
>           if ( is_pvh_vcpu(curr) )
> +        {
>               __clear_bit(X86_FEATURE_MTRR, &d);
> +            __clear_bit(X86_FEATURE_K6_MTRR, &d);
> +            __clear_bit(X86_FEATURE_CENTAUR_MCR, &d);
> +            __clear_bit(X86_FEATURE_CYRIX_ARR, &d);
> +        }
> +
>   
>           __clear_bit(X86_FEATURE_DTES64 % 32, &c);
>           __clear_bit(X86_FEATURE_MWAIT % 32, &c);
> diff --git a/xen/include/asm-x86/cpufeature.h b/xen/include/asm-x86/cpufeature.h
> index 7963a3a..2ce5c7c 100644
> --- a/xen/include/asm-x86/cpufeature.h
> +++ b/xen/include/asm-x86/cpufeature.h
> @@ -61,6 +61,9 @@
>   
>   /* Other features, Linux-defined mapping, word 3 */
>   /* This range is used for feature bits which conflict or are synthesized */
> +#define X86_FEATURE_K6_MTRR     (3*32+ 1) /* AMD K6 nonstandard MTRRs */
> +#define X86_FEATURE_CYRIX_ARR   (3*32+ 2) /* Cyrix ARRs (= MTRRs) */
> +#define X86_FEATURE_CENTAUR_MCR (3*32+ 3) /* Centaur MCRs (= MTRRs) */

You are introducing 3 new defines, so you can clear them out of a word.

Under what circumstances would these bits will ever be set in the first 
place?

~Andrew

>   #define X86_FEATURE_CONSTANT_TSC (3*32+ 8) /* TSC ticks at a constant rate */
>   #define X86_FEATURE_NONSTOP_TSC	(3*32+ 9) /* TSC does not stop in C states */
>   #define X86_FEATURE_ARAT	(3*32+ 10) /* Always running APIC timer */


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

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

* Re: [RFT] x86/pvh: disable all MTRR CPU features on cpuid for dom0
  2015-03-27  9:37 ` Andrew Cooper
@ 2015-03-27 10:33   ` Jan Beulich
  0 siblings, 0 replies; 5+ messages in thread
From: Jan Beulich @ 2015-03-27 10:33 UTC (permalink / raw)
  To: Andrew Cooper, Luis R. Rodriguez
  Cc: Juergen Gross, Luis Rodriguez, david.vrabel, xen-devel,
	boris.ostrovsky, roger.pau

>>> On 27.03.15 at 10:37, <andrew.cooper3@citrix.com> wrote:
> On 26/03/15 23:33, Luis R. Rodriguez wrote:
>> From: "Luis R. Rodriguez" <mcgrof@suse.com>
>>
>> Commit 586ab6a by Roger disabled the main MTRR CPU feature
>> on the cpuid when on pvh in order to avoid having MTRR code
>> run on the OS on dom0. This missed the fact that not all CPUs
>> use this cpuid to identify MTRR support, this complets that.
>>
>> This could in theory fix some potential issues where MTRR
>> code was previously enabled, for instance running cat /proc/mtrr
>> on a Linux system where MTRR was actually disabled.
>>
>> Cc: Roger Pau Monné <roger.pau@citrix.com>
>> Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
>> Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
>> ---
>>
>> Konrad asked me to submit this. I don't have time to test this
>> though so it goes as RFT. If it clears through the flames of
>> xen testing thunder please consider merging.
>>
>>   xen/arch/x86/traps.c             | 6 ++++++
>>   xen/include/asm-x86/cpufeature.h | 3 +++
>>   2 files changed, 9 insertions(+)
>>
>> diff --git a/xen/arch/x86/traps.c b/xen/arch/x86/traps.c
>> index ec324b0..23c3bbc 100644
>> --- a/xen/arch/x86/traps.c
>> +++ b/xen/arch/x86/traps.c
>> @@ -888,7 +888,13 @@ void pv_cpuid(struct cpu_user_regs *regs)
>>           __clear_bit(X86_FEATURE_ACC, &d);
>>           __clear_bit(X86_FEATURE_PBE, &d);
>>           if ( is_pvh_vcpu(curr) )
>> +        {
>>               __clear_bit(X86_FEATURE_MTRR, &d);
>> +            __clear_bit(X86_FEATURE_K6_MTRR, &d);
>> +            __clear_bit(X86_FEATURE_CENTAUR_MCR, &d);
>> +            __clear_bit(X86_FEATURE_CYRIX_ARR, &d);
>> +        }
>> +
>>   
>>           __clear_bit(X86_FEATURE_DTES64 % 32, &c);
>>           __clear_bit(X86_FEATURE_MWAIT % 32, &c);
>> diff --git a/xen/include/asm-x86/cpufeature.h 
> b/xen/include/asm-x86/cpufeature.h
>> index 7963a3a..2ce5c7c 100644
>> --- a/xen/include/asm-x86/cpufeature.h
>> +++ b/xen/include/asm-x86/cpufeature.h
>> @@ -61,6 +61,9 @@
>>   
>>   /* Other features, Linux-defined mapping, word 3 */
>>   /* This range is used for feature bits which conflict or are synthesized */
>> +#define X86_FEATURE_K6_MTRR     (3*32+ 1) /* AMD K6 nonstandard MTRRs */
>> +#define X86_FEATURE_CYRIX_ARR   (3*32+ 2) /* Cyrix ARRs (= MTRRs) */
>> +#define X86_FEATURE_CENTAUR_MCR (3*32+ 3) /* Centaur MCRs (= MTRRs) */
> 
> You are introducing 3 new defines, so you can clear them out of a word.
> 
> Under what circumstances would these bits will ever be set in the first 
> place?

And then, if any of them can validly be set on a 64-bit capable CPU,
the mechanism to clear them is completely wrong: Did you spot the
"synthesized" in the comment above, and that this is index 3? I ask
because the change to traps.c clears these flags from word 0,
where those bits have completely different meaning.

Jan

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

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

* Re: [RFT] x86/pvh: disable all MTRR CPU features on cpuid for dom0
  2015-03-27  8:32 ` Roger Pau Monné
@ 2015-03-27 18:08   ` Luis R. Rodriguez
  0 siblings, 0 replies; 5+ messages in thread
From: Luis R. Rodriguez @ 2015-03-27 18:08 UTC (permalink / raw)
  To: Roger Pau Monné
  Cc: jgross, Luis R. Rodriguez, david.vrabel, xen-devel,
	boris.ostrovsky

On Fri, Mar 27, 2015 at 09:32:10AM +0100, Roger Pau Monné wrote:
> El 27/03/15 a les 0.33, Luis R. Rodriguez ha escrit:
> > From: "Luis R. Rodriguez" <mcgrof@suse.com>
> > 
> > Commit 586ab6a by Roger disabled the main MTRR CPU feature
> > on the cpuid when on pvh in order to avoid having MTRR code
> > run on the OS on dom0. This missed the fact that not all CPUs
> > use this cpuid to identify MTRR support, this complets that.
> > 
> > This could in theory fix some potential issues where MTRR
> > code was previously enabled, for instance running cat /proc/mtrr
> > on a Linux system where MTRR was actually disabled.
> 
> AFAICT we will never support PVH on those CPU types, so I'm not sure if
> it's worth disabling it. AMD K6, Centaur and VIA chips don't have the
> necessary hardware extensions to allow running PVH guests.

Great, should this be annotated?

  Luis

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

end of thread, other threads:[~2015-03-27 18:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-26 23:33 [RFT] x86/pvh: disable all MTRR CPU features on cpuid for dom0 Luis R. Rodriguez
2015-03-27  8:32 ` Roger Pau Monné
2015-03-27 18:08   ` Luis R. Rodriguez
2015-03-27  9:37 ` Andrew Cooper
2015-03-27 10:33   ` 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.