qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v2 0/1] Add support for Xen access to vmport
@ 2014-10-02 18:51 Don Slutz
  2014-10-02 18:51 ` [Qemu-devel] [PATCH v2 1/1] xen-hvm.c: " Don Slutz
  0 siblings, 1 reply; 10+ messages in thread
From: Don Slutz @ 2014-10-02 18:51 UTC (permalink / raw)
  To: qemu-devel
  Cc: xen-devel, Marcel Apfelbaum, Michael S. Tsirkin, Alexander Graf,
	Don Slutz, Markus Armbruster, Anthony Liguori,
	Andreas Färber, Stefano Stabellini

Changes v1 to v2:
   More info in commit message.

  Stefano Stabellini
    the registers being passes explicitely by Xen rather than
    "hiding" them into other ioreq fields.
       Added vmware_ioreq_t
  Paolo Bonzini & Alexander Graf
    Fixup env access
      Added cpu_by_ioreq_id.
      Set current_cpu in regs_to_cpu(), clear in regs_from_cpu().
      Drop all changes to vmport.c

Note: to use this with Xen either a version of:

[Qemu-devel] [PATCH] -machine vmport=off: Allow disabling of VMWare ioport emulation

or

>From f70663d9fb86914144ba340b6186cb1e67ac6eec Mon Sep 17 00:00:00 2001
From: Don Slutz <dslutz@verizon.com>
Date: Fri, 26 Sep 2014 08:11:39 -0400
Subject: [PATCH 1/2] hack: force enable vmport

Signed-off-by: Don Slutz <dslutz@verizon.com>
---
 hw/i386/pc_piix.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c
index 103d756..b76dfbc 100644
--- a/hw/i386/pc_piix.c
+++ b/hw/i386/pc_piix.c
@@ -234,7 +234,7 @@ static void pc_init1(MachineState *machine,
     pc_vga_init(isa_bus, pci_enabled ? pci_bus : NULL);
 
     /* init basic PC hardware */
-    pc_basic_device_init(isa_bus, gsi, &rtc_state, &floppy, xen_enabled(),
+    pc_basic_device_init(isa_bus, gsi, &rtc_state, &floppy, false,
         0x4);
 
     pc_nic_init(isa_bus, pci_bus);
-- 
1.8.4

needs to be done to QEMU.

And the Xen RFC patch:

[RFC][PATCH v2 1/1] Add IOREQ_TYPE_VMWARE_PORT

needs to be done to Xen.

Don Slutz (1):
  xen-hvm.c: Add support for Xen access to vmport

 xen-hvm.c | 152 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-------
 1 file changed, 137 insertions(+), 15 deletions(-)

-- 
1.8.4

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [Qemu-devel] [PATCH v2 1/1] xen-hvm.c: Add support for Xen access to vmport
  2014-10-02 18:51 [Qemu-devel] [PATCH v2 0/1] Add support for Xen access to vmport Don Slutz
@ 2014-10-02 18:51 ` Don Slutz
  2014-10-03  9:52   ` Stefano Stabellini
  0 siblings, 1 reply; 10+ messages in thread
From: Don Slutz @ 2014-10-02 18:51 UTC (permalink / raw)
  To: qemu-devel
  Cc: xen-devel, Marcel Apfelbaum, Michael S. Tsirkin, Alexander Graf,
	Don Slutz, Markus Armbruster, Anthony Liguori,
	Andreas Färber, Stefano Stabellini

This adds synchronisation of the 6 vcpu registers (only 32bits of
them) that vmport.c needs between Xen and QEMU.

This is to avoid a 2nd and 3rd exchange between QEMU and Xen to
fetch and put these 6 vcpu registers used by the code in vmport.c
and vmmouse.c

Add new array to XenIOState that allows selection of current_cpu by
ioreq_id.

Now pass XenIOState to handle_ioreq().

Add new routines regs_to_cpu(), regs_from_cpu(), and
handle_vmport_ioreq().

Signed-off-by: Don Slutz <dslutz@verizon.com>
---
v2:
   More info in commit message.
       Added vmware_ioreq_t
      Added cpu_by_ioreq_id.
      Set current_cpu in regs_to_cpu(), clear in regs_from_cpu().
      Drop all changes to vmport.c

 xen-hvm.c | 152 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-------
 1 file changed, 137 insertions(+), 15 deletions(-)

diff --git a/xen-hvm.c b/xen-hvm.c
index 05e522c..d80f21c 100644
--- a/xen-hvm.c
+++ b/xen-hvm.c
@@ -41,6 +41,31 @@ static MemoryRegion *framebuffer;
 static bool xen_in_migration;
 
 /* Compatibility with older version */
+
+/* This allows QEMU to build on a system that has Xen 4.5 or earlier
+ * installed.  This here (not in hw/xen/xen_common.h) because xen/hvm/ioreq.h
+ * needs to be included before this block and hw/xen/xen_common.h needs to
+ * be included before xen/hvm/ioreq.h
+ */
+#ifndef IOREQ_TYPE_VMWARE_PORT
+#define IOREQ_TYPE_VMWARE_PORT  3
+struct vmware_ioreq {
+        uint32_t esi;
+        uint32_t edi;
+        uint32_t eax;
+        uint32_t ebx;
+        uint32_t ecx;
+        uint32_t edx;
+        uint32_t vp_eport; /* evtchn for notifications to/from device model */
+        uint16_t addr;
+        uint8_t  state:4;
+        uint8_t  dir:1;    /* 1=read, 0=write */
+        uint8_t  size:3;
+        uint8_t  type;     /* I/O type */
+};
+typedef struct vmware_ioreq vmware_ioreq_t;
+#endif
+
 #if __XEN_LATEST_INTERFACE_VERSION__ < 0x0003020a
 static inline uint32_t xen_vcpu_eport(shared_iopage_t *shared_page, int i)
 {
@@ -81,6 +106,7 @@ typedef struct XenIOState {
     shared_iopage_t *shared_page;
     buffered_iopage_t *buffered_io_page;
     QEMUTimer *buffered_io_timer;
+    CPUState **cpu_by_ioreq_id;
     /* the evtchn port for polling the notification, */
     evtchn_port_t *ioreq_local_port;
     /* evtchn local port for buffered io */
@@ -101,6 +127,8 @@ typedef struct XenIOState {
     Notifier wakeup;
 } XenIOState;
 
+static void handle_ioreq(XenIOState *state, ioreq_t *req);
+
 /* Xen specific function for piix pci */
 
 int xen_pci_slot_get_pirq(PCIDevice *pci_dev, int irq_num)
@@ -596,11 +624,23 @@ static ioreq_t *cpu_get_ioreq_from_shared_memory(XenIOState *state, int vcpu)
     ioreq_t *req = xen_vcpu_ioreq(state->shared_page, vcpu);
 
     if (req->state != STATE_IOREQ_READY) {
-        DPRINTF("I/O request not ready: "
-                "%x, ptr: %x, port: %"PRIx64", "
-                "data: %"PRIx64", count: %" FMT_ioreq_size ", size: %" FMT_ioreq_size "\n",
-                req->state, req->data_is_ptr, req->addr,
-                req->data, req->count, req->size);
+        if (req->type != IOREQ_TYPE_VMWARE_PORT) {
+            DPRINTF("I/O request not ready: "
+                    "%x, ptr: %x, port: %"PRIx64", "
+                    "data: %"PRIx64", count: %" FMT_ioreq_size ", size: %"
+                    FMT_ioreq_size "\n",
+                    req->state, req->data_is_ptr, req->addr,
+                    req->data, req->count, req->size);
+        } else {
+#ifdef DEBUG_XEN_HVM
+            vmware_ioreq_t *vp = (vmware_ioreq_t *)req;
+            DPRINTF("I/O VMware request not ready: "
+                    "%x, ptr: 0, port: %x, data: %x"
+                    ", count: 1, size: %d\n",
+                    vp->state, (uint16_t)vp->edx, vp->eax,
+                    vp->size);
+#endif
+        }
         return NULL;
     }
 
@@ -773,10 +813,73 @@ static void cpu_ioreq_move(ioreq_t *req)
     }
 }
 
-static void handle_ioreq(ioreq_t *req)
+static void regs_to_cpu(XenIOState *state, vmware_ioreq_t *vmport_req)
+{
+    X86CPU *cpu;
+    CPUX86State *env;
+
+    if (!state->cpu_by_ioreq_id[0]) {
+        CPUState *cpu_state;
+
+        CPU_FOREACH(cpu_state) {
+            state->cpu_by_ioreq_id[cpu_state->cpu_index] = cpu_state;
+        }
+    }
+    current_cpu = state->cpu_by_ioreq_id[state->send_vcpu];
+    cpu = X86_CPU(current_cpu);
+    env = &cpu->env;
+    env->regs[R_EAX] = vmport_req->eax;
+    env->regs[R_EBX] = vmport_req->ebx;
+    env->regs[R_ECX] = vmport_req->ecx;
+    env->regs[R_EDX] = vmport_req->edx;
+    env->regs[R_ESI] = vmport_req->esi;
+    env->regs[R_EDI] = vmport_req->edi;
+}
+
+static void regs_from_cpu(XenIOState *state, vmware_ioreq_t *vmport_req,
+                          ioreq_t *req)
+{
+    X86CPU *cpu = X86_CPU(current_cpu);
+    CPUX86State *env = &cpu->env;
+
+    assert(sizeof(*vmport_req) == sizeof(*req));
+    assert(offsetof(ioreq_t, type) == offsetof(vmware_ioreq_t, type));
+    assert(offsetof(ioreq_t, vp_eport) == offsetof(vmware_ioreq_t, vp_eport));
+
+    vmport_req->eax = env->regs[R_EAX];
+    vmport_req->ebx = env->regs[R_EBX];
+    vmport_req->ecx = env->regs[R_ECX];
+    vmport_req->edx = env->regs[R_EDX];
+    vmport_req->esi = env->regs[R_ESI];
+    vmport_req->edi = env->regs[R_EDI];
+    current_cpu = NULL;
+}
+
+static void handle_vmport_ioreq(XenIOState *state, vmware_ioreq_t *vmport_req)
+{
+    ioreq_t req;
+
+    memset(&req, 0x00, sizeof(req));
+
+    req.size = vmport_req->size;
+    req.count = 1;
+    req.addr = vmport_req->addr;
+    req.data = vmport_req->eax;
+    req.state = STATE_IOREQ_READY;
+    req.dir = vmport_req->dir;
+    req.df = 0;
+    req.type = IOREQ_TYPE_PIO;
+    req.data_is_ptr = 0;
+
+    regs_to_cpu(state, vmport_req);
+    handle_ioreq(state, &req);
+    regs_from_cpu(state, vmport_req, &req);
+}
+
+static void handle_ioreq(XenIOState *state, ioreq_t *req)
 {
-    if (!req->data_is_ptr && (req->dir == IOREQ_WRITE) &&
-            (req->size < sizeof (target_ulong))) {
+    if ((req->type != IOREQ_TYPE_VMWARE_PORT) && !req->data_is_ptr &&
+        (req->dir == IOREQ_WRITE) && (req->size < sizeof(target_ulong))) {
         req->data &= ((target_ulong) 1 << (8 * req->size)) - 1;
     }
 
@@ -787,6 +890,9 @@ static void handle_ioreq(ioreq_t *req)
         case IOREQ_TYPE_COPY:
             cpu_ioreq_move(req);
             break;
+        case IOREQ_TYPE_VMWARE_PORT:
+            handle_vmport_ioreq(state, (vmware_ioreq_t *)req);
+            break;
         case IOREQ_TYPE_TIMEOFFSET:
             break;
         case IOREQ_TYPE_INVALIDATE:
@@ -828,7 +934,7 @@ static int handle_buffered_iopage(XenIOState *state)
             req.data |= ((uint64_t)buf_req->data) << 32;
         }
 
-        handle_ioreq(&req);
+        handle_ioreq(state, &req);
 
         xen_mb();
         state->buffered_io_page->read_pointer += qw ? 2 : 1;
@@ -857,14 +963,27 @@ static void cpu_handle_ioreq(void *opaque)
 
     handle_buffered_iopage(state);
     if (req) {
-        handle_ioreq(req);
+        handle_ioreq(state, req);
 
         if (req->state != STATE_IOREQ_INPROCESS) {
-            fprintf(stderr, "Badness in I/O request ... not in service?!: "
-                    "%x, ptr: %x, port: %"PRIx64", "
-                    "data: %"PRIx64", count: %" FMT_ioreq_size ", size: %" FMT_ioreq_size "\n",
-                    req->state, req->data_is_ptr, req->addr,
-                    req->data, req->count, req->size);
+            if (req->type != IOREQ_TYPE_VMWARE_PORT) {
+                fprintf(stderr,
+                        "Badness in I/O request ... not in service?!: "
+                        "%x, ptr: %x, port: %"PRIx64", "
+                        "data: %"PRIx64", count: %" FMT_ioreq_size
+                        ", size: %" FMT_ioreq_size
+                        ", type: %"FMT_ioreq_size"\n",
+                        req->state, req->data_is_ptr, req->addr,
+                        req->data, req->count, req->size, req->type);
+            } else {
+                vmware_ioreq_t *vp = (vmware_ioreq_t *)req;
+                fprintf(stderr,
+                        "Badness in I/O VMware request ... not in service?!: "
+                        "%x, ptr: 0, port: %x, data: %x"
+                        ", count: 1, size: %d\n",
+                        vp->state, (uint16_t)vp->edx, vp->eax,
+                        vp->size);
+            }
             destroy_hvm_domain(false);
             return;
         }
@@ -1028,6 +1147,9 @@ int xen_hvm_init(ram_addr_t *below_4g_mem_size, ram_addr_t *above_4g_mem_size,
         hw_error("map buffered IO page returned error %d", errno);
     }
 
+    /* Note: cpus is empty at this point in init */
+    state->cpu_by_ioreq_id = g_malloc0(max_cpus * sizeof(CPUState *));
+
     state->ioreq_local_port = g_malloc0(max_cpus * sizeof (evtchn_port_t));
 
     /* FIXME: how about if we overflow the page here? */
-- 
1.8.4

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] [PATCH v2 1/1] xen-hvm.c: Add support for Xen access to vmport
  2014-10-02 18:51 ` [Qemu-devel] [PATCH v2 1/1] xen-hvm.c: " Don Slutz
