Error handling for fusermount's commfd (#786)
authorMatthias Görgens <matthias.goergens@gmail.com>
Thu, 8 Jun 2023 10:47:45 +0000 (18:47 +0800)
committerGitHub <noreply@github.com>
Thu, 8 Jun 2023 10:47:45 +0000 (11:47 +0100)
util/fusermount.c

index 06f2461afff5463782643645856f567ed8ecff44..57bf3edab739e676b18f2c512caccb95406d8b01 100644 (file)
@@ -1453,6 +1453,16 @@ int main(int argc, char *argv[])
        }
 
        cfd = atoi(commfd);
+       {
+               struct stat statbuf;
+               fstat(cfd, &statbuf);
+               if(!S_ISSOCK(statbuf.st_mode)) {
+                       fprintf(stderr,
+                               "%s: file descriptor %i is not a socket, can't send fuse fd\n",
+                               progname, cfd);
+                       goto err_out;
+               }
+       }
 
        if (setup_auto_unmount_only)
                goto wait_for_auto_unmount;
@@ -1462,8 +1472,10 @@ int main(int argc, char *argv[])
                goto err_out;
 
        res = send_fd(cfd, fd);
-       if (res == -1)
+       if (res != 0) {
+               umount2(mnt, MNT_DETACH); /* lazy umount */
                goto err_out;
+       }
        close(fd);
 
        if (!auto_unmount) {