All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Luis R. Rodriguez" <mcgrof@kernel.org>
To: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: David Vrabel <david.vrabel@citrix.com>,
	konrad.wilk@oracle.com, xen-devel@lists.xenproject.org,
	mcgrof@suse.com, linux-kernel@vger.kernel.org,
	roger.pau@citrix.com, x86@kernel.org, GLin@suse.coma,
	bblanco@plumgrid.com, pmonclus@plumgrid.com, bp@suse.de,
	hpa@zytor.com
Subject: Re: [PATCH v2 02/11] xen/hvmlite: Bootstrap HVMlite guest
Date: Wed, 3 Feb 2016 19:55:25 +0100	[thread overview]
Message-ID: <20160203185525.GV20964@wotan.suse.de> (raw)
In-Reply-To: <1454341137-14110-3-git-send-email-boris.ostrovsky@oracle.com>

I saw no considerations for the recommendations I had made last on your v1:

https://lkml.kernel.org/r/CAB=NE6XPA0YzbnM8=rspkKai6d3GkXXO00Gr0VZUYoyzNy6thw@mail.gmail.com

Of importance:

1) Using pv_info.paravirt_enabled = 1 is wrong unless you mean to say this
   is for legacy x86:

Your patch #3 keeps on setting pv_info.paravirt_enabled = 1 and as discussed
this is wrong. It will be renamed to x86_legacy_free() to align with what folks
are pushing for a BIOS flag to annotate if a system requires legacy x86 stuff.
This also means re-thinking all use cases and ensuring subarch is used then
instead when the goal was to avoid Xen from entering that code. Today Xen does
not use this but with my work it does and it helps clean and brush up a lot of
these checks with future prospects to even help unify entry points.

2) We should avoid more hypervisor type hacks, and just consider a new 
   hypervisor type to close the gap:

Using x86_legacy_free() and friends in a unified way for all systems means it
should only be used after init_hypervisor_platform() which is called during
setup_arch().  This means we have a semantic gap for checks on "are we on
hypervisor type and which one?". There are drivers now using these sorts of
checks as well, for instance snd_intel8x0_inside_vm(). We should avoid having
these hacks but that also means cleaning up a well define grammar here for what
we want.  I'm doing work to help with this by streamlining use of the subarch
type, that should help with PV code, but your use case seems different but yet
related, what I had suggested last was to consider we add a new hypervisor type
to the x86 boot protocol which would be available early on. This would have a
few purposes, one of which deserves its own section below on dead code:

    a) clean up hacks as with snd_intel8x0_inside_vm()
    b) enable a generic way and clean way to distinguish what hypervisor
       type you're on
    c) since it would be set early and if we can ensure its accessible
       early on boot it would mean avoiding having to add yet-another
       asm entry point for Linux, you could just use startup_32() and
       the hypervisor type could easily just have an early branch call
       and post branch call very similar to how we deal with the subarch
       currently on 32-bit. Your calls then just become early stubs and
       we'd have a solution for other PV types that want a similar solution
       later

3) Dead code concerns and unifying entry points:

Addressing the semantics for the gray areas I am highlighting are critical for
ensuring one does not run code or even exposes code as a available for the type
of run time system booted, some folks call this "dead code". This is critical
for Linux distributions which need to rely on the flexibility of having one
kernel work for different use cases. The resolution to this problem was pvops
but pvops has shortcoming for dead code, it didn't address the problem likely as
it was not considered serious. It also didn't address the issue of different
hypervisors wanting different entry points and that this fact alone also contributes
to more dead code concerns, case in point the regressions introduced by cr4 shadow
and the latest one is Kasan which to this day breaks Xen! Dead code topics are
not easy to grasp, its why I've started on my own crusade to talk to people and
write about it [0], and as of late propose some changes to avoid these in a
clean way without extending pvops. Adding yet another entry point will not help
here *specially* if we do not take semantics seriously over the different hypervisors
and hypervisor types.

[0] http://www.do-not-panic.com/2015/12/avoiding-dead-code-pvops-not-silver-bullet.html
[1] http://www.do-not-panic.com/2015/12/xen-and-x86-linux-zero-page.html

My recommendation then:

We add new hypervisor type to close the semantic gap for hypervisor types, and
much like subarch enable also a subarch_data to let you pass and use your
hvmlite_start_info. This would not only help with the semantics but also help
avoid yet-another-entry point and force us to provide a well define structure
for considering code that should not run by pegging it as required or supported
for different early x86 code stubs.

I had hinted perhaps we might be able to piggy back on top of the ELF loader
protocol as well, and since that's standard do wonder if that could instead
be extended to help unify a mechanism for different OSes instead of making
this just a solution for Linux.

Code review below.

