[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v8 07/20] multi-process: add co-routines to communicate with remo
From: |
Jagannathan Raman |
Subject: |
[PATCH v8 07/20] multi-process: add co-routines to communicate with remote |
Date: |
Fri, 31 Jul 2020 14:20:14 -0400 |
From: Elena Ufimtseva <elena.ufimtseva@oracle.com>
process to avoid blocking the main loop during the message exchanges.
To be used by proxy device.
Signed-off-by: Elena Ufimtseva <elena.ufimtseva@oracle.com>
Signed-off-by: Jagannathan Raman <jag.raman@oracle.com>
Signed-off-by: John G Johnson <john.g.johnson@oracle.com>
---
include/io/mpqemu-link.h | 15 +++++++++
io/mpqemu-link.c | 82 ++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 97 insertions(+)
diff --git a/include/io/mpqemu-link.h b/include/io/mpqemu-link.h
index ae7008e..8591ad2 100644
--- a/include/io/mpqemu-link.h
+++ b/include/io/mpqemu-link.h
@@ -14,6 +14,7 @@
#include "qom/object.h"
#include "qemu/thread.h"
#include "io/channel.h"
+#include "io/channel-socket.h"
#define REMOTE_MAX_FDS 8
@@ -27,6 +28,7 @@
*/
typedef enum {
INIT = 0,
+ RET_MSG,
MAX = INT_MAX,
} MPQemuCmd;
@@ -64,6 +66,19 @@ typedef struct {
uint8_t *data2;
} MPQemuMsg;
+struct MPQemuRequest {
+ MPQemuMsg *msg;
+ QIOChannel *ioc;
+ Coroutine *co;
+ bool finished;
+ int error;
+ long ret;
+};
+
+typedef struct MPQemuRequest MPQemuRequest;
+
+uint64_t mpqemu_msg_send_and_await_reply(MPQemuMsg *msg, QIOChannel *ioc,
+ Error **errp);
void mpqemu_msg_send(MPQemuMsg *msg, QIOChannel *ioc, Error **errp);
void mpqemu_msg_recv(MPQemuMsg *msg, QIOChannel *ioc, Error **errp);
diff --git a/io/mpqemu-link.c b/io/mpqemu-link.c
index dcefa42..d4dd0fe 100644
--- a/io/mpqemu-link.c
+++ b/io/mpqemu-link.c
@@ -16,6 +16,8 @@
#include "qapi/error.h"
#include "qemu/iov.h"
#include "qemu/error-report.h"
+#include "qemu/main-loop.h"
+#include "io/channel-socket.h"
void mpqemu_msg_send(MPQemuMsg *msg, QIOChannel *ioc, Error **errp)
{
@@ -132,6 +134,86 @@ void mpqemu_msg_recv(MPQemuMsg *msg, QIOChannel *ioc,
Error **errp)
}
}
+/* Use in proxy only as it clobbers fd handlers. */
+static void coroutine_fn mpqemu_msg_send_co(void *data)
+{
+ MPQemuRequest *req = (MPQemuRequest *)data;
+ MPQemuMsg msg_reply = {0};
+ Error *local_err = NULL;
+
+ if (!req->ioc) {
+ error_report("No channel available to send command %d",
+ req->msg->cmd);
+ req->finished = true;
+ req->error = -EINVAL;
+ return;
+ }
+
+ req->co = qemu_coroutine_self();
+ mpqemu_msg_send(req->msg, req->ioc, &local_err);
+ if (local_err) {
+ error_report("ERROR: failed to send command to remote %d, ",
+ req->msg->cmd);
+ req->finished = true;
+ req->error = -EINVAL;
+ return;
+ }
+
+ mpqemu_msg_recv(&msg_reply, req->ioc, &local_err);
+ if (local_err) {
+ error_report("ERROR: failed to get a reply for command %d, "
+ "errno %s",
+ req->msg->cmd, strerror(errno));
+ req->error = -EIO;
+ } else {
+ if (!mpqemu_msg_valid(&msg_reply) || msg_reply.cmd != RET_MSG) {
+ error_report("ERROR: Invalid reply received for command %d",
+ req->msg->cmd);
+ req->error = -EINVAL;
+ } else {
+ req->ret = msg_reply.data1.u64;
+ }
+ }
+ req->finished = true;
+}
+
+/*
+ * Create if needed and enter co-routine to send the message to the
+ * remote channel ioc and wait for the reply.
+ * Returns the value from the reply message, sets the error on failure.
+ */
+
+uint64_t mpqemu_msg_send_and_await_reply(MPQemuMsg *msg, QIOChannel *ioc,
+ Error **errp)
+{
+ MPQemuRequest req = {0};
+ uint64_t ret = UINT64_MAX;
+
+ req.ioc = ioc;
+ if (!req.ioc) {
+ error_setg(errp, "Channel is set to NULL");
+ return ret;
+ }
+
+ req.msg = msg;
+ req.ret = 0;
+ req.finished = false;
+
+ req.co = qemu_coroutine_create(mpqemu_msg_send_co, &req);
+ qemu_coroutine_enter(req.co);
+
+ while (!req.finished) {
+ aio_poll(qemu_get_aio_context(), true);
+ }
+ if (req.error) {
+ error_setg(errp, "Error exchanging message with remote process, "
+ "error %d", req.error);
+ }
+ ret = req.ret;
+
+ return ret;
+}
+
bool mpqemu_msg_valid(MPQemuMsg *msg)
{
if (msg->cmd >= MAX && msg->cmd < 0) {
--
1.8.3.1
- [PATCH v8 00/20] Initial support for multi-process qemu, Jagannathan Raman, 2020/07/31
- [PATCH v8 02/20] multi-process: Add config option for multi-process QEMU, Jagannathan Raman, 2020/07/31
- [PATCH v8 01/20] memory: alloc RAM from file at offset, Jagannathan Raman, 2020/07/31
- [PATCH v8 05/20] multi-process: add qio channel function to transmit, Jagannathan Raman, 2020/07/31
- [PATCH v8 07/20] multi-process: add co-routines to communicate with remote,
Jagannathan Raman <=
- [PATCH v8 08/20] multi-process: Initialize message handler in remote device, Jagannathan Raman, 2020/07/31
- [PATCH v8 03/20] multi-process: setup PCI host bridge for remote device, Jagannathan Raman, 2020/07/31
- [PATCH v8 09/20] multi-process: Associate fd of a PCIDevice with its object, Jagannathan Raman, 2020/07/31
- [PATCH v8 04/20] multi-process: setup a machine object for remote device process, Jagannathan Raman, 2020/07/31
- [PATCH v8 11/20] multi-process: introduce proxy object, Jagannathan Raman, 2020/07/31
- [PATCH v8 13/20] multi-process: PCI BAR read/write handling for proxy & remote endpoints, Jagannathan Raman, 2020/07/31
- [PATCH v8 14/20] multi-process: Synchronize remote memory, Jagannathan Raman, 2020/07/31
- [PATCH v8 15/20] multi-process: create IOHUB object to handle irq, Jagannathan Raman, 2020/07/31
- [PATCH v8 16/20] multi-process: Retrieve PCI info from remote process, Jagannathan Raman, 2020/07/31
- [PATCH v8 18/20] multi-process: perform device reset in the remote process, Jagannathan Raman, 2020/07/31