@ 2014-10-03  9:52   ` Stefano Stabellini
  2014-10-03 13:32     ` Don Slutz
  0 siblings, 1 reply; 10+ messages in thread
From: Stefano Stabellini @ 2014-10-03  9:52 UTC (permalink / raw)
  To: Don Slutz
  Cc: xen-devel, Marcel Apfelbaum, Markus Armbruster,
	Michael S. Tsirkin, qemu-devel, Alexander Graf, Anthony Liguori,
	Andreas Färber, Stefano Stabellini

On Thu, 2 Oct 2014, Don Slutz wrote:
> This adds synchronisation of the 6 vcpu registers (only 32bits of
> them) that vmport.c needs between Xen and QEMU.
> 
> This is to avoid a 2nd and 3rd exchange between QEMU and Xen to
> fetch and put these 6 vcpu registers used by the code in vmport.c
> and vmmouse.c
> 
> Add new array to XenIOState that allows selection of current_cpu by
> ioreq_id.
> 
> Now pass XenIOState to handle_ioreq().
> 
> Add new routines regs_to_cpu(), regs_from_cpu(), and
> handle_vmport_ioreq().
> 
> Signed-off-by: Don Slutz <dslutz@verizon.com>
> ---
> v2:
>    More info in commit message.
>        Added vmware_ioreq_t
>       Added cpu_by_ioreq_id.
>       Set current_cpu in regs_to_cpu(), clear in regs_from_cpu().
>       Drop all changes to vmport.c
> 
>  xen-hvm.c | 152 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-------
>  1 file changed, 137 insertions(+), 15 deletions(-)
> 
> diff --git a/xen-hvm.c b/xen-hvm.c
> index 05e522c..d80f21c 100644
> --- a/xen-hvm.c
> +++ b/xen-hvm.c
> @@ -41,6 +41,31 @@ static MemoryRegion *framebuffer;
>  static bool xen_in_migration;
>  
>  /* Compatibility with older version */
> +
> +/* This allows QEMU to build on a system that has Xen 4.5 or earlier
> + * installed.  This here (not in hw/xen/xen_common.h) because xen/hvm/ioreq.h
> + * needs to be included before this block and hw/xen/xen_common.h needs to
> + * be included before xen/hvm/ioreq.h
> + */
> +#ifndef IOREQ_TYPE_VMWARE_PORT
> +#define IOREQ_TYPE_VMWARE_PORT  3
> +struct vmware_ioreq {
> +        uint32_t esi;
> +        uint32_t edi;
> +        uint32_t eax;
> +        uint32_t ebx;
> +        uint32_t ecx;
> +        uint32_t edx;
> +        uint32_t vp_eport; /* evtchn for notifications to/from device model */
> +        uint16_t addr;
> +        uint8_t  state:4;
> +        uint8_t  dir:1;    /* 1=read, 0=write */
> +        uint8_t  size:3;
> +        uint8_t  type;     /* I/O type */
> +};
> +typedef struct vmware_ioreq vmware_ioreq_t;
> +#endif

Why here instead of include/hw/xen/xen_common.h?


>  #if __XEN_LATEST_INTERFACE_VERSION__ < 0x0003020a
>  static inline uint32_t xen_vcpu_eport(shared_iopage_t *shared_page, int i)
>  {
> @@ -81,6 +106,7 @@ typedef struct XenIOState {
>      shared_iopage_t *shared_page;
>      buffered_iopage_t *buffered_io_page;
>      QEMUTimer *buffered_io_timer;
> +    CPUState **cpu_by_ioreq_id;
>      /* the evtchn port for polling the notification, */
>      evtchn_port_t *ioreq_local_port;
>      /* evtchn local port for buffered io */
> @@ -101,6 +127,8 @@ typedef struct XenIOState {
>      Notifier wakeup;
>  } XenIOState;
>  
> +static void handle_ioreq(XenIOState *state, ioreq_t *req);
> +
>  /* Xen specific function for piix pci */
>  
>  int xen_pci_slot_get_pirq(PCIDevice *pci_dev, int irq_num)
> @@ -596,11 +624,23 @@ static ioreq_t *cpu_get_ioreq_from_shared_memory(XenIOState *state, int vcpu)
>      ioreq_t *req = xen_vcpu_ioreq(state->shared_page, vcpu);
>  
>      if (req->state != STATE_IOREQ_READY) {
> -        DPRINTF("I/O request not ready: "
> -                "%x, ptr: %x, port: %"PRIx64", "
> -                "data: %"PRIx64", count: %" FMT_ioreq_size ", size: %" FMT_ioreq_size "\n",
> -                req->state, req->data_is_ptr, req->addr,
> -                req->data, req->count, req->size);
> +        if (req->type != IOREQ_TYPE_VMWARE_PORT) {
> +            DPRINTF("I/O request not ready: "
> +                    "%x, ptr: %x, port: %"PRIx64", "
> +                    "data: %"PRIx64", count: %" FMT_ioreq_size ", size: %"
> +                    FMT_ioreq_size "\n",
> +                    req->state, req->data_is_ptr, req->addr,
> +                    req->data, req->count, req->size);
> +        } else {
> +#ifdef DEBUG_XEN_HVM
> +            vmware_ioreq_t *vp = (vmware_ioreq_t *)req;
> +            DPRINTF("I/O VMware request not ready: "
> +                    "%x, ptr: 0, port: %x, data: %x"
> +                    ", count: 1, size: %d\n",
> +                    vp->state, (uint16_t)vp->edx, vp->eax,
> +                    vp->size);
> +#endif
> +        }
>          return NULL;
>      }
>  
> @@ -773,10 +813,73 @@ static void cpu_ioreq_move(ioreq_t *req)
>      }
>  }
>  
> -static void handle_ioreq(ioreq_t *req)
> +static void regs_to_cpu(XenIOState *state, vmware_ioreq_t *vmport_req)
> +{
> +    X86CPU *cpu;
> +    CPUX86State *env;
> +
> +    if (!state->cpu_by_ioreq_id[0]) {
> +        CPUState *cpu_state;
> +
> +        CPU_FOREACH(cpu_state) {
> +            state->cpu_by_ioreq_id[cpu_state->cpu_index] = cpu_state;
> +        }
> +    }

This is just the initialization, isn't it?
It would be best to move it to an initialization function then.


> +    current_cpu = state->cpu_by_ioreq_id[state->send_vcpu];
> +    cpu = X86_CPU(current_cpu);
> +    env = &cpu->env;
> +    env->regs[R_EAX] = vmport_req->eax;
> +    env->regs[R_EBX] = vmport_req->ebx;
> +    env->regs[R_ECX] = vmport_req->ecx;
> +    env->regs[R_EDX] = vmport_req->edx;
> +    env->regs[R_ESI] = vmport_req->esi;
> +    env->regs[R_EDI] = vmport_req->edi;
> +}
> +
> +static void regs_from_cpu(XenIOState *state, vmware_ioreq_t *vmport_req,
> +                          ioreq_t *req)
> +{
> +    X86CPU *cpu = X86_CPU(current_cpu);
> +    CPUX86State *env = &cpu->env;
> +
> +    assert(sizeof(*vmport_req) == sizeof(*req));
> +    assert(offsetof(ioreq_t, type) == offsetof(vmware_ioreq_t, type));
> +    assert(offsetof(ioreq_t, vp_eport) == offsetof(vmware_ioreq_t, vp_eport));
> +
> +    vmport_req->eax = env->regs[R_EAX];
> +    vmport_req->ebx = env->regs[R_EBX];
> +    vmport_req->ecx = env->regs[R_ECX];
> +    vmport_req->edx = env->regs[R_EDX];
> +    vmport_req->esi = env->regs[R_ESI];
> +    vmport_req->edi = env->regs[R_EDI];
> +    current_cpu = NULL;
> +}
> +
> +static void handle_vmport_ioreq(XenIOState *state, vmware_ioreq_t *vmport_req)
> +{
> +    ioreq_t req;
> +
> +    memset(&req, 0x00, sizeof(req));
> +
> +    req.size = vmport_req->size;
> +    req.count = 1;
> +    req.addr = vmport_req->addr;
> +    req.data = vmport_req->eax;
> +    req.state = STATE_IOREQ_READY;
> +    req.dir = vmport_req->dir;
> +    req.df = 0;
> +    req.type = IOREQ_TYPE_PIO;
> +    req.data_is_ptr = 0;
> +
> +    regs_to_cpu(state, vmport_req);
> +    handle_ioreq(state, &req);
> +    regs_from_cpu(state, vmport_req, &req);
> +}

