Skip to content

Commit be7cfa7

Browse files
dschoGit for Windows Build Agent
authored and
Git for Windows Build Agent
committed
mingw: allow git.exe to be used instead of the "Git wrapper"
Git for Windows wants to add `git.exe` to the users' `PATH`, without cluttering the latter with unnecessary executables such as `wish.exe`. To that end, it invented the concept of its "Git wrapper", i.e. a tiny executable located in `C:\Program Files\Git\cmd\git.exe` (originally a CMD script) whose sole purpose is to set up a couple of environment variables and then spawn the _actual_ `git.exe` (which nowadays lives in `C:\Program Files\Git\mingw64\bin\git.exe` for 64-bit, and the obvious equivalent for 32-bit installations). Currently, the following environment variables are set unless already initialized: - `MSYSTEM`, to make sure that the MSYS2 Bash and the MSYS2 Perl interpreter behave as expected, and - `PLINK_PROTOCOL`, to force PuTTY's `plink.exe` to use the SSH protocol instead of Telnet, - `PATH`, to make sure that the `bin` folder in the user's home directory, as well as the `/mingw64/bin` and the `/usr/bin` directories are included. The trick here is that the `/mingw64/bin/` and `/usr/bin/` directories are relative to the top-level installation directory of Git for Windows (which the included Bash interprets as `/`, i.e. as the MSYS pseudo root directory). Using the absence of `MSYSTEM` as a tell-tale, we can detect in `git.exe` whether these environment variables have been initialized properly. Therefore we can call `C:\Program Files\Git\mingw64\bin\git` in-place after this change, without having to call Git through the Git wrapper. Obviously, above-mentioned directories must be _prepended_ to the `PATH` variable, otherwise we risk picking up executables from unrelated Git installations. We do that by constructing the new `PATH` value from scratch, appending `$HOME/bin` (if `HOME` is set), then the MSYS2 system directories, and then appending the original `PATH`. Side note: this modification of the `PATH` variable is independent of the modification necessary to reach the executables and scripts in `/mingw64/libexec/git-core/`, i.e. the `GIT_EXEC_PATH`. That modification is still performed by Git, elsewhere, long after making the changes described above. While we _still_ cannot simply hard-link `mingw64\bin\git.exe` to `cmd` (because the former depends on a couple of `.dll` files that are only in `mingw64\bin`, i.e. calling `...\cmd\git.exe` would fail to load due to missing dependencies), at least we can now avoid that extra process of running the Git wrapper (which then has to wait for the spawned `git.exe` to finish) by calling `...\mingw64\bin\git.exe` directly, via its absolute path. Testing this is in Git's test suite tricky: we set up a "new" MSYS pseudo-root and copy the `git.exe` file into the appropriate location, then verify that `MSYSTEM` is set properly, and also that the `PATH` is modified so that scripts can be found in `$HOME/bin`, `/mingw64/bin/` and `/usr/bin/`. This addresses #2283 Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 88cbb9e commit be7cfa7

File tree

3 files changed

+101
-3
lines changed

3 files changed

+101
-3
lines changed

compat/mingw.c

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2771,6 +2771,47 @@ int xwcstoutf(char *utf, const wchar_t *wcs, size_t utflen)
27712771
return -1;
27722772
}
27732773

2774+
#ifdef ENSURE_MSYSTEM_IS_SET
2775+
static size_t append_system_bin_dirs(char *path, size_t size)
2776+
{
2777+
#if !defined(RUNTIME_PREFIX) || !defined(HAVE_WPGMPTR)
2778+
return 0;
2779+
#else
2780+
char prefix[32768];
2781+
const char *slash;
2782+
size_t len = xwcstoutf(prefix, _wpgmptr, sizeof(prefix)), off = 0;
2783+
2784+
if (len == 0 || len >= sizeof(prefix) ||
2785+
!(slash = find_last_dir_sep(prefix)))
2786+
return 0;
2787+
/* strip trailing `git.exe` */
2788+
len = slash - prefix;
2789+
2790+
/* strip trailing `cmd` or `mingw64\bin` or `mingw32\bin` or `bin` or `libexec\git-core` */
2791+
if (strip_suffix_mem(prefix, &len, "\\mingw64\\libexec\\git-core") ||
2792+
strip_suffix_mem(prefix, &len, "\\mingw64\\bin"))
2793+
off += xsnprintf(path + off, size - off,
2794+
"%.*s\\mingw64\\bin;", (int)len, prefix);
2795+
else if (strip_suffix_mem(prefix, &len, "\\mingw32\\libexec\\git-core") ||
2796+
strip_suffix_mem(prefix, &len, "\\mingw32\\bin"))
2797+
off += xsnprintf(path + off, size - off,
2798+
"%.*s\\mingw32\\bin;", (int)len, prefix);
2799+
else if (strip_suffix_mem(prefix, &len, "\\cmd") ||
2800+
strip_suffix_mem(prefix, &len, "\\bin") ||
2801+
strip_suffix_mem(prefix, &len, "\\libexec\\git-core"))
2802+
off += xsnprintf(path + off, size - off,
2803+
"%.*s\\mingw%d\\bin;", (int)len, prefix,
2804+
(int)(sizeof(void *) * 8));
2805+
else
2806+
return 0;
2807+
2808+
off += xsnprintf(path + off, size - off,
2809+
"%.*s\\usr\\bin;", (int)len, prefix);
2810+
return off;
2811+
#endif
2812+
}
2813+
#endif
2814+
27742815
static void setup_windows_environment(void)
27752816
{
27762817
char *tmp = getenv("TMPDIR");
@@ -2823,6 +2864,34 @@ static void setup_windows_environment(void)
28232864
setenv("HOME", tmp, 1);
28242865
}
28252866

