From: Roger Pau Monné Date: Wed, 20 May 2015 11:27:23 +0000 (+0200) Subject: x86/pvh: trap access to sensitive IO ports X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~3219 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=72d5acdc1d5b83107066e25054f9119e7771cf70;p=xen.git x86/pvh: trap access to sensitive IO ports This is needed so Xen can properly trap 4 byte accesses to 0xcf8 in order to keep consistency with accesses to 0xcfc. The access to RTC ports also needs to be trapped in order to keep consistency, this includes RTC_PORT(0) and RTC_PORT(1) (0x70 and 0x71 respectively). Signed-off-by: Roger Pau Monné --- diff --git a/xen/arch/x86/setup.c b/xen/arch/x86/setup.c index cd333f904b..2cc91851a9 100644 --- a/xen/arch/x86/setup.c +++ b/xen/arch/x86/setup.c @@ -49,6 +49,7 @@ #include #include #include +#include /* opt_nosmp: If true, secondary processors are ignored. */ static bool_t __initdata opt_nosmp; @@ -1534,6 +1535,16 @@ void __hwdom_init setup_io_bitmap(struct domain *d) rc = rangeset_report_ranges(d->arch.ioport_caps, 0, 0x10000, io_bitmap_cb, d); BUG_ON(rc); + /* + * NB: we need to trap accesses to 0xcf8 in order to intercept + * 4 byte accesses, that need to be handled by Xen in order to + * keep consistency. + * Access to 1 byte RTC ports also needs to be trapped in order + * to keep consistency with PV. + */ + __set_bit(0xcf8, d->arch.hvm_domain.io_bitmap); + __set_bit(RTC_PORT(0), d->arch.hvm_domain.io_bitmap); + __set_bit(RTC_PORT(1), d->arch.hvm_domain.io_bitmap); } }