I think that this is far better than the previous version
    
    
> +static void handle_ioreq(XenIOState *state, ioreq_t *req)
>  {
> -    if (!req->data_is_ptr && (req->dir == IOREQ_WRITE) &&
> -            (req->size < sizeof (target_ulong))) {
> +    if ((req->type != IOREQ_TYPE_VMWARE_PORT) && !req->data_is_ptr &&
> +        (req->dir == IOREQ_WRITE) && (req->size < sizeof(target_ulong))) {
>          req->data &= ((target_ulong) 1 << (8 * req->size)) - 1;
>      }
>  
> @@ -787,6 +890,9 @@ static void handle_ioreq(ioreq_t *req)
>          case IOREQ_TYPE_COPY:
>              cpu_ioreq_move(req);
>              break;
> +        case IOREQ_TYPE_VMWARE_PORT:
> +            handle_vmport_ioreq(state, (vmware_ioreq_t *)req);
> +            break;
>          case IOREQ_TYPE_TIMEOFFSET:
>              break;
>          case IOREQ_TYPE_INVALIDATE:
> @@ -828,7 +934,7 @@ static int handle_buffered_iopage(XenIOState *state)
>              req.data |= ((uint64_t)buf_req->data) << 32;
>          }
>  
> -        handle_ioreq(&req);
> +        handle_ioreq(state, &req);
>  
>          xen_mb();
>          state->buffered_io_page->read_pointer += qw ? 2 : 1;
> @@ -857,14 +963,27 @@ static void cpu_handle_ioreq(void *opaque)
>  
>      handle_buffered_iopage(state);
>      if (req) {
> -        handle_ioreq(req);
> +        handle_ioreq(state, req);
>  
>          if (req->state != STATE_IOREQ_INPROCESS) {
> -            fprintf(stderr, "Badness in I/O request ... not in service?!: "
> -                    "%x, ptr: %x, port: %"PRIx64", "
> -                    "data: %"PRIx64", count: %" FMT_ioreq_size ", size: %" FMT_ioreq_size "\n",
> -                    req->state, req->data_is_ptr, req->addr,
> -                    req->data, req->count, req->size);
> +            if (req->type != IOREQ_TYPE_VMWARE_PORT) {
> +                fprintf(stderr,
> +                        "Badness in I/O request ... not in service?!: "
> +                        "%x, ptr: %x, port: %"PRIx64", "
> +                        "data: %"PRIx64", count: %" FMT_ioreq_size
> +                        ", size: %" FMT_ioreq_size
> +                        ", type: %"FMT_ioreq_size"\n",
> +                        req->state, req->data_is_ptr, req->addr,
> +                        req->data, req->count, req->size, req->type);
> +            } else {
> +                vmware_ioreq_t *vp = (vmware_ioreq_t *)req;
> +                fprintf(stderr,
> +                        "Badness in I/O VMware request ... not in service?!: "
> +                        "%x, ptr: 0, port: %x, data: %x"
> +                        ", count: 1, size: %d\n",
> +                        vp->state, (uint16_t)vp->edx, vp->eax,
> +                        vp->size);
> +            }
>              destroy_hvm_domain(false);
>              return;
>          }
> @@ -1028,6 +1147,9 @@ int xen_hvm_init(ram_addr_t *below_4g_mem_size, ram_addr_t *above_4g_mem_size,
>          hw_error("map buffered IO page returned error %d", errno);
>      }
>  
> +    /* Note: cpus is empty at this point in init */
> +    state->cpu_by_ioreq_id = g_malloc0(max_cpus * sizeof(CPUState *));
> +
>      state->ioreq_local_port = g_malloc0(max_cpus * sizeof (evtchn_port_t));
>  
>      /* FIXME: how about if we overflow the page here? */
> -- 
> 1.8.4
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] [PATCH v2 1/1] xen-hvm.c: Add support for Xen access to vmport
  2014-10-03  9:52   ` Stefano Stabellini
@ 2014-10-03 13:32     ` Don Slutz
  2014-10-03 16:23       ` Stefano Stabellini
  0 siblings, 1 reply; 10+ messages in thread
From: Don Slutz @ 2014-10-03 13:32 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: xen-devel, Marcel Apfelbaum, Markus Armbruster,
	Michael S. Tsirkin, qemu-devel, Don Slutz, Alexander Graf,
	Anthony Liguori, Andreas Färber

On 10/03/14 05:52, Stefano Stabellini wrote:
> On Thu, 2 Oct 2014, Don Slutz wrote:
>> This adds synchronisation of the 6 vcpu registers (only 32bits of
>> them) that vmport.c needs between Xen and QEMU.
>>
>> This is to avoid a 2nd and 3rd exchange between QEMU and Xen to
>> fetch and put these 6 vcpu registers used by the code in vmport.c
>> and vmmouse.c
>>
>> Add new array to XenIOState that allows selection of current_cpu by
>> ioreq_id.
>>
>> Now pass XenIOState to handle_ioreq().
>>
>> Add new routines regs_to_cpu(), regs_from_cpu(), and
>> handle_vmport_ioreq().
>>
>> Signed-off-by: Don Slutz <dslutz@verizon.com>
>> ---
>> v2:
>>     More info in commit message.
>>         Added vmware_ioreq_t
>>        Added cpu_by_ioreq_id.
>>        Set current_cpu in regs_to_cpu(), clear in regs_from_cpu().
>>        Drop all changes to vmport.c
>>
>>   xen-hvm.c | 152 +++++++++++++++++++++++++++++++++++++++++++++++++++++++-------
>>   1 file changed, 137 insertions(+), 15 deletions(-)
>>
>> diff --git a/xen-hvm.c b/xen-hvm.c
>> index 05e522c..d80f21c 100644
>> --- a/xen-hvm.c
>> +++ b/xen-hvm.c
>> @@ -41,6 +41,31 @@ static MemoryRegion *framebuffer;
>>   static bool xen_in_migration;
>>   
>>   /* Compatibility with older version */
>> +
>> +/* This allows QEMU to build on a system that has Xen 4.5 or earlier
>> + * installed.  This here (not in hw/xen/xen_common.h) because xen/hvm/ioreq.h
>> + * needs to be included before this block and hw/xen/xen_common.h needs to
>> + * be included before xen/hvm/ioreq.h
>> + */
>> +#ifndef IOREQ_TYPE_VMWARE_PORT
>> +#define IOREQ_TYPE_VMWARE_PORT  3
>> +struct vmware_ioreq {
>> +        uint32_t esi;
>> +        uint32_t edi;
>> +        uint32_t eax;
>> +        uint32_t ebx;
>> +        uint32_t ecx;
>> +        uint32_t edx;
>> +        uint32_t vp_eport; /* evtchn for notifications to/from device model */
>> +        uint16_t addr;
>> +        uint8_t  state:4;
>> +        uint8_t  dir:1;    /* 1=read, 0=write */
>> +        uint8_t  size:3;
>> +        uint8_t  type;     /* I/O type */
>> +};
>> +typedef struct vmware_ioreq vmware_ioreq_t;
>> +#endif
> Why here instead of include/hw/xen/xen_common.h?
>

See code comment above.  Copied here just to make sure.


+
+/* This allows QEMU to build on a system that has Xen 4.5 or earlier
+ * installed.  This here (not in hw/xen/xen_common.h) because xen/hvm/ioreq.h
+ * needs to be included before this block and hw/xen/xen_common.h needs to
+ * be included before xen/hvm/ioreq.h
+ */



>>   #if __XEN_LATEST_INTERFACE_VERSION__ < 0x0003020a
>>   static inline uint32_t xen_vcpu_eport(shared_iopage_t *shared_page, int i)
>>   {
>> @@ -81,6 +106,7 @@ typedef struct XenIOState {
>>       shared_iopage_t *shared_page;
>>       buffered_iopage_t *buffered_io_page;
>>       QEMUTimer *buffered_io_timer;
>> +    CPUState **cpu_by_ioreq_id;
>>       /* the evtchn port for polling the notification, */
>>       evtchn_port_t *ioreq_local_port;
>>       /* evtchn local port for buffered io */
>> @@ -101,6 +127,8 @@ typedef struct XenIOState {
>>       Notifier wakeup;
>>   } XenIOState;
>>   
>> +static void handle_ioreq(XenIOState *state, ioreq_t *req);
>> +
>>   /* Xen specific function for piix pci */
>>   
>>   int xen_pci_slot_get_pirq(PCIDevice *pci_dev, int irq_num)
>> @@ -596,11 +624,23 @@ static ioreq_t *cpu_get_ioreq_from_shared_memory(XenIOState *state, int vcpu)
>>       ioreq_t *req = xen_vcpu_ioreq(state->shared_page, vcpu);
>>   
>>       if (req->state != STATE_IOREQ_READY) {
>> -        DPRINTF("I/O request not ready: "
>> -                "%x, ptr: %x, port: %"PRIx64", "
>> -                "data: %"PRIx64", count: %" FMT_ioreq_size ", size: %" FMT_ioreq_size "\n",
>> -                req->state, req->data_is_ptr, req->addr,
>> -                req->data, req->count, req->size);
>> +        if (req->type != IOREQ_TYPE_VMWARE_PORT) {
>> +            DPRINTF("I/O request not ready: "
>> +                    "%x, ptr: %x, port: %"PRIx64", "
>> +                    "data: %"PRIx64", count: %" FMT_ioreq_size ", size: %"
>> +                    FMT_ioreq_size "\n",
>> +                    req->state, req->data_is_ptr, req->addr,
>> +                    req->data, req->count, req->size);
>> +        } else {
>> +#ifdef DEBUG_XEN_HVM
>> +            vmware_ioreq_t *vp = (vmware_ioreq_t *)req;
>> +            DPRINTF("I/O VMware request not ready: "
>> +                    "%x, ptr: 0, port: %x, data: %x"
>> +                    ", count: 1, size: %d\n",
>> +                    vp->state, (uint16_t)vp->edx, vp->eax,
>> +                    vp->size);
>> +#endif
>> +        }
>>           return NULL;
>>       }
>>   
>> @@ -773,10 +813,73 @@ static void cpu_ioreq_move(ioreq_t *req)
>>       }
>>   }
>>   
>> -static void handle_ioreq(ioreq_t *req)
>> +static void regs_to_cpu(XenIOState *state, vmware_ioreq_t *vmport_req)
>> +{
>> +    X86CPU *cpu;
>> +    CPUX86State *env;
>> +
>> +    if (!state->cpu_by_ioreq_id[0]) {
>> +        CPUState *cpu_state;
>> +
>> +        CPU_FOREACH(cpu_state) {
>> +            state->cpu_by_ioreq_id[cpu_state->cpu_index] = cpu_state;
>> +        }
>> +    }
> This is just the initialization, isn't it?
> It would be best to move it to an initialization function then.
>

A new initialization function would need to be added.  A new call to it 
would need
to be added (not sure where the best place is).  Since the overhead here is
small I went with the less intrusive change.

>> +    current_cpu = state->cpu_by_ioreq_id[state->send_vcpu];
>> +    cpu = X86_CPU(current_cpu);
>> +    env = &cpu->env;
>> +    env->regs[R_EAX] = vmport_req->eax;
>> +    env->regs[R_EBX] = vmport_req->ebx;
>> +    env->regs[R_ECX] = vmport_req->ecx;
>> +    env->regs[R_EDX] = vmport_req->edx;
>> +    env->regs[R_ESI] = vmport_req->esi;
>> +    env->regs[R_EDI] = vmport_req->edi;
>> +}
>> +
>> +static void regs_from_cpu(XenIOState *state, vmware_ioreq_t *vmport_req,
>> +                          ioreq_t *req)
>> +{
>> +    X86CPU *cpu = X86_CPU(current_cpu);
>> +    CPUX86State *env = &cpu->env;
>> +
>> +    assert(sizeof(*vmport_req) == sizeof(*req));
>> +    assert(offsetof(ioreq_t, type) == offsetof(vmware_ioreq_t, type));
>> +    assert(offsetof(ioreq_t, vp_eport) == offsetof(vmware_ioreq_t, vp_eport));
>> +
>> +    vmport_req->eax = env->regs[R_EAX];
>> +    vmport_req->ebx = env->regs[R_EBX];
>> +    vmport_req->ecx = env->regs[R_ECX];
>> +    vmport_req->edx = env->regs[R_EDX];
>> +    vmport_req->esi = env->regs[R_ESI];
>> +    vmport_req->edi = env->regs[R_EDI];
>> +    current_cpu = NULL;
>> +}
>> +
>> +static void handle_vmport_ioreq(XenIOState *state, vmware_ioreq_t *vmport_req)
>> +{
>> +    ioreq_t req;
>> +
>> +    memset(&req, 0x00, sizeof(req));
>> +
>> +    req.size = vmport_req->size;
>> +    req.count = 1;
>> +    req.addr = vmport_req->addr;
>> +    req.data = vmport_req->eax;
>> +    req.state = STATE_IOREQ_READY;
>> +    req.dir = vmport_req->dir;
>> +    req.df = 0;
>> +    req.type = IOREQ_TYPE_PIO;
>> +    req.data_is_ptr = 0;
>> +
>> +    regs_to_cpu(state, vmport_req);
>> +    handle_ioreq(state, &req);
>> +    regs_from_cpu(state, vmport_req, &req);
>> +}
> I think that this is far better than the previous version
>      
>    

Good.

    -Don Slutz

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] [PATCH v2 1/1] xen-hvm.c: Add support for Xen access to vmport
  2014-10-03 13:32     ` Don Slutz
@ 2014-10-03 16:23       ` Stefano Stabellini
  2014-10-03 18:17         ` Don Slutz
  0 siblings, 1 reply; 10+ messages in thread
From: Stefano Stabellini @ 2014-10-03 16:23 UTC (permalink / raw)
  To: Don Slutz
  Cc: xen-devel, Stefano Stabellini, Markus Armbruster,
	Marcel Apfelbaum, Alexander Graf, qemu-devel, Michael S. Tsirkin,
	Anthony Liguori, Andreas Färber

On Fri, 3 Oct 2014, Don Slutz wrote:
> On 10/03/14 05:52, Stefano Stabellini wrote:
> > On Thu, 2 Oct 2014, Don Slutz wrote:
> > > This adds synchronisation of the 6 vcpu registers (only 32bits of
> > > them) that vmport.c needs between Xen and QEMU.
> > > 
> > > This is to avoid a 2nd and 3rd exchange between QEMU and Xen to
> > > fetch and put these 6 vcpu registers used by the code in vmport.c
> > > and vmmouse.c
> > > 
> > > Add new array to XenIOState that allows selection of current_cpu by
> > > ioreq_id.
> > > 
> > > Now pass XenIOState to handle_ioreq().
> > > 
> > > Add new routines regs_to_cpu(), regs_from_cpu(), and
> > > handle_vmport_ioreq().
> > > 
> > > Signed-off-by: Don Slutz <dslutz@verizon.com>
> > > ---
> > > v2:
> > >     More info in commit message.
> > >         Added vmware_ioreq_t
> > >        Added cpu_by_ioreq_id.
> > >        Set current_cpu in regs_to_cpu(), clear in regs_from_cpu().
> > >        Drop all changes to vmport.c
> > > 
> > >   xen-hvm.c | 152
> > > +++++++++++++++++++++++++++++++++++++++++++++++++++++++-------
> > >   1 file changed, 137 insertions(+), 15 deletions(-)
> > > 
> > > diff --git a/xen-hvm.c b/xen-hvm.c
> > > index 05e522c..d80f21c 100644
> > > --- a/xen-hvm.c
> > > +++ b/xen-hvm.c
> > > @@ -41,6 +41,31 @@ static MemoryRegion *framebuffer;
> > >   static bool xen_in_migration;
> > >     /* Compatibility with older version */
> > > +
> > > +/* This allows QEMU to build on a system that has Xen 4.5 or earlier
> > > + * installed.  This here (not in hw/xen/xen_common.h) because
> > > xen/hvm/ioreq.h
> > > + * needs to be included before this block and hw/xen/xen_common.h needs
> > > to
> > > + * be included before xen/hvm/ioreq.h
> > > + */
> > > +#ifndef IOREQ_TYPE_VMWARE_PORT
> > > +#define IOREQ_TYPE_VMWARE_PORT  3
> > > +struct vmware_ioreq {
> > > +        uint32_t esi;
> > > +        uint32_t edi;
> > > +        uint32_t eax;
> > > +        uint32_t ebx;
> > > +        uint32_t ecx;
> > > +        uint32_t edx;
> > > +        uint32_t vp_eport; /* evtchn for notifications to/from device
> > > model */
> > > +        uint16_t addr;
> > > +        uint8_t  state:4;
> > > +        uint8_t  dir:1;    /* 1=read, 0=write */
> > > +        uint8_t  size:3;
> > > +        uint8_t  type;     /* I/O type */
> > > +};
> > > +typedef struct vmware_ioreq vmware_ioreq_t;
> > > +#endif
> > Why here instead of include/hw/xen/xen_common.h?
> > 
> 
> See code comment above.  Copied here just to make sure.
> 
> +
> +/* This allows QEMU to build on a system that has Xen 4.5 or earlier
> + * installed.  This here (not in hw/xen/xen_common.h) because xen/hvm/ioreq.h
> + * needs to be included before this block and hw/xen/xen_common.h needs to
> + * be included before xen/hvm/ioreq.h
> + */

Oh well. OK then.


> > >   #if __XEN_LATEST_INTERFACE_VERSION__ < 0x0003020a
> > >   static inline uint32_t xen_vcpu_eport(shared_iopage_t *shared_page, int
> > > i)
> > >   {
> > > @@ -81,6 +106,7 @@ typedef struct XenIOState {
> > >       shared_iopage_t *shared_page;
> > >       buffered_iopage_t *buffered_io_page;
> > >       QEMUTimer *buffered_io_timer;
> > > +    CPUState **cpu_by_ioreq_id;
> > >       /* the evtchn port for polling the notification, */
> > >       evtchn_port_t *ioreq_local_port;
> > >       /* evtchn local port for buffered io */
> > > @@ -101,6 +127,8 @@ typedef struct XenIOState {
> > >       Notifier wakeup;
> > >   } XenIOState;
> > >   +static void handle_ioreq(XenIOState *state, ioreq_t *req);
> > > +
> > >   /* Xen specific function for piix pci */
> > >     int xen_pci_slot_get_pirq(PCIDevice *pci_dev, int irq_num)
> > > @@ -596,11 +624,23 @@ static ioreq_t
> > > *cpu_get_ioreq_from_shared_memory(XenIOState *state, int vcpu)
> > >       ioreq_t *req = xen_vcpu_ioreq(state->shared_page, vcpu);
> > >         if (req->state != STATE_IOREQ_READY) {
> > > -        DPRINTF("I/O request not ready: "
> > > -                "%x, ptr: %x, port: %"PRIx64", "
> > > -                "data: %"PRIx64", count: %" FMT_ioreq_size ", size: %"
> > > FMT_ioreq_size "\n",
> > > -                req->state, req->data_is_ptr, req->addr,
> > > -                req->data, req->count, req->size);
> > > +        if (req->type != IOREQ_TYPE_VMWARE_PORT) {
> > > +            DPRINTF("I/O request not ready: "
> > > +                    "%x, ptr: %x, port: %"PRIx64", "
> > > +                    "data: %"PRIx64", count: %" FMT_ioreq_size ", size:
> > > %"
> > > +                    FMT_ioreq_size "\n",
> > > +                    req->state, req->data_is_ptr, req->addr,
> > > +                    req->data, req->count, req->size);
> > > +        } else {
> > > +#ifdef DEBUG_XEN_HVM
> > > +            vmware_ioreq_t *vp = (vmware_ioreq_t *)req;
> > > +            DPRINTF("I/O VMware request not ready: "
> > > +                    "%x, ptr: 0, port: %x, data: %x"
> > > +                    ", count: 1, size: %d\n",
> > > +                    vp->state, (uint16_t)vp->edx, vp->eax,
> > > +                    vp->size);
> > > +#endif
> > > +        }
> > >           return NULL;
> > >       }
> > >   @@ -773,10 +813,73 @@ static void cpu_ioreq_move(ioreq_t *req)
> > >       }
> > >   }
> > >   -static void handle_ioreq(ioreq_t *req)
> > > +static void regs_to_cpu(XenIOState *state, vmware_ioreq_t *vmport_req)
> > > +{
> > > +    X86CPU *cpu;
> > > +    CPUX86State *env;
> > > +
> > > +    if (!state->cpu_by_ioreq_id[0]) {
> > > +        CPUState *cpu_state;
> > > +
> > > +        CPU_FOREACH(cpu_state) {
> > > +            state->cpu_by_ioreq_id[cpu_state->cpu_index] = cpu_state;
> > > +        }
> > > +    }
> > This is just the initialization, isn't it?
> > It would be best to move it to an initialization function then.
> > 
> 
> A new initialization function would need to be added.  A new call to it would
> need
> to be added (not sure where the best place is).  Since the overhead here is
> small I went with the less intrusive change.

I'd prefer the initialization function if it is possible.


> > > +    current_cpu = state->cpu_by_ioreq_id[state->send_vcpu];
> > > +    cpu = X86_CPU(current_cpu);
> > > +    env = &cpu->env;
> > > +    env->regs[R_EAX] = vmport_req->eax;
> > > +    env->regs[R_EBX] = vmport_req->ebx;
> > > +    env->regs[R_ECX] = vmport_req->ecx;
> > > +    env->regs[R_EDX] = vmport_req->edx;
> > > +    env->regs[R_ESI] = vmport_req->esi;
> > > +    env->regs[R_EDI] = vmport_req->edi;
> > > +}
> > > +
> > > +static void regs_from_cpu(XenIOState *state, vmware_ioreq_t *vmport_req,
> > > +                          ioreq_t *req)
> > > +{
> > > +    X86CPU *cpu = X86_CPU(current_cpu);
> > > +    CPUX86State *env = &cpu->env;
> > > +
> > > +    assert(sizeof(*vmport_req) == sizeof(*req));
> > > +    assert(offsetof(ioreq_t, type) == offsetof(vmware_ioreq_t, type));
> > > +    assert(offsetof(ioreq_t, vp_eport) == offsetof(vmware_ioreq_t,
> > > vp_eport));
> > > +
> > > +    vmport_req->eax = env->regs[R_EAX];
> > > +    vmport_req->ebx = env->regs[R_EBX];
> > > +    vmport_req->ecx = env->regs[R_ECX];
> > > +    vmport_req->edx = env->regs[R_EDX];
> > > +    vmport_req->esi = env->regs[R_ESI];
> > > +    vmport_req->edi = env->regs[R_EDI];
> > > +    current_cpu = NULL;
> > > +}
> > > +
> > > +static void handle_vmport_ioreq(XenIOState *state, vmware_ioreq_t
> > > *vmport_req)
> > > +{
> > > +    ioreq_t req;
> > > +
> > > +    memset(&req, 0x00, sizeof(req));
> > > +
> > > +    req.size = vmport_req->size;
> > > +    req.count = 1;
> > > +    req.addr = vmport_req->addr;
> > > +    req.data = vmport_req->eax;
> > > +    req.state = STATE_IOREQ_READY;
> > > +    req.dir = vmport_req->dir;
> > > +    req.df = 0;
> > > +    req.type = IOREQ_TYPE_PIO;
> > > +    req.data_is_ptr = 0;
> > > +
> > > +    regs_to_cpu(state, vmport_req);
> > > +    handle_ioreq(state, &req);
> > > +    regs_from_cpu(state, vmport_req, &req);
> > > +}
> > I think that this is far better than the previous version
> >         
> 
> Good.
> 
>    -Don Slutz
> 
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] [PATCH v2 1/1] xen-hvm.c: Add support for Xen access to vmport
  2014-10-03 16:23       ` Stefano Stabellini
@ 2014-10-03 18:17         ` Don Slutz
  2014-10-06  9:14           ` Stefano Stabellini
  0 siblings, 1 reply; 10+ messages in thread
From: Don Slutz @ 2014-10-03 18:17 UTC (permalink / raw)
  To: Stefano Stabellini
  Cc: xen-devel, Marcel Apfelbaum, Markus Armbruster,
	Michael S. Tsirkin, qemu-devel, Don Slutz, Alexander Graf,
	Anthony Liguori, Andreas Färber

On 10/03/14 12:23, Stefano Stabellini wrote:
> On Fri, 3 Oct 2014, Don Slutz wrote:
>> On 10/03/14 05:52, Stefano Stabellini wrote:
>>> On Thu, 2 Oct 2014, Don Slutz wrote:
>>>> This adds synchronisation of the 6 vcpu registers (only 32bits of
>>>> them) that vmport.c needs between Xen and QEMU.
>>>>
...
>>>>    }
>>>>    -static void handle_ioreq(ioreq_t *req)
>>>> +static void regs_to_cpu(XenIOState *state, vmware_ioreq_t *vmport_req)
>>>> +{
>>>> +    X86CPU *cpu;
>>>> +    CPUX86State *env;
>>>> +
>>>> +    if (!state->cpu_by_ioreq_id[0]) {
>>>> +        CPUState *cpu_state;
>>>> +
>>>> +        CPU_FOREACH(cpu_state) {
>>>> +            state->cpu_by_ioreq_id[cpu_state->cpu_index] = cpu_state;
>>>> +        }
>>>> +    }
>>> This is just the initialization, isn't it?
>>> It would be best to move it to an initialization function then.
>>>
>> A new initialization function would need to be added.  A new call to it would
>> need
>> to be added (not sure where the best place is).  Since the overhead here is
>> small I went with the less intrusive change.
> I'd prefer the initialization function if it is possible.
>
>
>

Ok, how does:


@@ -1023,6 +1028,11 @@ static void xen_main_loop_prepare(XenIOState *state)
                                                   state);

      if (evtchn_fd != -1) {
+        CPUState *cpu_state;
+
+        CPU_FOREACH(cpu_state) {
+            state->cpu_by_ioreq_id[cpu_state->cpu_index] = cpu_state;
+        }
          qemu_set_fd_handler(evtchn_fd, cpu_handle_ioreq, NULL, state);
      }
  }

Look?

    -Don Slutz

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] [PATCH v2 1/1] xen-hvm.c: Add support for Xen access to vmport
  2014-10-03 18:17         ` Don Slutz