2867+
if (!getenv("PLINK_PROTOCOL"))
2868+
setenv("PLINK_PROTOCOL", "ssh", 0);
2869+
2870+
#ifdef ENSURE_MSYSTEM_IS_SET
2871+
if (!(tmp = getenv("MSYSTEM")) || !tmp[0]) {
2872+
const char *home = getenv("HOME"), *path = getenv("PATH");
2873+
char buf[32768];
2874+
size_t off = 0;
2875+
2876+
xsnprintf(buf, sizeof(buf),
2877+
"MINGW%d", (int)(sizeof(void *) * 8));
2878+
setenv("MSYSTEM", buf, 1);
2879+
2880+
if (home)
2881+
off += xsnprintf(buf + off, sizeof(buf) - off,
2882+
"%s\\bin;", home);
2883+
off += append_system_bin_dirs(buf + off, sizeof(buf) - off);
2884+
if (path)
2885+
off += xsnprintf(buf + off, sizeof(buf) - off,
2886+
"%s", path);
2887+
else if (off > 0)
2888+
buf[off - 1] = '\0';
2889+
else
2890+
buf[0] = '\0';
2891+
setenv("PATH", buf, 1);
2892+
}
2893+
#endif
2894+
28262895
if (!getenv("LC_ALL") && !getenv("LC_CTYPE") && !getenv("LANG"))
28272896
setenv("LC_CTYPE", "C.UTF-8", 1);
28282897
}

config.mak.uname

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ endif
501501
compat/win32/pthread.o compat/win32/syslog.o \
502502
compat/win32/trace2_win32_process_info.o \
503503
compat/win32/dirent.o
504-
COMPAT_CFLAGS = -D__USE_MINGW_ACCESS -DDETECT_MSYS_TTY -DNOGDI -DHAVE_STRING_H -Icompat -Icompat/regex -Icompat/win32 -DSTRIP_EXTENSION=\".exe\"
504+
COMPAT_CFLAGS = -D__USE_MINGW_ACCESS -DDETECT_MSYS_TTY -DENSURE_MSYSTEM_IS_SET -DNOGDI -DHAVE_STRING_H -Icompat -Icompat/regex -Icompat/win32 -DSTRIP_EXTENSION=\".exe\"
505505
BASIC_LDFLAGS = -IGNORE:4217 -IGNORE:4049 -NOLOGO -ENTRY:wmainCRTStartup -SUBSYSTEM:CONSOLE
506506
# invalidcontinue.obj allows Git's source code to close the same file
507507
# handle twice, or to access the osfhandle of an already-closed stdout
@@ -730,7 +730,7 @@ ifeq ($(uname_S),MINGW)
730730
endif
731731
CC = gcc
732732
COMPAT_CFLAGS += -D__USE_MINGW_ANSI_STDIO=0 -DDETECT_MSYS_TTY \
733-
-fstack-protector-strong
733+
-DENSURE_MSYSTEM_IS_SET -fstack-protector-strong
734734
EXTLIBS += -lntdll
735735
EXTRA_PROGRAMS += headless-git$X
736736
INSTALL = /bin/install

t/t0060-path-utils.sh

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,8 @@ test_expect_success !VALGRIND,RUNTIME_PREFIX,CAN_EXEC_IN_PWD 'RUNTIME_PREFIX wor
598598
cp "$GIT_EXEC_PATH"/git$X pretend/bin/ &&
599599
GIT_EXEC_PATH= ./pretend/bin/git here >actual &&
600600
echo HERE >expect &&
601-
test_cmp expect actual'
601+
test_cmp expect actual
602+
'
602603

603604
test_expect_success !VALGRIND,RUNTIME_PREFIX,CAN_EXEC_IN_PWD '%(prefix)/ works' '
604605
mkdir -p pretend/bin &&
@@ -609,4 +610,32 @@ test_expect_success !VALGRIND,RUNTIME_PREFIX,CAN_EXEC_IN_PWD '%(prefix)/ works'
609610
test_cmp expect actual
610611
'
611612

613+
test_expect_success MINGW 'MSYSTEM/PATH is adjusted if necessary' '
614+
mkdir -p "$HOME"/bin pretend/mingw64/bin \
615+
pretend/mingw64/libexec/git-core pretend/usr/bin &&
616+
cp "$GIT_EXEC_PATH"/git.exe pretend/mingw64/bin/ &&
617+
cp "$GIT_EXEC_PATH"/git.exe pretend/mingw64/libexec/git-core/ &&
618+
# copy the .dll files, if any (happens when building via CMake)
619+
case "$GIT_EXEC_PATH"/*.dll in
620+
*/"*.dll") ;; # no `.dll` files to be copied
621+
*)
622+
cp "$GIT_EXEC_PATH"/*.dll pretend/mingw64/bin/ &&
623+
cp "$GIT_EXEC_PATH"/*.dll pretend/mingw64/libexec/git-core/
624+
;;
625+
esac &&
626+
echo "env | grep MSYSTEM=" | write_script "$HOME"/bin/git-test-home &&
627+
echo "echo mingw64" | write_script pretend/mingw64/bin/git-test-bin &&
628+
echo "echo usr" | write_script pretend/usr/bin/git-test-bin2 &&
629+
630+
(
631+
MSYSTEM= &&
632+
GIT_EXEC_PATH= &&
633+
pretend/mingw64/libexec/git-core/git.exe test-home >actual &&
634+
pretend/mingw64/libexec/git-core/git.exe test-bin >>actual &&
635+
pretend/mingw64/bin/git.exe test-bin2 >>actual
636+
) &&
637+
test_write_lines MSYSTEM=$MSYSTEM mingw64 usr >expect &&
638+
test_cmp expect actual
639+
'
640+
612641
test_done

0 commit comments

Comments
 (0)