From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: david.vrabel@citrix.com, roger.pau@citrix.com,
elena.ufimtseva@oracle.com, stefano.stabellini@eu.citrix.com,
tim@xen.org, jbeulich@suse.com, andrew.cooper3@citrix.com,
ian.campbell@citrix.com, ian.jackson@eu.citrix.com,
xen-devel@lists.xenproject.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 4/6] xen/x86/pvh: Set up descriptors for 32-bit PVH guests
Date: Fri, 17 Jul 2015 12:43:31 -0400 [thread overview]
Message-ID: <20150717164331.GA19827@l.oracle.com> (raw)
In-Reply-To: <55A920FD.6050101@oracle.com>
On Fri, Jul 17, 2015 at 11:36:29AM -0400, Boris Ostrovsky wrote:
> On 07/17/2015 11:21 AM, Konrad Rzeszutek Wilk wrote:
> >On Thu, Jul 16, 2015 at 05:43:39PM -0400, Boris Ostrovsky wrote:
> >>Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
> >>---
> >>Changes in v2:
> >>* Set segment selectors using loadsegment() instead of assembly
> >>
> >> arch/x86/xen/enlighten.c | 15 ++++++++++-----
> >> 1 file changed, 10 insertions(+), 5 deletions(-)
> >>
> >>diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
> >>index f8dc398..d665b1d 100644
> >>--- a/arch/x86/xen/enlighten.c
> >>+++ b/arch/x86/xen/enlighten.c
> >>@@ -1362,12 +1362,12 @@ static void __init xen_boot_params_init_edd(void)
> >> static void __ref xen_setup_gdt(int cpu)
> >> {
> >> if (xen_feature(XENFEAT_auto_translated_physmap)) {
> >>-#ifdef CONFIG_X86_64
> >>- unsigned long dummy;
> >>+ unsigned long __attribute__((unused)) dummy;
> >>- load_percpu_segment(cpu); /* We need to access per-cpu area */
> >You removed that - where are we going to do that? As the
> >'switch_to_new_gdt' uses the per-cpu GDT table.
>
> load_percpu_segment() is part of switch_to_new_gdt(), so I thought there is
> no need to call it here.
>
> But you are right --- switch_to_new_gdt() starts with get_cpu_gdt_table()
> which accesses per-CPU area. How did this manage to work then?
I was surprised as well - I was expecting your patch to have blow up.
Unless we are doing something fancy for CPU0 and for the other CPUs we
already have the per-cpu segment setup during bootup (copied from BSP)?
>
> >
> >>+ setup_stack_canary_segment(cpu);
> >As this one too ?
>
> This one I added. On 64-bit it's a nop so we never had problems without
> having this call. On 32-bit, if CC_STACKPROTECTOR is set, we will fail
> without setting this up.
Right, but it uses the per-cpu area so I would have expected it to crash.
(since you did not do load_percpu_segment).But maybe it did load, but some
unknown area ? :-)
>
> -boris
>
> >> switch_to_new_gdt(cpu); /* GDT and GS set */
> >>+#ifdef CONFIG_X86_64
> >> /* We are switching of the Xen provided GDT to our HVM mode
> >> * GDT. The new GDT has __KERNEL_CS with CS.L = 1
> >> * and we are jumping to reload it.
> >>@@ -1392,8 +1392,13 @@ static void __ref xen_setup_gdt(int cpu)
> >> loadsegment(ds, 0);
> >> loadsegment(fs, 0);
> >> #else
> >>- /* PVH: TODO Implement. */
> >>- BUG();
> >>+ asm volatile ("ljmp %0,$1f\n"
> >>+ "1:\n"
> >>+ :: "i" (__KERNEL_CS));
> >>+
> >>+ loadsegment(ss, __KERNEL_DS);
> >>+ loadsegment(ds, __USER_DS);
> >>+ loadsegment(es, __USER_DS);
> >> #endif
> >> return; /* PVH does not need any PV GDT ops. */
> >> }
> >>--
> >>1.8.1.4
> >>
>
next prev parent reply other threads:[~2015-07-17 16:43 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-16 21:43 [PATCH v2 0/6] 32-bit PVH domU support Boris Ostrovsky
2015-07-16 21:43 ` Boris Ostrovsky
2015-07-16 21:43 ` [PATCH v2 1/6] xen/x86/pvh: Save %rbx in xen_pvh_early_cpu_init() Boris Ostrovsky
2015-07-16 21:43 ` Boris Ostrovsky
2015-07-17 15:09 ` Konrad Rzeszutek Wilk
2015-07-17 15:09 ` Konrad Rzeszutek Wilk
2015-07-16 21:43 ` [PATCH v2 2/6] xen/x86: Remove unnecessary memset() call Boris Ostrovsky
2015-07-16 21:43 ` Boris Ostrovsky
2015-07-16 21:43 ` [PATCH v2 3/6] xen/x86/pvh: Properly set page tables for 32-bit PVH guests Boris Ostrovsky
2015-07-16 21:43 ` Boris Ostrovsky
2015-07-16 21:43 ` [PATCH v2 4/6] xen/x86/pvh: Set up descriptors " Boris Ostrovsky
2015-07-16 21:43 ` Boris Ostrovsky
2015-07-17 15:21 ` Konrad Rzeszutek Wilk
2015-07-17 15:21 ` Konrad Rzeszutek Wilk
2015-07-17 15:36 ` Boris Ostrovsky
2015-07-17 16:43 ` Konrad Rzeszutek Wilk [this message]
2015-07-17 17:52 ` Boris Ostrovsky
2015-07-21 15:32 ` Boris Ostrovsky
2015-07-21 15:32 ` Boris Ostrovsky
2015-07-17 17:52 ` Boris Ostrovsky
2015-07-17 16:43 ` Konrad Rzeszutek Wilk
2015-07-17 15:36 ` Boris Ostrovsky
2015-07-16 21:43 ` [PATCH v2 5/6] xen/x86/pvh: Add 32-bit PVH initialization code Boris Ostrovsky
2015-07-16 21:43 ` Boris Ostrovsky
2015-07-17 15:21 ` Konrad Rzeszutek Wilk
2015-07-17 15:21 ` Konrad Rzeszutek Wilk
2015-07-16 21:43 ` [PATCH v2 6/6] xen/x86/pvh: Allow building 32-bit PVH guests Boris Ostrovsky
2015-07-16 21:43 ` Boris Ostrovsky
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=20150717164331.GA19827@l.oracle.com \
--to=konrad.wilk@oracle.com \
--cc=andrew.cooper3@citrix.com \
--cc=boris.ostrovsky@oracle.com \
--cc=david.vrabel@citrix.com \
--cc=elena.ufimtseva@oracle.com \
--cc=ian.campbell@citrix.com \
--cc=ian.jackson@eu.citrix.com \
--cc=jbeulich@suse.com \
--cc=linux-kernel@vger.kernel.org \
--cc=roger.pau@citrix.com \
--cc=stefano.stabellini@eu.citrix.com \
--cc=tim@xen.org \
--cc=xen-devel@lists.xenproject.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.