902636
From b4af2eff8ecadb4e2c9520602455f77fac2cb943 Mon Sep 17 00:00:00 2001
902636
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
902636
Date: Mon, 27 Jan 2020 19:01:02 +0100
902636
Subject: [PATCH 031/116] virtiofsd: Start reading commands from queue
902636
MIME-Version: 1.0
902636
Content-Type: text/plain; charset=UTF-8
902636
Content-Transfer-Encoding: 8bit
902636
902636
RH-Author: Dr. David Alan Gilbert <dgilbert@redhat.com>
902636
Message-id: <20200127190227.40942-28-dgilbert@redhat.com>
902636
Patchwork-id: 93484
902636
O-Subject: [RHEL-AV-8.2 qemu-kvm PATCH 027/112] virtiofsd: Start reading commands from queue
902636
Bugzilla: 1694164
902636
RH-Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
902636
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
902636
RH-Acked-by: Sergio Lopez Pascual <slp@redhat.com>
902636
902636
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
902636
902636
Pop queue elements off queues, copy the data from them and
902636
pass that to fuse.
902636
902636
  Note: 'out' in a VuVirtqElement is from QEMU
902636
        'in' in libfuse is into the daemon
902636
902636
  So we read from the out iov's to get a fuse_in_header
902636
902636
When we get a kick we've got to read all the elements until the queue
902636
is empty.
902636
902636
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
902636
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
902636
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
902636
(cherry picked from commit b509e1228b3e5eb83c14819045988999fc2dbd1b)
902636
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
902636
---
902636
 tools/virtiofsd/fuse_i.h      |  2 +
902636
 tools/virtiofsd/fuse_virtio.c | 99 +++++++++++++++++++++++++++++++++++++++++--
902636
 2 files changed, 98 insertions(+), 3 deletions(-)
902636
902636
diff --git a/tools/virtiofsd/fuse_i.h b/tools/virtiofsd/fuse_i.h
902636
index ec04449..1126723 100644
902636
--- a/tools/virtiofsd/fuse_i.h
902636
+++ b/tools/virtiofsd/fuse_i.h
902636
@@ -14,6 +14,7 @@
902636
 #include "fuse_lowlevel.h"
902636
 
902636
 struct fv_VuDev;
902636
+struct fv_QueueInfo;
902636
 
