Skip to content

Commit 1cf2341

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 b9af09e commit 1cf2341

File tree

3 files changed

+92
-2
lines changed

3 files changed

+92
-2
lines changed

compat/mingw.c

+69
Original file line numberDiff line numberDiff line change
@@ -3167,6 +3167,47 @@ int xwcstoutf(char *utf, const wchar_t *wcs, size_t utflen)
31673167
return -1;
31683168
}
31693169

3170+
#ifdef ENSURE_MSYSTEM_IS_SET
3171+
static size_t append_system_bin_dirs(char *path, size_t size)
3172+
{
3173+
#if !defined(RUNTIME_PREFIX) || !defined(HAVE_WPGMPTR)
3174+
return 0;
3175+
#else
3176+
char prefix[32768];
3177+
const char *slash;
3178+
size_t len = xwcstoutf(prefix, _wpgmptr, sizeof(prefix)), off = 0;
3179+
3180+
if (len == 0 || len >= sizeof(prefix) ||
3181+
!(slash = find_last_dir_sep(prefix)))
3182+
return 0;
3183+
/* strip trailing `git.exe` */
3184+
len = slash - prefix;
3185+
3186+
/* strip trailing `cmd` or `mingw64\bin` or `mingw32\bin` or `bin` or `libexec\git-core` */
3187+
if (strip_suffix_mem(prefix, &len, "\\mingw64\\libexec\\git-core") ||
3188+
strip_suffix_mem(prefix, &len, "\\mingw64\\bin"))
3189+
off += xsnprintf(path + off, size - off,
3190+
"%.*s\\mingw64\\bin;", (int)len, prefix);
3191+
else if (strip_suffix_mem(prefix, &len, "\\mingw32\\libexec\\git-core") ||
3192+
strip_suffix_mem(prefix, &len, "\\mingw32\\bin"))
3193+
off += xsnprintf(path + off, size - off,
3194+
"%.*s\\mingw32\\bin;", (int)len, prefix);
3195+
else if (strip_suffix_mem(prefix, &len, "\\cmd") ||
3196+
strip_suffix_mem(prefix, &len, "\\bin") ||
3197+
strip_suffix_mem(prefix, &len, "\\libexec\\git-core"))
3198+
off += xsnprintf(path + off, size - off,
3199+
"%.*s\\mingw%d\\bin;", (int)len, prefix,
3200+
(int)(sizeof(void *) * 8));
3201+
else
3202+
return 0;
3203+
3204+
off += xsnprintf(path + off, size - off,
3205+
"%.*s\\usr\\bin;", (int)len, prefix);
3206+
return off;
3207+
#endif
3208+
}
3209+
#endif
3210+
31703211
static void setup_windows_environment(void)
31713212
{
31723213
char *tmp = getenv("TMPDIR");
@@ -3219,6 +3260,34 @@ static void setup_windows_environment(void)
32193260
setenv("HOME", tmp, 1);
32203261
}
32213262

3263+
if (!getenv("PLINK_PROTOCOL"))
3264+
setenv("PLINK_PROTOCOL", "ssh", 0);
3265+
3266+
#ifdef ENSURE_MSYSTEM_IS_SET
3267+
if (!(tmp = getenv("MSYSTEM")) || !tmp[0]) {
3268+
const char *home = getenv("HOME"), *path = getenv("PATH");
3269+
char buf[32768];
3270+
size_t off = 0;
3271+
3272+
xsnprintf(buf, sizeof(buf),
3273+
"MINGW%d", (int)(sizeof(void *) * 8));
3274+
setenv("MSYSTEM", buf, 1);
3275+
3276+
if (home)
3277+
off += xsnprintf(buf + off, sizeof(buf) - off,
3278+
"%s\\bin;", home);
3279+
off += append_system_bin_dirs(buf + off, sizeof(buf) - off);
3280+
if (path)
3281+
off += xsnprintf(buf + off, sizeof(buf) - off,
3282+
"%s", path);
3283+
else if (off > 0)
3284+
buf[off - 1] = '\0';
3285+
else
3286+
buf[0] = '\0';
3287+
setenv("PATH", buf, 1);
3288+
}
3289+
#endif
3290+
32223291
/*
32233292
* Change 'core.symlinks' default to false, unless native symlinks are
32243293
* enabled in MSys2 (via 'MSYS=winsymlinks:nativestrict'). Thus we can

config.mak.uname

+2-2
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ endif
439439
compat/win32/pthread.o compat/win32/syslog.o \
440440
compat/win32/trace2_win32_process_info.o \
441441
compat/win32/dirent.o compat/win32/fscache.o
442-
COMPAT_CFLAGS = -D__USE_MINGW_ACCESS -DDETECT_MSYS_TTY -DNOGDI -DHAVE_STRING_H -Icompat -Icompat/regex -Icompat/win32 -DSTRIP_EXTENSION=\".exe\"
442+
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\"
443443
BASIC_LDFLAGS = -IGNORE:4217 -IGNORE:4049 -NOLOGO -ENTRY:wmainCRTStartup -SUBSYSTEM:CONSOLE
444444
# invalidcontinue.obj allows Git's source code to close the same file
445445
# handle twice, or to access the osfhandle of an already-closed stdout
@@ -662,7 +662,7 @@ else
662662
endif
663663
CC = gcc
664664
COMPAT_CFLAGS += -D__USE_MINGW_ANSI_STDIO=0 -DDETECT_MSYS_TTY \
665-
-fstack-protector-strong
665+
-DENSURE_MSYSTEM_IS_SET -fstack-protector-strong
666666
EXTLIBS += -lntdll
667667
INSTALL = /bin/install
668668
NO_R_TO_GCC_LINKER = YesPlease

t/t0060-path-utils.sh

+21
Original file line numberDiff line numberDiff line change
@@ -495,4 +495,25 @@ test_expect_success MINGW 'is_valid_path() on Windows' '
495495
"PRN./abc"
496496
'
497497

498+
test_expect_success MINGW 'MSYSTEM/PATH is adjusted if necessary' '
499+
mkdir -p "$HOME"/bin pretend/mingw64/bin \
500+
pretend/mingw64/libexec/git-core pretend/usr/bin &&
501+
cp "$GIT_EXEC_PATH"/git.exe pretend/mingw64/bin/ &&
502+
cp "$GIT_EXEC_PATH"/git.exe pretend/mingw64/libexec/git-core/ &&
503+
echo "env | grep MSYSTEM=" | write_script "$HOME"/bin/git-test-home &&
504+
echo "echo mingw64" | write_script pretend/mingw64/bin/git-test-bin &&
505+
echo "echo usr" | write_script pretend/usr/bin/git-test-bin2 &&
506+
507+
(
508+
MSYSTEM= &&
509+
GIT_EXEC_PATH= &&
510+
pretend/mingw64/libexec/git-core/git.exe test-home >actual &&
511+
pretend/mingw64/libexec/git-core/git.exe test-bin >>actual &&
512+
pretend/mingw64/bin/git.exe test-bin2 >>actual
513+
) &&
514+
test_write_lines MSYSTEM=$MSYSTEM mingw64 usr >expect &&
515+
test_cmp expect actual
516+
'
517+
'
518+
498519
test_done

0 commit comments

Comments
 (0)