summaryrefslogtreecommitdiffstats
path: root/sys/amd64
diff options
context:
space:
mode:
authorneel <neel@FreeBSD.org>2014-10-29 01:54:37 +0000
committerneel <neel@FreeBSD.org>2014-10-29 01:54:37 +0000
commit9221e1200aba49374427e8dcb6b7f6c312736b38 (patch)
tree3faf94041ec9a62c2a45549ed39425f887416991 /sys/amd64
parentf3c02a878d799d4d5abc2ec174fc878388f90392 (diff)
downloadFreeBSD-src-9221e1200aba49374427e8dcb6b7f6c312736b38.zip
FreeBSD-src-9221e1200aba49374427e8dcb6b7f6c312736b38.tar.gz
MFC r273666.
Don't pass the 'error' return from an I/O port handler directly to vm_run().
Diffstat (limited to 'sys/amd64')
-rw-r--r--sys/amd64/vmm/vmm_ioport.c48
1 files changed, 27 insertions, 21 deletions
diff --git a/sys/amd64/vmm/vmm_ioport.c b/sys/amd64/vmm/vmm_ioport.c
index 4ce1403..564ca74 100644
--- a/sys/amd64/vmm/vmm_ioport.c
+++ b/sys/amd64/vmm/vmm_ioport.c
@@ -106,15 +106,14 @@ emulate_inout_port(struct vm *vm, int vcpuid, struct vm_exit *vmexit,
uint32_t mask, val;
int error;
- error = 0;
- *retu = true;
-
- if (vmexit->u.inout.port >= MAX_IOPORTS)
- goto done;
-
- handler = ioport_handler[vmexit->u.inout.port];
- if (handler == NULL)
- goto done;
+ /*
+ * If there is no handler for the I/O port then punt to userspace.
+ */
+ if (vmexit->u.inout.port >= MAX_IOPORTS ||
+ (handler = ioport_handler[vmexit->u.inout.port]) == NULL) {
+ *retu = true;
+ return (0);
+ }
mask = vie_size2mask(vmexit->u.inout.bytes);
@@ -124,20 +123,27 @@ emulate_inout_port(struct vm *vm, int vcpuid, struct vm_exit *vmexit,
error = (*handler)(vm, vcpuid, vmexit->u.inout.in,
vmexit->u.inout.port, vmexit->u.inout.bytes, &val);
+ if (error) {
+ /*
+ * The value returned by this function is also the return value
+ * of vm_run(). This needs to be a positive number otherwise it
+ * can be interpreted as a "pseudo-error" like ERESTART.
+ *
+ * Enforce this by mapping all errors to EIO.
+ */
+ return (EIO);
+ }
- if (!error) {
- *retu = false;
- if (vmexit->u.inout.in) {
- vmexit->u.inout.eax &= ~mask;
- vmexit->u.inout.eax |= val & mask;
- error = vm_set_register(vm, vcpuid,
- VM_REG_GUEST_RAX, vmexit->u.inout.eax);
- KASSERT(error == 0, ("emulate_ioport: error %d "
- "setting guest rax register", error));
- }
+ if (vmexit->u.inout.in) {
+ vmexit->u.inout.eax &= ~mask;
+ vmexit->u.inout.eax |= val & mask;
+ error = vm_set_register(vm, vcpuid, VM_REG_GUEST_RAX,
+ vmexit->u.inout.eax);
+ KASSERT(error == 0, ("emulate_ioport: error %d setting guest "
+ "rax register", error));
}
-done:
- return (error);
+ *retu = false;
+ return (0);
}
static int
OpenPOWER on IntegriCloud