public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
From: Andre Przywara <andre.przywara@amd.com>
To: Gleb Natapov <gleb@redhat.com>
Cc: avi@redhat.com, mtosatti@redhat.com, kvm@vger.kernel.org
Subject: Re: [PATCH v2 05/30] KVM: Provide callback to get/set control registers in emulator ops.
Date: Mon, 15 Mar 2010 14:06:48 +0100	[thread overview]
Message-ID: <4B9E30E8.5000506@amd.com> (raw)
In-Reply-To: <1268583675-3101-6-git-send-email-gleb@redhat.com>

Gleb Natapov wrote:
> Use this callback instead of directly call kvm function. Also rename
> realmode_(set|get)_cr to emulator_(set|get)_cr since function has nothing
> to do with real mode.
Do you mind removing the static before emulator_{set,get}_cr and marking 
it EXPORT_SYMBOL? Then one could use it in vmx.c (and soon in svm.c ;-) 
while handling MOV-CR intercepts. Currently most of the code is actually 
duplicated.

Also, shouldn't mk_cr_64() not be called mask_cr_64() for better 
readability?

Regards,
Andre.

> Signed-off-by: Gleb Natapov <gleb@redhat.com>
> ---
>  arch/x86/include/asm/kvm_emulate.h |    3 +-
>  arch/x86/include/asm/kvm_host.h    |    2 -
>  arch/x86/kvm/emulate.c             |    7 +-
>  arch/x86/kvm/x86.c                 |  114 ++++++++++++++++++------------------
>  4 files changed, 63 insertions(+), 63 deletions(-)
> 
> diff --git a/arch/x86/include/asm/kvm_emulate.h b/arch/x86/include/asm/kvm_emulate.h
> index 2666d7a..0c5caa4 100644
> --- a/arch/x86/include/asm/kvm_emulate.h
> +++ b/arch/x86/include/asm/kvm_emulate.h
> @@ -108,7 +108,8 @@ struct x86_emulate_ops {
>  				const void *new,
>  				unsigned int bytes,
>  				struct kvm_vcpu *vcpu);
> -
> +	ulong (*get_cr)(int cr, struct kvm_vcpu *vcpu);
> +	void (*set_cr)(int cr, ulong val, struct kvm_vcpu *vcpu);
>  };
>  
>  /* Type, address-of, and value of an instruction's operand. */
> diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h
> index 3b178d8..e8e108a 100644
> --- a/arch/x86/include/asm/kvm_host.h
> +++ b/arch/x86/include/asm/kvm_host.h
> @@ -585,8 +585,6 @@ void realmode_lidt(struct kvm_vcpu *vcpu, u16 size, unsigned long address);
>  void realmode_lmsw(struct kvm_vcpu *vcpu, unsigned long msw,
>  		   unsigned long *rflags);
>  
> -unsigned long realmode_get_cr(struct kvm_vcpu *vcpu, int cr);
> -void realmode_set_cr(struct kvm_vcpu *vcpu, int cr, unsigned long value);
>  void kvm_enable_efer_bits(u64);
>  int kvm_get_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 *data);
>  int kvm_set_msr(struct kvm_vcpu *vcpu, u32 msr_index, u64 data);
> diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
> index 91450b5..5b060e4 100644
> --- a/arch/x86/kvm/emulate.c
> +++ b/arch/x86/kvm/emulate.c
> @@ -2483,7 +2483,7 @@ twobyte_insn:
>  			break;
>  		case 4: /* smsw */
>  			c->dst.bytes = 2;
> -			c->dst.val = realmode_get_cr(ctxt->vcpu, 0);
> +			c->dst.val = ops->get_cr(0, ctxt->vcpu);
>  			break;
>  		case 6: /* lmsw */
>  			realmode_lmsw(ctxt->vcpu, (u16)c->src.val,
> @@ -2519,8 +2519,7 @@ twobyte_insn:
>  	case 0x20: /* mov cr, reg */
>  		if (c->modrm_mod != 3)
>  			goto cannot_emulate;
> -		c->regs[c->modrm_rm] =
> -				realmode_get_cr(ctxt->vcpu, c->modrm_reg);
> +		c->regs[c->modrm_rm] = ops->get_cr(c->modrm_reg, ctxt->vcpu);
>  		c->dst.type = OP_NONE;	/* no writeback */
>  		break;
>  	case 0x21: /* mov from dr to reg */
> @@ -2534,7 +2533,7 @@ twobyte_insn:
>  	case 0x22: /* mov reg, cr */
>  		if (c->modrm_mod != 3)
>  			goto cannot_emulate;
> -		realmode_set_cr(ctxt->vcpu, c->modrm_reg, c->modrm_val);
> +		ops->set_cr(c->modrm_reg, c->modrm_val, ctxt->vcpu);
>  		c->dst.type = OP_NONE;
>  		break;
>  	case 0x23: /* mov from reg to dr */
> diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
> index a1e671a..bf714df 100644
> --- a/arch/x86/kvm/x86.c
> +++ b/arch/x86/kvm/x86.c
> @@ -3370,12 +3370,70 @@ void kvm_report_emulation_failure(struct kvm_vcpu *vcpu, const char *context)
>  }
>  EXPORT_SYMBOL_GPL(kvm_report_emulation_failure);
>  
> +static u64 mk_cr_64(u64 curr_cr, u32 new_val)
> +{
> +	return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
> +}
> +
> +static unsigned long emulator_get_cr(int cr, struct kvm_vcpu *vcpu)
> +{
> +	unsigned long value;
> +
> +	switch (cr) {
> +	case 0:
> +		value = kvm_read_cr0(vcpu);
> +		break;
> +	case 2:
> +		value = vcpu->arch.cr2;
> +		break;
> +	case 3:
> +		value = vcpu->arch.cr3;
> +		break;
> +	case 4:
> +		value = kvm_read_cr4(vcpu);
> +		break;
> +	case 8:
> +		value = kvm_get_cr8(vcpu);
> +		break;
> +	default:
> +		vcpu_printf(vcpu, "%s: unexpected cr %u\n", __func__, cr);
> +		return 0;
> +	}
> +
> +	return value;
> +}
> +
> +static void emulator_set_cr(int cr, unsigned long val, struct kvm_vcpu *vcpu)
> +{
> +	switch (cr) {
> +	case 0:
> +		kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
> +		break;
> +	case 2:
> +		vcpu->arch.cr2 = val;
> +		break;
> +	case 3:
> +		kvm_set_cr3(vcpu, val);
> +		break;
> +	case 4:
> +		kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
> +		break;
> +	case 8:
> +		kvm_set_cr8(vcpu, val & 0xfUL);
> +		break;
> +	default:
> +		vcpu_printf(vcpu, "%s: unexpected cr %u\n", __func__, cr);
> +	}
> +}
> +
>  static struct x86_emulate_ops emulate_ops = {
>  	.read_std            = kvm_read_guest_virt_system,
>  	.fetch               = kvm_fetch_guest_virt,
>  	.read_emulated       = emulator_read_emulated,
>  	.write_emulated      = emulator_write_emulated,
>  	.cmpxchg_emulated    = emulator_cmpxchg_emulated,
> +	.get_cr              = emulator_get_cr,
> +	.set_cr              = emulator_set_cr,
>  };
>  
>  static void cache_all_regs(struct kvm_vcpu *vcpu)
> @@ -3973,11 +4031,6 @@ int kvm_fix_hypercall(struct kvm_vcpu *vcpu)
>  	return emulator_write_emulated(rip, instruction, 3, vcpu);
>  }
>  
> -static u64 mk_cr_64(u64 curr_cr, u32 new_val)
> -{
> -	return (curr_cr & ~((1ULL << 32) - 1)) | new_val;
> -}
> -
>  void realmode_lgdt(struct kvm_vcpu *vcpu, u16 limit, unsigned long base)
>  {
>  	struct desc_ptr dt = { limit, base };
> @@ -3999,57 +4052,6 @@ void realmode_lmsw(struct kvm_vcpu *vcpu, unsigned long msw,
>  	*rflags = kvm_get_rflags(vcpu);
>  }
>  
> -unsigned long realmode_get_cr(struct kvm_vcpu *vcpu, int cr)
> -{
> -	unsigned long value;
> -
> -	switch (cr) {
> -	case 0:
> -		value = kvm_read_cr0(vcpu);
> -		break;
> -	case 2:
> -		value = vcpu->arch.cr2;
> -		break;
> -	case 3:
> -		value = vcpu->arch.cr3;
> -		break;
> -	case 4:
> -		value = kvm_read_cr4(vcpu);
> -		break;
> -	case 8:
> -		value = kvm_get_cr8(vcpu);
> -		break;
> -	default:
> -		vcpu_printf(vcpu, "%s: unexpected cr %u\n", __func__, cr);
> -		return 0;
> -	}
> -
> -	return value;
> -}
> -
> -void realmode_set_cr(struct kvm_vcpu *vcpu, int cr, unsigned long val)
> -{
> -	switch (cr) {
> -	case 0:
> -		kvm_set_cr0(vcpu, mk_cr_64(kvm_read_cr0(vcpu), val));
> -		break;
> -	case 2:
> -		vcpu->arch.cr2 = val;
> -		break;
> -	case 3:
> -		kvm_set_cr3(vcpu, val);
> -		break;
> -	case 4:
> -		kvm_set_cr4(vcpu, mk_cr_64(kvm_read_cr4(vcpu), val));
> -		break;
> -	case 8:
> -		kvm_set_cr8(vcpu, val & 0xfUL);
> -		break;
> -	default:
> -		vcpu_printf(vcpu, "%s: unexpected cr %u\n", __func__, cr);
> -	}
> -}
> -
>  static int move_to_next_stateful_cpuid_entry(struct kvm_vcpu *vcpu, int i)
>  {
>  	struct kvm_cpuid_entry2 *e = &vcpu->arch.cpuid_entries[i];


-- 
Andre Przywara
AMD-OSRC (Dresden)
Tel: x29712


  reply	other threads:[~2010-03-15 13:07 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-03-14 16:20 [PATCH v2 00/30] emulator cleanup Gleb Natapov
2010-03-14 16:20 ` [PATCH v2 01/30] KVM: x86 emulator: Fix DstAcc decoding Gleb Natapov
2010-03-14 16:20 ` [PATCH v2 02/30] KVM: x86 emulator: fix RCX access during rep emulation Gleb Natapov
2010-03-14 16:20 ` [PATCH v2 03/30] KVM: x86 emulator: check return value against correct define Gleb Natapov
2010-03-14 16:20 ` [PATCH v2 04/30] KVM: Remove pointer to rflags from realmode_set_cr parameters Gleb Natapov
2010-03-14 16:20 ` [PATCH v2 05/30] KVM: Provide callback to get/set control registers in emulator ops Gleb Natapov
2010-03-15 13:06   ` Andre Przywara [this message]
2010-03-15 13:11     ` Gleb Natapov
2010-03-15 13:13     ` Avi Kivity
2010-03-14 16:20 ` [PATCH v2 06/30] KVM: remove realmode_lmsw function Gleb Natapov
2010-03-15 11:02   ` Andre Przywara
2010-03-15 11:41     ` Avi Kivity
2010-03-14 16:20 ` [PATCH v2 07/30] KVM: Provide x86_emulate_ctxt callback to get current cpl Gleb Natapov
2010-03-15 13:16   ` Andre Przywara
2010-03-15 13:21     ` Gleb Natapov
2010-03-14 16:20 ` [PATCH v2 08/30] KVM: Provide current eip as part of emulator context Gleb Natapov
2010-03-14 16:20 ` [PATCH v2 09/30] KVM: x86 emulator: fix mov r/m, sreg emulation Gleb Natapov
2010-03-14 16:20 ` [PATCH v2 10/30] KVM: x86 emulator: fix 0f 01 /5 emulation Gleb Natapov
2010-03-14 16:20 ` [PATCH v2 11/30] KVM: x86 emulator: 0f (20|21|22|23) ignore mod bits Gleb Natapov
2010-03-14 16:20 ` [PATCH v2 12/30] KVM: x86 emulator: inject #UD on access to non-existing CR Gleb Natapov
2010-03-14 16:20 ` [PATCH v2 13/30] KVM: x86 emulator: fix mov dr to inject #UD when needed Gleb Natapov
2010-03-14 16:20 ` [PATCH v2 14/30] KVM: x86 emulator: fix return values of syscall/sysenter/sysexit emulations Gleb Natapov
2010-03-14 16:21 ` [PATCH v2 15/30] KVM: x86 emulator: do not call writeback if msr access fails Gleb Natapov
2010-03-14 16:21 ` [PATCH v2 16/30] KVM: x86 emulator: If LOCK prefix is used dest arg should be memory Gleb Natapov
2010-03-14 16:21 ` [PATCH v2 17/30] KVM: x86 emulator: cleanup grp3 return value Gleb Natapov
2010-03-14 16:21 ` [PATCH v2 18/30] KVM: x86 emulator: Provide more callbacks for x86 emulator Gleb Natapov
2010-03-14 16:21 ` [PATCH v2 19/30] KVM: x86 emulator: Emulate task switch in emulator.c Gleb Natapov
2010-03-14 16:21 ` [PATCH v2 20/30] KVM: x86 emulator: Use load_segment_descriptor() instead of kvm_load_segment_descriptor() Gleb Natapov
2010-03-14 16:21 ` [PATCH v2 21/30] KVM: Use task switch from emulator.c Gleb Natapov
2010-03-14 16:21 ` [PATCH v2 22/30] KVM: x86 emulator: populate OP_MEM operand during decoding Gleb Natapov
2010-03-14 16:21 ` [PATCH v2 23/30] KVM: x86 emulator: add decoding of X,Y parameters from Intel SDM Gleb Natapov
2010-03-14 16:21 ` [PATCH v2 24/30] KVM: x86 emulator: during rep emulation decrement ECX only if emulation succeeded Gleb Natapov
2010-03-14 16:42   ` Avi Kivity
2010-03-14 16:21 ` [PATCH v2 25/30] KVM: x86 emulator: fix in/out emulation Gleb Natapov
2010-03-14 16:54   ` Avi Kivity
2010-03-14 17:35     ` Gleb Natapov
2010-03-15  7:41       ` Avi Kivity
2010-03-15  7:44         ` Gleb Natapov
2010-03-14 16:21 ` [PATCH v2 26/30] KVM: x86 emulator: Move string pio emulation into emulator.c Gleb Natapov
2010-03-14 16:21 ` [PATCH v2 27/30] KVM: x86 emulator: remove saved_eip Gleb Natapov
2010-03-14 16:21 ` [PATCH v2 28/30] KVM: x86 emulator: restart string instruction without going back to a guest Gleb Natapov
2010-03-14 16:56   ` Avi Kivity
2010-03-14 18:06     ` Gleb Natapov
2010-03-15  7:44       ` Avi Kivity
2010-03-15  9:44         ` Gleb Natapov
2010-03-15  9:56           ` Avi Kivity
2010-03-15 10:07             ` Gleb Natapov
2010-03-15 10:15               ` Avi Kivity
2010-03-15 10:19                 ` Gleb Natapov
2010-03-15 10:24                   ` Avi Kivity
2010-03-15 10:33                     ` Gleb Natapov
2010-03-14 16:21 ` [PATCH v2 29/30] KVM: x86 emulator: introduce pio in string read ahead Gleb Natapov
2010-03-14 16:21 ` [PATCH v2 30/30] KVM: small kvm_arch_vcpu_ioctl_run() cleanup Gleb Natapov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4B9E30E8.5000506@amd.com \
    --to=andre.przywara@amd.com \
    --cc=avi@redhat.com \
    --cc=gleb@redhat.com \
    --cc=kvm@vger.kernel.org \
    --cc=mtosatti@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox