Discussion:
[Xen-changelog] [xen stable-4.9] x86/hvm/emulate: make sure rep I/O emulation does not cross GFN boundaries
p***@xen.org
2018-10-22 03:11:53 UTC
Permalink
commit 75c8dbc6305726907c1f61a06334c79d89cc815e
Author: Paul Durrant <***@citrix.com>
AuthorDate: Mon Oct 8 14:47:18 2018 +0200
Commit: Jan Beulich <***@suse.com>
CommitDate: Mon Oct 8 14:47:18 2018 +0200

x86/hvm/emulate: make sure rep I/O emulation does not cross GFN boundaries

When emulating a rep I/O operation it is possible that the ioreq will
describe a single operation that spans multiple GFNs. This is fine as long
as all those GFNs fall within an MMIO region covered by a single device
model, but unfortunately the higher levels of the emulation code do not
guarantee that. This is something that should almost certainly be fixed,
but in the meantime this patch makes sure that MMIO is truncated at GFN
boundaries and hence the appropriate device model is re-evaluated for each
target GFN.

NOTE: This patch does not deal with the case of a single MMIO operation
spanning a GFN boundary. That is more complex to deal with and is
deferred to a subsequent patch.

Signed-off-by: Paul Durrant <***@citrix.com>

Convert calculations to be 32-bit only.

Signed-off-by: Jan Beulich <***@suse.com>
master commit: 7626edeaca972e3e823535dcc44338f6b2f0b21f
master date: 2018-08-16 09:27:30 +0200
---
xen/arch/x86/hvm/emulate.c | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)

diff --git a/xen/arch/x86/hvm/emulate.c b/xen/arch/x86/hvm/emulate.c
index dc364bb9c4..5744e5c814 100644
--- a/xen/arch/x86/hvm/emulate.c
+++ b/xen/arch/x86/hvm/emulate.c
@@ -181,6 +181,24 @@ static int hvmemul_do_io(
hvmtrace_io_assist(&p);
}

+ /*
+ * Make sure that we truncate rep MMIO at any GFN boundary. This is
+ * necessary to ensure that the correct device model is targetted
+ * or that we correctly handle a rep op spanning MMIO and RAM.
+ */
+ if ( unlikely(p.count > 1) && p.type == IOREQ_TYPE_COPY )
+ {
+ unsigned int off = p.addr & ~PAGE_MASK;
+ unsigned int tail = PAGE_SIZE - off;
+
+ if ( tail < p.size ) /* single rep spans GFN */
+ p.count = 1;
+ else
+ p.count = min(p.count,
+ (p.df ? (off + p.size) : tail) / p.size);
+ }
+ ASSERT(p.count);
+
vio->io_req = p;

rc = hvm_io_intercept(&p);
--
generated by git-patchbot for /home/xen/git/xen.git#stable-4.9

Loading...