xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
From: Tamas K Lengyel <tamas@tklengyel.com>
To: Andrew Cooper <andrew.cooper3@citrix.com>
Cc: JGross@suse.com, "Kevin Tian" <kevin.tian@intel.com>,
	"Stefano Stabellini" <sstabellini@kernel.org>,
	"Wei Liu" <wei.liu2@citrix.com>,
	"Jun Nakajima" <jun.nakajima@intel.com>,
	"Razvan Cojocaru" <rcojocaru@bitdefender.com>,
	"George Dunlap" <george.dunlap@eu.citrix.com>,
	"Tim Deegan" <tim@xen.org>, Xen-devel <xen-devel@lists.xen.org>,
	"Julien Grall" <julien.grall@arm.com>,
	"Paul Durrant" <paul.durrant@citrix.com>,
	"Jan Beulich" <JBeulich@suse.com>,
	"Boris Ostrovsky" <boris.ostrovsky@oracle.com>,
	"Brian Woods" <brian.woods@amd.com>,
	"Suravee Suthikulpanit" <suravee.suthikulpanit@amd.com>,
	"Roger Pau Monné" <roger.pau@citrix.com>
Subject: Re: [PATCH 00/14] XSA-277 followup
Date: Wed, 21 Nov 2018 15:42:37 -0700	[thread overview]
Message-ID: <CABfawhkugQ4yMB9oiD3v_zfEh6zZJo66M9ajWebp3C8wN3+NNw@mail.gmail.com> (raw)
In-Reply-To: <2fa9131b-d3aa-a4d4-d9a9-89c918edbd5a@citrix.com>

On Wed, Nov 21, 2018 at 2:22 PM Andrew Cooper <andrew.cooper3@citrix.com> wrote:
>
> On 21/11/2018 17:19, Tamas K Lengyel wrote:
> > On Wed, Nov 21, 2018 at 6:21 AM Andrew Cooper <andrew.cooper3@citrix.com> wrote:
> >> This covers various fixes related to XSA-277 which weren't in security
> >> supported areas, and associated cleanup.
> >>
> >> The biggest issue noticed here is that altp2m's use of hardware #VE support
> >> will cause general memory corruption if the guest ever balloons out the VEINFO
> >> page.  The only safe way I think of doing this is for Xen to alloc annonymous
> >> domheap pages for the VEINFO, and for the guest to map them in a similar way
> >> to the shared info and grant table frames.
> > Since ballooning presents all sorts of problems when used with altp2m
> > I would suggest just making the two explicitly incompatible during
> > domain creation. Beside the info page being possibly ballooned out the
> > other problem is when ballooning causes altp2m views to be reset
> > completely, removing mem_access permissions and remapped entries.
>
> If only it were that simple.
>
> For reasons of history and/or poor terminology, "ballooning" means two
> things.
>
> 1) The act of the Toolstack interacting with the balloon driver inside a
> VM, to change the current amount of RAM used by the guest.
>
> 2) XENMEM_{increase,decrease}_reservation which are the underlying
> hypercalls used by guest kernels.
>
> For the toolstack interaction side of things, this is a mess.  There is
> a single xenstore key, and a blind assumption that all guests know what
> changes to memory/target mean.  There is no negotiation of whether a
> balloon driver is running in the guest, and if one is running, there is
> no ability for the balloon driver to nack a request it can't fulfil.
> The sole feedback mechanism which exists is the toolstack looking to see
> whether the domain has changed the amount of RAM it is using.
>
> PV guests are fairly "special" by any reasonable judgement.  They are
> fully aware of their memory layout , an of changes to it across
> migrate.  "Ballooning" was implemented at a time when most computers had
> MB of RAM rather than GB, and the knowledge a PV guest had was "I've got
> a random set of MFNs which aren't currently used by anything important,
> and can be handed back to Xen on request.  Xen guests also have shared
> memory constructs such as the shared_info page, and grant tables.  A PV
> guest gets access to these by programming the frame straight into to the
> pagetables, and Xen's permission model DTRT.
>
> Then HVM guests came along.  For reasons of trying to get things
> working, they inherited a lot of same interfaces as PV guests, despite
> the fundamental differences in the way they work.  One of the biggest
> differences was the fact that HVM guests have their gfn=>mfn space
> managed by Xen rather than themselves, and in particular, you can no
> longer map shared memory structures in the PV way.
>
> For a shared memory structure to be usable, a mapping has to be put into
> the guests P2M, so the guest can create a regular pagetable entry
> pointing at it.  For reasons which are beyond me, Xen doesn't have any
> knowledge of the guests physical layout, and guests arbitrary mutative
> capabilities on their GFN space, but with a hypercall set that has
> properties such as a return value of "how many items of this batch
> succeeded", and replacement properties rather than error properties when
> trying to modify a GFN which already has something in it.
>
> Whatever the reasons, it is commonplace for guests to
> decrease_reservation out some RAM to create holes for the shared memory
> mappings, because it is the only safe way to avoid irreparably
> clobbering something else (especially if you're HVMLoader and in charge
> of trying to construct the E820/ACPI tables).
>
> tl;dr If you actually prohibit XENMEM_decrease_reservation, HVM guests
> don't boot, and that's long before a balloon driver gets up and running.

