kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] KVM: x86: Disallow hypercalls for guest callers in rings > 0
@ 2009-08-03 13:47 Jan Kiszka
  2009-08-03 14:04 ` Anthony Liguori
  2009-08-03 14:27 ` Avi Kivity
  0 siblings, 2 replies; 8+ messages in thread
From: Jan Kiszka @ 2009-08-03 13:47 UTC (permalink / raw)
  To: Avi Kivity; +Cc: kvm-devel

So far unprivileged guest callers running in ring 3 can issue, e.g., MMU
hypercalls. Normally, such callers cannot provide any hand-crafted MMU
command structure as it has to be passed by its physical address, but
they can still crash the guest kernel by passing random addresses.

To close the hole, this patch considers hypercalls valid only if issued
from guest ring 0. This may still be relaxed on a per-hypercall base in
the future once required.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---

 arch/x86/kvm/x86.c       |    8 ++++++++
 include/linux/kvm_para.h |    1 +
 2 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index 2539e9a..966d309 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -3190,6 +3190,7 @@ static inline gpa_t hc_gpa(struct kvm_vcpu *vcpu, unsigned long a0,
 int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
 {
 	unsigned long nr, a0, a1, a2, a3, ret;
+	struct kvm_segment cs;
 	int r = 1;
 
 	nr = kvm_register_read(vcpu, VCPU_REGS_RAX);
@@ -3208,6 +3209,12 @@ int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
 		a3 &= 0xFFFFFFFF;
 	}
 
+	kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
+	if (cs.dpl != 0) {
+		ret = -KVM_EPERM;
+		goto out;
+	}
+
 	switch (nr) {
 	case KVM_HC_VAPIC_POLL_IRQ:
 		ret = 0;
@@ -3219,6 +3226,7 @@ int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
 		ret = -KVM_ENOSYS;
 		break;
 	}
+out:
 	kvm_register_write(vcpu, VCPU_REGS_RAX, ret);
 	++vcpu->stat.hypercalls;
 	return r;
diff --git a/include/linux/kvm_para.h b/include/linux/kvm_para.h
index 3ddce03..d731092 100644
--- a/include/linux/kvm_para.h
+++ b/include/linux/kvm_para.h
@@ -13,6 +13,7 @@
 #define KVM_ENOSYS		1000
 #define KVM_EFAULT		EFAULT
 #define KVM_E2BIG		E2BIG
+#define KVM_EPERM		EPERM
 
 #define KVM_HC_VAPIC_POLL_IRQ		1
 #define KVM_HC_MMU_OP			2

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

* Re: [PATCH] KVM: x86: Disallow hypercalls for guest callers in rings > 0
  2009-08-03 13:47 [PATCH] KVM: x86: Disallow hypercalls for guest callers in rings > 0 Jan Kiszka
@ 2009-08-03 14:04 ` Anthony Liguori
  2009-08-03 14:24   ` Avi Kivity
  2009-08-03 14:27 ` Avi Kivity
  1 sibling, 1 reply; 8+ messages in thread
From: Anthony Liguori @ 2009-08-03 14:04 UTC (permalink / raw)
  To: Jan Kiszka; +Cc: Avi Kivity, kvm-devel

Jan Kiszka wrote:
> So far unprivileged guest callers running in ring 3 can issue, e.g., MMU
> hypercalls. Normally, such callers cannot provide any hand-crafted MMU
> command structure as it has to be passed by its physical address, but
> they can still crash the guest kernel by passing random addresses.
>
> To close the hole, this patch considers hypercalls valid only if issued
> from guest ring 0. This may still be relaxed on a per-hypercall base in
> the future once required.
>   

Actually, VT mandates that vmcalls can only be done from CPL=0.

SVM allows hypercalls from CPL>0 unfortunately.

Regards,

Anthony Liguori

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

* Re: [PATCH] KVM: x86: Disallow hypercalls for guest callers in rings > 0
  2009-08-03 14:04 ` Anthony Liguori
@ 2009-08-03 14:24   ` Avi Kivity
  2009-08-03 15:04     ` Anthony Liguori
  0 siblings, 1 reply; 8+ messages in thread
From: Avi Kivity @ 2009-08-03 14:24 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: Jan Kiszka, kvm-devel

On 08/03/2009 05:04 PM, Anthony Liguori wrote:
>
> Actually, VT mandates that vmcalls can only be done from CPL=0.
>

That's exactly how I misremembered it.  However the docs say

IF not in VMX operation
     THEN #UD;
ELSIF in VMX non-root operation
     THEN VM exit;
ELSIF (RFLAGS.VM = 1) OR (IA32_EFER.LMA = 1 and CS.L = 0)
     THEN #UD;
ELSIF CPL > 0
     THEN #GP(0);

So CPL > 0 is only enforced on VMCALL from the hypervisor, not the guest 
(tip: don't ask what VMCALL in the hypervisor means).


> SVM allows hypercalls from CPL>0 unfortunately.

Yeah.

-- 
error compiling committee.c: too many arguments to function


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

* Re: [PATCH] KVM: x86: Disallow hypercalls for guest callers in rings > 0
  2009-08-03 13:47 [PATCH] KVM: x86: Disallow hypercalls for guest callers in rings > 0 Jan Kiszka
  2009-08-03 14:04 ` Anthony Liguori
@ 2009-08-03 14:27 ` Avi Kivity
  2009-08-03 16:43   ` [PATCH v2] " Jan Kiszka
  1 sibling, 1 reply; 8+ messages in thread
From: Avi Kivity @ 2009-08-03 14:27 UTC (permalink / raw)
  To: Jan Kiszka; +Cc: kvm-devel

On 08/03/2009 04:47 PM, Jan Kiszka wrote:
> So far unprivileged guest callers running in ring 3 can issue, e.g., MMU
> hypercalls. Normally, such callers cannot provide any hand-crafted MMU
> command structure as it has to be passed by its physical address, but
> they can still crash the guest kernel by passing random addresses.
>
> To close the hole, this patch considers hypercalls valid only if issued
> from guest ring 0. This may still be relaxed on a per-hypercall base in
> the future once required.
>
> Signed-off-by: Jan Kiszka<jan.kiszka@siemens.com>
> ---
>
>   arch/x86/kvm/x86.c       |    8 ++++++++
>   include/linux/kvm_para.h |    1 +
>   2 files changed, 9 insertions(+), 0 deletions(-)
>
> diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
> index 2539e9a..966d309 100644
> --- a/arch/x86/kvm/x86.c
> +++ b/arch/x86/kvm/x86.c
> @@ -3190,6 +3190,7 @@ static inline gpa_t hc_gpa(struct kvm_vcpu *vcpu, unsigned long a0,
>   int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
>   {
>   	unsigned long nr, a0, a1, a2, a3, ret;
> +	struct kvm_segment cs;
>   	int r = 1;
>
>   	nr = kvm_register_read(vcpu, VCPU_REGS_RAX);
> @@ -3208,6 +3209,12 @@ int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
>   		a3&= 0xFFFFFFFF;
>   	}
>
> +	kvm_get_segment(vcpu,&cs, VCPU_SREG_CS);
> +	if (cs.dpl != 0) {
> +		ret = -KVM_EPERM;
> +		goto out;
> +	}
> +
>    

I think kvm_x86_ops->get_cpl() is more accurate (and we can optimize it 
to avoid a ton of vmcs_read()s).

-- 
error compiling committee.c: too many arguments to function


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

* Re: [PATCH] KVM: x86: Disallow hypercalls for guest callers in rings > 0
  2009-08-03 14:24   ` Avi Kivity
@ 2009-08-03 15:04     ` Anthony Liguori
  2009-08-03 16:01       ` Avi Kivity
  0 siblings, 1 reply; 8+ messages in thread
From: Anthony Liguori @ 2009-08-03 15:04 UTC (permalink / raw)
  To: Avi Kivity; +Cc: Jan Kiszka, kvm-devel

Avi Kivity wrote:
> On 08/03/2009 05:04 PM, Anthony Liguori wrote:
>>
>> Actually, VT mandates that vmcalls can only be done from CPL=0.
>>
>
> That's exactly how I misremembered it.  However the docs say
>
> IF not in VMX operation
>     THEN #UD;
> ELSIF in VMX non-root operation
>     THEN VM exit;
> ELSIF (RFLAGS.VM = 1) OR (IA32_EFER.LMA = 1 and CS.L = 0)
>     THEN #UD;
> ELSIF CPL > 0
>     THEN #GP(0);
>
> So CPL > 0 is only enforced on VMCALL from the hypervisor, not the 
> guest (tip: don't ask what VMCALL in the hypervisor means).

Ah, it's used to call SMM peer mode... awesome :-)

Regards,

Anthony Liguori

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

* Re: [PATCH] KVM: x86: Disallow hypercalls for guest callers in rings > 0
  2009-08-03 15:04     ` Anthony Liguori
@ 2009-08-03 16:01       ` Avi Kivity
  0 siblings, 0 replies; 8+ messages in thread
From: Avi Kivity @ 2009-08-03 16:01 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: Jan Kiszka, kvm-devel

On 08/03/2009 06:04 PM, Anthony Liguori wrote:
>> So CPL > 0 is only enforced on VMCALL from the hypervisor, not the 
>> guest (tip: don't ask what VMCALL in the hypervisor means).
>
>
> Ah, it's used to call SMM peer mode... awesome :-)

Now you'll never be able to sleep at night.  Well I did try to warn you.

-- 
error compiling committee.c: too many arguments to function


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

* [PATCH v2] KVM: x86: Disallow hypercalls for guest callers in rings > 0
  2009-08-03 14:27 ` Avi Kivity
@ 2009-08-03 16:43   ` Jan Kiszka
  2009-08-04 12:00     ` Avi Kivity
  0 siblings, 1 reply; 8+ messages in thread
From: Jan Kiszka @ 2009-08-03 16:43 UTC (permalink / raw)
  To: Avi Kivity; +Cc: kvm-devel

Avi Kivity wrote:
> On 08/03/2009 04:47 PM, Jan Kiszka wrote:
>> So far unprivileged guest callers running in ring 3 can issue, e.g., MMU
>> hypercalls. Normally, such callers cannot provide any hand-crafted MMU
>> command structure as it has to be passed by its physical address, but
>> they can still crash the guest kernel by passing random addresses.
>>
>> To close the hole, this patch considers hypercalls valid only if issued
>> from guest ring 0. This may still be relaxed on a per-hypercall base in
>> the future once required.
>>
>> Signed-off-by: Jan Kiszka<jan.kiszka@siemens.com>
>> ---
>>
>>   arch/x86/kvm/x86.c       |    8 ++++++++
>>   include/linux/kvm_para.h |    1 +
>>   2 files changed, 9 insertions(+), 0 deletions(-)
>>
>> diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
>> index 2539e9a..966d309 100644
>> --- a/arch/x86/kvm/x86.c
>> +++ b/arch/x86/kvm/x86.c
>> @@ -3190,6 +3190,7 @@ static inline gpa_t hc_gpa(struct kvm_vcpu
>> *vcpu, unsigned long a0,
>>   int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
>>   {
>>       unsigned long nr, a0, a1, a2, a3, ret;
>> +    struct kvm_segment cs;
>>       int r = 1;
>>
>>       nr = kvm_register_read(vcpu, VCPU_REGS_RAX);
>> @@ -3208,6 +3209,12 @@ int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
>>           a3&= 0xFFFFFFFF;
>>       }
>>
>> +    kvm_get_segment(vcpu,&cs, VCPU_SREG_CS);
>> +    if (cs.dpl != 0) {
>> +        ret = -KVM_EPERM;
>> +        goto out;
>> +    }
>> +
>>    
> 
> I think kvm_x86_ops->get_cpl() is more accurate (and we can optimize it
> to avoid a ton of vmcs_read()s).
> 

Yes, that's much nicer.

--------->

So far unprivileged guest callers running in ring 3 can issue, e.g., MMU
hypercalls. Normally, such callers cannot provide any hand-crafted MMU
command structure as it has to be passed by its physical address, but
they can still crash the guest kernel by passing random addresses.

To close the hole, this patch considers hypercalls valid only if issued
from guest ring 0. This may still be relaxed on a per-hypercall base in
the future once required.

Changes v1 -> v2:
 - use kvm_x86_ops->get_cpl() in favor of kvm_get_segment()

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---

 arch/x86/kvm/x86.c       |    6 ++++++
 include/linux/kvm_para.h |    1 +
 2 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index 2539e9a..1c17105 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -3208,6 +3208,11 @@ int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
 		a3 &= 0xFFFFFFFF;
 	}
 
+	if (kvm_x86_ops->get_cpl(vcpu) != 0) {
+		ret = -KVM_EPERM;
+		goto out;
+	}
+
 	switch (nr) {
 	case KVM_HC_VAPIC_POLL_IRQ:
 		ret = 0;
@@ -3219,6 +3224,7 @@ int kvm_emulate_hypercall(struct kvm_vcpu *vcpu)
 		ret = -KVM_ENOSYS;
 		break;
 	}
+out:
 	kvm_register_write(vcpu, VCPU_REGS_RAX, ret);
 	++vcpu->stat.hypercalls;
 	return r;
diff --git a/include/linux/kvm_para.h b/include/linux/kvm_para.h
index 3ddce03..d731092 100644
--- a/include/linux/kvm_para.h
+++ b/include/linux/kvm_para.h
@@ -13,6 +13,7 @@
 #define KVM_ENOSYS		1000
 #define KVM_EFAULT		EFAULT
 #define KVM_E2BIG		E2BIG
+#define KVM_EPERM		EPERM
 
 #define KVM_HC_VAPIC_POLL_IRQ		1
 #define KVM_HC_MMU_OP			2

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

* Re: [PATCH v2] KVM: x86: Disallow hypercalls for guest callers in rings > 0
  2009-08-03 16:43   ` [PATCH v2] " Jan Kiszka
@ 2009-08-04 12:00     ` Avi Kivity
  0 siblings, 0 replies; 8+ messages in thread
From: Avi Kivity @ 2009-08-04 12:00 UTC (permalink / raw)
  To: Jan Kiszka; +Cc: kvm-devel

On 08/03/2009 07:43 PM, Jan Kiszka wrote:
>
> Yes, that's much nicer.
>
> --------->
>
> So far unprivileged guest callers running in ring 3 can issue, e.g., MMU
> hypercalls. Normally, such callers cannot provide any hand-crafted MMU
> command structure as it has to be passed by its physical address, but
> they can still crash the guest kernel by passing random addresses.
>
> To close the hole, this patch considers hypercalls valid only if issued
> from guest ring 0. This may still be relaxed on a per-hypercall base in
> the future once required.
>
> Changes v1 ->  v2:
>   - use kvm_x86_ops->get_cpl() in favor of kvm_get_segment()
>
>    

Applied, thanks.

-- 
error compiling committee.c: too many arguments to function


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

end of thread, other threads:[~2009-08-04 11:55 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-03 13:47 [PATCH] KVM: x86: Disallow hypercalls for guest callers in rings > 0 Jan Kiszka
2009-08-03 14:04 ` Anthony Liguori
2009-08-03 14:24   ` Avi Kivity
2009-08-03 15:04     ` Anthony Liguori
2009-08-03 16:01       ` Avi Kivity
2009-08-03 14:27 ` Avi Kivity
2009-08-03 16:43   ` [PATCH v2] " Jan Kiszka
2009-08-04 12:00     ` Avi Kivity

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).