fusermount: Check for argv[0] being present (#577)
authorrichardweinberger <richard@nod.at>
Fri, 8 Jan 2021 10:07:02 +0000 (11:07 +0100)
committerGitHub <noreply@github.com>
Fri, 8 Jan 2021 10:07:02 +0000 (10:07 +0000)
It is perfectly legal to execute a program with argc == 0 and therefore
no argv.
fusermount needs to check for this case, otherwise it will pass a NULL
poiunter to strdup() and cause undefined behavior.
Especially since fusermount is setuid root, we need to extra be careful.

Signed-off-by: Richard Weinberger <richard@nod.at>
util/fusermount.c

index 45e96bce23115df13febaa80ac1df35af85c56fb..243d25ec5fabf79f733f5c82f5b24cb867799aba 100644 (file)
@@ -1270,7 +1270,7 @@ int main(int argc, char *argv[])
                {"version", no_argument, NULL, 'V'},
                {0, 0, 0, 0}};
 
-       progname = strdup(argv[0]);
+       progname = strdup(argc > 0 ? argv[0] : "fusermount");
        if (progname == NULL) {
                fprintf(stderr, "%s: failed to allocate memory\n", argv[0]);
                exit(1);