]> git.proxmox.com Git - pve-storage.git/commitdiff
esxi: improve error handling for fuse mount tool
authorDominik Csapak <d.csapak@proxmox.com>
Fri, 10 May 2024 13:56:58 +0000 (15:56 +0200)
committerWolfgang Bumiller <w.bumiller@proxmox.com>
Fri, 7 Jun 2024 11:17:06 +0000 (13:17 +0200)
if the fuse tool encounters an error early, it prints it like:
   Error: some error message
on stderr.

Redirect STDERR of the child process (which mounts the ESXi instance) to
the pipe of the parent (API) process, so that it can pass a hopefully
more meaningful message to the user than just an erroneous return code.

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
src/PVE/Storage/ESXiPlugin.pm

index b8bce0e7780b1db16139720dc3eb96508d96a26c..4bcd7ff2b81c06bb96d5cc454b1e9fecad3f4a9a 100644 (file)
@@ -222,6 +222,9 @@ sub esxi_mount : prototype($$$;$) {
                // die "failed to get file descriptor flags: $!\n";
            fcntl($wr, F_SETFD, $flags & ~FD_CLOEXEC)
                // die "failed to remove CLOEXEC flag from fd: $!\n";
+
+           open(STDERR, ">&", $wr) or die "unable to redirect STDERR: $!\n";
+
            # FIXME: use the user/group options!
            exec {$ESXI_FUSE_TOOL}
                $ESXI_FUSE_TOOL,
@@ -245,7 +248,7 @@ sub esxi_mount : prototype($$$;$) {
     undef $wr;
 
     my $result = do { local $/ = undef; <$rd> };
-    if ($result =~ /^ERROR: (.*)$/) {
+    if ($result =~ /^ERROR: (.*)$/i) {
        die "$1\n";
     }