mount_bsd: Fix usage of libfuse_strtol
authorVassili Tchersky <vt+git@vbcy.org>
Mon, 17 Feb 2025 07:50:19 +0000 (08:50 +0100)
committerBernd Schubert <bernd@bsbernd.com>
Tue, 18 Feb 2025 21:32:49 +0000 (22:32 +0100)
The check on fd < 0 was recently removed. However, this check is important
as the content of FUSE_DEV_FD is passed as-is to mount_fusefs, and a string
beginning by '-' is treated as an option.

Additionally, add a proper include and type.

Signed-off-by: Vassili Tchersky <vt+git@vbcy.org>
lib/mount_bsd.c

index 1863c49c6ff5add486b625b8603285a263f15c15..85332d34cdf96878c368c6af0b96701f8613e75f 100644 (file)
@@ -12,6 +12,7 @@
 #include "fuse_i.h"
 #include "fuse_misc.h"
 #include "fuse_opt.h"
+#include "util.h"
 
 #include <sys/param.h>
 #include "fuse_mount_compat.h"
@@ -151,7 +152,7 @@ static int init_backgrounded(void)
 static int fuse_mount_core(const char *mountpoint, const char *opts)
 {
        const char *mountprog = FUSERMOUNT_PROG;
-       int fd;
+       long fd;
        char *fdnam, *dev;
        pid_t pid, cpid;
        int status;
@@ -161,7 +162,7 @@ static int fuse_mount_core(const char *mountpoint, const char *opts)
 
        if (fdnam) {
                err = libfuse_strtol(fdnam, &fd);
-               if (err) {
+               if (err || fd < 0) {
                        fuse_log(FUSE_LOG_ERR, "invalid value given in FUSE_DEV_FD\n");
                        return -1;
                }
@@ -216,7 +217,7 @@ mount:
                        
                        if (! fdnam)
                        {
-                               ret = asprintf(&fdnam, "%d", fd); 
+                               ret = asprintf(&fdnam, "%ld", fd);
                                if(ret == -1)
                                {
                                        perror("fuse: failed to assemble mount arguments");