common-main: call git_extract_argv0_path()
authorJeff King <peff@peff.net>
Fri, 1 Jul 2016 06:04:04 +0000 (02:04 -0400)
committerJunio C Hamano <gitster@pobox.com>
Fri, 1 Jul 2016 22:09:10 +0000 (15:09 -0700)
Every program which links against libgit.a must call this
function, or risk hitting an assert() in system_path() that
checks whether we have configured argv0_path (though only
when RUNTIME_PREFIX is defined, so essentially only on
Windows).

Looking at the diff, you can see that putting it into the
common main() saves us having to do it individually in each
of the external commands. But what you can't see are the
cases where we _should_ have been doing so, but weren't
(e.g., git-credential-store, and all of the t/helper test
programs).

This has been an accident-waiting-to-happen for a long time,
but wasn't triggered until recently because it involves one
of those programs actually calling system_path(). That
happened with git-credential-store in v2.8.0 with ae5f677
(lazily load core.sharedrepository, 2016-03-11). The
program:

- takes a lock file, which...

- opens a tempfile, which...

- calls adjust_shared_perm to fix permissions, which...

- lazy-loads the config (as of ae5f677), which...

- calls system_path() to find the location of
/etc/gitconfig

On systems with RUNTIME_PREFIX, this means credential-store
reliably hits that assert() and cannot be used.

We never noticed in the test suite, because we set
GIT_CONFIG_NOSYSTEM there, which skips the system_path()
lookup entirely. But if we were to tweak git_config() to
find /etc/gitconfig even when we aren't going to open it,
then the test suite shows multiple failures (for
credential-store, and for some other test helpers). I didn't
include that tweak here because it's way too specific to
this particular call to be worth carrying around what is
essentially dead code.

The implementation is fairly straightforward, with one
exception: there is exactly one caller (git.c) that actually
cares about the result of the function, and not the
side-effect of setting up argv0_path. We can accommodate
that by simply replacing the value of argv[0] in the array
we hand down to cmd_main().

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
12 files changed:
common-main.c
daemon.c
fast-import.c
git.c
http-backend.c
http-fetch.c
http-push.c
imap-send.c
remote-curl.c
remote-testsvn.c
shell.c
upload-pack.c
index 2b96bbf436bd5a519ca815642decee255ef814a3..57c912a78e3f12665ee5afbacb8c5e69a5f4a53c 100644 (file)
@@ -1,4 +1,5 @@
 #include "git-compat-util.h"
+#include "exec_cmd.h"
 
 int main(int argc, char **av)
 {
@@ -8,5 +9,7 @@ int main(int argc, char **av)
         */
        const char **argv = (const char **)av;
 
+       argv[0] = git_extract_argv0_path(argv[0]);
+
        return cmd_main(argc, argv);
 }
index e6b86d215325d51262f7507af3230d3b5f9cf21b..f2bc7f43f61e4c13125f00c6fa92db43590b25fc 100644 (file)
--- a/daemon.c
+++ b/daemon.c
@@ -1,6 +1,5 @@
 #include "cache.h"
 #include "pkt-line.h"
-#include "exec_cmd.h"
 #include "run-command.h"
 #include "strbuf.h"
 #include "string-list.h"
@@ -1190,8 +1189,6 @@ int cmd_main(int argc, const char **argv)
 
        git_setup_gettext();
 
