902636
From a8a1835a82510be7d2d6edcc28a60e506a2cedad Mon Sep 17 00:00:00 2001
902636
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
902636
Date: Mon, 27 Jan 2020 19:00:46 +0100
902636
Subject: [PATCH 015/116] virtiofsd: remove mountpoint dummy argument
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-12-dgilbert@redhat.com>
902636
Patchwork-id: 93466
902636
O-Subject: [RHEL-AV-8.2 qemu-kvm PATCH 011/112] virtiofsd: remove mountpoint dummy argument
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: Stefan Hajnoczi <stefanha@redhat.com>
902636
902636
Classic FUSE file system daemons take a mountpoint argument but
902636
virtiofsd exposes a vhost-user UNIX domain socket instead.  The
902636
mountpoint argument is not used by virtiofsd but the user is still
902636
required to pass a dummy argument on the command-line.
902636
902636
Remove the mountpoint argument to clean up the command-line.
902636
902636
Signed-off-by: Stefan Hajnoczi <stefanha@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 67aab02272f6cb47c56420f60b370c184961b5ca)
902636
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
902636
---
902636
 tools/virtiofsd/fuse_lowlevel.c  |  2 +-
902636
 tools/virtiofsd/fuse_lowlevel.h  |  4 +---
902636
 tools/virtiofsd/helper.c         | 20 +++-----------------
902636
 tools/virtiofsd/passthrough_ll.c | 12 ++----------
902636
 4 files changed, 7 insertions(+), 31 deletions(-)
902636
902636
diff --git a/tools/virtiofsd/fuse_lowlevel.c b/tools/virtiofsd/fuse_lowlevel.c
902636
index 5c9cb52..2f32c68 100644
902636
--- a/tools/virtiofsd/fuse_lowlevel.c
902636
+++ b/tools/virtiofsd/fuse_lowlevel.c
902636
@@ -2455,7 +2455,7 @@ out1:
902636
     return NULL;
902636
 }
902636
 
902636
-int fuse_session_mount(struct fuse_session *se, const char *mountpoint)
902636
+int fuse_session_mount(struct fuse_session *se)
902636
 {
902636
     int fd;
902636
 
902636
diff --git a/tools/virtiofsd/fuse_lowlevel.h b/tools/virtiofsd/fuse_lowlevel.h
902636
index adb9054..8d8909b 100644
902636
--- a/tools/virtiofsd/fuse_lowlevel.h
902636
+++ b/tools/virtiofsd/fuse_lowlevel.h
902636
@@ -1863,7 +1863,6 @@ struct fuse_cmdline_opts {
902636
     int foreground;
902636
     int debug;
902636
     int nodefault_subtype;
902636
-    char *mountpoint;
902636
     int show_version;
902636
     int show_help;
902636
     unsigned int max_idle_threads;
902636
@@ -1924,12 +1923,11 @@ struct fuse_session *fuse_session_new(struct fuse_args *args,
902636
 /**
902636
  * Mount a FUSE file system.
902636
  *
902636
- * @param mountpoint the mount point path
902636
  * @param se session object
902636
  *
902636
  * @return 0 on success, -1 on failure.
902636
  **/
902636
-int fuse_session_mount(struct fuse_session *se, const char *mountpoint);
902636
+int fuse_session_mount(struct fuse_session *se);
902636
 
902636
 /**
902636
  * Enter a single threaded, blocking event loop.
902636
diff --git a/tools/virtiofsd/helper.c b/tools/virtiofsd/helper.c
902636
index 5711dd2..5e6f205 100644
902636
--- a/tools/virtiofsd/helper.c
902636
+++ b/tools/virtiofsd/helper.c
902636
@@ -140,27 +140,13 @@ void fuse_cmdline_help(void)
902636
 static int fuse_helper_opt_proc(void *data, const char *arg, int key,
902636
                                 struct fuse_args *outargs)
902636
 {
902636
+    (void)data;
902636
     (void)outargs;
902636
-    struct fuse_cmdline_opts *opts = data;
902636
 
902636
     switch (key) {
902636
     case FUSE_OPT_KEY_NONOPT:
902636
-        if (!opts->mountpoint) {
902636
-            if (fuse_mnt_parse_fuse_fd(arg) != -1) {
902636
-                return fuse_opt_add_opt(&opts->mountpoint, arg);
902636
-            }
902636
-
902636
-            char mountpoint[PATH_MAX] = "";
902636
-            if (realpath(arg, mountpoint) == NULL) {
902636
-                fuse_log(FUSE_LOG_ERR, "fuse: bad mount point `%s': %s\n", arg,
902636
-                         strerror(errno));
902636
-                return -1;
902636
-            }
902636
-            return fuse_opt_add_opt(&opts->mountpoint, mountpoint);
902636
-        } else {
902636
-            fuse_log(FUSE_LOG_ERR, "fuse: invalid argument `%s'\n", arg);
902636
-            return -1;
902636
-        }
902636
+        fuse_log(FUSE_LOG_ERR, "fuse: invalid argument `%s'\n", arg);
902636
+        return -1;
902636
 
902636
     default:
902636
         /* Pass through unknown options */
902636
diff --git a/tools/virtiofsd/passthrough_ll.c b/tools/virtiofsd/passthrough_ll.c
902636
index c5850ef..9377718 100644
902636
--- a/tools/virtiofsd/passthrough_ll.c
902636
+++ b/tools/virtiofsd/passthrough_ll.c
902636
@@ -1297,7 +1297,7 @@ int main(int argc, char *argv[])
902636
         return 1;
902636
     }
902636
     if (opts.show_help) {
902636
-        printf("usage: %s [options] <mountpoint>\n\n", argv[0]);
902636
+        printf("usage: %s [options]\n\n", argv[0]);
902636
         fuse_cmdline_help();
902636
         fuse_lowlevel_help();
902636
         ret = 0;
902636
@@ -1308,13 +1308,6 @@ int main(int argc, char *argv[])
902636
         goto err_out1;
902636
     }
902636
 
902636
-    if (opts.mountpoint == NULL) {
902636
-        printf("usage: %s [options] <mountpoint>\n", argv[0]);
902636
-        printf("       %s --help\n", argv[0]);
902636
-        ret = 1;
902636
-        goto err_out1;
902636
-    }
902636
-
902636
     if (fuse_opt_parse(&args, &lo, lo_opts, NULL) == -1) {
902636
         return 1;
902636
     }
902636
@@ -1374,7 +1367,7 @@ int main(int argc, char *argv[])
902636
         goto err_out2;
902636
     }
902636
 
902636
-    if (fuse_session_mount(se, opts.mountpoint) != 0) {
902636
+    if (fuse_session_mount(se) != 0) {
902636
         goto err_out3;
902636
     }
902636
 
902636
@@ -1393,7 +1386,6 @@ err_out3:
902636
 err_out2:
902636
     fuse_session_destroy(se);
902636
 err_out1:
902636
-    free(opts.mountpoint);
902636
     fuse_opt_free_args(&args);
902636
 
902636
     if (lo.root.fd >= 0) {
902636
-- 
902636
1.8.3.1
902636