@@ -6,6 +6,11 @@
#include "io/mpqemu-link.h"
#include "qapi/error.h"
#include "sysemu/runstate.h"
+#include "io/channel-util.h"
+#include "hw/pci/pci.h"
+
+static void process_connect_dev_msg(MPQemuMsg *msg, QIOChannel *com,
+ Error **errp);
gboolean mpqemu_process_msg(QIOChannel *ioc, GIOCondition cond,
gpointer opaque)
@@ -34,6 +39,9 @@ gboolean mpqemu_process_msg(QIOChannel *ioc, GIOCondition cond,
}
switch (msg.cmd) {
+ case CONNECT_DEV:
+ process_connect_dev_msg(&msg, ioc, &local_err);
+ break;
default:
error_setg(&local_err, "Unknown command (%d) received from proxy \
in remote process pid=%d", msg.cmd, getpid());
@@ -50,3 +58,34 @@ gboolean mpqemu_process_msg(QIOChannel *ioc, GIOCondition cond,
return TRUE;
}
+
+static void process_connect_dev_msg(MPQemuMsg *msg, QIOChannel *com,
+ Error **errp)
+{
+ char *devid = (char *)msg->data2;
+ QIOChannel *dioc = NULL;
+ DeviceState *dev = NULL;
+ MPQemuMsg ret = { 0 };
+ int rc = 0;
+
+ g_assert(devid && (devid[msg->size - 1] == '\0'));
+
+ dev = qdev_find_recursive(sysbus_get_default(), devid);
+ if (!dev || !object_dynamic_cast(OBJECT(dev), TYPE_PCI_DEVICE)) {
+ rc = 0xff;
+ goto exit;
+ }
+
+ dioc = qio_channel_new_fd(msg->fds[0], errp);
+
+ qio_channel_add_watch(dioc, G_IO_IN | G_IO_HUP, mpqemu_process_msg,
+ (void *)dev, NULL);
+
+exit:
+ ret.cmd = RET_MSG;
+ ret.bytestream = 0;
+ ret.data1.u64 = rc;
+ ret.size = sizeof(ret.data1);
+
+ mpqemu_msg_send(&ret, com);
+}
@@ -15,10 +15,38 @@
#include "io/channel-util.h"
#include "hw/qdev-properties.h"
#include "monitor/monitor.h"
+#include "io/mpqemu-link.h"
static void proxy_set_socket(PCIProxyDev *pdev, int fd, Error **errp)
{
+ DeviceState *dev = DEVICE(pdev);
+ MPQemuMsg msg = { 0 };
+ int fds[2];
+ Error *local_err = NULL;
+
pdev->com = qio_channel_new_fd(fd, errp);
+
+ if (socketpair(AF_UNIX, SOCK_STREAM, 0, fds)) {
+ error_setg(errp, "Failed to create proxy channel with fd %d", fd);
+ return;
+ }
+
+ msg.cmd = CONNECT_DEV;
+ msg.bytestream = 1;
+ msg.data2 = (uint8_t *)dev->id;
+ msg.size = strlen(dev->id) + 1;
+ msg.num_fds = 1;
+ msg.fds[0] = fds[1];
+
+ (void)mpqemu_msg_send_reply_co(&msg, pdev->com, &local_err);
+ if (local_err) {
+ error_setg(errp, "Failed to send DEV_CONNECT to the remote process");
+ close(fds[0]);
+ } else {
+ pdev->dev = qio_channel_new_fd(fds[0], errp);
+ }
+
+ close(fds[1]);
}
static Property proxy_properties[] = {
@@ -30,6 +30,7 @@ typedef struct PCIProxyDev {
PCIDevice parent_dev;
char *fd;
QIOChannel *com;
+ QIOChannel *dev;
} PCIProxyDev;
typedef struct PCIProxyDevClass {
@@ -36,6 +36,7 @@
typedef enum {
INIT = 0,
SYNC_SYSMEM,
+ CONNECT_DEV,
RET_MSG,
MAX = INT_MAX,
} MPQemuCmd;
@@ -234,6 +234,14 @@ bool mpqemu_msg_valid(MPQemuMsg *msg)
return false;
}
break;
+ case CONNECT_DEV:
+ if ((msg->num_fds != 1) ||
+ (msg->fds[0] == -1) ||
+ (msg->fds[0] == -1) ||
+ !msg->bytestream) {
+ return false;
+ }
+ break;
default:
break;
}