On Mon, Feb 01, 2016 at 10:38:48AM -0500, Boris Ostrovsky wrote:
> Start HVMlite guest at XEN_ELFNOTE_PHYS32_ENTRY address. Setup hypercall
> page, initialize boot_params, enable early page tables.
> 
> Since this stub is executed before kernel entry point we cannot use
> variables in .bss which is cleared by kernel. We explicitly place
> variables that are initialized here into .data.
> 
> Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
> ---
> diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
> index 5774800..5f05fa2 100644
> --- a/arch/x86/xen/enlighten.c
> +++ b/arch/x86/xen/enlighten.c
> @@ -171,6 +172,17 @@ struct tls_descs {
>   */
>  static DEFINE_PER_CPU(struct tls_descs, shadow_tls_desc);
>  
> +#ifdef CONFIG_XEN_PVHVM
> +/*
> + * HVMlite variables. These need to live in data segment since they are
> + * initialized before startup_{32|64}, which clear .bss, are invoked.
> + */
> +int xen_hvmlite __attribute__((section(".data"))) = 0;
> +struct hvm_start_info hvmlite_start_info __attribute__((section(".data")));
> +uint hvmlite_start_info_sz = sizeof(hvmlite_start_info);
> +struct boot_params xen_hvmlite_boot_params __attribute__((section(".data")));
> +#endif
> +

The section annotations seems very special use case but likely worth documenting
and defining a new macro for in include/linux/compiler.h. This would make it
easier to change should we want to change the section used here later and
enable others to easily look for the reason for these annotations in a
single place.

  Luis

  parent reply	other threads:[~2016-02-03 18:55 UTC|newest]

Thread overview: 108+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-01 15:38 [PATCH v2 00/11] HVMlite domU support Boris Ostrovsky
2016-02-01 15:38 ` Boris Ostrovsky
2016-02-01 15:38 ` [PATCH v2 01/11] xen/hvmlite: Import hvmlite-related Xen public interfaces Boris Ostrovsky
2016-02-01 15:38   ` Boris Ostrovsky
2016-02-02 16:06   ` David Vrabel
2016-02-02 16:06   ` [Xen-devel] " David Vrabel
2016-02-01 15:38 ` [PATCH v2 02/11] xen/hvmlite: Bootstrap HVMlite guest Boris Ostrovsky
2016-02-01 15:38   ` Boris Ostrovsky
2016-02-02 16:39   ` David Vrabel
2016-02-02 16:39   ` [Xen-devel] " David Vrabel
2016-02-02 17:19     ` Boris Ostrovsky
2016-02-02 17:19     ` Boris Ostrovsky
2016-02-03 18:55   ` Luis R. Rodriguez
2016-02-03 18:55   ` Luis R. Rodriguez [this message]
2016-02-03 20:11     ` Boris Ostrovsky
2016-02-03 23:40       ` Luis R. Rodriguez
2016-02-03 23:40       ` Luis R. Rodriguez
2016-02-04 19:54         ` Boris Ostrovsky
2016-02-04 20:57           ` Luis R. Rodriguez
2016-02-04 22:28             ` Boris Ostrovsky
2016-02-04 22:28             ` Boris Ostrovsky
2016-02-04 20:57           ` Luis R. Rodriguez
2016-02-04 19:54         ` Boris Ostrovsky
2016-02-03 20:11     ` Boris Ostrovsky
2016-02-03 20:52     ` Andrew Cooper
2016-02-03 20:52     ` [Xen-devel] " Andrew Cooper
2016-02-03 23:59       ` Luis R. Rodriguez
2016-02-04  0:08         ` Luis R. Rodriguez
2016-02-04  0:08         ` [Xen-devel] " Luis R. Rodriguez
2016-02-04  0:51         ` Andrew Cooper
2016-02-04  0:51         ` [Xen-devel] " Andrew Cooper
2016-02-04 23:10           ` Luis R. Rodriguez
2016-04-05 22:02             ` Luis R. Rodriguez
2016-04-05 22:02             ` [Xen-devel] " Luis R. Rodriguez
2016-02-04 23:10           ` Luis R. Rodriguez
2016-02-03 23:59       ` Luis R. Rodriguez
2016-04-24 20:23   ` Borislav Petkov
2016-04-24 20:23   ` Borislav Petkov
2016-04-25 13:21     ` Boris Ostrovsky
2016-04-25 13:21     ` Boris Ostrovsky
2016-04-25 13:47       ` Borislav Petkov
2016-04-25 13:47       ` Borislav Petkov
2016-04-25 13:54         ` Boris Ostrovsky
2016-04-25 13:54         ` Boris Ostrovsky
2016-04-25 14:11           ` Borislav Petkov
2016-04-25 14:11           ` Borislav Petkov
2016-04-25 14:42             ` Boris Ostrovsky
2016-04-25 14:42             ` Boris Ostrovsky
2016-04-25 15:22               ` Borislav Petkov
2016-04-25 15:22               ` Borislav Petkov
2016-04-25 15:48                 ` Boris Ostrovsky
2016-04-25 15:48                   ` Boris Ostrovsky
2016-04-26 10:53                   ` Borislav Petkov
2016-04-26 10:53                   ` Borislav Petkov
2016-04-25 17:24     ` David Vrabel
2016-04-25 17:24     ` [Xen-devel] " David Vrabel
2016-02-01 15:38 ` [PATCH v2 03/11] xen/hvmlite: Initialize HVMlite kernel Boris Ostrovsky
2016-02-01 15:38   ` Boris Ostrovsky
2016-02-17 20:08   ` [Xen-devel] " Luis R. Rodriguez
2016-02-17 20:08     ` Luis R. Rodriguez
2016-02-01 15:38 ` [PATCH v2 04/11] xen/hvmlite: Allow HVMlite guests delay initializing grant table Boris Ostrovsky
2016-02-02 16:13   ` David Vrabel
2016-02-02 16:13   ` [Xen-devel] " David Vrabel
2016-02-02 16:49     ` Boris Ostrovsky
2016-02-02 16:49     ` Boris Ostrovsky
2016-02-03 18:59   ` Luis R. Rodriguez
2016-02-03 18:59   ` Luis R. Rodriguez
2016-02-01 15:38 ` Boris Ostrovsky
2016-02-01 15:38 ` [PATCH v2 05/11] xen/hvmlite: HVMlite guests always have PV devices Boris Ostrovsky
2016-02-01 15:38   ` Boris Ostrovsky
2016-02-01 15:38 ` [PATCH v2 06/11] xen/hvmlite: Prepare cpu_initialize_context() routine for HVMlite SMP Boris Ostrovsky
2016-02-01 15:38   ` Boris Ostrovsky
2016-02-02 16:16   ` David Vrabel
2016-02-02 16:16   ` [Xen-devel] " David Vrabel
2016-02-01 15:38 ` [PATCH v2 07/11] xen/hvmlite: Initialize context for secondary VCPUs Boris Ostrovsky
2016-02-01 15:38   ` Boris Ostrovsky
2016-02-02 16:21   ` David Vrabel
2016-02-02 16:21   ` [Xen-devel] " David Vrabel
2016-02-02 16:58     ` Boris Ostrovsky
2016-02-02 16:58     ` [Xen-devel] " Boris Ostrovsky
2016-02-04 10:07       ` David Vrabel
2016-02-04 10:07       ` David Vrabel
2016-02-04 12:58       ` Doug Goldstein
2016-02-04 12:58       ` [Xen-devel] " Doug Goldstein
2016-02-04 19:08         ` Boris Ostrovsky
2016-02-04 19:08         ` [Xen-devel] " Boris Ostrovsky
2016-02-01 15:38 ` [PATCH v2 08/11] xen/hvmlite: Extend APIC operations for HVMlite guests Boris Ostrovsky
2016-02-01 15:38   ` Boris Ostrovsky
2016-02-04 10:04   ` [Xen-devel] " David Vrabel
2016-02-04 12:14     ` Roger Pau Monné
2016-02-04 12:14     ` [Xen-devel] " Roger Pau Monné
2016-02-04 14:01       ` Boris Ostrovsky
2016-02-04 14:01       ` [Xen-devel] " Boris Ostrovsky
2016-02-04 10:04   ` David Vrabel
2016-02-01 15:38 ` [PATCH v2 09/11] xen/hvmlite: Use x86's default timer init " Boris Ostrovsky
2016-02-01 15:38   ` Boris Ostrovsky
2016-02-02 16:27   ` [Xen-devel] " David Vrabel
2016-02-02 17:01     ` Boris Ostrovsky
2016-02-02 17:01     ` [Xen-devel] " Boris Ostrovsky
2016-02-02 16:27   ` David Vrabel
2016-02-01 15:38 ` [PATCH v2 10/11] xen/hvmlite: Boot secondary CPUs Boris Ostrovsky
2016-02-01 15:38   ` Boris Ostrovsky
2016-02-04 10:38   ` David Vrabel
2016-02-04 10:38   ` [Xen-devel] " David Vrabel
2016-02-04 13:51     ` Boris Ostrovsky
2016-02-04 13:51     ` [Xen-devel] " Boris Ostrovsky
2016-02-01 15:38 ` [PATCH v2 11/11] xen/hvmlite: Enable CPU on-/offlining Boris Ostrovsky
2016-02-01 15:38   ` 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=20160203185525.GV20964@wotan.suse.de \
    --to=mcgrof@kernel.org \
    --cc=GLin@suse.coma \
    --cc=bblanco@plumgrid.com \
    --cc=boris.ostrovsky@oracle.com \
    --cc=bp@suse.de \
    --cc=david.vrabel@citrix.com \
    --cc=hpa@zytor.com \
    --cc=konrad.wilk@oracle.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mcgrof@suse.com \
    --cc=pmonclus@plumgrid.com \
    --cc=roger.pau@citrix.com \
    --cc=x86@kernel.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.