@ 2014-10-06  9:14           ` Stefano Stabellini
  2014-10-09 13:53             ` [Qemu-devel] [RFC][PATCH v2x prototype " Don Slutz
  0 siblings, 1 reply; 10+ messages in thread
From: Stefano Stabellini @ 2014-10-06  9:14 UTC (permalink / raw)
  To: Don Slutz
  Cc: xen-devel, Stefano Stabellini, Markus Armbruster,
	Marcel Apfelbaum, Alexander Graf, qemu-devel, Michael S. Tsirkin,
	Anthony Liguori, Andreas Färber

On Fri, 3 Oct 2014, Don Slutz wrote:
> On 10/03/14 12:23, Stefano Stabellini wrote:
> > On Fri, 3 Oct 2014, Don Slutz wrote:
> > > On 10/03/14 05:52, Stefano Stabellini wrote:
> > > > On Thu, 2 Oct 2014, Don Slutz wrote:
> > > > > This adds synchronisation of the 6 vcpu registers (only 32bits of
> > > > > them) that vmport.c needs between Xen and QEMU.
> > > > > 
> ...
> > > > >    }
> > > > >    -static void handle_ioreq(ioreq_t *req)
> > > > > +static void regs_to_cpu(XenIOState *state, vmware_ioreq_t
> > > > > *vmport_req)
> > > > > +{
> > > > > +    X86CPU *cpu;
> > > > > +    CPUX86State *env;
> > > > > +
> > > > > +    if (!state->cpu_by_ioreq_id[0]) {
> > > > > +        CPUState *cpu_state;
> > > > > +
> > > > > +        CPU_FOREACH(cpu_state) {
> > > > > +            state->cpu_by_ioreq_id[cpu_state->cpu_index] = cpu_state;
> > > > > +        }
> > > > > +    }
> > > > This is just the initialization, isn't it?
> > > > It would be best to move it to an initialization function then.
> > > > 
> > > A new initialization function would need to be added.  A new call to it
> > > would
> > > need
> > > to be added (not sure where the best place is).  Since the overhead here
> > > is
> > > small I went with the less intrusive change.
> > I'd prefer the initialization function if it is possible.
> > 
> > 
> > 
> 
> Ok, how does:
> 
> 
> @@ -1023,6 +1028,11 @@ static void xen_main_loop_prepare(XenIOState *state)
>                                                   state);
> 
>      if (evtchn_fd != -1) {
> +        CPUState *cpu_state;
> +
> +        CPU_FOREACH(cpu_state) {
> +            state->cpu_by_ioreq_id[cpu_state->cpu_index] = cpu_state;
> +        }
>          qemu_set_fd_handler(evtchn_fd, cpu_handle_ioreq, NULL, state);
>      }
>  }
> 
> Look?

