Skip to content

Commit 4be3d5e

Browse files
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 9885e79 commit 4be3d5e

File tree

3 files changed

+114
-3
lines changed

3 files changed

+114
-3
lines changed

compat/mingw.c

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2751,6 +2751,54 @@ int xwcstoutf(char *utf, const wchar_t *wcs, size_t utflen)
27512751
return -1;
27522752
}
27532753

2754+
#ifdef ENSURE_MSYSTEM_IS_SET
2755+
#if !defined(RUNTIME_PREFIX) || !defined(HAVE_WPGMPTR)
2756+
static size_t append_system_bin_dirs(char *path UNUSED, size_t size UNUSED)
2757+
{
2758+
return 0;
2759+
}
2760+
#else
2761+
static size_t append_system_bin_dirs(char *path, size_t size)
2762+
{
2763+
char prefix[32768];
2764+
const char *slash;
2765+
size_t len = xwcstoutf(prefix, _wpgmptr, sizeof(prefix)), off = 0;
2766+
2767+
if (len == 0 || len >= sizeof(prefix) ||
2768+
!(slash = find_last_dir_sep(prefix)))
2769+
return 0;
2770+
/* strip trailing `git.exe` */
2771+
len = slash - prefix;
2772+
2773+
/* strip trailing `cmd` or `mingw64\bin` or `mingw32\bin` or `bin` or `libexec\git-core` */
2774+
if (strip_suffix_mem(prefix, &len, "\\mingw64\\libexec\\git-core") ||
2775+
strip_suffix_mem(prefix, &len, "\\mingw64\\bin"))
2776+
off += xsnprintf(path + off, size - off,
2777+
"%.*s\\mingw64\\bin;", (int)len, prefix);
2778+
else if (strip_suffix_mem(prefix, &len, "\\clangarm64\\libexec\\git-core") ||
2779+
strip_suffix_mem(prefix, &len, "\\clangarm64\\bin"))
2780+
off += xsnprintf(path + off, size - off,
2781+
"%.*s\\clangarm64\\bin;", (int)len, prefix);
2782+
else if (strip_suffix_mem(prefix, &len, "\\mingw32\\libexec\\git-core") ||
2783+
strip_suffix_mem(prefix, &len, "\\mingw32\\bin"))
2784+
off += xsnprintf(path + off, size - off,
2785+
"%.*s\\mingw32\\bin;", (int)len, prefix);
2786+
else if (strip_suffix_mem(prefix, &len, "\\cmd") ||
2787+
strip_suffix_mem(prefix, &len, "\\bin") ||
2788+
strip_suffix_mem(prefix, &len, "\\libexec\\git-core"))
2789+
off += xsnprintf(path + off, size - off,
2790+
"%.*s\\mingw%d\\bin;", (int)len, prefix,
2791+
(int)(sizeof(void *) * 8));
2792+
else
2793+
return 0;
2794+
2795+
off += xsnprintf(path + off, size - off,
2796+
"%.*s\\usr\\bin;", (int)len, prefix);
2797+
return off;
2798+
}
2799+
#endif
2800+
#endif
2801+
27542802
static void setup_windows_environment(void)
27552803
{
27562804
char *tmp = getenv("TMPDIR");
@@ -2803,6 +2851,38 @@ static void setup_windows_environment(void)
28032851
setenv("HOME", tmp, 1);
28042852
}
28052853

2854+
if (!getenv("PLINK_PROTOCOL"))
2855+
setenv("PLINK_PROTOCOL", "ssh", 0);
2856+
2857+
#ifdef ENSURE_MSYSTEM_IS_SET
2858+
if (!(tmp = getenv("MSYSTEM")) || !tmp[0]) {
2859+
const char *home = getenv("HOME"), *path = getenv("PATH");
2860+
char buf[32768];
2861+
size_t off = 0;
2862+
2863+
#if defined(__aarch64__) || defined(_M_ARM64) || defined(_M_ARM64EC)
2864+
setenv("MSYSTEM", "CLANGARM64", 1);
2865+
#elif defined(__MINGW64__) || defined(_M_AMD64)
2866+
setenv("MSYSTEM", "MINGW64", 1);
2867+
#else
2868+
setenv("MSYSTEM", "MINGW32", 1);
2869+
#endif
2870+
2871+
if (home)
2872+
off += xsnprintf(buf + off, sizeof(buf) - off,
2873+
"%s\\bin;", home);
2874+
off += append_system_bin_dirs(buf + off, sizeof(buf) - off);
2875+
if (path)
2876+
off += xsnprintf(buf + off, sizeof(buf) - off,
2877+
"%s", path);
2878+
else if (off > 0)
2879+
buf[off - 1] = '\0';
2880+
else
2881+
buf[0] = '\0';
2882+
setenv("PATH", buf, 1);
2883+
}
2884+
#endif
2885+
28062886
if (!getenv("LC_ALL") && !getenv("LC_CTYPE") && !getenv("LANG"))
28072887
setenv("LC_CTYPE", "C.UTF-8", 1);
28082888
}