902636
 struct fuse_req {
902636
     struct fuse_session *se;
902636
@@ -75,6 +76,7 @@ struct fuse_chan {
902636
     pthread_mutex_t lock;
902636
     int ctr;
902636
     int fd;
902636
+    struct fv_QueueInfo *qi;
902636
 };
902636
 
902636
 /**
902636
diff --git a/tools/virtiofsd/fuse_virtio.c b/tools/virtiofsd/fuse_virtio.c
902636
index 05e7258..3841b20 100644
902636
--- a/tools/virtiofsd/fuse_virtio.c
902636
+++ b/tools/virtiofsd/fuse_virtio.c
902636
@@ -12,6 +12,7 @@
902636
  */
902636
 
902636
 #include "qemu/osdep.h"
902636
+#include "qemu/iov.h"
902636
 #include "fuse_virtio.h"
902636
 #include "fuse_i.h"
902636
 #include "standard-headers/linux/fuse.h"
902636
@@ -32,6 +33,7 @@
902636
 
902636
 #include "contrib/libvhost-user/libvhost-user.h"
902636
 
902636
+struct fv_VuDev;
902636
 struct fv_QueueInfo {
902636
     pthread_t thread;
902636
     struct fv_VuDev *virtio_dev;
902636
@@ -101,10 +103,41 @@ static void fv_panic(VuDev *dev, const char *err)
902636
     exit(EXIT_FAILURE);
902636
 }
902636
 
902636
+/*
902636
+ * Copy from an iovec into a fuse_buf (memory only)
902636
+ * Caller must ensure there is space
902636
+ */
902636
+static void copy_from_iov(struct fuse_buf *buf, size_t out_num,
902636
+                          const struct iovec *out_sg)
902636
+{
902636
+    void *dest = buf->mem;
902636
+
902636
+    while (out_num) {
902636
+        size_t onelen = out_sg->iov_len;
902636
+        memcpy(dest, out_sg->iov_base, onelen);
902636
+        dest += onelen;
902636
+        out_sg++;
902636
+        out_num--;
902636
+    }
902636
+}
902636
+
902636
 /* Thread function for individual queues, created when a queue is 'started' */
902636
 static void *fv_queue_thread(void *opaque)
902636
 {
902636
     struct fv_QueueInfo *qi = opaque;
902636
+    struct VuDev *dev = &qi->virtio_dev->dev;
902636
+    struct VuVirtq *q = vu_get_queue(dev, qi->qidx);
902636
+    struct fuse_session *se = qi->virtio_dev->se;
902636
+    struct fuse_chan ch;
902636
+    struct fuse_buf fbuf;
902636
+
902636
+    fbuf.mem = NULL;
902636
+    fbuf.flags = 0;
902636
+
902636
+    fuse_mutex_init(&ch.lock);
902636
+    ch.fd = (int)0xdaff0d111;
902636
+    ch.qi = qi;
902636
+
902636
     fuse_log(FUSE_LOG_INFO, "%s: Start for queue %d kick_fd %d\n", __func__,
902636
              qi->qidx, qi->kick_fd);
902636
     while (1) {
902636
@@ -141,11 +174,71 @@ static void *fv_queue_thread(void *opaque)
902636
             fuse_log(FUSE_LOG_ERR, "Eventfd_read for queue: %m\n");
902636
             break;
902636
         }
902636
-        if (qi->virtio_dev->se->debug) {
902636
-            fprintf(stderr, "%s: Queue %d gave evalue: %zx\n", __func__,
902636
-                    qi->qidx, (size_t)evalue);
902636
+        /* out is from guest, in is too guest */
902636
+        unsigned int in_bytes, out_bytes;
902636
+        vu_queue_get_avail_bytes(dev, q, &in_bytes, &out_bytes, ~0, ~0);
902636
+
902636
+        fuse_log(FUSE_LOG_DEBUG,
902636
+                 "%s: Queue %d gave evalue: %zx available: in: %u out: %u\n",
902636
+                 __func__, qi->qidx, (size_t)evalue, in_bytes, out_bytes);
902636
+
902636
+        while (1) {
902636
+            /*
902636
+             * An element contains one request and the space to send our
902636
+             * response They're spread over multiple descriptors in a
902636
+             * scatter/gather set and we can't trust the guest to keep them
902636
+             * still; so copy in/out.
902636
+             */
902636
+            VuVirtqElement *elem = vu_queue_pop(dev, q, sizeof(VuVirtqElement));
902636
+            if (!elem) {
902636
+                break;
902636
+            }
902636
+
902636
+            if (!fbuf.mem) {
902636
+                fbuf.mem = malloc(se->bufsize);
902636
+                assert(fbuf.mem);
902636
+                assert(se->bufsize > sizeof(struct fuse_in_header));
902636
+            }
902636
+            /* The 'out' part of the elem is from qemu */
902636
+            unsigned int out_num = elem->out_num;
902636
+            struct iovec *out_sg = elem->out_sg;
902636
+            size_t out_len = iov_size(out_sg, out_num);
902636
+            fuse_log(FUSE_LOG_DEBUG,
902636
+                     "%s: elem %d: with %d out desc of length %zd\n", __func__,
902636
+                     elem->index, out_num, out_len);
902636
+
902636
+            /*
902636
+             * The elem should contain a 'fuse_in_header' (in to fuse)
902636
+             * plus the data based on the len in the header.
902636
+             */
902636
+            if (out_len < sizeof(struct fuse_in_header)) {
902636
+                fuse_log(FUSE_LOG_ERR, "%s: elem %d too short for in_header\n",
902636
+                         __func__, elem->index);
902636
+                assert(0); /* TODO */
902636
+            }
902636
+            if (out_len > se->bufsize) {
902636
+                fuse_log(FUSE_LOG_ERR, "%s: elem %d too large for buffer\n",
902636
+                         __func__, elem->index);
902636
+                assert(0); /* TODO */
902636
+            }
902636
+            copy_from_iov(&fbuf, out_num, out_sg);
902636
+            fbuf.size = out_len;
902636
+
902636
+            /* TODO! Endianness of header */
902636
+
902636
+            /* TODO: Fixup fuse_send_msg */
902636
+            /* TODO: Add checks for fuse_session_exited */
902636
+            fuse_session_process_buf_int(se, &fbuf, &ch);
902636
+
902636
+            /* TODO: vu_queue_push(dev, q, elem, qi->write_count); */
902636
+            vu_queue_notify(dev, q);
902636
+
902636
+            free(elem);
902636
+            elem = NULL;
902636
         }
902636
     }
902636
+    pthread_mutex_destroy(&ch.lock);
902636
+    free(fbuf.mem);
902636
 
902636
     return NULL;
902636
 }
902636
-- 
902636
1.8.3.1
902636