It looks fine

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [Qemu-devel] [RFC][PATCH v2x prototype 1/1] xen-hvm.c: Add support for Xen access to vmport
  2014-10-06  9:14           ` Stefano Stabellini
@ 2014-10-09 13:53             ` Don Slutz
  2014-10-10 13:44               ` Stefano Stabellini
  0 siblings, 1 reply; 10+ messages in thread
From: Don Slutz @ 2014-10-09 13:53 UTC (permalink / raw)
  To: qemu-devel, Paul Durrant
  Cc: xen-devel, Marcel Apfelbaum, Michael S. Tsirkin, Alexander Graf,
	Don Slutz, Markus Armbruster, Anthony Liguori,
	Andreas Färber, Stefano Stabellini

This adds synchronisation of the 6 vcpu registers (only 32bits of
them) that vmport.c needs between Xen and QEMU.

This is to avoid a 2nd and 3rd exchange between QEMU and Xen to
fetch and put these 6 vcpu registers used by the code in vmport.c
and vmmouse.c

Add new array to XenIOState that allows selection of current_cpu by
ioreq_id.

Now pass XenIOState to handle_ioreq().

Add new routines regs_to_cpu(), regs_from_cpu(), and
handle_vmport_ioreq().

Signed-off-by: Don Slutz <dslutz@verizon.com>
---
As requested by Paul Durrant <Paul.Durrant@citrix.com>

Here is a prototype of the QEMU change using a 2nd shared page.
I picked adding HVM_PARAM_VMPORT_IOREQ_PFN as the simple and
fast way to handle QEMU building on older Xen versions.


 xen-hvm.c | 128 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 123 insertions(+), 5 deletions(-)

diff --git a/xen-hvm.c b/xen-hvm.c
index 05e522c..5e80159 100644
--- a/xen-hvm.c
+++ b/xen-hvm.c
@@ -41,6 +41,29 @@ static MemoryRegion *framebuffer;
 static bool xen_in_migration;
 
 /* Compatibility with older version */
+
+/* This allows QEMU to build on a system that has Xen 4.5 or earlier
+ * installed.  This here (not in hw/xen/xen_common.h) because xen/hvm/ioreq.h
+ * needs to be included before this block and hw/xen/xen_common.h needs to
+ * be included before xen/hvm/ioreq.h
+ */
+#ifndef IOREQ_TYPE_VMWARE_PORT
+#define IOREQ_TYPE_VMWARE_PORT  3
+struct vmware_ioreq {
+    uint32_t esi;
+    uint32_t edi;
+    uint32_t ebx;
+    uint32_t ecx;
+    uint32_t edx;
+};
+typedef struct vmware_ioreq vmware_ioreq_t;
+
+struct shared_vmport_iopage {
+    struct vmware_ioreq vcpu_vmport_ioreq[1];
+};
+typedef struct shared_vmport_iopage shared_vmport_iopage_t;
+#endif
+
 #if __XEN_LATEST_INTERFACE_VERSION__ < 0x0003020a
 static inline uint32_t xen_vcpu_eport(shared_iopage_t *shared_page, int i)
 {
@@ -79,8 +102,10 @@ typedef struct XenPhysmap {
 
 typedef struct XenIOState {
     shared_iopage_t *shared_page;
+    shared_vmport_iopage_t *shared_vmport_page;
     buffered_iopage_t *buffered_io_page;
     QEMUTimer *buffered_io_timer;
+    CPUState **cpu_by_ioreq_id;
     /* the evtchn port for polling the notification, */
     evtchn_port_t *ioreq_local_port;
     /* evtchn local port for buffered io */
@@ -101,6 +126,8 @@ typedef struct XenIOState {
     Notifier wakeup;
 } XenIOState;
 
+static void handle_ioreq(XenIOState *state, ioreq_t *req);
+
 /* Xen specific function for piix pci */
 
 int xen_pci_slot_get_pirq(PCIDevice *pci_dev, int irq_num)
@@ -610,6 +637,20 @@ static ioreq_t *cpu_get_ioreq_from_shared_memory(XenIOState *state, int vcpu)
     return req;
 }
 
+/* get the vmport ioreq packets from share mem */
+static vmware_ioreq_t *cpu_get_vmport_ioreq_from_shared_memory(
+    XenIOState *state, int vcpu)
+{
+    vmware_ioreq_t *vmport_req;
+
+    assert(state->shared_vmport_page);
+    vmport_req = &state->shared_vmport_page->vcpu_vmport_ioreq[vcpu];
+
+    xen_rmb(); /* see IOREQ_READY /then/ read contents of ioreq */
+
+    return vmport_req;
+}
+
 /* use poll to get the port notification */
 /* ioreq_vec--out,the */
 /* retval--the number of ioreq packet */
@@ -773,7 +814,51 @@ static void cpu_ioreq_move(ioreq_t *req)
     }
 }
 
-static void handle_ioreq(ioreq_t *req)
+static void regs_to_cpu(XenIOState *state, vmware_ioreq_t *vmport_req,
+                        ioreq_t *req)
+{
+    X86CPU *cpu;
+    CPUX86State *env;
+
+    current_cpu = state->cpu_by_ioreq_id[state->send_vcpu];
+    cpu = X86_CPU(current_cpu);
+    env = &cpu->env;
+    env->regs[R_EAX] = req->data;
+    env->regs[R_EBX] = vmport_req->ebx;
+    env->regs[R_ECX] = vmport_req->ecx;
+    env->regs[R_EDX] = vmport_req->edx;
+    env->regs[R_ESI] = vmport_req->esi;
+    env->regs[R_EDI] = vmport_req->edi;
+}
+
+static void regs_from_cpu(XenIOState *state, vmware_ioreq_t *vmport_req,
+                          ioreq_t *req)
+{
+    X86CPU *cpu = X86_CPU(current_cpu);
+    CPUX86State *env = &cpu->env;
+
+    assert(sizeof(*vmport_req) <= sizeof(*req));
+
+    req->data = env->regs[R_EAX];
+    vmport_req->ebx = env->regs[R_EBX];
+    vmport_req->ecx = env->regs[R_ECX];
+    vmport_req->edx = env->regs[R_EDX];
+    vmport_req->esi = env->regs[R_ESI];
+    vmport_req->edi = env->regs[R_EDI];
+    current_cpu = NULL;
+}
+
+static void handle_vmport_ioreq(XenIOState *state, ioreq_t *req)
+{
+    vmware_ioreq_t *vmport_req =
+        cpu_get_vmport_ioreq_from_shared_memory(state, state->send_vcpu);
+
+    regs_to_cpu(state, vmport_req, req);
+    cpu_ioreq_pio(req);
+    regs_from_cpu(state, vmport_req, req);
+}
+
+static void handle_ioreq(XenIOState *state, ioreq_t *req)
 {
     if (!req->data_is_ptr && (req->dir == IOREQ_WRITE) &&
             (req->size < sizeof (target_ulong))) {
@@ -787,6 +872,9 @@ static void handle_ioreq(ioreq_t *req)
         case IOREQ_TYPE_COPY:
             cpu_ioreq_move(req);
             break;
+        case IOREQ_TYPE_VMWARE_PORT:
+            handle_vmport_ioreq(state, req);
+            break;
         case IOREQ_TYPE_TIMEOFFSET:
             break;
         case IOREQ_TYPE_INVALIDATE:
@@ -828,7 +916,7 @@ static int handle_buffered_iopage(XenIOState *state)
             req.data |= ((uint64_t)buf_req->data) << 32;
         }
 
-        handle_ioreq(&req);
+        handle_ioreq(state, &req);
 
         xen_mb();
         state->buffered_io_page->read_pointer += qw ? 2 : 1;
@@ -857,14 +945,16 @@ static void cpu_handle_ioreq(void *opaque)
 
     handle_buffered_iopage(state);
     if (req) {
-        handle_ioreq(req);
+        handle_ioreq(state, req);
 
         if (req->state != STATE_IOREQ_INPROCESS) {
             fprintf(stderr, "Badness in I/O request ... not in service?!: "
                     "%x, ptr: %x, port: %"PRIx64", "
-                    "data: %"PRIx64", count: %" FMT_ioreq_size ", size: %" FMT_ioreq_size "\n",
+                    "data: %"PRIx64", count: %" FMT_ioreq_size
+                    ", size: %" FMT_ioreq_size
+                    ", type: %"FMT_ioreq_size"\n",
                     req->state, req->data_is_ptr, req->addr,
-                    req->data, req->count, req->size);
+                    req->data, req->count, req->size, req->type);
             destroy_hvm_domain(false);
             return;
         }
@@ -904,6 +994,14 @@ static void xen_main_loop_prepare(XenIOState *state)
                                                  state);
 
     if (evtchn_fd != -1) {
+        CPUState *cpu_state;
+
+        fprintf(stderr, "%s: Init cpu_by_ioreq_id\n", __func__);
+        CPU_FOREACH(cpu_state) {
+            fprintf(stderr, "%s: cpu_by_ioreq_id[%d]=%p\n",
+                    __func__, cpu_state->cpu_index, cpu_state);
+            state->cpu_by_ioreq_id[cpu_state->cpu_index] = cpu_state;
+        }
         qemu_set_fd_handler(evtchn_fd, cpu_handle_ioreq, NULL, state);
     }
 }
@@ -987,6 +1085,9 @@ int xen_hvm_init(ram_addr_t *below_4g_mem_size, ram_addr_t *above_4g_mem_size,
     unsigned long ioreq_pfn;
     unsigned long bufioreq_evtchn;
     XenIOState *state;
+#ifdef HVM_PARAM_VMPORT_IOREQ_PFN
+    unsigned long vmport_ioreq_pfn;
+#endif
 
     state = g_malloc0(sizeof (XenIOState));
 
@@ -1020,6 +1121,20 @@ int xen_hvm_init(ram_addr_t *below_4g_mem_size, ram_addr_t *above_4g_mem_size,
                  errno, xen_xc);
     }
 
+#ifdef HVM_PARAM_VMPORT_IOREQ_PFN
+    xc_get_hvm_param(xen_xc, xen_domid, HVM_PARAM_VMPORT_IOREQ_PFN,
+                     &vmport_ioreq_pfn);
+    DPRINTF("shared vmport page at pfn %lx\n", vmport_ioreq_pfn);
+    state->shared_vmport_page = xc_map_foreign_range(xen_xc, xen_domid,
+                                                     XC_PAGE_SIZE,
+                                                     PROT_READ|PROT_WRITE,
+                                                     vmport_ioreq_pfn);
+    if (state->shared_vmport_page == NULL) {
+        hw_error("map shared vmport IO page returned error %d handle="
+                 XC_INTERFACE_FMT, errno, xen_xc);
+    }
+#endif
+
     xc_get_hvm_param(xen_xc, xen_domid, HVM_PARAM_BUFIOREQ_PFN, &ioreq_pfn);
     DPRINTF("buffered io page at pfn %lx\n", ioreq_pfn);
     state->buffered_io_page = xc_map_foreign_range(xen_xc, xen_domid, XC_PAGE_SIZE,
@@ -1028,6 +1143,9 @@ int xen_hvm_init(ram_addr_t *below_4g_mem_size, ram_addr_t *above_4g_mem_size,
         hw_error("map buffered IO page returned error %d", errno);
     }
 
+    /* Note: cpus is empty at this point in init */
+    state->cpu_by_ioreq_id = g_malloc0(max_cpus * sizeof(CPUState *));
+
     state->ioreq_local_port = g_malloc0(max_cpus * sizeof (evtchn_port_t));
 
     /* FIXME: how about if we overflow the page here? */
-- 
1.8.4

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] [RFC][PATCH v2x prototype 1/1] xen-hvm.c: Add support for Xen access to vmport
  2014-10-09 13:53             ` [Qemu-devel] [RFC][PATCH v2x prototype " Don Slutz
@ 2014-10-10 13:44               ` Stefano Stabellini
  2014-10-10 14:08                 ` Don Slutz
  0 siblings, 1 reply; 10+ messages in thread
From: Stefano Stabellini @ 2014-10-10 13:44 UTC (permalink / raw)
  To: Don Slutz
  Cc: xen-devel, Marcel Apfelbaum, Markus Armbruster,
	Michael S. Tsirkin, qemu-devel, Alexander Graf, Paul Durrant,
	Anthony Liguori, Andreas Färber, Stefano Stabellini

On Thu, 9 Oct 2014, Don Slutz wrote:
> This adds synchronisation of the 6 vcpu registers (only 32bits of
> them) that vmport.c needs between Xen and QEMU.
> 
> This is to avoid a 2nd and 3rd exchange between QEMU and Xen to
> fetch and put these 6 vcpu registers used by the code in vmport.c
> and vmmouse.c
> 
> Add new array to XenIOState that allows selection of current_cpu by
> ioreq_id.
> 
> Now pass XenIOState to handle_ioreq().
> 
> Add new routines regs_to_cpu(), regs_from_cpu(), and
> handle_vmport_ioreq().
> 
> Signed-off-by: Don Slutz <dslutz@verizon.com>

On the QEMU side I think that this is better than the previous
approaches.  Please try to get rid of the #ifdefs.


> As requested by Paul Durrant <Paul.Durrant@citrix.com>
> 
> Here is a prototype of the QEMU change using a 2nd shared page.
> I picked adding HVM_PARAM_VMPORT_IOREQ_PFN as the simple and
> fast way to handle QEMU building on older Xen versions.
> 
> 
>  xen-hvm.c | 128 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---
>  1 file changed, 123 insertions(+), 5 deletions(-)
> 
> diff --git a/xen-hvm.c b/xen-hvm.c
> index 05e522c..5e80159 100644
> --- a/xen-hvm.c
> +++ b/xen-hvm.c
> @@ -41,6 +41,29 @@ static MemoryRegion *framebuffer;
>  static bool xen_in_migration;
>  
>  /* Compatibility with older version */
> +
> +/* This allows QEMU to build on a system that has Xen 4.5 or earlier
> + * installed.  This here (not in hw/xen/xen_common.h) because xen/hvm/ioreq.h
> + * needs to be included before this block and hw/xen/xen_common.h needs to
> + * be included before xen/hvm/ioreq.h
> + */
> +#ifndef IOREQ_TYPE_VMWARE_PORT
> +#define IOREQ_TYPE_VMWARE_PORT  3
> +struct vmware_ioreq {
> +    uint32_t esi;
> +    uint32_t edi;
> +    uint32_t ebx;
> +    uint32_t ecx;
> +    uint32_t edx;
> +};
> +typedef struct vmware_ioreq vmware_ioreq_t;
> +
> +struct shared_vmport_iopage {
> +    struct vmware_ioreq vcpu_vmport_ioreq[1];
> +};
> +typedef struct shared_vmport_iopage shared_vmport_iopage_t;
> +#endif
> +
>  #if __XEN_LATEST_INTERFACE_VERSION__ < 0x0003020a
>  static inline uint32_t xen_vcpu_eport(shared_iopage_t *shared_page, int i)
>  {
> @@ -79,8 +102,10 @@ typedef struct XenPhysmap {
>  
>  typedef struct XenIOState {
>      shared_iopage_t *shared_page;
> +    shared_vmport_iopage_t *shared_vmport_page;
>      buffered_iopage_t *buffered_io_page;
>      QEMUTimer *buffered_io_timer;
> +    CPUState **cpu_by_ioreq_id;
>      /* the evtchn port for polling the notification, */
>      evtchn_port_t *ioreq_local_port;
>      /* evtchn local port for buffered io */
> @@ -101,6 +126,8 @@ typedef struct XenIOState {
>      Notifier wakeup;
>  } XenIOState;
>  
> +static void handle_ioreq(XenIOState *state, ioreq_t *req);
> +
>  /* Xen specific function for piix pci */
>  
>  int xen_pci_slot_get_pirq(PCIDevice *pci_dev, int irq_num)
> @@ -610,6 +637,20 @@ static ioreq_t *cpu_get_ioreq_from_shared_memory(XenIOState *state, int vcpu)
>      return req;
>  }
>  
> +/* get the vmport ioreq packets from share mem */
> +static vmware_ioreq_t *cpu_get_vmport_ioreq_from_shared_memory(
> +    XenIOState *state, int vcpu)
> +{
> +    vmware_ioreq_t *vmport_req;
> +
> +    assert(state->shared_vmport_page);
> +    vmport_req = &state->shared_vmport_page->vcpu_vmport_ioreq[vcpu];
> +
> +    xen_rmb(); /* see IOREQ_READY /then/ read contents of ioreq */
> +
> +    return vmport_req;
> +}
> +
>  /* use poll to get the port notification */
>  /* ioreq_vec--out,the */
>  /* retval--the number of ioreq packet */
> @@ -773,7 +814,51 @@ static void cpu_ioreq_move(ioreq_t *req)
>      }
>  }
>  
> -static void handle_ioreq(ioreq_t *req)
> +static void regs_to_cpu(XenIOState *state, vmware_ioreq_t *vmport_req,
> +                        ioreq_t *req)
> +{
> +    X86CPU *cpu;
> +    CPUX86State *env;
> +
> +    current_cpu = state->cpu_by_ioreq_id[state->send_vcpu];
> +    cpu = X86_CPU(current_cpu);
> +    env = &cpu->env;
> +    env->regs[R_EAX] = req->data;
> +    env->regs[R_EBX] = vmport_req->ebx;
> +    env->regs[R_ECX] = vmport_req->ecx;
> +    env->regs[R_EDX] = vmport_req->edx;
> +    env->regs[R_ESI] = vmport_req->esi;
> +    env->regs[R_EDI] = vmport_req->edi;
> +}
> +
> +static void regs_from_cpu(XenIOState *state, vmware_ioreq_t *vmport_req,
> +                          ioreq_t *req)
> +{
> +    X86CPU *cpu = X86_CPU(current_cpu);
> +    CPUX86State *env = &cpu->env;
> +
> +    assert(sizeof(*vmport_req) <= sizeof(*req));
> +
> +    req->data = env->regs[R_EAX];
> +    vmport_req->ebx = env->regs[R_EBX];
> +    vmport_req->ecx = env->regs[R_ECX];
> +    vmport_req->edx = env->regs[R_EDX];
> +    vmport_req->esi = env->regs[R_ESI];
> +    vmport_req->edi = env->regs[R_EDI];
> +    current_cpu = NULL;
> +}
> +
> +static void handle_vmport_ioreq(XenIOState *state, ioreq_t *req)
> +{
> +    vmware_ioreq_t *vmport_req =
> +        cpu_get_vmport_ioreq_from_shared_memory(state, state->send_vcpu);
> +
> +    regs_to_cpu(state, vmport_req, req);
> +    cpu_ioreq_pio(req);
> +    regs_from_cpu(state, vmport_req, req);
> +}
> +
> +static void handle_ioreq(XenIOState *state, ioreq_t *req)
>  {
>      if (!req->data_is_ptr && (req->dir == IOREQ_WRITE) &&
>              (req->size < sizeof (target_ulong))) {
> @@ -787,6 +872,9 @@ static void handle_ioreq(ioreq_t *req)
>          case IOREQ_TYPE_COPY:
>              cpu_ioreq_move(req);
>              break;
> +        case IOREQ_TYPE_VMWARE_PORT:
> +            handle_vmport_ioreq(state, req);
> +            break;
>          case IOREQ_TYPE_TIMEOFFSET:
>              break;
>          case IOREQ_TYPE_INVALIDATE:
> @@ -828,7 +916,7 @@ static int handle_buffered_iopage(XenIOState *state)
>              req.data |= ((uint64_t)buf_req->data) << 32;
>          }
>  
> -        handle_ioreq(&req);
> +        handle_ioreq(state, &req);
>  
>          xen_mb();
>          state->buffered_io_page->read_pointer += qw ? 2 : 1;
> @@ -857,14 +945,16 @@ static void cpu_handle_ioreq(void *opaque)
>  
>      handle_buffered_iopage(state);
>      if (req) {
> -        handle_ioreq(req);
> +        handle_ioreq(state, req);
>  
>          if (req->state != STATE_IOREQ_INPROCESS) {
>              fprintf(stderr, "Badness in I/O request ... not in service?!: "
>                      "%x, ptr: %x, port: %"PRIx64", "
> -                    "data: %"PRIx64", count: %" FMT_ioreq_size ", size: %" FMT_ioreq_size "\n",
> +                    "data: %"PRIx64", count: %" FMT_ioreq_size
> +                    ", size: %" FMT_ioreq_size
> +                    ", type: %"FMT_ioreq_size"\n",
>                      req->state, req->data_is_ptr, req->addr,
> -                    req->data, req->count, req->size);
> +                    req->data, req->count, req->size, req->type);
>              destroy_hvm_domain(false);
>              return;
>          }
> @@ -904,6 +994,14 @@ static void xen_main_loop_prepare(XenIOState *state)
>                                                   state);
>  
>      if (evtchn_fd != -1) {
> +        CPUState *cpu_state;
> +
> +        fprintf(stderr, "%s: Init cpu_by_ioreq_id\n", __func__);
> +        CPU_FOREACH(cpu_state) {
> +            fprintf(stderr, "%s: cpu_by_ioreq_id[%d]=%p\n",
> +                    __func__, cpu_state->cpu_index, cpu_state);
> +            state->cpu_by_ioreq_id[cpu_state->cpu_index] = cpu_state;
> +        }
>          qemu_set_fd_handler(evtchn_fd, cpu_handle_ioreq, NULL, state);
>      }
>  }
> @@ -987,6 +1085,9 @@ int xen_hvm_init(ram_addr_t *below_4g_mem_size, ram_addr_t *above_4g_mem_size,
>      unsigned long ioreq_pfn;
>      unsigned long bufioreq_evtchn;
>      XenIOState *state;
> +#ifdef HVM_PARAM_VMPORT_IOREQ_PFN
> +    unsigned long vmport_ioreq_pfn;
> +#endif
>  
>      state = g_malloc0(sizeof (XenIOState));
>  
> @@ -1020,6 +1121,20 @@ int xen_hvm_init(ram_addr_t *below_4g_mem_size, ram_addr_t *above_4g_mem_size,
>                   errno, xen_xc);
>      }
>  
> +#ifdef HVM_PARAM_VMPORT_IOREQ_PFN
> +    xc_get_hvm_param(xen_xc, xen_domid, HVM_PARAM_VMPORT_IOREQ_PFN,
> +                     &vmport_ioreq_pfn);
> +    DPRINTF("shared vmport page at pfn %lx\n", vmport_ioreq_pfn);
> +    state->shared_vmport_page = xc_map_foreign_range(xen_xc, xen_domid,
> +                                                     XC_PAGE_SIZE,
> +                                                     PROT_READ|PROT_WRITE,
> +                                                     vmport_ioreq_pfn);
> +    if (state->shared_vmport_page == NULL) {
> +        hw_error("map shared vmport IO page returned error %d handle="
> +                 XC_INTERFACE_FMT, errno, xen_xc);
> +    }
> +#endif
> +
>      xc_get_hvm_param(xen_xc, xen_domid, HVM_PARAM_BUFIOREQ_PFN, &ioreq_pfn);
>      DPRINTF("buffered io page at pfn %lx\n", ioreq_pfn);
>      state->buffered_io_page = xc_map_foreign_range(xen_xc, xen_domid, XC_PAGE_SIZE,
> @@ -1028,6 +1143,9 @@ int xen_hvm_init(ram_addr_t *below_4g_mem_size, ram_addr_t *above_4g_mem_size,
>          hw_error("map buffered IO page returned error %d", errno);
>      }
>  
> +    /* Note: cpus is empty at this point in init */
> +    state->cpu_by_ioreq_id = g_malloc0(max_cpus * sizeof(CPUState *));
> +
>      state->ioreq_local_port = g_malloc0(max_cpus * sizeof (evtchn_port_t));
>  
>      /* FIXME: how about if we overflow the page here? */
> -- 
> 1.8.4
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [Qemu-devel] [RFC][PATCH v2x prototype 1/1] xen-hvm.c: Add support for Xen access to vmport
  2014-10-10 13:44               ` Stefano Stabellini
@ 2014-10-10 14:08                 ` Don Slutz
  0 siblings, 0 replies; 10+ messages in thread
From: Don Slutz @ 2014-10-10 14:08 UTC (permalink / raw)
  To: Stefano Stabellini, Don Slutz
  Cc: xen-devel, Marcel Apfelbaum, Markus Armbruster,
	Michael S. Tsirkin, qemu-devel, Alexander Graf, Paul Durrant,
	Anthony Liguori, Andreas Färber

On 10/10/14 09:44, Stefano Stabellini wrote:
> On Thu, 9 Oct 2014, Don Slutz wrote:
>> This adds synchronisation of the 6 vcpu registers (only 32bits of
>> them) that vmport.c needs between Xen and QEMU.
>>
>> This is to avoid a 2nd and 3rd exchange between QEMU and Xen to
>> fetch and put these 6 vcpu registers used by the code in vmport.c
>> and vmmouse.c
>>
>> Add new array to XenIOState that allows selection of current_cpu by
>> ioreq_id.
>>
>> Now pass XenIOState to handle_ioreq().
>>
>> Add new routines regs_to_cpu(), regs_from_cpu(), and
>> handle_vmport_ioreq().
>>
>> Signed-off-by: Don Slutz <dslutz@verizon.com>
> On the QEMU side I think that this is better than the previous
> approaches.  Please try to get rid of the #ifdefs.
>

The #ifdefs are needed so that QEMU can build with older Xen installed
(like Xen 4.5, Xen 4.4, etc).

The #ifdefs on HVM_PARAM_VMPORT_IOREQ_PFN can be hidden by
adding a routine to xen_common.h but that is not as simple as the
#ifdefs (XenIOState is not defined in xen_common.h) and I do not know
if HVM_PARAM_VMPORT_IOREQ_PFN is the way we will go, so did not spend
time on doing so.

    -Don Slutz

>> As requested by Paul Durrant <Paul.Durrant@citrix.com>
>>
>> Here is a prototype of the QEMU change using a 2nd shared page.
>> I picked adding HVM_PARAM_VMPORT_IOREQ_PFN as the simple and
>> fast way to handle QEMU building on older Xen versions.
>>
>>
>>   xen-hvm.c | 128 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---
>>   1 file changed, 123 insertions(+), 5 deletions(-)
>>
>> diff --git a/xen-hvm.c b/xen-hvm.c
>> index 05e522c..5e80159 100644
>> --- a/xen-hvm.c
>> +++ b/xen-hvm.c
>> @@ -41,6 +41,29 @@ static MemoryRegion *framebuffer;
>>   static bool xen_in_migration;
>>   
>>   /* Compatibility with older version */
>> +
>> +/* This allows QEMU to build on a system that has Xen 4.5 or earlier
>> + * installed.  This here (not in hw/xen/xen_common.h) because xen/hvm/ioreq.h
>> + * needs to be included before this block and hw/xen/xen_common.h needs to
>> + * be included before xen/hvm/ioreq.h
>> + */
>> +#ifndef IOREQ_TYPE_VMWARE_PORT
>> +#define IOREQ_TYPE_VMWARE_PORT  3
>> +struct vmware_ioreq {
>> +    uint32_t esi;
>> +    uint32_t edi;
>> +    uint32_t ebx;
>> +    uint32_t ecx;
>> +    uint32_t edx;
>> +};
>> +typedef struct vmware_ioreq vmware_ioreq_t;
>> +
>> +struct shared_vmport_iopage {
>> +    struct vmware_ioreq vcpu_vmport_ioreq[1];
>> +};
>> +typedef struct shared_vmport_iopage shared_vmport_iopage_t;
>> +#endif
>> +
>>   #if __XEN_LATEST_INTERFACE_VERSION__ < 0x0003020a
>>   static inline uint32_t xen_vcpu_eport(shared_iopage_t *shared_page, int i)
>>   {
>> @@ -79,8 +102,10 @@ typedef struct XenPhysmap {
>>   
>>   typedef struct XenIOState {
>>       shared_iopage_t *shared_page;
>> +    shared_vmport_iopage_t *shared_vmport_page;
>>       buffered_iopage_t *buffered_io_page;
>>       QEMUTimer *buffered_io_timer;
>> +    CPUState **cpu_by_ioreq_id;
>>       /* the evtchn port for polling the notification, */
>>       evtchn_port_t *ioreq_local_port;
>>       /* evtchn local port for buffered io */
>> @@ -101,6 +126,8 @@ typedef struct XenIOState {
>>       Notifier wakeup;
>>   } XenIOState;
>>   
>> +static void handle_ioreq(XenIOState *state, ioreq_t *req);
>> +
>>   /* Xen specific function for piix pci */
>>   
>>   int xen_pci_slot_get_pirq(PCIDevice *pci_dev, int irq_num)
>> @@ -610,6 +637,20 @@ static ioreq_t *cpu_get_ioreq_from_shared_memory(XenIOState *state, int vcpu)
>>       return req;
>>   }
>>   
>> +/* get the vmport ioreq packets from share mem */
>> +static vmware_ioreq_t *cpu_get_vmport_ioreq_from_shared_memory(
>> +    XenIOState *state, int vcpu)
>> +{
>> +    vmware_ioreq_t *vmport_req;
>> +
>> +    assert(state->shared_vmport_page);
>> +    vmport_req = &state->shared_vmport_page->vcpu_vmport_ioreq[vcpu];
>> +
>> +    xen_rmb(); /* see IOREQ_READY /then/ read contents of ioreq */
>> +
>> +    return vmport_req;
>> +}
>> +
>>   /* use poll to get the port notification */
>>   /* ioreq_vec--out,the */
>>   /* retval--the number of ioreq packet */
>> @@ -773,7 +814,51 @@ static void cpu_ioreq_move(ioreq_t *req)
>>       }
>>   }
>>   
>> -static void handle_ioreq(ioreq_t *req)
>> +static void regs_to_cpu(XenIOState *state, vmware_ioreq_t *vmport_req,
>> +                        ioreq_t *req)
>> +{
>> +    X86CPU *cpu;
>> +    CPUX86State *env;
>> +
>> +    current_cpu = state->cpu_by_ioreq_id[state->send_vcpu];
>> +    cpu = X86_CPU(current_cpu);
>> +    env = &cpu->env;
>> +    env->regs[R_EAX] = req->data;
>> +    env->regs[R_EBX] = vmport_req->ebx;
>> +    env->regs[R_ECX] = vmport_req->ecx;
>> +    env->regs[R_EDX] = vmport_req->edx;
>> +    env->regs[R_ESI] = vmport_req->esi;
>> +    env->regs[R_EDI] = vmport_req->edi;
>> +}
>> +
>> +static void regs_from_cpu(XenIOState *state, vmware_ioreq_t *vmport_req,
>> +                          ioreq_t *req)
>> +{
>> +    X86CPU *cpu = X86_CPU(current_cpu);
>> +    CPUX86State *env = &cpu->env;
>> +
>> +    assert(sizeof(*vmport_req) <= sizeof(*req));
>> +
>> +    req->data = env->regs[R_EAX];
>> +    vmport_req->ebx = env->regs[R_EBX];
>> +    vmport_req->ecx = env->regs[R_ECX];
>> +    vmport_req->edx = env->regs[R_EDX];
>> +    vmport_req->esi = env->regs[R_ESI];
>> +    vmport_req->edi = env->regs[R_EDI];
>> +    current_cpu = NULL;
>> +}
>> +
>> +static void handle_vmport_ioreq(XenIOState *state, ioreq_t *req)
>> +{
>> +    vmware_ioreq_t *vmport_req =
>> +        cpu_get_vmport_ioreq_from_shared_memory(state, state->send_vcpu);
>> +
>> +    regs_to_cpu(state, vmport_req, req);
>> +    cpu_ioreq_pio(req);
>> +    regs_from_cpu(state, vmport_req, req);
>> +}
>> +
>> +static void handle_ioreq(XenIOState *state, ioreq_t *req)
>>   {
>>       if (!req->data_is_ptr && (req->dir == IOREQ_WRITE) &&
>>               (req->size < sizeof (target_ulong))) {
>> @@ -787,6 +872,9 @@ static void handle_ioreq(ioreq_t *req)
>>           case IOREQ_TYPE_COPY:
>>               cpu_ioreq_move(req);
>>               break;
>> +        case IOREQ_TYPE_VMWARE_PORT:
>> +            handle_vmport_ioreq(state, req);
>> +            break;
>>           case IOREQ_TYPE_TIMEOFFSET:
>>               break;
>>           case IOREQ_TYPE_INVALIDATE:
>> @@ -828,7 +916,7 @@ static int handle_buffered_iopage(XenIOState *state)
>>               req.data |= ((uint64_t)buf_req->data) << 32;
>>           }
>>   
>> -        handle_ioreq(&req);
>> +        handle_ioreq(state, &req);
>>   
>>           xen_mb();
>>           state->buffered_io_page->read_pointer += qw ? 2 : 1;
>> @@ -857,14 +945,16 @@ static void cpu_handle_ioreq(void *opaque)
>>   
>>       handle_buffered_iopage(state);
>>       if (req) {
>> -        handle_ioreq(req);
>> +        handle_ioreq(state, req);
>>   
>>           if (req->state != STATE_IOREQ_INPROCESS) {
>>               fprintf(stderr, "Badness in I/O request ... not in service?!: "
>>                       "%x, ptr: %x, port: %"PRIx64", "
>> -                    "data: %"PRIx64", count: %" FMT_ioreq_size ", size: %" FMT_ioreq_size "\n",
>> +                    "data: %"PRIx64", count: %" FMT_ioreq_size
>> +                    ", size: %" FMT_ioreq_size
>> +                    ", type: %"FMT_ioreq_size"\n",
>>                       req->state, req->data_is_ptr, req->addr,
>> -                    req->data, req->count, req->size);
>> +                    req->data, req->count, req->size, req->type);
>>               destroy_hvm_domain(false);
>>               return;
>>           }
>> @@ -904,6 +994,14 @@ static void xen_main_loop_prepare(XenIOState *state)
>>                                                    state);
>>   
>>       if (evtchn_fd != -1) {
>> +        CPUState *cpu_state;
>> +
>> +        fprintf(stderr, "%s: Init cpu_by_ioreq_id\n", __func__);
>> +        CPU_FOREACH(cpu_state) {
>> +            fprintf(stderr, "%s: cpu_by_ioreq_id[%d]=%p\n",
>> +                    __func__, cpu_state->cpu_index, cpu_state);
>> +            state->cpu_by_ioreq_id[cpu_state->cpu_index] = cpu_state;
>> +        }
>>           qemu_set_fd_handler(evtchn_fd, cpu_handle_ioreq, NULL, state);
>>       }
>>   }
>> @@ -987,6 +1085,9 @@ int xen_hvm_init(ram_addr_t *below_4g_mem_size, ram_addr_t *above_4g_mem_size,
>>       unsigned long ioreq_pfn;
>>       unsigned long bufioreq_evtchn;
>>       XenIOState *state;
>> +#ifdef HVM_PARAM_VMPORT_IOREQ_PFN
>> +    unsigned long vmport_ioreq_pfn;
>> +#endif
>>   
>>       state = g_malloc0(sizeof (XenIOState));
>>   
>> @@ -1020,6 +1121,20 @@ int xen_hvm_init(ram_addr_t *below_4g_mem_size, ram_addr_t *above_4g_mem_size,
>>                    errno, xen_xc);
>>       }
>>   
>> +#ifdef HVM_PARAM_VMPORT_IOREQ_PFN
>> +    xc_get_hvm_param(xen_xc, xen_domid, HVM_PARAM_VMPORT_IOREQ_PFN,
>> +                     &vmport_ioreq_pfn);
>> +    DPRINTF("shared vmport page at pfn %lx\n", vmport_ioreq_pfn);
>> +    state->shared_vmport_page = xc_map_foreign_range(xen_xc, xen_domid,
>> +                                                     XC_PAGE_SIZE,
>> +                                                     PROT_READ|PROT_WRITE,
>> +                                                     vmport_ioreq_pfn);
>> +    if (state->shared_vmport_page == NULL) {
>> +        hw_error("map shared vmport IO page returned error %d handle="
>> +                 XC_INTERFACE_FMT, errno, xen_xc);
>> +    }
>> +#endif
>> +
>>       xc_get_hvm_param(xen_xc, xen_domid, HVM_PARAM_BUFIOREQ_PFN, &ioreq_pfn);
>>       DPRINTF("buffered io page at pfn %lx\n", ioreq_pfn);
>>       state->buffered_io_page = xc_map_foreign_range(xen_xc, xen_domid, XC_PAGE_SIZE,
>> @@ -1028,6 +1143,9 @@ int xen_hvm_init(ram_addr_t *below_4g_mem_size, ram_addr_t *above_4g_mem_size,
>>           hw_error("map buffered IO page returned error %d", errno);
>>       }
>>   
>> +    /* Note: cpus is empty at this point in init */
>> +    state->cpu_by_ioreq_id = g_malloc0(max_cpus * sizeof(CPUState *));
>> +
>>       state->ioreq_local_port = g_malloc0(max_cpus * sizeof (evtchn_port_t));
>>   
>>       /* FIXME: how about if we overflow the page here? */
>> -- 
>> 1.8.4
>>

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2014-10-10 14:08 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-02 18:51 [Qemu-devel] [PATCH v2 0/1] Add support for Xen access to vmport Don Slutz
2014-10-02 18:51 ` [Qemu-devel] [PATCH v2 1/1] xen-hvm.c: " Don Slutz
2014-10-03  9:52   ` Stefano Stabellini
2014-10-03 13:32     ` Don Slutz
2014-10-03 16:23       ` Stefano Stabellini
2014-10-03 18:17         ` Don Slutz
2014-10-06  9:14           ` Stefano Stabellini
2014-10-09 13:53             ` [Qemu-devel] [RFC][PATCH v2x prototype " Don Slutz
2014-10-10 13:44               ` Stefano Stabellini
2014-10-10 14:08                 ` Don Slutz

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).