Thanks for the detailed write-up. This explains why I could never get
altp2m working from domain start, no matter where in the startup logic
of the toolstack I placed the altp2m activation (had to resort to
activating altp2m settings only after I detect the guest OS is fully
booted and things have settled down).

>
> Now, all of that said, there are a number of very good reasons why a
> host administrator might want to prohibit the guest from having
> arbitrary mutative capabilities, chief among them being to prevent the
> guest from shattering host superpagpes, but also due to
> incompatibilities with some of our more interesting features.
>
> The only way I see of fixing this to teach Xen about the guests gfn
> layout (as chosen by the domainbuilder), and include within that "space
> which definitely doesn't have anything in, and is safe to put shared
> mappings into".

Yes, that would be great - especially if this was something we could
query from the toolstack too. Right now we resorted to parsing the
E820 map as it shows up in the domain creation logs and whatever
xc_domain_maximum_gpfn returns to get some idea of what memory layout
looks like in the guest and where the holes are, but there is still a
lot of guessing involved.

> Beyond that, we'll need some administrator level
> knowledge of which guests are safe to have XENMEM_decrease_reservation
> prohibited, or some interlocks inside Xen to disable unsafe features as
> soon as we spot a guest which isn't playing by the new rules.
>
> This probably needs some more more thought, but fundamentally, we have
> to undo more than a decades worth of "doing it wrong" which has
> percolated through the Xen ecosystem.
>
> I'm half tempted to put together a big hammer bit in the domain creation
> path which turns off everything like this (and other areas where we know
> Xen is lacking, such as default readability/write-ignore of all MSRs),
> after which we'll have a rather a more concrete baseline to discuss what
> the guests are actually doing, and how to get them back into a working
> state while maintaining architectural.
>

+1, bringing some sanity to this (and documentation) would be of great
value! I would be very interested in this line of work and happy to
help however I can.

