From: Gleb Natapov <gleb@redhat.com>
To: Orit Wasserman <oritw@il.ibm.com>
Cc: Abel Gordon <ABELG@il.ibm.com>,
aliguori@us.ibm.com, Ben-Ami Yassour1 <BENAMI@il.ibm.com>,
kvm@vger.kernel.org, mdday@us.ibm.com,
Muli Ben-Yehuda <MULI@il.ibm.com>
Subject: Re: [PATCH 5/5] Nested VMX patch 5 implements vmlaunch and vmresume
Date: Sun, 25 Oct 2009 11:44:31 +0200 [thread overview]
Message-ID: <20091025094431.GV29477@redhat.com> (raw)
In-Reply-To: <OFE02A3EB5.0BD4D439-ONC2257657.00548F50-C2257657.0056A246@il.ibm.com>
On Thu, Oct 22, 2009 at 05:46:16PM +0200, Orit Wasserman wrote:
>
>
> Gleb Natapov <gleb@redhat.com> wrote on 22/10/2009 11:04:58:
>
> > From:
> >
> > Gleb Natapov <gleb@redhat.com>
> >
> > To:
> >
> > Orit Wasserman/Haifa/IBM@IBMIL
> >
> > Cc:
> >
> > Abel Gordon/Haifa/IBM@IBMIL, aliguori@us.ibm.com, Ben-Ami Yassour1/
> > Haifa/IBM@IBMIL, kvm@vger.kernel.org, mdday@us.ibm.com, Muli Ben-
> > Yehuda/Haifa/IBM@IBMIL
> >
> > Date:
> >
> > 22/10/2009 11:05
> >
> > Subject:
> >
> > Re: [PATCH 5/5] Nested VMX patch 5 implements vmlaunch and vmresume
> >
> > On Wed, Oct 21, 2009 at 04:43:44PM +0200, Orit Wasserman wrote:
> > > > > @@ -4641,10 +4955,13 @@ static void vmx_complete_interrupts(struct
> > > > vcpu_vmx *vmx)
> > > > > int type;
> > > > > bool idtv_info_valid;
> > > > >
> > > > > - exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
> > > > > -
> > > > > vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
> > > > >
> > > > > + if (vmx->nested.nested_mode)
> > > > > + return;
> > > > > +
> > > > Why return here? What the function does that should not be done in
> > > > nested mode?
> > > In nested mode L0 injects an interrupt to L2 only in one scenario,
> > > if there is an IDT_VALID event and L0 decides to run L2 again and not
> to
> > > switch back to L1.
> > > In all other cases the injection is handled by L1.
> > This is exactly the kind of scenario that is handled by
> > vmx_complete_interrupts(). (vmx|svm)_complete_interrups() store
> > pending event in arch agnostic way and re-injection is handled by
> > x86.c You bypass this logic by inserting return here and introducing
> > nested_handle_valid_idt() function below.
> The only location we can truly know if we are switching to L1 is in
> vmx_vcpu_run
> because enable_irq_window (that is called after handling the exit) can
> decide to
> switch to L1 because of an interrupt.
enable_irq_window() will be called after L2 VMCS will be setup for event
re-injection by previous call to inject_pending_event(). As far as I
can see this should work for interrupt injection. For exception we
should probably require l2 guest to re execute faulted instruction for
now like svm does.
> In order to simplify our code it was simpler to bypass
> vmx_complete_interrupts when it is called (after
> running L2) and to add nested_handle_valid_idt just before running L2.
> > > >
> > > > > + exit_intr_info = vmcs_read32(VM_EXIT_INTR_INFO);
> > > > > +
> > > > > /* Handle machine checks before interrupts are enabled */
> > > > > if ((vmx->exit_reason == EXIT_REASON_MCE_DURING_VMENTRY)
> > > > > || (vmx->exit_reason == EXIT_REASON_EXCEPTION_NMI
> > > > > @@ -4747,6 +5064,60 @@ static void fixup_rmode_irq(struct vcpu_vmx
> > > *vmx)
> > > > > | vmx->rmode.irq.vector;
> > > > > }
> > > > >
> > > > > +static int nested_handle_valid_idt(struct kvm_vcpu *vcpu)
> > > > > +{
> > > > It seems by this function you are trying to bypass general event
> > > > reinjection logic. Why?
> > > See above.
> > The logic implemented by this function is handled in x86.c in arch
> > agnostic way. Is there something wrong with this?
> See my comment before
Sometimes it is wrong to reinject events from L0 to L2 directly. If L2
was not able to handle event because its IDT is not mapped by L1 shadow
page table we should generate PF vmexit with valid idt vectoring info to
L1 and let L1 handle event reinjection.
--
Gleb.
next prev parent reply other threads:[~2009-10-25 9:44 UTC|newest]
Thread overview: 35+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-10-15 14:41 Nested VMX support v3 oritw
2009-10-15 14:41 ` [PATCH 1/5] Nested VMX patch 1 implements vmon and vmoff oritw
2009-10-15 14:41 ` [PATCH 2/5] Nested VMX patch 2 implements vmclear oritw
2009-10-15 14:41 ` [PATCH 3/5] Nested VMX patch 3 implements vmptrld and vmptrst oritw
2009-10-15 14:41 ` [PATCH 4/5] Nested VMX patch 4 implements vmread and vmwrite oritw
2009-10-15 14:41 ` [PATCH 5/5] Nested VMX patch 5 implements vmlaunch and vmresume oritw
2009-10-19 17:29 ` Gleb Natapov
2009-10-21 14:43 ` Orit Wasserman
2009-10-22 9:04 ` Gleb Natapov
2009-10-22 15:46 ` Orit Wasserman
2009-10-25 9:44 ` Gleb Natapov [this message]
2009-10-28 16:23 ` Orit Wasserman
2009-10-29 17:31 ` Gleb Natapov
2009-11-09 9:33 ` Abel Gordon
2009-10-22 10:55 ` Avi Kivity
2009-10-20 4:56 ` Avi Kivity
2009-10-22 12:56 ` Orit Wasserman
2009-10-19 13:17 ` [PATCH 4/5] Nested VMX patch 4 implements vmread and vmwrite Gleb Natapov
2009-10-21 13:32 ` Orit Wasserman
2009-10-20 4:44 ` Avi Kivity
2009-10-22 12:50 ` Orit Wasserman
2009-10-19 11:17 ` [PATCH 3/5] Nested VMX patch 3 implements vmptrld and vmptrst Gleb Natapov
2009-10-21 13:27 ` Orit Wasserman
2009-10-19 12:59 ` Gleb Natapov
2009-10-21 13:28 ` Orit Wasserman
2009-10-20 4:24 ` Avi Kivity
2009-10-22 12:48 ` Orit Wasserman
2009-10-20 4:06 ` [PATCH 2/5] Nested VMX patch 2 implements vmclear Avi Kivity
2009-10-21 14:56 ` Orit Wasserman
2009-10-20 4:00 ` [PATCH 1/5] Nested VMX patch 1 implements vmon and vmoff Avi Kivity
2009-10-22 12:41 ` Orit Wasserman
2009-10-19 10:47 ` Nested VMX support v3 Gleb Natapov
2009-10-20 3:30 ` Avi Kivity
2009-10-21 14:50 ` Orit Wasserman
-- strict thread matches above, loose matches on Subject: below --
2009-09-30 13:32 Nested VMX support v2 oritw
2009-09-30 13:32 ` [PATCH 1/5] Nested VMX patch 1 implements vmon and vmoff oritw
2009-09-30 13:32 ` [PATCH 2/5] Nested VMX patch 2 implements vmclear oritw
2009-09-30 13:32 ` [PATCH 3/5] Nested VMX patch 3 implements vmptrld and vmptrst oritw
2009-09-30 13:32 ` [PATCH 4/5] Nested VMX patch 4 implements vmread and vmwrite oritw
2009-09-30 13:32 ` [PATCH 5/5] Nested VMX patch 5 implements vmlaunch and vmresume oritw
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=20091025094431.GV29477@redhat.com \
--to=gleb@redhat.com \
--cc=ABELG@il.ibm.com \
--cc=BENAMI@il.ibm.com \
--cc=MULI@il.ibm.com \
--cc=aliguori@us.ibm.com \
--cc=kvm@vger.kernel.org \
--cc=mdday@us.ibm.com \
--cc=oritw@il.ibm.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 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.