[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v17 14/20] multi-process: add proxy communication functions
From: |
Jagannathan Raman |
Subject: |
[PATCH v17 14/20] multi-process: add proxy communication functions |
Date: |
Wed, 13 Jan 2021 11:42:26 -0500 |
From: Elena Ufimtseva <elena.ufimtseva@oracle.com>
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>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
---
include/hw/remote/mpqemu-link.h | 4 ++++
hw/remote/mpqemu-link.c | 34 ++++++++++++++++++++++++++++++++++
2 files changed, 38 insertions(+)
diff --git a/include/hw/remote/mpqemu-link.h b/include/hw/remote/mpqemu-link.h
index 6ee5bc5..1b35d40 100644
--- a/include/hw/remote/mpqemu-link.h
+++ b/include/hw/remote/mpqemu-link.h
@@ -15,6 +15,8 @@
#include "qemu/thread.h"
#include "io/channel.h"
#include "exec/hwaddr.h"
+#include "io/channel-socket.h"
+#include "hw/remote/proxy.h"
#define REMOTE_MAX_FDS 8
@@ -68,6 +70,8 @@ typedef struct {
bool mpqemu_msg_send(MPQemuMsg *msg, QIOChannel *ioc, Error **errp);
bool mpqemu_msg_recv(MPQemuMsg *msg, QIOChannel *ioc, Error **errp);
+uint64_t mpqemu_msg_send_and_await_reply(MPQemuMsg *msg, PCIProxyDev *pdev,
+ Error **errp);
bool mpqemu_msg_valid(MPQemuMsg *msg);
#endif
diff --git a/hw/remote/mpqemu-link.c b/hw/remote/mpqemu-link.c
index 4b25649..88d1f9b 100644
--- a/hw/remote/mpqemu-link.c
+++ b/hw/remote/mpqemu-link.c
@@ -182,6 +182,40 @@ fail:
return ret;
}
+/*
+ * Send msg and wait for a reply with command code RET_MSG.
+ * Returns the message received of size u64 or UINT64_MAX
+ * on error.
+ * Called from VCPU thread in non-coroutine context.
+ * Used by the Proxy object to communicate to remote processes.
+ */
+uint64_t mpqemu_msg_send_and_await_reply(MPQemuMsg *msg, PCIProxyDev *pdev,
+ Error **errp)
+{
+ ERRP_GUARD();
+ MPQemuMsg msg_reply = {0};
+ uint64_t ret = UINT64_MAX;
+
+ assert(!qemu_in_coroutine());
+
+ QEMU_LOCK_GUARD(&pdev->io_mutex);
+ if (!mpqemu_msg_send(msg, pdev->ioc, errp)) {
+ return ret;
+ }
+
+ if (!mpqemu_msg_recv(&msg_reply, pdev->ioc, errp)) {
+ return ret;
+ }
+
+ if (!mpqemu_msg_valid(&msg_reply)) {
+ error_setg(errp, "ERROR: Invalid reply received for command %d",
+ msg->cmd);
+ return ret;
+ }
+
+ return msg_reply.data.u64;
+}
+
bool mpqemu_msg_valid(MPQemuMsg *msg)
{
if (msg->cmd >= MPQEMU_CMD_MAX && msg->cmd < 0) {
--
1.8.3.1
- [PATCH v17 00/20] Initial support for multi-process Qemu, Jagannathan Raman, 2021/01/13
- [PATCH v17 03/20] memory: alloc RAM from file at offset, Jagannathan Raman, 2021/01/13
- [PATCH v17 01/20] multi-process: add the concept description to docs/devel/qemu-multiprocess, Jagannathan Raman, 2021/01/13
- [PATCH v17 02/20] multi-process: add configure and usage information, Jagannathan Raman, 2021/01/13
- [PATCH v17 08/20] io: add qio_channel_readv_full_all_eof & qio_channel_readv_full_all helpers, Jagannathan Raman, 2021/01/13
- [PATCH v17 05/20] multi-process: setup PCI host bridge for remote device, Jagannathan Raman, 2021/01/13
- [PATCH v17 10/20] multi-process: Initialize message handler in remote device, Jagannathan Raman, 2021/01/13
- [PATCH v17 12/20] multi-process: setup memory manager for remote device, Jagannathan Raman, 2021/01/13
- [PATCH v17 11/20] multi-process: Associate fd of a PCIDevice with its object, Jagannathan Raman, 2021/01/13
- [PATCH v17 14/20] multi-process: add proxy communication functions,
Jagannathan Raman <=
- [PATCH v17 09/20] multi-process: define MPQemuMsg format and transmission functions, Jagannathan Raman, 2021/01/13
- [PATCH v17 13/20] multi-process: introduce proxy object, Jagannathan Raman, 2021/01/13
- [PATCH v17 18/20] multi-process: create IOHUB object to handle irq, Jagannathan Raman, 2021/01/13
- [PATCH v17 15/20] multi-process: Forward PCI config space acceses to the remote process, Jagannathan Raman, 2021/01/13
- [PATCH v17 20/20] multi-process: perform device reset in the remote process, Jagannathan Raman, 2021/01/13
- [PATCH v17 04/20] multi-process: Add config option for multi-process QEMU, Jagannathan Raman, 2021/01/13
- [PATCH v17 06/20] multi-process: setup a machine object for remote device process, Jagannathan Raman, 2021/01/13
- [PATCH v17 07/20] io: add qio_channel_writev_full_all helper, Jagannathan Raman, 2021/01/13
- [PATCH v17 16/20] multi-process: PCI BAR read/write handling for proxy & remote endpoints, Jagannathan Raman, 2021/01/13
- [PATCH v17 17/20] multi-process: Synchronize remote memory, Jagannathan Raman, 2021/01/13