Re: [PATCHv2 6/6] KVM: VMX: handle IO when emulation is due to #GP in real mode.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Thu, 2012-12-20 at 18:43 +0200, Gleb Natapov wrote:
> On Thu, Dec 20, 2012 at 08:25:41AM -0700, Alex Williamson wrote:
> > On Thu, 2012-12-20 at 16:57 +0200, Gleb Natapov wrote:
> > > With emulate_invalid_guest_state=0 if a vcpu is in real mode VMX can
> > > enter the vcpu with smaller segment limit than guest configured.  If the
> > > guest tries to access pass this limit it will get #GP at which point
> > > instruction will be emulated with correct segment limit applied. If
> > > during the emulation IO is detected it is not handled correctly. Vcpu
> > > thread should exit to userspace to serve the IO, but it returns to the
> > > guest instead.  Since emulation is not completed till userspace completes
> > > the IO the faulty instruction is re-executed ad infinitum.
> > > 
> > > The patch fixes that by exiting to userspace if IO happens during
> > > instruction emulation.
> > 
> > Thanks for finding the right fix Gleb.  This originally came about from
> > an experiment in lazily mapping assigned device MMIO BARs.  That's
> > something I think might still have value for conserving memory slots,
> > but now I have to be aware of this bug.  That makes me wonder if we need
> > to expose a capability for the fix.  I could also just avoid the lazy
> > path if a device includes a ROM, but it's still difficult to know how
> > long such a workaround is required.  Thanks,
> > 
> I do not like the idea to have capability flags for emulator bugs. We
> have to many of those.  And It is hard to know at which point exactly
> this capability should be set.  Case in point: apply this patch series
> and the one it depends upon, but do not apply the last patch that actually
> fixes the bug you've found. Run your test. It will work. Also the test
> case will work on older kernels on AMD and modern Intel cpus with
> unrestricted guest capability.

I agree, capabilities are terrible, the only thing worse is having an
un-probe-able bug that could randomly bite us from an unknown option
rom.  The capability doesn't eliminate that entirely though, we could
still have an MMIO BAR that must be emulated because if it's size.  I'll
just have to avoid it as best as I can.  Thanks,

Alex
 
