Skip to content

Commit 35fb0e8

Browse files
sprohaskagitster
authored andcommitted
Compute prefix at runtime if RUNTIME_PREFIX is set
This commit adds support for relocatable binaries (called RUNTIME_PREFIX). Such binaries can be moved together with the system configuration files to a different directory, as long as the relative paths from the binary to the configuration files is preserved. This functionality is essential on Windows where we deliver git binaries with an installer that allows to freely choose the installation location. If RUNTIME_PREFIX is unset we use the static prefix. This will be the default on Unix. Thus, the behavior on Unix will remain identical to the old implementation, which used to add the prefix in the Makefile. If RUNTIME_PREFIX is set the prefix is computed from the location of the executable. In this case, system_path() tries to strip known directories that executables can be located in from the path of the executable. If the path is successfully stripped it is used as the prefix. For example, if the executable is "/msysgit/bin/git" and BINDIR is "bin", then the prefix computed is "/msysgit". If the runtime prefix computation fails, we fall back to the static prefix specified in the makefile. This can be the case if the executable is not installed at a known location. Note that our test system sets GIT_CONFIG_NOSYSTEM to tell git to ignore global configuration files during testing. Hence testing does not trigger the fall back. Note that RUNTIME_PREFIX only works on Windows, though adding support on Unix should not be too hard. The implementation requires argv0_path to be set to an absolute path. argv0_path must point to the directory of the executable. We use assert() to verify this in debug builds. On Windows, the wrapper for main() (see compat/mingw.h) guarantees that argv0_path is correctly initialized. On Unix, further work is required before RUNTIME_PREFIX can be enabled. Signed-off-by: Steffen Prohaska <prohaska@zib.de> Acked-by: Johannes Sixt <j6t@kdbg.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 8e34628 commit 35fb0e8

File tree

2 files changed

+47
-0
lines changed

2 files changed

+47
-0
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1031,6 +1031,9 @@ ifdef INTERNAL_QSORT
10311031
COMPAT_CFLAGS += -DINTERNAL_QSORT
10321032
COMPAT_OBJS += compat/qsort.o
10331033
endif
1034+
ifdef RUNTIME_PREFIX
1035+
COMPAT_CFLAGS += -DRUNTIME_PREFIX
1036+
endif
10341037

10351038
ifdef NO_PTHREADS
10361039
THREADED_DELTA_SEARCH =

exec_cmd.c

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,56 @@ static const char *argv0_path;
99

1010
const char *system_path(const char *path)
1111
{
12+
#ifdef RUNTIME_PREFIX
13+
static const char *prefix;
14+
#else
1215
static const char *prefix = PREFIX;
16+
#endif
1317
struct strbuf d = STRBUF_INIT;
1418

1519
if (is_absolute_path(path))
1620
return path;
1721

22+
#ifdef RUNTIME_PREFIX
23+
assert(argv0_path);
24+
assert(is_absolute_path(argv0_path));
25+
26+
if (!prefix) {
27+
const char *strip[] = {
28+
GIT_EXEC_PATH,
29+
BINDIR,
30+
0
31+
};
32+
const char **s;
33+
34+
for (s = strip; *s; s++) {
35+
const char *sargv = argv0_path + strlen(argv0_path);
36+
const char *ss = *s + strlen(*s);
37+
while (argv0_path < sargv && *s < ss
38+
&& (*sargv == *ss ||
39+
(is_dir_sep(*sargv) && is_dir_sep(*ss)))) {
40+
sargv--;
41+
ss--;
42+
}
43+
if (*s == ss) {
44+
struct strbuf d = STRBUF_INIT;
45+
/* We also skip the trailing directory separator. */
46+
assert(sargv - argv0_path - 1 >= 0);
47+
strbuf_add(&d, argv0_path, sargv - argv0_path - 1);
48+
prefix = strbuf_detach(&d, NULL);
49+
break;
50+
}
51+
}
52+
}
53+
54+
if (!prefix) {
55+
prefix = PREFIX;
56+
fprintf(stderr, "RUNTIME_PREFIX requested, "
57+
"but prefix computation failed. "
58+
"Using static fallback '%s'.\n", prefix);
59+
}
60+
#endif
61+
1862
strbuf_addf(&d, "%s/%s", prefix, path);
1963
path = strbuf_detach(&d, NULL);
2064
return path;

0 commit comments

Comments
 (0)