config.mak.uname

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ endif
528528
compat/win32/pthread.o compat/win32/syslog.o \
529529
compat/win32/trace2_win32_process_info.o \
530530
compat/win32/dirent.o
531-
COMPAT_CFLAGS = -D__USE_MINGW_ACCESS -DDETECT_MSYS_TTY -DNOGDI -DHAVE_STRING_H -Icompat -Icompat/regex -Icompat/win32 -DSTRIP_EXTENSION=\".exe\"
531+
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\"
532532
BASIC_LDFLAGS = -IGNORE:4217 -IGNORE:4049 -NOLOGO -ENTRY:wmainCRTStartup -SUBSYSTEM:CONSOLE
533533
# invalidcontinue.obj allows Git's source code to close the same file
534534
# handle twice, or to access the osfhandle of an already-closed stdout
@@ -761,7 +761,7 @@ ifeq ($(uname_S),MINGW)
761761
endif
762762
CC = gcc
763763
COMPAT_CFLAGS += -D__USE_MINGW_ANSI_STDIO=0 -DDETECT_MSYS_TTY \
764-
-fstack-protector-strong
764+
-DENSURE_MSYSTEM_IS_SET -fstack-protector-strong
765765
EXTLIBS += -lntdll
766766
EXTRA_PROGRAMS += headless-git$X
767767
INSTALL = /bin/install

t/t0060-path-utils.sh

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,8 @@ test_expect_success !VALGRIND,RUNTIME_PREFIX,CAN_EXEC_IN_PWD 'RUNTIME_PREFIX wor
602602
echo "echo HERE" | write_script pretend/libexec/git-core/git-here &&
603603
GIT_EXEC_PATH= ./pretend/bin/git here >actual &&
604604
echo HERE >expect &&
605-
test_cmp expect actual'
605+
test_cmp expect actual
606+
'
606607

607608
test_expect_success !VALGRIND,RUNTIME_PREFIX,CAN_EXEC_IN_PWD '%(prefix)/ works' '
608609
git config yes.path "%(prefix)/yes" &&
@@ -611,4 +612,34 @@ test_expect_success !VALGRIND,RUNTIME_PREFIX,CAN_EXEC_IN_PWD '%(prefix)/ works'
611612
test_cmp expect actual
612613
'
613614

615+
test_expect_success MINGW,RUNTIME_PREFIX 'MSYSTEM/PATH is adjusted if necessary' '
616+
if test -z "$MINGW_PREFIX"
617+
then
618+
MINGW_PREFIX="/$(echo "${MSYSTEM:-MINGW64}" | tr A-Z a-z)"
619+
fi &&
620+
mkdir -p "$HOME"/bin pretend"$MINGW_PREFIX"/bin \
621+
pretend"$MINGW_PREFIX"/libexec/git-core pretend/usr/bin &&
622+
cp "$GIT_EXEC_PATH"/git.exe pretend"$MINGW_PREFIX"/bin/ &&
623+
cp "$GIT_EXEC_PATH"/git.exe pretend"$MINGW_PREFIX"/libexec/git-core/ &&
624+
# copy the .dll files, if any (happens when building via CMake)
625+
if test -n "$(ls "$GIT_EXEC_PATH"/*.dll 2>/dev/null)"
626+
then
627+
cp "$GIT_EXEC_PATH"/*.dll pretend"$MINGW_PREFIX"/bin/ &&
628+
cp "$GIT_EXEC_PATH"/*.dll pretend"$MINGW_PREFIX"/libexec/git-core/
629+
fi &&
630+
echo "env | grep MSYSTEM=" | write_script "$HOME"/bin/git-test-home &&
631+
echo "echo ${MINGW_PREFIX#/}" | write_script pretend"$MINGW_PREFIX"/bin/git-test-bin &&
632+
echo "echo usr" | write_script pretend/usr/bin/git-test-bin2 &&
633+
634+
(
635+
MSYSTEM= &&
636+
GIT_EXEC_PATH= &&
637+
pretend"$MINGW_PREFIX"/libexec/git-core/git.exe test-home >actual &&
638+
pretend"$MINGW_PREFIX"/libexec/git-core/git.exe test-bin >>actual &&
639+
pretend"$MINGW_PREFIX"/bin/git.exe test-bin2 >>actual
640+
) &&
641+
test_write_lines MSYSTEM=$MSYSTEM "${MINGW_PREFIX#/}" usr >expect &&
642+
test_cmp expect actual
643+
'
644+
614645
test_done

0 commit comments

Comments
 (0)