* [PATCH v6 01/12] libvhost-user: set msg.msg_control to NULL when it is empty
2024-05-28 10:35 [PATCH v6 00/12] vhost-user: support any POSIX system (tested on macOS, FreeBSD, OpenBSD) Stefano Garzarella
@ 2024-05-28 10:35 ` Stefano Garzarella
2024-05-28 10:35 ` [PATCH v6 02/12] libvhost-user: fail vu_message_write() if sendmsg() is failing Stefano Garzarella
` (10 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Stefano Garzarella @ 2024-05-28 10:35 UTC (permalink / raw)
To: qemu-devel
Cc: slp, David Hildenbrand, Paolo Bonzini, Eduardo Habkost,
Igor Mammedov, Brad Smith, gmaglione, Philippe Mathieu-Daudé,
Laurent Vivier, Kevin Wolf, Jason Wang, Michael S. Tsirkin,
Eric Blake, Markus Armbruster, Coiby Xu, qemu-block, Hanna Reitz,
Marc-André Lureau, Raphael Norwitz, Thomas Huth, stefanha,
Daniel P. Berrangé, Gerd Hoffmann, Stefano Garzarella
On some OS (e.g. macOS) sendmsg() returns -1 (errno EINVAL) if
the `struct msghdr` has the field `msg_controllen` set to 0, but
`msg_control` is not NULL.
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
---
subprojects/libvhost-user/libvhost-user.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/subprojects/libvhost-user/libvhost-user.c b/subprojects/libvhost-user/libvhost-user.c
index a879149fef..22bea0c775 100644
--- a/subprojects/libvhost-user/libvhost-user.c
+++ b/subprojects/libvhost-user/libvhost-user.c
@@ -632,6 +632,7 @@ vu_message_write(VuDev *dev, int conn_fd, VhostUserMsg *vmsg)
memcpy(CMSG_DATA(cmsg), vmsg->fds, fdsize);
} else {
msg.msg_controllen = 0;
+ msg.msg_control = NULL;
}
do {
--
2.45.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH v6 02/12] libvhost-user: fail vu_message_write() if sendmsg() is failing
2024-05-28 10:35 [PATCH v6 00/12] vhost-user: support any POSIX system (tested on macOS, FreeBSD, OpenBSD) Stefano Garzarella
2024-05-28 10:35 ` [PATCH v6 01/12] libvhost-user: set msg.msg_control to NULL when it is empty Stefano Garzarella
@ 2024-05-28 10:35 ` Stefano Garzarella
2024-05-28 10:35 ` [PATCH v6 03/12] libvhost-user: mask F_INFLIGHT_SHMFD if memfd is not supported Stefano Garzarella
` (9 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Stefano Garzarella @ 2024-05-28 10:35 UTC (permalink / raw)
To: qemu-devel
Cc: slp, David Hildenbrand, Paolo Bonzini, Eduardo Habkost,
Igor Mammedov, Brad Smith, gmaglione, Philippe Mathieu-Daudé,
Laurent Vivier, Kevin Wolf, Jason Wang, Michael S. Tsirkin,
Eric Blake, Markus Armbruster, Coiby Xu, qemu-block, Hanna Reitz,
Marc-André Lureau, Raphael Norwitz, Thomas Huth, stefanha,
Daniel P. Berrangé, Gerd Hoffmann, Stefano Garzarella
In vu_message_write() we use sendmsg() to send the message header,
then a write() to send the payload.
If sendmsg() fails we should avoid sending the payload, since we
were unable to send the header.
Discovered before fixing the issue with the previous patch, where
sendmsg() failed on macOS due to wrong parameters, but the frontend
still sent the payload which the backend incorrectly interpreted
as a wrong header.
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
---
subprojects/libvhost-user/libvhost-user.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/subprojects/libvhost-user/libvhost-user.c b/subprojects/libvhost-user/libvhost-user.c
index 22bea0c775..a11afd1960 100644
--- a/subprojects/libvhost-user/libvhost-user.c
+++ b/subprojects/libvhost-user/libvhost-user.c
@@ -639,6 +639,11 @@ vu_message_write(VuDev *dev, int conn_fd, VhostUserMsg *vmsg)
rc = sendmsg(conn_fd, &msg, 0);
} while (rc < 0 && (errno == EINTR || errno == EAGAIN));
+ if (rc <= 0) {
+ vu_panic(dev, "Error while writing: %s", strerror(errno));
+ return false;
+ }
+
if (vmsg->size) {
do {
if (vmsg->data) {
--
2.45.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH v6 03/12] libvhost-user: mask F_INFLIGHT_SHMFD if memfd is not supported
2024-05-28 10:35 [PATCH v6 00/12] vhost-user: support any POSIX system (tested on macOS, FreeBSD, OpenBSD) Stefano Garzarella
2024-05-28 10:35 ` [PATCH v6 01/12] libvhost-user: set msg.msg_control to NULL when it is empty Stefano Garzarella
2024-05-28 10:35 ` [PATCH v6 02/12] libvhost-user: fail vu_message_write() if sendmsg() is failing Stefano Garzarella
@ 2024-05-28 10:35 ` Stefano Garzarella
2024-05-28 10:35 ` [PATCH v6 04/12] vhost-user-server: do not set memory fd non-blocking Stefano Garzarella
` (8 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Stefano Garzarella @ 2024-05-28 10:35 UTC (permalink / raw)
To: qemu-devel
Cc: slp, David Hildenbrand, Paolo Bonzini, Eduardo Habkost,
Igor Mammedov, Brad Smith, gmaglione, Philippe Mathieu-Daudé,
Laurent Vivier, Kevin Wolf, Jason Wang, Michael S. Tsirkin,
Eric Blake, Markus Armbruster, Coiby Xu, qemu-block, Hanna Reitz,
Marc-André Lureau, Raphael Norwitz, Thomas Huth, stefanha,
Daniel P. Berrangé, Gerd Hoffmann, Stefano Garzarella
libvhost-user will panic when receiving VHOST_USER_GET_INFLIGHT_FD
message if MFD_ALLOW_SEALING is not defined, since it's not able
to create a memfd.
VHOST_USER_GET_INFLIGHT_FD is used only if
VHOST_USER_PROTOCOL_F_INFLIGHT_SHMFD is negotiated. So, let's mask
that feature if the backend is not able to properly handle these
messages.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
---
subprojects/libvhost-user/libvhost-user.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/subprojects/libvhost-user/libvhost-user.c b/subprojects/libvhost-user/libvhost-user.c
index a11afd1960..2c20cdc16e 100644
--- a/subprojects/libvhost-user/libvhost-user.c
+++ b/subprojects/libvhost-user/libvhost-user.c
@@ -1674,6 +1674,17 @@ vu_get_protocol_features_exec(VuDev *dev, VhostUserMsg *vmsg)
features |= dev->iface->get_protocol_features(dev);
}
+#ifndef MFD_ALLOW_SEALING
+ /*
+ * If MFD_ALLOW_SEALING is not defined, we are not able to handle
+ * VHOST_USER_GET_INFLIGHT_FD messages, since we can't create a memfd.
+ * Those messages are used only if VHOST_USER_PROTOCOL_F_INFLIGHT_SHMFD
+ * is negotiated. A device implementation can enable it, so let's mask
+ * it to avoid a runtime panic.
+ */
+ features &= ~(1ULL << VHOST_USER_PROTOCOL_F_INFLIGHT_SHMFD);
+#endif
+
vmsg_set_reply_u64(vmsg, features);
return true;
}
--
2.45.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH v6 04/12] vhost-user-server: do not set memory fd non-blocking
2024-05-28 10:35 [PATCH v6 00/12] vhost-user: support any POSIX system (tested on macOS, FreeBSD, OpenBSD) Stefano Garzarella
` (2 preceding siblings ...)
2024-05-28 10:35 ` [PATCH v6 03/12] libvhost-user: mask F_INFLIGHT_SHMFD if memfd is not supported Stefano Garzarella
@ 2024-05-28 10:35 ` Stefano Garzarella
2024-05-28 10:35 ` [PATCH v6 05/12] contrib/vhost-user-blk: fix bind() using the right size of the address Stefano Garzarella
` (7 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Stefano Garzarella @ 2024-05-28 10:35 UTC (permalink / raw)
To: qemu-devel
Cc: slp, David Hildenbrand, Paolo Bonzini, Eduardo Habkost,
Igor Mammedov, Brad Smith, gmaglione, Philippe Mathieu-Daudé,
Laurent Vivier, Kevin Wolf, Jason Wang, Michael S. Tsirkin,
Eric Blake, Markus Armbruster, Coiby Xu, qemu-block, Hanna Reitz,
Marc-André Lureau, Raphael Norwitz, Thomas Huth, stefanha,
Daniel P. Berrangé, Gerd Hoffmann, Stefano Garzarella
In vhost-user-server we set all fd received from the other peer
in non-blocking mode. For some of them (e.g. memfd, shm_open, etc.)
it's not really needed, because we don't use these fd with blocking
operations, but only to map memory.
In addition, in some systems this operation can fail (e.g. in macOS
setting an fd returned by shm_open() non-blocking fails with errno
= ENOTTY).
So, let's avoid setting fd non-blocking for those messages that we
know carry memory fd (e.g. VHOST_USER_ADD_MEM_REG,
VHOST_USER_SET_MEM_TABLE).
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
---
v3:
- avoiding setting fd non-blocking for messages where we have memory fd
(Eric)
---
util/vhost-user-server.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/util/vhost-user-server.c b/util/vhost-user-server.c
index 3bfb1ad3ec..b19229074a 100644
--- a/util/vhost-user-server.c
+++ b/util/vhost-user-server.c
@@ -65,6 +65,18 @@ static void vmsg_close_fds(VhostUserMsg *vmsg)
static void vmsg_unblock_fds(VhostUserMsg *vmsg)
{
int i;
+
+ /*
+ * These messages carry fd used to map memory, not to send/receive messages,
+ * so this operation is useless. In addition, in some systems this
+ * operation can fail (e.g. in macOS setting an fd returned by shm_open()
+ * non-blocking fails with errno = ENOTTY)
+ */
+ if (vmsg->request == VHOST_USER_ADD_MEM_REG ||
+ vmsg->request == VHOST_USER_SET_MEM_TABLE) {
+ return;
+ }
+
for (i = 0; i < vmsg->fd_num; i++) {
qemu_socket_set_nonblock(vmsg->fds[i]);
}
--
2.45.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH v6 05/12] contrib/vhost-user-blk: fix bind() using the right size of the address
2024-05-28 10:35 [PATCH v6 00/12] vhost-user: support any POSIX system (tested on macOS, FreeBSD, OpenBSD) Stefano Garzarella
` (3 preceding siblings ...)
2024-05-28 10:35 ` [PATCH v6 04/12] vhost-user-server: do not set memory fd non-blocking Stefano Garzarella
@ 2024-05-28 10:35 ` Stefano Garzarella
2024-05-28 10:35 ` [PATCH v6 06/12] contrib/vhost-user-*: use QEMU bswap helper functions Stefano Garzarella
` (6 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Stefano Garzarella @ 2024-05-28 10:35 UTC (permalink / raw)
To: qemu-devel
Cc: slp, David Hildenbrand, Paolo Bonzini, Eduardo Habkost,
Igor Mammedov, Brad Smith, gmaglione, Philippe Mathieu-Daudé,
Laurent Vivier, Kevin Wolf, Jason Wang, Michael S. Tsirkin,
Eric Blake, Markus Armbruster, Coiby Xu, qemu-block, Hanna Reitz,
Marc-André Lureau, Raphael Norwitz, Thomas Huth, stefanha,
Daniel P. Berrangé, Gerd Hoffmann, Stefano Garzarella
On macOS passing `-s /tmp/vhost.socket` parameter to the vhost-user-blk
application, the bind was done on `/tmp/vhost.socke` pathname,
missing the last character.
This sounds like one of the portability problems described in the
unix(7) manpage:
Pathname sockets
When binding a socket to a pathname, a few rules should
be observed for maximum portability and ease of coding:
• The pathname in sun_path should be null-terminated.
• The length of the pathname, including the terminating
null byte, should not exceed the size of sun_path.
• The addrlen argument that describes the enclosing
sockaddr_un structure should have a value of at least:
offsetof(struct sockaddr_un, sun_path) +
strlen(addr.sun_path)+1
or, more simply, addrlen can be specified as
sizeof(struct sockaddr_un).
So let's follow the last advice and simplify the code as well.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
---
contrib/vhost-user-blk/vhost-user-blk.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/contrib/vhost-user-blk/vhost-user-blk.c b/contrib/vhost-user-blk/vhost-user-blk.c
index 89e5f11a64..a8ab9269a2 100644
--- a/contrib/vhost-user-blk/vhost-user-blk.c
+++ b/contrib/vhost-user-blk/vhost-user-blk.c
@@ -469,7 +469,6 @@ static int unix_sock_new(char *unix_fn)
{
int sock;
struct sockaddr_un un;
- size_t len;
assert(unix_fn);
@@ -481,10 +480,9 @@ static int unix_sock_new(char *unix_fn)
un.sun_family = AF_UNIX;
(void)snprintf(un.sun_path, sizeof(un.sun_path), "%s", unix_fn);
- len = sizeof(un.sun_family) + strlen(un.sun_path);
(void)unlink(unix_fn);
- if (bind(sock, (struct sockaddr *)&un, len) < 0) {
+ if (bind(sock, (struct sockaddr *)&un, sizeof(un)) < 0) {
perror("bind");
goto fail;
}
--
2.45.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH v6 06/12] contrib/vhost-user-*: use QEMU bswap helper functions
2024-05-28 10:35 [PATCH v6 00/12] vhost-user: support any POSIX system (tested on macOS, FreeBSD, OpenBSD) Stefano Garzarella
` (4 preceding siblings ...)
2024-05-28 10:35 ` [PATCH v6 05/12] contrib/vhost-user-blk: fix bind() using the right size of the address Stefano Garzarella
@ 2024-05-28 10:35 ` Stefano Garzarella
2024-05-28 10:35 ` [PATCH v6 07/12] vhost-user: enable frontends on any POSIX system Stefano Garzarella
` (5 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Stefano Garzarella @ 2024-05-28 10:35 UTC (permalink / raw)
To: qemu-devel
Cc: slp, David Hildenbrand, Paolo Bonzini, Eduardo Habkost,
Igor Mammedov, Brad Smith, gmaglione, Philippe Mathieu-Daudé,
Laurent Vivier, Kevin Wolf, Jason Wang, Michael S. Tsirkin,
Eric Blake, Markus Armbruster, Coiby Xu, qemu-block, Hanna Reitz,
Marc-André Lureau, Raphael Norwitz, Thomas Huth, stefanha,
Daniel P. Berrangé, Gerd Hoffmann, Stefano Garzarella
Let's replace the calls to le*toh() and htole*() with qemu/bswap.h
helpers to make the code more portable.
Suggested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
---
contrib/vhost-user-blk/vhost-user-blk.c | 9 +++++----
contrib/vhost-user-input/main.c | 16 ++++++++--------
2 files changed, 13 insertions(+), 12 deletions(-)
diff --git a/contrib/vhost-user-blk/vhost-user-blk.c b/contrib/vhost-user-blk/vhost-user-blk.c
index a8ab9269a2..9492146855 100644
--- a/contrib/vhost-user-blk/vhost-user-blk.c
+++ b/contrib/vhost-user-blk/vhost-user-blk.c
@@ -16,6 +16,7 @@
*/
#include "qemu/osdep.h"
+#include "qemu/bswap.h"
#include "standard-headers/linux/virtio_blk.h"
#include "libvhost-user-glib.h"
@@ -194,8 +195,8 @@ vub_discard_write_zeroes(VubReq *req, struct iovec *iov, uint32_t iovcnt,
#if defined(__linux__) && defined(BLKDISCARD) && defined(BLKZEROOUT)
VubDev *vdev_blk = req->vdev_blk;
desc = buf;
- uint64_t range[2] = { le64toh(desc->sector) << 9,
- le32toh(desc->num_sectors) << 9 };
+ uint64_t range[2] = { le64_to_cpu(desc->sector) << 9,
+ le32_to_cpu(desc->num_sectors) << 9 };
if (type == VIRTIO_BLK_T_DISCARD) {
if (ioctl(vdev_blk->blk_fd, BLKDISCARD, range) == 0) {
g_free(buf);
@@ -267,13 +268,13 @@ static int vub_virtio_process_req(VubDev *vdev_blk,
req->in = (struct virtio_blk_inhdr *)elem->in_sg[in_num - 1].iov_base;
in_num--;
- type = le32toh(req->out->type);
+ type = le32_to_cpu(req->out->type);
switch (type & ~VIRTIO_BLK_T_BARRIER) {
case VIRTIO_BLK_T_IN:
case VIRTIO_BLK_T_OUT: {
ssize_t ret = 0;
bool is_write = type & VIRTIO_BLK_T_OUT;
- req->sector_num = le64toh(req->out->sector);
+ req->sector_num = le64_to_cpu(req->out->sector);
if (is_write) {
ret = vub_writev(req, &elem->out_sg[1], out_num);
} else {
diff --git a/contrib/vhost-user-input/main.c b/contrib/vhost-user-input/main.c
index 081230da54..f3362d41ac 100644
--- a/contrib/vhost-user-input/main.c
+++ b/contrib/vhost-user-input/main.c
@@ -51,8 +51,8 @@ static void vi_input_send(VuInput *vi, struct virtio_input_event *event)
vi->queue[vi->qindex++].event = *event;
/* ... until we see a report sync ... */
- if (event->type != htole16(EV_SYN) ||
- event->code != htole16(SYN_REPORT)) {
+ if (event->type != cpu_to_le16(EV_SYN) ||
+ event->code != cpu_to_le16(SYN_REPORT)) {
return;
}
@@ -103,9 +103,9 @@ vi_evdev_watch(VuDev *dev, int condition, void *data)
g_debug("input %d %d %d", evdev.type, evdev.code, evdev.value);
- virtio.type = htole16(evdev.type);
- virtio.code = htole16(evdev.code);
- virtio.value = htole32(evdev.value);
+ virtio.type = cpu_to_le16(evdev.type);
+ virtio.code = cpu_to_le16(evdev.code);
+ virtio.value = cpu_to_le32(evdev.value);
vi_input_send(vi, &virtio);
}
}
@@ -124,9 +124,9 @@ static void vi_handle_status(VuInput *vi, virtio_input_event *event)
evdev.input_event_sec = tval.tv_sec;
evdev.input_event_usec = tval.tv_usec;
- evdev.type = le16toh(event->type);
- evdev.code = le16toh(event->code);
- evdev.value = le32toh(event->value);
+ evdev.type = le16_to_cpu(event->type);
+ evdev.code = le16_to_cpu(event->code);
+ evdev.value = le32_to_cpu(event->value);
rc = write(vi->evdevfd, &evdev, sizeof(evdev));
if (rc == -1) {
--
2.45.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH v6 07/12] vhost-user: enable frontends on any POSIX system
2024-05-28 10:35 [PATCH v6 00/12] vhost-user: support any POSIX system (tested on macOS, FreeBSD, OpenBSD) Stefano Garzarella
` (5 preceding siblings ...)
2024-05-28 10:35 ` [PATCH v6 06/12] contrib/vhost-user-*: use QEMU bswap helper functions Stefano Garzarella
@ 2024-05-28 10:35 ` Stefano Garzarella
2024-05-28 10:35 ` [PATCH v6 08/12] libvhost-user: enable it " Stefano Garzarella
` (4 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Stefano Garzarella @ 2024-05-28 10:35 UTC (permalink / raw)
To: qemu-devel
Cc: slp, David Hildenbrand, Paolo Bonzini, Eduardo Habkost,
Igor Mammedov, Brad Smith, gmaglione, Philippe Mathieu-Daudé,
Laurent Vivier, Kevin Wolf, Jason Wang, Michael S. Tsirkin,
Eric Blake, Markus Armbruster, Coiby Xu, qemu-block, Hanna Reitz,
Marc-André Lureau, Raphael Norwitz, Thomas Huth, stefanha,
Daniel P. Berrangé, Gerd Hoffmann, Stefano Garzarella
The vhost-user protocol is not really Linux-specific so let's enable
vhost-user frontends for any POSIX system.
In vhost_net.c we use VHOST_FILE_UNBIND which is defined in a Linux
specific header, let's define it for other systems as well.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
---
meson.build | 1 -
hw/net/vhost_net.c | 5 +++++
hw/block/Kconfig | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/meson.build b/meson.build
index 6386607144..a72500be77 100644
--- a/meson.build
+++ b/meson.build
@@ -151,7 +151,6 @@ have_tpm = get_option('tpm') \
# vhost
have_vhost_user = get_option('vhost_user') \
- .disable_auto_if(host_os != 'linux') \
.require(host_os != 'windows',
error_message: 'vhost-user is not available on Windows').allowed()
have_vhost_vdpa = get_option('vhost_vdpa') \
diff --git a/hw/net/vhost_net.c b/hw/net/vhost_net.c
index fd1a93701a..fced429813 100644
--- a/hw/net/vhost_net.c
+++ b/hw/net/vhost_net.c
@@ -34,8 +34,13 @@
#include "standard-headers/linux/virtio_ring.h"
#include "hw/virtio/vhost.h"
#include "hw/virtio/virtio-bus.h"
+#if defined(__linux__)
#include "linux-headers/linux/vhost.h"
+#endif
+#ifndef VHOST_FILE_UNBIND
+#define VHOST_FILE_UNBIND -1
+#endif
/* Features supported by host kernel. */
static const int kernel_feature_bits[] = {
diff --git a/hw/block/Kconfig b/hw/block/Kconfig
index 9e8f28f982..29ee09e434 100644
--- a/hw/block/Kconfig
+++ b/hw/block/Kconfig
@@ -40,7 +40,7 @@ config VHOST_USER_BLK
bool
# Only PCI devices are provided for now
default y if VIRTIO_PCI
- depends on VIRTIO && VHOST_USER && LINUX
+ depends on VIRTIO && VHOST_USER
config SWIM
bool
--
2.45.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH v6 08/12] libvhost-user: enable it on any POSIX system
2024-05-28 10:35 [PATCH v6 00/12] vhost-user: support any POSIX system (tested on macOS, FreeBSD, OpenBSD) Stefano Garzarella
` (6 preceding siblings ...)
2024-05-28 10:35 ` [PATCH v6 07/12] vhost-user: enable frontends on any POSIX system Stefano Garzarella
@ 2024-05-28 10:35 ` Stefano Garzarella
2024-05-28 10:38 ` [PATCH v6 09/12] contrib/vhost-user-blk: " Stefano Garzarella
` (3 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Stefano Garzarella @ 2024-05-28 10:35 UTC (permalink / raw)
To: qemu-devel
Cc: slp, David Hildenbrand, Paolo Bonzini, Eduardo Habkost,
Igor Mammedov, Brad Smith, gmaglione, Philippe Mathieu-Daudé,
Laurent Vivier, Kevin Wolf, Jason Wang, Michael S. Tsirkin,
Eric Blake, Markus Armbruster, Coiby Xu, qemu-block, Hanna Reitz,
Marc-André Lureau, Raphael Norwitz, Thomas Huth, stefanha,
Daniel P. Berrangé, Gerd Hoffmann, Stefano Garzarella
The vhost-user protocol is not really Linux-specific so let's enable
libvhost-user for any POSIX system.
Compiling it on macOS and FreeBSD some problems came up:
- avoid to include linux/vhost.h which is available only on Linux
(vhost_types.h contains many of the things we need)
- macOS doesn't provide sys/endian.h, so let's define them
(note: libvhost-user doesn't include QEMU's headers, so we can't use
use "qemu/bswap.h")
- define eventfd_[write|read] as write/read wrapper when system doesn't
provide those (e.g. macOS)
- copy SEAL defines from include/qemu/memfd.h to make the code works
on FreeBSD where MFD_ALLOW_SEALING is defined
- define MAP_NORESERVE if it's not defined (e.g. on FreeBSD)
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
---
v5:
- fixed typos in the commit description [Phil]
---
meson.build | 2 +-
subprojects/libvhost-user/libvhost-user.h | 2 +-
subprojects/libvhost-user/libvhost-user.c | 60 +++++++++++++++++++++--
3 files changed, 59 insertions(+), 5 deletions(-)
diff --git a/meson.build b/meson.build
index a72500be77..48e476b237 100644
--- a/meson.build
+++ b/meson.build
@@ -3162,7 +3162,7 @@ if have_system and vfio_user_server_allowed
endif
vhost_user = not_found
-if host_os == 'linux' and have_vhost_user
+if have_vhost_user
libvhost_user = subproject('libvhost-user')
vhost_user = libvhost_user.get_variable('vhost_user_dep')
endif
diff --git a/subprojects/libvhost-user/libvhost-user.h b/subprojects/libvhost-user/libvhost-user.h
index deb40e77b3..e13e1d3931 100644
--- a/subprojects/libvhost-user/libvhost-user.h
+++ b/subprojects/libvhost-user/libvhost-user.h
@@ -18,9 +18,9 @@
#include <stdbool.h>
#include <stddef.h>
#include <poll.h>
-#include <linux/vhost.h>
#include <pthread.h>
#include "standard-headers/linux/virtio_ring.h"
+#include "standard-headers/linux/vhost_types.h"
/* Based on qemu/hw/virtio/vhost-user.c */
#define VHOST_USER_F_PROTOCOL_FEATURES 30
diff --git a/subprojects/libvhost-user/libvhost-user.c b/subprojects/libvhost-user/libvhost-user.c
index 2c20cdc16e..57e58d4adb 100644
--- a/subprojects/libvhost-user/libvhost-user.c
+++ b/subprojects/libvhost-user/libvhost-user.c
@@ -28,9 +28,7 @@
#include <inttypes.h>
#include <sys/types.h>
#include <sys/socket.h>
-#include <sys/eventfd.h>
#include <sys/mman.h>
-#include <endian.h>
/* Necessary to provide VIRTIO_F_VERSION_1 on system
* with older linux headers. Must appear before
@@ -39,8 +37,8 @@
#include "standard-headers/linux/virtio_config.h"
#if defined(__linux__)
+#include <endian.h>
#include <sys/syscall.h>
-#include <fcntl.h>
#include <sys/ioctl.h>
#include <linux/vhost.h>
#include <sys/vfs.h>
@@ -52,6 +50,62 @@
#endif
+#if defined(__APPLE__) && (__MACH__)
+#include <libkern/OSByteOrder.h>
+#define htobe16(x) OSSwapHostToBigInt16(x)
+#define htole16(x) OSSwapHostToLittleInt16(x)
+#define be16toh(x) OSSwapBigToHostInt16(x)
+#define le16toh(x) OSSwapLittleToHostInt16(x)
+
+#define htobe32(x) OSSwapHostToBigInt32(x)
+#define htole32(x) OSSwapHostToLittleInt32(x)
+#define be32toh(x) OSSwapBigToHostInt32(x)
+#define le32toh(x) OSSwapLittleToHostInt32(x)
+
+#define htobe64(x) OSSwapHostToBigInt64(x)
+#define htole64(x) OSSwapHostToLittleInt64(x)
+#define be64toh(x) OSSwapBigToHostInt64(x)
+#define le64toh(x) OSSwapLittleToHostInt64(x)
+#endif
+
+#ifdef CONFIG_EVENTFD
+#include <sys/eventfd.h>
+#else
+#define eventfd_t uint64_t
+
+int eventfd_write(int fd, eventfd_t value)
+{
+ return (write(fd, &value, sizeof(value)) == sizeof(value)) ? 0 : -1;
+}
+
+int eventfd_read(int fd, eventfd_t *value)
+{
+ return (read(fd, value, sizeof(*value)) == sizeof(*value)) ? 0 : -1;
+}
+#endif
+
+#ifdef MFD_ALLOW_SEALING
+#include <fcntl.h>
+
+#ifndef F_LINUX_SPECIFIC_BASE
+#define F_LINUX_SPECIFIC_BASE 1024
+#endif
+
+#ifndef F_ADD_SEALS
+#define F_ADD_SEALS (F_LINUX_SPECIFIC_BASE + 9)
+#define F_GET_SEALS (F_LINUX_SPECIFIC_BASE + 10)
+
+#define F_SEAL_SEAL 0x0001 /* prevent further seals from being set */
+#define F_SEAL_SHRINK 0x0002 /* prevent file from shrinking */
+#define F_SEAL_GROW 0x0004 /* prevent file from growing */
+#define F_SEAL_WRITE 0x0008 /* prevent writes */
+#endif
+#endif
+
+#ifndef MAP_NORESERVE
+#define MAP_NORESERVE 0
+#endif
+
#include "include/atomic.h"
#include "libvhost-user.h"
--
2.45.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH v6 09/12] contrib/vhost-user-blk: enable it on any POSIX system
2024-05-28 10:35 [PATCH v6 00/12] vhost-user: support any POSIX system (tested on macOS, FreeBSD, OpenBSD) Stefano Garzarella
` (7 preceding siblings ...)
2024-05-28 10:35 ` [PATCH v6 08/12] libvhost-user: enable it " Stefano Garzarella
@ 2024-05-28 10:38 ` Stefano Garzarella
2024-05-28 10:38 ` [PATCH v6 10/12] hostmem: add a new memory backend based on POSIX shm_open() Stefano Garzarella
` (2 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Stefano Garzarella @ 2024-05-28 10:38 UTC (permalink / raw)
To: qemu-devel
Cc: Hanna Reitz, Eric Blake, Markus Armbruster,
Marc-André Lureau, Daniel P. Berrangé, Gerd Hoffmann,
gmaglione, Raphael Norwitz, Laurent Vivier, Brad Smith, slp,
stefanha, Igor Mammedov, Eduardo Habkost, David Hildenbrand,
qemu-block, Kevin Wolf, Thomas Huth, Coiby Xu,
Philippe Mathieu-Daudé, Jason Wang, Paolo Bonzini,
Michael S. Tsirkin, Stefano Garzarella
Let's make the code more portable by adding defines from
block/file-posix.c to support O_DIRECT in other systems (e.g. macOS).
vhost-user-server.c is a dependency, let's enable it for any POSIX
system.
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
---
v6:
- reverted v5 changes since we can't move O_DSYNC and O_DIRECT in osdep
[Daniel, failing tests on Windows]
v5:
- O_DSYNC and O_DIRECT definition are now in osdep [Phil]
- commit updated since we moved out all code changes
v4:
- moved using of "qemu/bswap.h" API in a separate patch [Phil]
---
meson.build | 2 --
contrib/vhost-user-blk/vhost-user-blk.c | 14 ++++++++++++++
util/meson.build | 4 +++-
3 files changed, 17 insertions(+), 3 deletions(-)
diff --git a/meson.build b/meson.build
index 48e476b237..c89ee7b578 100644
--- a/meson.build
+++ b/meson.build
@@ -1981,8 +1981,6 @@ has_statx = cc.has_header_symbol('sys/stat.h', 'STATX_BASIC_STATS', prefix: gnu_
has_statx_mnt_id = cc.has_header_symbol('sys/stat.h', 'STATX_MNT_ID', prefix: gnu_source_prefix)
have_vhost_user_blk_server = get_option('vhost_user_blk_server') \
- .require(host_os == 'linux',
- error_message: 'vhost_user_blk_server requires linux') \
.require(have_vhost_user,
error_message: 'vhost_user_blk_server requires vhost-user support') \
.disable_auto_if(not have_tools and not have_system) \
diff --git a/contrib/vhost-user-blk/vhost-user-blk.c b/contrib/vhost-user-blk/vhost-user-blk.c
index 9492146855..a450337685 100644
--- a/contrib/vhost-user-blk/vhost-user-blk.c
+++ b/contrib/vhost-user-blk/vhost-user-blk.c
@@ -25,6 +25,20 @@
#include <sys/ioctl.h>
#endif
+/* OS X does not have O_DSYNC */
+#ifndef O_DSYNC
+#ifdef O_SYNC
+#define O_DSYNC O_SYNC
+#elif defined(O_FSYNC)
+#define O_DSYNC O_FSYNC
+#endif
+#endif
+
+/* Approximate O_DIRECT with O_DSYNC if O_DIRECT isn't available */
+#ifndef O_DIRECT
+#define O_DIRECT O_DSYNC
+#endif
+
enum {
VHOST_USER_BLK_MAX_QUEUES = 8,
};
diff --git a/util/meson.build b/util/meson.build
index 72b505df11..c414178ace 100644
--- a/util/meson.build
+++ b/util/meson.build
@@ -112,10 +112,12 @@ if have_block
util_ss.add(files('filemonitor-stub.c'))
endif
if host_os == 'linux'
- util_ss.add(files('vhost-user-server.c'), vhost_user)
util_ss.add(files('vfio-helpers.c'))
util_ss.add(files('chardev_open.c'))
endif
+ if host_os != 'windows'
+ util_ss.add(files('vhost-user-server.c'), vhost_user)
+ endif
util_ss.add(files('yank.c'))
endif
--
2.45.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH v6 10/12] hostmem: add a new memory backend based on POSIX shm_open()
2024-05-28 10:35 [PATCH v6 00/12] vhost-user: support any POSIX system (tested on macOS, FreeBSD, OpenBSD) Stefano Garzarella
` (8 preceding siblings ...)
2024-05-28 10:38 ` [PATCH v6 09/12] contrib/vhost-user-blk: " Stefano Garzarella
@ 2024-05-28 10:38 ` Stefano Garzarella
2024-05-29 14:50 ` Markus Armbruster
2024-05-28 10:38 ` [PATCH v6 11/12] tests/qtest/vhost-user-blk-test: use memory-backend-shm Stefano Garzarella
2024-05-28 10:38 ` [PATCH v6 12/12] tests/qtest/vhost-user-test: add a test case for memory-backend-shm Stefano Garzarella
11 siblings, 1 reply; 18+ messages in thread
From: Stefano Garzarella @ 2024-05-28 10:38 UTC (permalink / raw)
To: qemu-devel
Cc: Hanna Reitz, Eric Blake, Markus Armbruster,
Marc-André Lureau, Daniel P. Berrangé, Gerd Hoffmann,
gmaglione, Raphael Norwitz, Laurent Vivier, Brad Smith, slp,
stefanha, Igor Mammedov, Eduardo Habkost, David Hildenbrand,
qemu-block, Kevin Wolf, Thomas Huth, Coiby Xu,
Philippe Mathieu-Daudé, Jason Wang, Paolo Bonzini,
Michael S. Tsirkin, Stefano Garzarella
shm_open() creates and opens a new POSIX shared memory object.
A POSIX shared memory object allows creating memory backend with an
associated file descriptor that can be shared with external processes
(e.g. vhost-user).
The new `memory-backend-shm` can be used as an alternative when
`memory-backend-memfd` is not available (Linux only), since shm_open()
should be provided by any POSIX-compliant operating system.
This backend mimics memfd, allocating memory that is practically
anonymous. In theory shm_open() requires a name, but this is allocated
for a short time interval and shm_unlink() is called right after
shm_open(). After that, only fd is shared with external processes
(e.g., vhost-user) as if it were associated with anonymous memory.
In the future we may also allow the user to specify the name to be
passed to shm_open(), but for now we keep the backend simple, mimicking
anonymous memory such as memfd.
Acked-by: David Hildenbrand <david@redhat.com>
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
---
v5
- fixed documentation in qapi/qom.json and qemu-options.hx [Markus]
v4
- fail if we find "share=off" in shm_backend_memory_alloc() [David]
v3
- enriched commit message and documentation to highlight that we
want to mimic memfd (David)
---
docs/system/devices/vhost-user.rst | 5 +-
qapi/qom.json | 19 +++++
backends/hostmem-shm.c | 123 +++++++++++++++++++++++++++++
backends/meson.build | 1 +
qemu-options.hx | 16 ++++
5 files changed, 162 insertions(+), 2 deletions(-)
create mode 100644 backends/hostmem-shm.c
diff --git a/docs/system/devices/vhost-user.rst b/docs/system/devices/vhost-user.rst
index 9b2da106ce..35259d8ec7 100644
--- a/docs/system/devices/vhost-user.rst
+++ b/docs/system/devices/vhost-user.rst
@@ -98,8 +98,9 @@ Shared memory object
In order for the daemon to access the VirtIO queues to process the
requests it needs access to the guest's address space. This is
-achieved via the ``memory-backend-file`` or ``memory-backend-memfd``
-objects. A reference to a file-descriptor which can access this object
+achieved via the ``memory-backend-file``, ``memory-backend-memfd``, or
+``memory-backend-shm`` objects.
+A reference to a file-descriptor which can access this object
will be passed via the socket as part of the protocol negotiation.
Currently the shared memory object needs to match the size of the main
diff --git a/qapi/qom.json b/qapi/qom.json
index 38dde6d785..d40592d863 100644
--- a/qapi/qom.json
+++ b/qapi/qom.json
@@ -721,6 +721,21 @@
'*hugetlbsize': 'size',
'*seal': 'bool' } }
+##
+# @MemoryBackendShmProperties:
+#
+# Properties for memory-backend-shm objects.
+#
+# The @share boolean option is true by default with shm. Setting it to false
+# will cause a failure during allocation because it is not supported by this
+# backend.
+#
+# Since: 9.1
+##
+{ 'struct': 'MemoryBackendShmProperties',
+ 'base': 'MemoryBackendProperties',
+ 'data': { } }
+
##
# @MemoryBackendEpcProperties:
#
@@ -985,6 +1000,8 @@
{ 'name': 'memory-backend-memfd',
'if': 'CONFIG_LINUX' },
'memory-backend-ram',
+ { 'name': 'memory-backend-shm',
+ 'if': 'CONFIG_POSIX' },
'pef-guest',
{ 'name': 'pr-manager-helper',
'if': 'CONFIG_LINUX' },
@@ -1056,6 +1073,8 @@
'memory-backend-memfd': { 'type': 'MemoryBackendMemfdProperties',
'if': 'CONFIG_LINUX' },
'memory-backend-ram': 'MemoryBackendProperties',
+ 'memory-backend-shm': { 'type': 'MemoryBackendShmProperties',
+ 'if': 'CONFIG_POSIX' },
'pr-manager-helper': { 'type': 'PrManagerHelperProperties',
'if': 'CONFIG_LINUX' },
'qtest': 'QtestProperties',
diff --git a/backends/hostmem-shm.c b/backends/hostmem-shm.c
new file mode 100644
index 0000000000..374edc3db8
--- /dev/null
+++ b/backends/hostmem-shm.c
@@ -0,0 +1,123 @@
+/*
+ * QEMU host POSIX shared memory object backend
+ *
+ * Copyright (C) 2024 Red Hat Inc
+ *
+ * Authors:
+ * Stefano Garzarella <sgarzare@redhat.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
+ * See the COPYING file in the top-level directory.
+ */
+
+#include "qemu/osdep.h"
+#include "sysemu/hostmem.h"
+#include "qapi/error.h"
+
+#define TYPE_MEMORY_BACKEND_SHM "memory-backend-shm"
+
+OBJECT_DECLARE_SIMPLE_TYPE(HostMemoryBackendShm, MEMORY_BACKEND_SHM)
+
+struct HostMemoryBackendShm {
+ HostMemoryBackend parent_obj;
+};
+
+static bool
+shm_backend_memory_alloc(HostMemoryBackend *backend, Error **errp)
+{
+ g_autoptr(GString) shm_name = g_string_new(NULL);
+ g_autofree char *backend_name = NULL;
+ uint32_t ram_flags;
+ int fd, oflag;
+ mode_t mode;
+
+ if (!backend->size) {
+ error_setg(errp, "can't create shm backend with size 0");
+ return false;
+ }
+
+ if (!backend->share) {
+ error_setg(errp, "can't create shm backend with `share=off`");
+ return false;
+ }
+
+ /*
+ * Let's use `mode = 0` because we don't want other processes to open our
+ * memory unless we share the file descriptor with them.
+ */
+ mode = 0;
+ oflag = O_RDWR | O_CREAT | O_EXCL;
+ backend_name = host_memory_backend_get_name(backend);
+
+ /*
+ * Some operating systems allow creating anonymous POSIX shared memory
+ * objects (e.g. FreeBSD provides the SHM_ANON constant), but this is not
+ * defined by POSIX, so let's create a unique name.
+ *
+ * From Linux's shm_open(3) man-page:
+ * For portable use, a shared memory object should be identified
+ * by a name of the form /somename;"
+ */
+ g_string_printf(shm_name, "/qemu-" FMT_pid "-shm-%s", getpid(),
+ backend_name);
+
+ fd = shm_open(shm_name->str, oflag, mode);
+ if (fd < 0) {
+ error_setg_errno(errp, errno,
+ "failed to create POSIX shared memory");
+ return false;
+ }
+
+ /*
+ * We have the file descriptor, so we no longer need to expose the
+ * POSIX shared memory object. However it will remain allocated as long as
+ * there are file descriptors pointing to it.
+ */
+ shm_unlink(shm_name->str);
+
+ if (ftruncate(fd, backend->size) == -1) {
+ error_setg_errno(errp, errno,
+ "failed to resize POSIX shared memory to %" PRIu64,
+ backend->size);
+ close(fd);
+ return false;
+ }
+
+ ram_flags = RAM_SHARED;
+ ram_flags |= backend->reserve ? 0 : RAM_NORESERVE;
+
+ return memory_region_init_ram_from_fd(&backend->mr, OBJECT(backend),
+ backend_name, backend->size,
+ ram_flags, fd, 0, errp);
+}
+
+static void
+shm_backend_instance_init(Object *obj)
+{
+ HostMemoryBackendShm *m = MEMORY_BACKEND_SHM(obj);
+
+ MEMORY_BACKEND(m)->share = true;
+}
+
+static void
+shm_backend_class_init(ObjectClass *oc, void *data)
+{
+ HostMemoryBackendClass *bc = MEMORY_BACKEND_CLASS(oc);
+
+ bc->alloc = shm_backend_memory_alloc;
+}
+
+static const TypeInfo shm_backend_info = {
+ .name = TYPE_MEMORY_BACKEND_SHM,
+ .parent = TYPE_MEMORY_BACKEND,
+ .instance_init = shm_backend_instance_init,
+ .class_init = shm_backend_class_init,
+ .instance_size = sizeof(HostMemoryBackendShm),
+};
+
+static void register_types(void)
+{
+ type_register_static(&shm_backend_info);
+}
+
+type_init(register_types);
diff --git a/backends/meson.build b/backends/meson.build
index 8b2b111497..3867b0d363 100644
--- a/backends/meson.build
+++ b/backends/meson.build
@@ -13,6 +13,7 @@ system_ss.add([files(
if host_os != 'windows'
system_ss.add(files('rng-random.c'))
system_ss.add(files('hostmem-file.c'))
+ system_ss.add([files('hostmem-shm.c'), rt])
endif
if host_os == 'linux'
system_ss.add(files('hostmem-memfd.c'))
diff --git a/qemu-options.hx b/qemu-options.hx
index 8ca7f34ef0..ad6521ef5e 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -5240,6 +5240,22 @@ SRST
The ``share`` boolean option is on by default with memfd.
+ ``-object memory-backend-shm,id=id,merge=on|off,dump=on|off,share=on|off,prealloc=on|off,size=size,host-nodes=host-nodes,policy=default|preferred|bind|interleave``
+ Creates a POSIX shared memory backend object, which allows
+ QEMU to share the memory with an external process (e.g. when
+ using vhost-user).
+
+ ``memory-backend-shm`` is a more portable and less featureful version
+ of ``memory-backend-memfd``. It can then be used in any POSIX system,
+ especially when memfd is not supported.
+
+ Please refer to ``memory-backend-file`` for a description of the
+ options.
+
+ The ``share`` boolean option is on by default with shm. Setting it to
+ off will cause a failure during allocation because it is not supported
+ by this backend.
+
``-object iommufd,id=id[,fd=fd]``
Creates an iommufd backend which allows control of DMA mapping
through the ``/dev/iommu`` device.
--
2.45.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [PATCH v6 10/12] hostmem: add a new memory backend based on POSIX shm_open()
2024-05-28 10:38 ` [PATCH v6 10/12] hostmem: add a new memory backend based on POSIX shm_open() Stefano Garzarella
@ 2024-05-29 14:50 ` Markus Armbruster
2024-05-29 15:07 ` Stefano Garzarella
0 siblings, 1 reply; 18+ messages in thread
From: Markus Armbruster @ 2024-05-29 14:50 UTC (permalink / raw)
To: Stefano Garzarella
Cc: qemu-devel, Hanna Reitz, Eric Blake, Marc-André Lureau,
Daniel P. Berrangé, Gerd Hoffmann, gmaglione,
Raphael Norwitz, Laurent Vivier, Brad Smith, slp, stefanha,
Igor Mammedov, Eduardo Habkost, David Hildenbrand, qemu-block,
Kevin Wolf, Thomas Huth, Coiby Xu, Philippe Mathieu-Daudé,
Jason Wang, Paolo Bonzini, Michael S. Tsirkin
Stefano Garzarella <sgarzare@redhat.com> writes:
> shm_open() creates and opens a new POSIX shared memory object.
> A POSIX shared memory object allows creating memory backend with an
> associated file descriptor that can be shared with external processes
> (e.g. vhost-user).
>
> The new `memory-backend-shm` can be used as an alternative when
> `memory-backend-memfd` is not available (Linux only), since shm_open()
> should be provided by any POSIX-compliant operating system.
>
> This backend mimics memfd, allocating memory that is practically
> anonymous. In theory shm_open() requires a name, but this is allocated
> for a short time interval and shm_unlink() is called right after
> shm_open(). After that, only fd is shared with external processes
> (e.g., vhost-user) as if it were associated with anonymous memory.
>
> In the future we may also allow the user to specify the name to be
> passed to shm_open(), but for now we keep the backend simple, mimicking
> anonymous memory such as memfd.
>
> Acked-by: David Hildenbrand <david@redhat.com>
> Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
> Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
> ---
> v5
> - fixed documentation in qapi/qom.json and qemu-options.hx [Markus]
> v4
> - fail if we find "share=off" in shm_backend_memory_alloc() [David]
> v3
> - enriched commit message and documentation to highlight that we
> want to mimic memfd (David)
> ---
> docs/system/devices/vhost-user.rst | 5 +-
> qapi/qom.json | 19 +++++
> backends/hostmem-shm.c | 123 +++++++++++++++++++++++++++++
> backends/meson.build | 1 +
> qemu-options.hx | 16 ++++
> 5 files changed, 162 insertions(+), 2 deletions(-)
> create mode 100644 backends/hostmem-shm.c
>
> diff --git a/docs/system/devices/vhost-user.rst b/docs/system/devices/vhost-user.rst
> index 9b2da106ce..35259d8ec7 100644
> --- a/docs/system/devices/vhost-user.rst
> +++ b/docs/system/devices/vhost-user.rst
> @@ -98,8 +98,9 @@ Shared memory object
>
> In order for the daemon to access the VirtIO queues to process the
> requests it needs access to the guest's address space. This is
> -achieved via the ``memory-backend-file`` or ``memory-backend-memfd``
> -objects. A reference to a file-descriptor which can access this object
> +achieved via the ``memory-backend-file``, ``memory-backend-memfd``, or
> +``memory-backend-shm`` objects.
> +A reference to a file-descriptor which can access this object
> will be passed via the socket as part of the protocol negotiation.
>
> Currently the shared memory object needs to match the size of the main
> diff --git a/qapi/qom.json b/qapi/qom.json
> index 38dde6d785..d40592d863 100644
> --- a/qapi/qom.json
> +++ b/qapi/qom.json
> @@ -721,6 +721,21 @@
> '*hugetlbsize': 'size',
> '*seal': 'bool' } }
>
> +##
> +# @MemoryBackendShmProperties:
> +#
> +# Properties for memory-backend-shm objects.
> +#
> +# The @share boolean option is true by default with shm. Setting it to false
> +# will cause a failure during allocation because it is not supported by this
> +# backend.
docs/devel/qapi-code-gen.rst:
For legibility, wrap text paragraphs so every line is at most 70
characters long.
Separate sentences with two spaces.
Result:
# Properties for memory-backend-shm objects.
#
# The @share boolean option is true by default with shm. Setting it
# to false will cause a failure during allocation because it is not
# supported by this backend.
However, this contradicts the doc comment for @share:
# @share: if false, the memory is private to QEMU; if true, it is
# shared (default: false)
Your intention is to override that text. But that's less than clear.
Moreover, the documentation of @share is pretty far from this override.
John Snow is working on patches that'll pull it closer.
Hmm, MemoryBackendMemfdProperties has the same override.
I think we should change the doc comment for @share to something like
# @share: if false, the memory is private to QEMU; if true, it is
# shared (default depends on the backend type)
and then document the actual default with each backend type.
> +#
> +# Since: 9.1
> +##
> +{ 'struct': 'MemoryBackendShmProperties',
> + 'base': 'MemoryBackendProperties',
> + 'data': { } }
Let's add 'if': 'CONFIG_POSIX' here.
> +
> ##
> # @MemoryBackendEpcProperties:
> #
> @@ -985,6 +1000,8 @@
> { 'name': 'memory-backend-memfd',
> 'if': 'CONFIG_LINUX' },
> 'memory-backend-ram',
> + { 'name': 'memory-backend-shm',
> + 'if': 'CONFIG_POSIX' },
> 'pef-guest',
> { 'name': 'pr-manager-helper',
> 'if': 'CONFIG_LINUX' },
> @@ -1056,6 +1073,8 @@
> 'memory-backend-memfd': { 'type': 'MemoryBackendMemfdProperties',
> 'if': 'CONFIG_LINUX' },
> 'memory-backend-ram': 'MemoryBackendProperties',
> + 'memory-backend-shm': { 'type': 'MemoryBackendShmProperties',
> + 'if': 'CONFIG_POSIX' },
> 'pr-manager-helper': { 'type': 'PrManagerHelperProperties',
> 'if': 'CONFIG_LINUX' },
> 'qtest': 'QtestProperties',
[...]
> diff --git a/qemu-options.hx b/qemu-options.hx
> index 8ca7f34ef0..ad6521ef5e 100644
> --- a/qemu-options.hx
> +++ b/qemu-options.hx
> @@ -5240,6 +5240,22 @@ SRST
>
> The ``share`` boolean option is on by default with memfd.
>
> + ``-object memory-backend-shm,id=id,merge=on|off,dump=on|off,share=on|off,prealloc=on|off,size=size,host-nodes=host-nodes,policy=default|preferred|bind|interleave``
> + Creates a POSIX shared memory backend object, which allows
> + QEMU to share the memory with an external process (e.g. when
> + using vhost-user).
> +
> + ``memory-backend-shm`` is a more portable and less featureful version
> + of ``memory-backend-memfd``. It can then be used in any POSIX system,
> + especially when memfd is not supported.
This actually explains the purpose, unlike the doc comment in qom.json.
Same for the existing memory backends; can't fault you for doing your
new one the same way. We ought to fix them all. I'm not demanding you
do it.
> +
> + Please refer to ``memory-backend-file`` for a description of the
> + options.
> +
> + The ``share`` boolean option is on by default with shm. Setting it to
> + off will cause a failure during allocation because it is not supported
> + by this backend.
> +
Not this patch's fault: documentation for -object memory-backend-epc is
missing.
> ``-object iommufd,id=id[,fd=fd]``
> Creates an iommufd backend which allows control of DMA mapping
> through the ``/dev/iommu`` device.
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH v6 10/12] hostmem: add a new memory backend based on POSIX shm_open()
2024-05-29 14:50 ` Markus Armbruster
@ 2024-05-29 15:07 ` Stefano Garzarella
2024-06-03 9:42 ` Markus Armbruster
0 siblings, 1 reply; 18+ messages in thread
From: Stefano Garzarella @ 2024-05-29 15:07 UTC (permalink / raw)
To: Markus Armbruster
Cc: qemu-devel, Hanna Reitz, Eric Blake, Marc-André Lureau,
Daniel P. Berrangé, Gerd Hoffmann, gmaglione,
Raphael Norwitz, Laurent Vivier, Brad Smith, slp, stefanha,
Igor Mammedov, Eduardo Habkost, David Hildenbrand, qemu-block,
Kevin Wolf, Thomas Huth, Coiby Xu, Philippe Mathieu-Daudé,
Jason Wang, Paolo Bonzini, Michael S. Tsirkin
On Wed, May 29, 2024 at 04:50:20PM GMT, Markus Armbruster wrote:
>Stefano Garzarella <sgarzare@redhat.com> writes:
>
>> shm_open() creates and opens a new POSIX shared memory object.
>> A POSIX shared memory object allows creating memory backend with an
>> associated file descriptor that can be shared with external processes
>> (e.g. vhost-user).
>>
>> The new `memory-backend-shm` can be used as an alternative when
>> `memory-backend-memfd` is not available (Linux only), since shm_open()
>> should be provided by any POSIX-compliant operating system.
>>
>> This backend mimics memfd, allocating memory that is practically
>> anonymous. In theory shm_open() requires a name, but this is allocated
>> for a short time interval and shm_unlink() is called right after
>> shm_open(). After that, only fd is shared with external processes
>> (e.g., vhost-user) as if it were associated with anonymous memory.
>>
>> In the future we may also allow the user to specify the name to be
>> passed to shm_open(), but for now we keep the backend simple, mimicking
>> anonymous memory such as memfd.
>>
>> Acked-by: David Hildenbrand <david@redhat.com>
>> Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
>> Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
>> ---
>> v5
>> - fixed documentation in qapi/qom.json and qemu-options.hx [Markus]
>> v4
>> - fail if we find "share=off" in shm_backend_memory_alloc() [David]
>> v3
>> - enriched commit message and documentation to highlight that we
>> want to mimic memfd (David)
>> ---
>> docs/system/devices/vhost-user.rst | 5 +-
>> qapi/qom.json | 19 +++++
>> backends/hostmem-shm.c | 123 +++++++++++++++++++++++++++++
>> backends/meson.build | 1 +
>> qemu-options.hx | 16 ++++
>> 5 files changed, 162 insertions(+), 2 deletions(-)
>> create mode 100644 backends/hostmem-shm.c
>>
>> diff --git a/docs/system/devices/vhost-user.rst b/docs/system/devices/vhost-user.rst
>> index 9b2da106ce..35259d8ec7 100644
>> --- a/docs/system/devices/vhost-user.rst
>> +++ b/docs/system/devices/vhost-user.rst
>> @@ -98,8 +98,9 @@ Shared memory object
>>
>> In order for the daemon to access the VirtIO queues to process the
>> requests it needs access to the guest's address space. This is
>> -achieved via the ``memory-backend-file`` or ``memory-backend-memfd``
>> -objects. A reference to a file-descriptor which can access this object
>> +achieved via the ``memory-backend-file``, ``memory-backend-memfd``, or
>> +``memory-backend-shm`` objects.
>> +A reference to a file-descriptor which can access this object
>> will be passed via the socket as part of the protocol negotiation.
>>
>> Currently the shared memory object needs to match the size of the main
>> diff --git a/qapi/qom.json b/qapi/qom.json
>> index 38dde6d785..d40592d863 100644
>> --- a/qapi/qom.json
>> +++ b/qapi/qom.json
>> @@ -721,6 +721,21 @@
>> '*hugetlbsize': 'size',
>> '*seal': 'bool' } }
>>
>> +##
>> +# @MemoryBackendShmProperties:
>> +#
>> +# Properties for memory-backend-shm objects.
>> +#
>> +# The @share boolean option is true by default with shm. Setting it to false
>> +# will cause a failure during allocation because it is not supported by this
>> +# backend.
>
>docs/devel/qapi-code-gen.rst:
>
> For legibility, wrap text paragraphs so every line is at most 70
> characters long.
>
> Separate sentences with two spaces.
>
>Result:
>
> # Properties for memory-backend-shm objects.
> #
> # The @share boolean option is true by default with shm. Setting it
> # to false will cause a failure during allocation because it is not
> # supported by this backend.
Ops, sorry, I'll fix!
>
>However, this contradicts the doc comment for @share:
>
> # @share: if false, the memory is private to QEMU; if true, it is
> # shared (default: false)
>
>Your intention is to override that text. But that's less than clear.
>Moreover, the documentation of @share is pretty far from this override.
>John Snow is working on patches that'll pull it closer.
>
>Hmm, MemoryBackendMemfdProperties has the same override.
>
>I think we should change the doc comment for @share to something like
>
> # @share: if false, the memory is private to QEMU; if true, it is
> # shared (default depends on the backend type)
>
>and then document the actual default with each backend type.
Yes, I had already seen your comment to an earlier version and sent
another separate patch:
https://patchew.org/QEMU/20240523133302.103858-1-sgarzare@redhat.com/
Is that okay?
>
>> +#
>> +# Since: 9.1
>> +##
>> +{ 'struct': 'MemoryBackendShmProperties',
>> + 'base': 'MemoryBackendProperties',
>> + 'data': { } }
>
>Let's add 'if': 'CONFIG_POSIX' here.
>
I think my response to your review at v4 fell through a crack :-)
https://patchew.org/QEMU/20240508074457.12367-1-sgarzare@redhat.com/20240508074457.12367-11-sgarzare@redhat.com/#z3lbtmkn6zlwdhdea7owav3mblttxr3asrmlilwxmkla67tdby@732gn3uuupoq
I'll bring back my doubts here:
Do you mean something like this:
{ 'struct': 'MemoryBackendShmProperties',
'if': 'CONFIG_POSIX',
'base': 'MemoryBackendProperties',
'data': { } }
I didn't because for MemoryBackendMemfdProperties and
MemoryBackendEpcProperties we have 'if': 'CONFIG_POSIX' only later in
the ObjectOptions union, so I did the same.
Should we fix them as well?
>> +
>> ##
>> # @MemoryBackendEpcProperties:
>> #
>> @@ -985,6 +1000,8 @@
>> { 'name': 'memory-backend-memfd',
>> 'if': 'CONFIG_LINUX' },
>> 'memory-backend-ram',
>> + { 'name': 'memory-backend-shm',
>> + 'if': 'CONFIG_POSIX' },
>> 'pef-guest',
>> { 'name': 'pr-manager-helper',
>> 'if': 'CONFIG_LINUX' },
>> @@ -1056,6 +1073,8 @@
>> 'memory-backend-memfd': { 'type': 'MemoryBackendMemfdProperties',
>> 'if': 'CONFIG_LINUX' },
>> 'memory-backend-ram': 'MemoryBackendProperties',
>> + 'memory-backend-shm': { 'type': 'MemoryBackendShmProperties',
>> + 'if': 'CONFIG_POSIX' },
>> 'pr-manager-helper': { 'type': 'PrManagerHelperProperties',
>> 'if': 'CONFIG_LINUX' },
>> 'qtest': 'QtestProperties',
>
>[...]
>
>> diff --git a/qemu-options.hx b/qemu-options.hx
>> index 8ca7f34ef0..ad6521ef5e 100644
>> --- a/qemu-options.hx
>> +++ b/qemu-options.hx
>> @@ -5240,6 +5240,22 @@ SRST
>>
>> The ``share`` boolean option is on by default with memfd.
>>
>> + ``-object memory-backend-shm,id=id,merge=on|off,dump=on|off,share=on|off,prealloc=on|off,size=size,host-nodes=host-nodes,policy=default|preferred|bind|interleave``
>> + Creates a POSIX shared memory backend object, which allows
>> + QEMU to share the memory with an external process (e.g. when
>> + using vhost-user).
>> +
>> + ``memory-backend-shm`` is a more portable and less featureful version
>> + of ``memory-backend-memfd``. It can then be used in any POSIX system,
>> + especially when memfd is not supported.
>
>This actually explains the purpose, unlike the doc comment in qom.json.
>Same for the existing memory backends; can't fault you for doing your
>new one the same way. We ought to fix them all. I'm not demanding you
>do it.
Okay, I'll try to fix all of them separately.
>
>> +
>> + Please refer to ``memory-backend-file`` for a description of the
>> + options.
>> +
>> + The ``share`` boolean option is on by default with shm. Setting it to
>> + off will cause a failure during allocation because it is not supported
>> + by this backend.
>> +
>
>Not this patch's fault: documentation for -object memory-backend-epc is
>missing.
Good point!
I don't know epc, @David do you have any thoughts to write here?
Thanks,
Stefano
>
>> ``-object iommufd,id=id[,fd=fd]``
>> Creates an iommufd backend which allows control of DMA mapping
>> through the ``/dev/iommu`` device.
>
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH v6 10/12] hostmem: add a new memory backend based on POSIX shm_open()
2024-05-29 15:07 ` Stefano Garzarella
@ 2024-06-03 9:42 ` Markus Armbruster
2024-06-04 13:29 ` Stefano Garzarella
0 siblings, 1 reply; 18+ messages in thread
From: Markus Armbruster @ 2024-06-03 9:42 UTC (permalink / raw)
To: Stefano Garzarella
Cc: qemu-devel, Hanna Reitz, Eric Blake, Marc-André Lureau,
Daniel P. Berrangé, Gerd Hoffmann, gmaglione,
Raphael Norwitz, Laurent Vivier, Brad Smith, slp, stefanha,
Igor Mammedov, Eduardo Habkost, David Hildenbrand, qemu-block,
Kevin Wolf, Thomas Huth, Coiby Xu, Philippe Mathieu-Daudé,
Jason Wang, Paolo Bonzini, Michael S. Tsirkin
Stefano Garzarella <sgarzare@redhat.com> writes:
> On Wed, May 29, 2024 at 04:50:20PM GMT, Markus Armbruster wrote:
>>Stefano Garzarella <sgarzare@redhat.com> writes:
>>
>>> shm_open() creates and opens a new POSIX shared memory object.
>>> A POSIX shared memory object allows creating memory backend with an
>>> associated file descriptor that can be shared with external processes
>>> (e.g. vhost-user).
>>>
>>> The new `memory-backend-shm` can be used as an alternative when
>>> `memory-backend-memfd` is not available (Linux only), since shm_open()
>>> should be provided by any POSIX-compliant operating system.
>>>
>>> This backend mimics memfd, allocating memory that is practically
>>> anonymous. In theory shm_open() requires a name, but this is allocated
>>> for a short time interval and shm_unlink() is called right after
>>> shm_open(). After that, only fd is shared with external processes
>>> (e.g., vhost-user) as if it were associated with anonymous memory.
>>>
>>> In the future we may also allow the user to specify the name to be
>>> passed to shm_open(), but for now we keep the backend simple, mimicking
>>> anonymous memory such as memfd.
>>>
>>> Acked-by: David Hildenbrand <david@redhat.com>
>>> Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
>>> Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
>>> ---
>>> v5
>>> - fixed documentation in qapi/qom.json and qemu-options.hx [Markus]
>>> v4
>>> - fail if we find "share=off" in shm_backend_memory_alloc() [David]
>>> v3
>>> - enriched commit message and documentation to highlight that we
>>> want to mimic memfd (David)
>>> ---
>>> docs/system/devices/vhost-user.rst | 5 +-
>>> qapi/qom.json | 19 +++++
>>> backends/hostmem-shm.c | 123 +++++++++++++++++++++++++++++
>>> backends/meson.build | 1 +
>>> qemu-options.hx | 16 ++++
>>> 5 files changed, 162 insertions(+), 2 deletions(-)
>>> create mode 100644 backends/hostmem-shm.c
>>>
>>> diff --git a/docs/system/devices/vhost-user.rst b/docs/system/devices/vhost-user.rst
>>> index 9b2da106ce..35259d8ec7 100644
>>> --- a/docs/system/devices/vhost-user.rst
>>> +++ b/docs/system/devices/vhost-user.rst
>>> @@ -98,8 +98,9 @@ Shared memory object
>>>
>>> In order for the daemon to access the VirtIO queues to process the
>>> requests it needs access to the guest's address space. This is
>>> -achieved via the ``memory-backend-file`` or ``memory-backend-memfd``
>>> -objects. A reference to a file-descriptor which can access this object
>>> +achieved via the ``memory-backend-file``, ``memory-backend-memfd``, or
>>> +``memory-backend-shm`` objects.
>>> +A reference to a file-descriptor which can access this object
>>> will be passed via the socket as part of the protocol negotiation.
>>>
>>> Currently the shared memory object needs to match the size of the main
>>> diff --git a/qapi/qom.json b/qapi/qom.json
>>> index 38dde6d785..d40592d863 100644
>>> --- a/qapi/qom.json
>>> +++ b/qapi/qom.json
>>> @@ -721,6 +721,21 @@
>>> '*hugetlbsize': 'size',
>>> '*seal': 'bool' } }
>>>
>>> +##
>>> +# @MemoryBackendShmProperties:
>>> +#
>>> +# Properties for memory-backend-shm objects.
>>> +#
>>> +# The @share boolean option is true by default with shm. Setting it to false
>>> +# will cause a failure during allocation because it is not supported by this
>>> +# backend.
>>
>>docs/devel/qapi-code-gen.rst:
>>
>> For legibility, wrap text paragraphs so every line is at most 70
>> characters long.
>>
>> Separate sentences with two spaces.
>>
>>Result:
>>
>> # Properties for memory-backend-shm objects.
>> #
>> # The @share boolean option is true by default with shm. Setting it
>> # to false will cause a failure during allocation because it is not
>> # supported by this backend.
>
> Ops, sorry, I'll fix!
>
>>
>>However, this contradicts the doc comment for @share:
>>
>> # @share: if false, the memory is private to QEMU; if true, it is
>> # shared (default: false)
>>
>>Your intention is to override that text. But that's less than clear.
>>Moreover, the documentation of @share is pretty far from this override.
>>John Snow is working on patches that'll pull it closer.
>>
>>Hmm, MemoryBackendMemfdProperties has the same override.
>>
>>I think we should change the doc comment for @share to something like
>>
>> # @share: if false, the memory is private to QEMU; if true, it is
>> # shared (default depends on the backend type)
>>
>>and then document the actual default with each backend type.
>
> Yes, I had already seen your comment to an earlier version and sent another separate patch:
> https://patchew.org/QEMU/20240523133302.103858-1-sgarzare@redhat.com/
>
> Is that okay?
Looks like I'm going through my post-vacation review backlog in
suboptimal order...
Replied there!
>>> +#
>>> +# Since: 9.1
>>> +##
>>> +{ 'struct': 'MemoryBackendShmProperties',
>>> + 'base': 'MemoryBackendProperties',
>>> + 'data': { } }
>>
>>Let's add 'if': 'CONFIG_POSIX' here.
>>
>
> I think my response to your review at v4 fell through a crack :-)
> https://patchew.org/QEMU/20240508074457.12367-1-sgarzare@redhat.com/20240508074457.12367-11-sgarzare@redhat.com/#z3lbtmkn6zlwdhdea7owav3mblttxr3asrmlilwxmkla67tdby@732gn3uuupoq
Dang, it did %-}
> I'll bring back my doubts here:
>
> Do you mean something like this:
>
> { 'struct': 'MemoryBackendShmProperties',
> 'if': 'CONFIG_POSIX',
> 'base': 'MemoryBackendProperties',
> 'data': { } }
>
> I didn't because for MemoryBackendMemfdProperties and
> MemoryBackendEpcProperties we have 'if': 'CONFIG_POSIX' only later in
> the ObjectOptions union, so I did the same.
>
> Should we fix them as well?
Yes, please.
The QAPI schema's primary purpose is to define the QMP interface. The
tooling lets you define QAPI types that aren't actually used in the QMP
interface. We use this intentionally, e.g. to generate types & visitors
for complex QOM properties. Accidental use is also possible, say when
we define a type unconditionally, but use it only conditionally. We
then end up generating dead code. No big deal, but let's avoid it
whenever practical.
[...]
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PATCH v6 10/12] hostmem: add a new memory backend based on POSIX shm_open()
2024-06-03 9:42 ` Markus Armbruster
@ 2024-06-04 13:29 ` Stefano Garzarella
0 siblings, 0 replies; 18+ messages in thread
From: Stefano Garzarella @ 2024-06-04 13:29 UTC (permalink / raw)
To: Markus Armbruster
Cc: qemu-devel, Hanna Reitz, Eric Blake, Marc-André Lureau,
Daniel P. Berrangé, Gerd Hoffmann, gmaglione,
Raphael Norwitz, Laurent Vivier, Brad Smith, slp, stefanha,
Igor Mammedov, Eduardo Habkost, David Hildenbrand, qemu-block,
Kevin Wolf, Thomas Huth, Coiby Xu, Philippe Mathieu-Daudé,
Jason Wang, Paolo Bonzini, Michael S. Tsirkin
On Mon, Jun 03, 2024 at 11:42:35AM GMT, Markus Armbruster wrote:
>Stefano Garzarella <sgarzare@redhat.com> writes:
>
>> On Wed, May 29, 2024 at 04:50:20PM GMT, Markus Armbruster wrote:
>>>Stefano Garzarella <sgarzare@redhat.com> writes:
>>>
>>>> shm_open() creates and opens a new POSIX shared memory object.
>>>> A POSIX shared memory object allows creating memory backend with an
>>>> associated file descriptor that can be shared with external processes
>>>> (e.g. vhost-user).
>>>>
>>>> The new `memory-backend-shm` can be used as an alternative when
>>>> `memory-backend-memfd` is not available (Linux only), since shm_open()
>>>> should be provided by any POSIX-compliant operating system.
>>>>
>>>> This backend mimics memfd, allocating memory that is practically
>>>> anonymous. In theory shm_open() requires a name, but this is allocated
>>>> for a short time interval and shm_unlink() is called right after
>>>> shm_open(). After that, only fd is shared with external processes
>>>> (e.g., vhost-user) as if it were associated with anonymous memory.
>>>>
>>>> In the future we may also allow the user to specify the name to be
>>>> passed to shm_open(), but for now we keep the backend simple, mimicking
>>>> anonymous memory such as memfd.
>>>>
>>>> Acked-by: David Hildenbrand <david@redhat.com>
>>>> Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
>>>> Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
>>>> ---
>>>> v5
>>>> - fixed documentation in qapi/qom.json and qemu-options.hx [Markus]
>>>> v4
>>>> - fail if we find "share=off" in shm_backend_memory_alloc() [David]
>>>> v3
>>>> - enriched commit message and documentation to highlight that we
>>>> want to mimic memfd (David)
>>>> ---
>>>> docs/system/devices/vhost-user.rst | 5 +-
>>>> qapi/qom.json | 19 +++++
>>>> backends/hostmem-shm.c | 123 +++++++++++++++++++++++++++++
>>>> backends/meson.build | 1 +
>>>> qemu-options.hx | 16 ++++
>>>> 5 files changed, 162 insertions(+), 2 deletions(-)
>>>> create mode 100644 backends/hostmem-shm.c
>>>>
>>>> diff --git a/docs/system/devices/vhost-user.rst b/docs/system/devices/vhost-user.rst
>>>> index 9b2da106ce..35259d8ec7 100644
>>>> --- a/docs/system/devices/vhost-user.rst
>>>> +++ b/docs/system/devices/vhost-user.rst
>>>> @@ -98,8 +98,9 @@ Shared memory object
>>>>
>>>> In order for the daemon to access the VirtIO queues to process the
>>>> requests it needs access to the guest's address space. This is
>>>> -achieved via the ``memory-backend-file`` or ``memory-backend-memfd``
>>>> -objects. A reference to a file-descriptor which can access this object
>>>> +achieved via the ``memory-backend-file``, ``memory-backend-memfd``, or
>>>> +``memory-backend-shm`` objects.
>>>> +A reference to a file-descriptor which can access this object
>>>> will be passed via the socket as part of the protocol negotiation.
>>>>
>>>> Currently the shared memory object needs to match the size of the main
>>>> diff --git a/qapi/qom.json b/qapi/qom.json
>>>> index 38dde6d785..d40592d863 100644
>>>> --- a/qapi/qom.json
>>>> +++ b/qapi/qom.json
>>>> @@ -721,6 +721,21 @@
>>>> '*hugetlbsize': 'size',
>>>> '*seal': 'bool' } }
>>>>
>>>> +##
>>>> +# @MemoryBackendShmProperties:
>>>> +#
>>>> +# Properties for memory-backend-shm objects.
>>>> +#
>>>> +# The @share boolean option is true by default with shm. Setting it to false
>>>> +# will cause a failure during allocation because it is not supported by this
>>>> +# backend.
>>>
>>>docs/devel/qapi-code-gen.rst:
>>>
>>> For legibility, wrap text paragraphs so every line is at most 70
>>> characters long.
>>>
>>> Separate sentences with two spaces.
>>>
>>>Result:
>>>
>>> # Properties for memory-backend-shm objects.
>>> #
>>> # The @share boolean option is true by default with shm. Setting it
>>> # to false will cause a failure during allocation because it is not
>>> # supported by this backend.
>>
>> Ops, sorry, I'll fix!
>>
>>>
>>>However, this contradicts the doc comment for @share:
>>>
>>> # @share: if false, the memory is private to QEMU; if true, it is
>>> # shared (default: false)
>>>
>>>Your intention is to override that text. But that's less than clear.
>>>Moreover, the documentation of @share is pretty far from this override.
>>>John Snow is working on patches that'll pull it closer.
>>>
>>>Hmm, MemoryBackendMemfdProperties has the same override.
>>>
>>>I think we should change the doc comment for @share to something like
>>>
>>> # @share: if false, the memory is private to QEMU; if true, it is
>>> # shared (default depends on the backend type)
>>>
>>>and then document the actual default with each backend type.
>>
>> Yes, I had already seen your comment to an earlier version and sent another separate patch:
>> https://patchew.org/QEMU/20240523133302.103858-1-sgarzare@redhat.com/
>>
>> Is that okay?
>
>Looks like I'm going through my post-vacation review backlog in
>suboptimal order...
>
>Replied there!
Thanks!
>
>>>> +#
>>>> +# Since: 9.1
>>>> +##
>>>> +{ 'struct': 'MemoryBackendShmProperties',
>>>> + 'base': 'MemoryBackendProperties',
>>>> + 'data': { } }
>>>
>>>Let's add 'if': 'CONFIG_POSIX' here.
>>>
>>
>> I think my response to your review at v4 fell through a crack :-)
>> https://patchew.org/QEMU/20240508074457.12367-1-sgarzare@redhat.com/20240508074457.12367-11-sgarzare@redhat.com/#z3lbtmkn6zlwdhdea7owav3mblttxr3asrmlilwxmkla67tdby@732gn3uuupoq
>
>Dang, it did %-}
>
>> I'll bring back my doubts here:
>>
>> Do you mean something like this:
>>
>> { 'struct': 'MemoryBackendShmProperties',
>> 'if': 'CONFIG_POSIX',
>> 'base': 'MemoryBackendProperties',
>> 'data': { } }
>>
>> I didn't because for MemoryBackendMemfdProperties and
>> MemoryBackendEpcProperties we have 'if': 'CONFIG_POSIX' only later in
>> the ObjectOptions union, so I did the same.
>>
>> Should we fix them as well?
>
>Yes, please.
Okay, I'll send a separated patch for them and fix
MemoryBackendShmProperties here in v7.
I saw some examples to follow in qapi/char.json.
>
>The QAPI schema's primary purpose is to define the QMP interface. The
>tooling lets you define QAPI types that aren't actually used in the QMP
>interface. We use this intentionally, e.g. to generate types & visitors
>for complex QOM properties. Accidental use is also possible, say when
>we define a type unconditionally, but use it only conditionally. We
>then end up generating dead code. No big deal, but let's avoid it
>whenever practical.
Got it, thanks for the info and the review!
Stefano
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH v6 11/12] tests/qtest/vhost-user-blk-test: use memory-backend-shm
2024-05-28 10:35 [PATCH v6 00/12] vhost-user: support any POSIX system (tested on macOS, FreeBSD, OpenBSD) Stefano Garzarella
` (9 preceding siblings ...)
2024-05-28 10:38 ` [PATCH v6 10/12] hostmem: add a new memory backend based on POSIX shm_open() Stefano Garzarella
@ 2024-05-28 10:38 ` Stefano Garzarella
2024-05-28 10:38 ` [PATCH v6 12/12] tests/qtest/vhost-user-test: add a test case for memory-backend-shm Stefano Garzarella
11 siblings, 0 replies; 18+ messages in thread
From: Stefano Garzarella @ 2024-05-28 10:38 UTC (permalink / raw)
To: qemu-devel
Cc: Hanna Reitz, Eric Blake, Markus Armbruster,
Marc-André Lureau, Daniel P. Berrangé, Gerd Hoffmann,
gmaglione, Raphael Norwitz, Laurent Vivier, Brad Smith, slp,
stefanha, Igor Mammedov, Eduardo Habkost, David Hildenbrand,
qemu-block, Kevin Wolf, Thomas Huth, Coiby Xu,
Philippe Mathieu-Daudé, Jason Wang, Paolo Bonzini,
Michael S. Tsirkin, Stefano Garzarella
`memory-backend-memfd` is available only on Linux while the new
`memory-backend-shm` can be used on any POSIX-compliant operating
system. Let's use it so we can run the test in multiple environments.
Since we are here, let`s remove `share=on` which is the default for shm
(and also for memfd).
Acked-by: Thomas Huth <thuth@redhat.com>
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
---
v6
- removed `share=on` since it's the default [David]
---
tests/qtest/vhost-user-blk-test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/qtest/vhost-user-blk-test.c b/tests/qtest/vhost-user-blk-test.c
index 117b9acd10..ea90d41232 100644
--- a/tests/qtest/vhost-user-blk-test.c
+++ b/tests/qtest/vhost-user-blk-test.c
@@ -906,7 +906,7 @@ static void start_vhost_user_blk(GString *cmd_line, int vus_instances,
vhost_user_blk_bin);
g_string_append_printf(cmd_line,
- " -object memory-backend-memfd,id=mem,size=256M,share=on "
+ " -object memory-backend-shm,id=mem,size=256M "
" -M memory-backend=mem -m 256M ");
for (i = 0; i < vus_instances; i++) {
--
2.45.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH v6 12/12] tests/qtest/vhost-user-test: add a test case for memory-backend-shm
2024-05-28 10:35 [PATCH v6 00/12] vhost-user: support any POSIX system (tested on macOS, FreeBSD, OpenBSD) Stefano Garzarella
` (10 preceding siblings ...)
2024-05-28 10:38 ` [PATCH v6 11/12] tests/qtest/vhost-user-blk-test: use memory-backend-shm Stefano Garzarella
@ 2024-05-28 10:38 ` Stefano Garzarella
2024-05-28 12:40 ` Philippe Mathieu-Daudé
11 siblings, 1 reply; 18+ messages in thread
From: Stefano Garzarella @ 2024-05-28 10:38 UTC (permalink / raw)
To: qemu-devel
Cc: Hanna Reitz, Eric Blake, Markus Armbruster,
Marc-André Lureau, Daniel P. Berrangé, Gerd Hoffmann,
gmaglione, Raphael Norwitz, Laurent Vivier, Brad Smith, slp,
stefanha, Igor Mammedov, Eduardo Habkost, David Hildenbrand,
qemu-block, Kevin Wolf, Thomas Huth, Coiby Xu,
Philippe Mathieu-Daudé, Jason Wang, Paolo Bonzini,
Michael S. Tsirkin, Stefano Garzarella
`memory-backend-shm` can be used with vhost-user devices, so let's
add a new test case for it.
Acked-by: Thomas Huth <thuth@redhat.com>
Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
---
tests/qtest/vhost-user-test.c | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/tests/qtest/vhost-user-test.c b/tests/qtest/vhost-user-test.c
index d4e437265f..8c1d903b2a 100644
--- a/tests/qtest/vhost-user-test.c
+++ b/tests/qtest/vhost-user-test.c
@@ -44,6 +44,8 @@
"mem-path=%s,share=on -numa node,memdev=mem"
#define QEMU_CMD_MEMFD " -m %d -object memory-backend-memfd,id=mem,size=%dM," \
" -numa node,memdev=mem"
+#define QEMU_CMD_SHM " -m %d -object memory-backend-shm,id=mem,size=%dM," \
+ " -numa node,memdev=mem"
#define QEMU_CMD_CHR " -chardev socket,id=%s,path=%s%s"
#define QEMU_CMD_NETDEV " -netdev vhost-user,id=hs0,chardev=%s,vhostforce=on"
@@ -195,6 +197,7 @@ enum test_memfd {
TEST_MEMFD_AUTO,
TEST_MEMFD_YES,
TEST_MEMFD_NO,
+ TEST_MEMFD_SHM,
};
static void append_vhost_net_opts(TestServer *s, GString *cmd_line,
@@ -228,6 +231,8 @@ static void append_mem_opts(TestServer *server, GString *cmd_line,
if (memfd == TEST_MEMFD_YES) {
g_string_append_printf(cmd_line, QEMU_CMD_MEMFD, size, size);
+ } else if (memfd == TEST_MEMFD_SHM) {
+ g_string_append_printf(cmd_line, QEMU_CMD_SHM, size, size);
} else {
const char *root = init_hugepagefs() ? : server->tmpfs;
@@ -788,6 +793,19 @@ static void *vhost_user_test_setup_memfd(GString *cmd_line, void *arg)
return server;
}
+static void *vhost_user_test_setup_shm(GString *cmd_line, void *arg)
+{
+ TestServer *server = test_server_new("vhost-user-test", arg);
+ test_server_listen(server);
+
+ append_mem_opts(server, cmd_line, 256, TEST_MEMFD_SHM);
+ server->vu_ops->append_opts(server, cmd_line, "");
+
+ g_test_queue_destroy(vhost_user_test_cleanup, server);
+
+ return server;
+}
+
static void test_read_guest_mem(void *obj, void *arg, QGuestAllocator *alloc)
{
TestServer *server = arg;
@@ -1081,6 +1099,11 @@ static void register_vhost_user_test(void)
"virtio-net",
test_read_guest_mem, &opts);
+ opts.before = vhost_user_test_setup_shm;
+ qos_add_test("vhost-user/read-guest-mem/shm",
+ "virtio-net",
+ test_read_guest_mem, &opts);
+
if (qemu_memfd_check(MFD_ALLOW_SEALING)) {
opts.before = vhost_user_test_setup_memfd;
qos_add_test("vhost-user/read-guest-mem/memfd",
--
2.45.1
^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [PATCH v6 12/12] tests/qtest/vhost-user-test: add a test case for memory-backend-shm
2024-05-28 10:38 ` [PATCH v6 12/12] tests/qtest/vhost-user-test: add a test case for memory-backend-shm Stefano Garzarella
@ 2024-05-28 12:40 ` Philippe Mathieu-Daudé
0 siblings, 0 replies; 18+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-05-28 12:40 UTC (permalink / raw)
To: Stefano Garzarella, qemu-devel
Cc: Hanna Reitz, Eric Blake, Markus Armbruster,
Marc-André Lureau, Daniel P. Berrangé, Gerd Hoffmann,
gmaglione, Raphael Norwitz, Laurent Vivier, Brad Smith, slp,
stefanha, Igor Mammedov, Eduardo Habkost, David Hildenbrand,
qemu-block, Kevin Wolf, Thomas Huth, Coiby Xu, Jason Wang,
Paolo Bonzini, Michael S. Tsirkin
On 28/5/24 12:38, Stefano Garzarella wrote:
> `memory-backend-shm` can be used with vhost-user devices, so let's
> add a new test case for it.
>
> Acked-by: Thomas Huth <thuth@redhat.com>
> Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
> Reviewed-by: David Hildenbrand <david@redhat.com>
> Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
> ---
> tests/qtest/vhost-user-test.c | 23 +++++++++++++++++++++++
> 1 file changed, 23 insertions(+)
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
^ permalink raw reply [flat|nested] 18+ messages in thread