-       git_extract_argv0_path(argv[0]);
-
        for (i = 1; i < argc; i++) {
                const char *arg = argv[i];
                const char *v;
index bd649268b20b746e887f7e47c332faf53407a3f5..72d209c19a774c25f8f5f33a92a404723f9e941b 100644 (file)
@@ -164,7 +164,6 @@ Format of STDIN stream:
 #include "refs.h"
 #include "csum-file.h"
 #include "quote.h"
-#include "exec_cmd.h"
 #include "dir.h"
 
 #define PACK_ID_BITS 16
@@ -3385,8 +3384,6 @@ int cmd_main(int argc, const char **argv)
 {
        unsigned int i;
 
-       git_extract_argv0_path(argv[0]);
-
        git_setup_gettext();
 
        if (argc == 2 && !strcmp(argv[1], "-h"))
diff --git a/git.c b/git.c
index e2444046f5894fba768430c4d2e0aa66d6cd1fd5..3b4e12d7c68812301c10b884a87762b26f1bd43f 100644 (file)
--- a/git.c
+++ b/git.c
@@ -635,7 +635,7 @@ int cmd_main(int argc, const char **argv)
        const char *cmd;
        int done_help = 0;
 
-       cmd = git_extract_argv0_path(argv[0]);
+       cmd = argv[0];
        if (!cmd)
                cmd = "git-help";
 
index 3249652b3df157e98a605549370fb714f0232e9a..2926d1f9e7ba67dfc0e4b4b47b682836c8b733d4 100644 (file)
@@ -642,7 +642,6 @@ int cmd_main(int argc, const char **argv)
 
        git_setup_gettext();
 
-       git_extract_argv0_path(argv[0]);
        set_die_routine(die_webcgi);
        set_die_is_recursing_routine(die_webcgi_recursing);
 
index eb559eb83bc3d9cc66046af6039fbaeae865f605..244cd0db5d8d8e7dbcbfc78c234c3fc792e919e7 100644 (file)
@@ -24,8 +24,6 @@ int cmd_main(int argc, const char **argv)
 
        git_setup_gettext();
 
-       git_extract_argv0_path(argv[0]);
-
        while (arg < argc && argv[arg][0] == '-') {
                if (argv[arg][1] == 't') {
                        get_tree = 1;
index 98228a426268abc348e68fee2304004bb4f77e31..acfcd1f1ad8fd7c03089ee32ed8c4c259675ab31 100644 (file)
@@ -1711,8 +1711,6 @@ int cmd_main(int argc, const char **argv)
 
        git_setup_gettext();
 
-       git_extract_argv0_path(argv[0]);
-
        repo = xcalloc(1, sizeof(*repo));
 
        argv++;
index 890e1cbb64fa391892abae04b491dd3232ecd032..125b2183a708a806e7f8aee049b187af3601e7cc 100644 (file)
@@ -1500,8 +1500,6 @@ int cmd_main(int argc, const char **argv)
        int total;
        int nongit_ok;
 
-       git_extract_argv0_path(argv[0]);
-
        git_setup_gettext();
 
        setup_git_directory_gently(&nongit_ok);
index 6ebc2a0c11b1e28feddaf5c13fcc9c4c9daf216c..cdbaed1479d4a230fb4cca0aecd44a343d1394a3 100644 (file)
@@ -991,7 +991,6 @@ int cmd_main(int argc, const char **argv)
 
        git_setup_gettext();
 
-       git_extract_argv0_path(argv[0]);
        setup_git_directory_gently(&nongit);
        if (argc < 2) {
                error("remote-curl: usage: git remote-curl <remote> [<url>]");
index 32631eb14a04d769cc5a185477ee93aca69b663a..f87bf851ba75af9229b1a9171191673af330505b 100644 (file)
@@ -292,7 +292,6 @@ int cmd_main(int argc, const char **argv)
        static struct remote *remote;
        const char *url_in;
 
-       git_extract_argv0_path(argv[0]);
        setup_git_directory();
        if (argc < 2 || argc > 3) {
                usage("git-remote-svn <remote-name> [<url>]");
diff --git a/shell.c b/shell.c
index 3dd7fdcfe61479f213ebeaedbfd3090cd5a93852..ca00807d7ec0c2b20c24cb9baefc30e378db6cef 100644 (file)
--- a/shell.c
+++ b/shell.c
@@ -147,8 +147,6 @@ int cmd_main(int argc, const char **argv)
 
        git_setup_gettext();
 
-       git_extract_argv0_path(argv[0]);
-
        /*
         * Always open file descriptors 0/1/2 to avoid clobbering files
         * in die().  It also avoids messing up when the pipes are dup'ed
index 909ce68cfb8bb18ea7e6b6c9d27fbd8620ba73d3..8f2dd7d49abeaf617234cbcad7319a27ca023fd8 100644 (file)
@@ -826,7 +826,6 @@ int cmd_main(int argc, const char **argv)
        git_setup_gettext();
 
        packet_trace_identity("upload-pack");
-       git_extract_argv0_path(argv[0]);
        check_replace_refs = 0;
 
        for (i = 1; i < argc; i++) {