Cheers,
Tamas

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

  reply	other threads:[~2018-11-21 22:42 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-21 13:21 [PATCH 00/14] XSA-277 followup Andrew Cooper
2018-11-21 13:21 ` [PATCH 01/14] x86/soft-reset: Drop gfn reference after calling get_gfn_query() Andrew Cooper
2018-11-22 14:45   ` Jan Beulich
2018-11-21 13:21 ` [PATCH 02/14] x86/mem-sharing: Don't leave the altp2m lock held when nominating a page Andrew Cooper
2018-11-21 16:56   ` Tamas K Lengyel
2018-11-22 14:46   ` Jan Beulich
2018-11-21 13:21 ` [PATCH 03/14] AMD/IOMMU: Fix multiple reference counting errors Andrew Cooper
2018-11-22 14:51   ` Jan Beulich
2018-11-22 17:46     ` Andrew Cooper
2018-11-23  8:23       ` Jan Beulich
2018-11-23 16:03         ` Andrew Cooper
2018-11-26  9:05           ` Jan Beulich
2019-01-31 15:59   ` Woods, Brian
2018-11-21 13:21 ` [PATCH 04/14] x86/p2m: Fix locking in p2m_altp2m_lazy_copy() Andrew Cooper
2018-11-21 13:59   ` Razvan Cojocaru
2018-11-22 15:01   ` Jan Beulich
2018-12-05 19:53     ` Andrew Cooper
2018-11-21 13:21 ` [PATCH 05/14] x86/p2m: Don't overwrite p2m_altp2m_lazy_copy()'s callers p2m pointer Andrew Cooper
2018-11-21 14:07   ` Razvan Cojocaru
2018-11-22 15:03   ` Jan Beulich
2018-11-21 13:21 ` [PATCH 06/14] x86/hvm: Make the altp2m locking easier to follow Andrew Cooper
2018-11-21 14:43   ` Razvan Cojocaru
2018-11-22 15:08   ` Jan Beulich
2018-11-21 13:21 ` [PATCH 07/14] x86/p2m: Coding style cleanup Andrew Cooper
2018-11-22 15:12   ` Jan Beulich
2018-11-21 13:21 ` [PATCH 08/14] xen/memory: Drop ARM put_gfn() stub Andrew Cooper
2018-11-22 14:07   ` Julien Grall
2018-11-22 15:15   ` Jan Beulich
2018-11-21 13:21 ` [PATCH 09/14] x86/p2m: Switch the two_gfns infrastructure to using gfn_t Andrew Cooper
2018-11-21 17:06   ` Tamas K Lengyel
2018-11-22 15:17   ` Jan Beulich
2018-11-21 13:21 ` [PATCH 10/14] x86/mm: Switch {get, put}_gfn() " Andrew Cooper
2018-11-21 14:48   ` Razvan Cojocaru
2018-11-21 16:12   ` Paul Durrant
2018-11-22 15:34   ` Jan Beulich
2018-11-23  2:58   ` Tian, Kevin
2018-11-26 15:51   ` Woods, Brian
2018-11-21 13:21 ` [PATCH 11/14] xen/mm: Switch mfn_to_virt()/virt_to_mfn() to using mfn_t Andrew Cooper
2018-11-22 14:32   ` Julien Grall
2018-11-22 15:44   ` Jan Beulich
2018-11-22 15:49     ` Andrew Cooper
2018-11-21 13:21 ` [PATCH 12/14] xen/gnttab: Drop gnttab_create_{shared, status}_page() Andrew Cooper
2018-11-22 14:35   ` Julien Grall
2018-11-22 15:47   ` Jan Beulich
2018-11-21 13:21 ` [PATCH 13/14] xen/gnttab: Simplify gnttab_map_frame() Andrew Cooper
2018-11-22 14:36   ` Julien Grall
2018-11-22 15:48   ` Jan Beulich
2018-11-21 13:21 ` [PATCH 14/14] xen/gnttab: Minor improvements to arch header files Andrew Cooper
2018-11-22 15:51   ` Jan Beulich
2018-11-22 17:56   ` Andrew Cooper
2019-01-30 20:04     ` Julien Grall
2019-01-30 20:05       ` Andrew Cooper
2018-11-21 17:19 ` [PATCH 00/14] XSA-277 followup Tamas K Lengyel
2018-11-21 21:22   ` Andrew Cooper
2018-11-21 22:42     ` Tamas K Lengyel [this message]
2018-11-22  0:08       ` Andrew Cooper
2018-11-26 17:48         ` Tamas K Lengyel
2018-11-23 15:46     ` Roger Pau Monné
2019-01-30 18:36 ` Pings for 4.12 " Andrew Cooper

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=CABfawhkugQ4yMB9oiD3v_zfEh6zZJo66M9ajWebp3C8wN3+NNw@mail.gmail.com \
    --to=tamas@tklengyel.com \
    --cc=JBeulich@suse.com \
    --cc=JGross@suse.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=boris.ostrovsky@oracle.com \
    --cc=brian.woods@amd.com \
    --cc=george.dunlap@eu.citrix.com \
    --cc=julien.grall@arm.com \
    --cc=jun.nakajima@intel.com \
    --cc=kevin.tian@intel.com \
    --cc=paul.durrant@citrix.com \
    --cc=rcojocaru@bitdefender.com \
    --cc=roger.pau@citrix.com \
    --cc=sstabellini@kernel.org \
    --cc=suravee.suthikulpanit@amd.com \
    --cc=tim@xen.org \
    --cc=wei.liu2@citrix.com \
    --cc=xen-devel@lists.xen.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).