> > > Reported-by: Alex Williamson <alex.williamson@xxxxxxxxxx>
> > > Signed-off-by: Gleb Natapov <gleb@xxxxxxxxxx>
> > > ---
> > >  arch/x86/kvm/vmx.c |   75 ++++++++++++++++++++++++++++------------------------
> > >  1 file changed, 41 insertions(+), 34 deletions(-)
> > > 
> > > diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
> > > index a101dd4..ab5933f 100644
> > > --- a/arch/x86/kvm/vmx.c
> > > +++ b/arch/x86/kvm/vmx.c
> > > @@ -4230,28 +4230,9 @@ static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr)
> > >  	return 0;
> > >  }
> > >  
> > > -static int handle_rmode_exception(struct kvm_vcpu *vcpu,
> > > -				  int vec, u32 err_code)
> > > +static bool rmode_exception(struct kvm_vcpu *vcpu, int vec) 
> > >  {
> > > -	/*
> > > -	 * Instruction with address size override prefix opcode 0x67
> > > -	 * Cause the #SS fault with 0 error code in VM86 mode.
> > > -	 */
> > > -	if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0)
> > > -		if (emulate_instruction(vcpu, 0) == EMULATE_DONE)
> > > -			return 1;
> > > -	/*
> > > -	 * Forward all other exceptions that are valid in real mode.
> > > -	 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
> > > -	 *        the required debugging infrastructure rework.
> > > -	 */
> > >  	switch (vec) {
> > > -	case DB_VECTOR:
> > > -		if (vcpu->guest_debug &
> > > -		    (KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
> > > -			return 0;
> > > -		kvm_queue_exception(vcpu, vec);
> > > -		return 1;
> > >  	case BP_VECTOR:
> > >  		/*
> > >  		 * Update instruction length as we may reinject the exception
> > > @@ -4260,7 +4241,12 @@ static int handle_rmode_exception(struct kvm_vcpu *vcpu,
> > >  		to_vmx(vcpu)->vcpu.arch.event_exit_inst_len =
> > >  			vmcs_read32(VM_EXIT_INSTRUCTION_LEN);
> > >  		if (vcpu->guest_debug & KVM_GUESTDBG_USE_SW_BP)
> > > -			return 0;
> > > +			return false;
> > > +		/* fall through */
> > > +	case DB_VECTOR:
> > > +		if (vcpu->guest_debug &
> > > +			(KVM_GUESTDBG_SINGLESTEP | KVM_GUESTDBG_USE_HW_BP))
> > > +			return false;
> > >  		/* fall through */
> > >  	case DE_VECTOR:
> > >  	case OF_VECTOR:
> > > @@ -4270,10 +4256,37 @@ static int handle_rmode_exception(struct kvm_vcpu *vcpu,
> > >  	case SS_VECTOR:
> > >  	case GP_VECTOR:
> > >  	case MF_VECTOR:
> > > -		kvm_queue_exception(vcpu, vec);
> > > -		return 1;
> > > +		return true;
> > > +	break;
> > >  	}
> > > -	return 0;
> > > +	return false;
> > > +}
> > > +
> > > +static int handle_rmode_exception(struct kvm_vcpu *vcpu,
> > > +				  int vec, u32 err_code)
> > > +{
> > > +	/*
> > > +	 * Instruction with address size override prefix opcode 0x67
> > > +	 * Cause the #SS fault with 0 error code in VM86 mode.
> > > +	 */
> > > +	if (((vec == GP_VECTOR) || (vec == SS_VECTOR)) && err_code == 0) {
> > > +		if (emulate_instruction(vcpu, 0) == EMULATE_DONE) {
> > > +			if (vcpu->arch.halt_request) {
> > > +				vcpu->arch.halt_request = 0;
> > > +				return kvm_emulate_halt(vcpu);
> > > +			}
> > > +			return 1;
> > > +		}
> > > +		return 0;
> > > +	}
> > > +
> > > +	/*
> > > +	 * Forward all other exceptions that are valid in real mode.
> > > +	 * FIXME: Breaks guest debugging in real mode, needs to be fixed with
> > > +	 *        the required debugging infrastructure rework.
> > > +	 */
> > > +	kvm_queue_exception(vcpu, vec);
> > > +	return 1;
> > >  }
> > >  
> > >  /*
> > > @@ -4361,17 +4374,11 @@ static int handle_exception(struct kvm_vcpu *vcpu)
> > >  		return kvm_mmu_page_fault(vcpu, cr2, error_code, NULL, 0);
> > >  	}
> > >  
> > > -	if (vmx->rmode.vm86_active &&
> > > -	    handle_rmode_exception(vcpu, intr_info & INTR_INFO_VECTOR_MASK,
> > > -								error_code)) {
> > > -		if (vcpu->arch.halt_request) {
> > > -			vcpu->arch.halt_request = 0;
> > > -			return kvm_emulate_halt(vcpu);
> > > -		}
> > > -		return 1;
> > > -	}
> > > -
> > >  	ex_no = intr_info & INTR_INFO_VECTOR_MASK;
> > > +
> > > +	if (vmx->rmode.vm86_active && rmode_exception(vcpu, ex_no))
> > > +		return handle_rmode_exception(vcpu, ex_no, error_code);
> > > +
> > >  	switch (ex_no) {
> > >  	case DB_VECTOR:
> > >  		dr6 = vmcs_readl(EXIT_QUALIFICATION);
> > 
> > 
> 
> --
> 			Gleb.



--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [KVM ARM]     [KVM ia64]     [KVM ppc]     [Virtualization Tools]     [Spice Development]     [Libvirt]     [Libvirt Users]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite Questions]     [Linux Kernel]     [Linux SCSI]     [XFree86]
  Powered by Linux