From: Avi Kivity <avi-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
To: Aurelien Jarno <aurelien-rXXEIb44qovR7s880joybQ@public.gmane.org>
Cc: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
Subject: Re: KVM: Fix the invlpg instruction emulation on AMD64
Date: Tue, 16 Oct 2007 12:12:18 +0200 [thread overview]
Message-ID: <47148E82.9090103@qumranet.com> (raw)
In-Reply-To: <47148867.9070600-rXXEIb44qovR7s880joybQ@public.gmane.org>
Aurelien Jarno wrote:
> Avi Kivity a écrit :
>
>> Aurelien Jarno wrote:
>>
>>> The patch below removes the check for c->modrm_reg == 7 to detect the
>>> invlpg instruction, as it was the case before before commit
>>> aa38840d3d2e0a804e628077df8d8879b496d741. This fixes the boot of FreeBSD
>>> on an AMD64 CPU.
>>>
>>> It also moves the assignation of c->src.bytes after the test as it is
>>> not needed for the invlpg instruction.
>>>
>>> Signed-off-by: Aurelien Jarno <aurelien-rXXEIb44qovR7s880joybQ@public.gmane.org>
>>>
>>> diff --git a/drivers/kvm/x86_emulate.c b/drivers/kvm/x86_emulate.c
>>> index fa33fcd..01aa952 100644
>>> --- a/drivers/kvm/x86_emulate.c
>>> +++ b/drivers/kvm/x86_emulate.c
>>> @@ -824,12 +824,10 @@ modrm_done:
>>> c->src.bytes = 4;
>>> goto srcmem_common;
>>> case SrcMem:
>>> - c->src.bytes = (c->d & ByteOp) ? 1 :
>>> - c->op_bytes;
>>> /* Don't fetch the address for invlpg: it could be unmapped. */
>>> - if (c->twobyte && c->b == 0x01
>>> - && c->modrm_reg == 7)
>>> + if (c->twobyte && c->b == 0x01)
>>> break;
>>> + c->src.bytes = (c->d & ByteOp) ? 1 : c->op_bytes;
>>>
>>>
>>>
>> I don't understand why this helps. All of the other instructions in
>> this group either have modrm_mod == 3 or do require evaluation of the
>>
> ^^^^^^^^^
> The test actually concerns modrm_reg and not modrm_mod. Maybe it is wrong?
>
>
I meant, the instructions all require modrm_mod == 3 which means they
reference registers, and not memory.
>> source. invlpg is the only one that doesn't.
>>
>
> I have marked the invlpg instruction the same way as it is done in
> kvm-37 to know what happens. I get either modrm_reg = 4 or = 6 when the
> invlpg instruction is executed, but never = 7.
>
>
Then it isn't the invlpg instruction at all. Rather smsw (modrm_reg ==
4) or lmsw ( == 6).
I'm confused.
(looks)
Okay. What we have here is total breakage when emulating an instruction
that uses a mod r/m encoding that actually refers to a register
(modrm_mod == 3). In x86_decode_insn() we set src.type as OP_MEM, and
in x86_emulate_insn() we happily fetch it even though it's a register,
generating a fault.
It usually doesn't bite us because these instructions are directly executed.
The fix is probably to switch to OP_REG if SrcMem and ModRM and
modrm_mod == 3 (similarly for DstMem).
--
error compiling committee.c: too many arguments to function
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
next prev parent reply other threads:[~2007-10-16 10:12 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-10-15 19:08 KVM: Fix the invlpg instruction emulation on AMD64 Aurelien Jarno
[not found] ` <20071015190823.GA11333-OqXK5JiLQY5aJl8KAwiEcA@public.gmane.org>
2007-10-16 9:27 ` Avi Kivity
[not found] ` <47148403.6010603-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2007-10-16 9:46 ` Aurelien Jarno
[not found] ` <47148867.9070600-rXXEIb44qovR7s880joybQ@public.gmane.org>
2007-10-16 10:12 ` Avi Kivity [this message]
[not found] ` <47148E82.9090103-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2007-10-17 13:50 ` Aurelien Jarno
[not found] ` <20071017135021.GA32185-OqXK5JiLQY5aJl8KAwiEcA@public.gmane.org>
2007-10-17 14:37 ` Avi Kivity
[not found] ` <47161E2B.1000006-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2007-10-17 15:31 ` Aurelien Jarno
[not found] ` <47162AD3.6070602-rXXEIb44qovR7s880joybQ@public.gmane.org>
2007-10-17 15:33 ` Aurelien Jarno
[not found] ` <47162B4F.3050002-rXXEIb44qovR7s880joybQ@public.gmane.org>
2007-10-17 15:40 ` Avi Kivity
2007-10-17 15:37 ` Avi Kivity
[not found] ` <47162C30.9040106-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
2007-10-17 15:43 ` Aurelien Jarno
[not found] ` <47162DA7.7060501-rXXEIb44qovR7s880joybQ@public.gmane.org>
2007-10-17 15:45 ` Aurelien Jarno
2007-10-17 15:46 ` Aurelien Jarno
2007-10-17 15:46 ` Aurelien Jarno
2007-10-17 15:48 ` Aurelien Jarno
[not found] ` <47162ED9.8040902-rXXEIb44qovR7s880joybQ@public.gmane.org>
2007-10-17 16:23 ` Aurelien Jarno
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=47148E82.9090103@qumranet.com \
--to=avi-atkuwr5tajbwk0htik3j/w@public.gmane.org \
--cc=aurelien-rXXEIb44qovR7s880joybQ@public.gmane.org \
--cc=kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
/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 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.