1 #include "git-compat-util.h"
3 #include "environment.h"
7 #include "run-command.h"
12 #if defined(RUNTIME_PREFIX)
14 #if defined(HAVE_NS_GET_EXECUTABLE_PATH)
15 #include <mach-o/dyld.h>
18 #if defined(HAVE_BSD_KERN_PROC_SYSCTL)
19 #include <sys/param.h>
20 #include <sys/types.h>
21 #include <sys/sysctl.h>
24 #endif /* RUNTIME_PREFIX */
28 static const char *system_prefix(void);
33 * When using a runtime prefix, Git dynamically resolves paths relative to its
36 * The method for determining the path of the executable is highly
41 * Path to the current Git executable. Resolved on startup by
42 * 'git_resolve_executable_dir'.
44 static const char *executable_dirname
;
46 static const char *system_prefix(void)
48 static const char *prefix
;
50 assert(executable_dirname
);
51 assert(is_absolute_path(executable_dirname
));
54 !(prefix
= strip_path_suffix(executable_dirname
, GIT_EXEC_PATH
)) &&
55 !(prefix
= strip_path_suffix(executable_dirname
, BINDIR
)) &&
56 !(prefix
= strip_path_suffix(executable_dirname
, "git"))) {
57 prefix
= FALLBACK_RUNTIME_PREFIX
;
58 trace_printf("RUNTIME_PREFIX requested, "
59 "but prefix computation failed. "
60 "Using static fallback '%s'.\n", prefix
);
66 * Resolves the executable path from argv[0], only if it is absolute.
68 * Returns 0 on success, -1 on failure.
70 static int git_get_exec_path_from_argv0(struct strbuf
*buf
, const char *argv0
)
74 if (!argv0
|| !*argv0
)
77 slash
= find_last_dir_sep(argv0
);
79 trace_printf("trace: resolved executable path from argv0: %s\n",
81 strbuf_add_absolute_path(buf
, argv0
);
87 #ifdef PROCFS_EXECUTABLE_PATH
89 * Resolves the executable path by examining a procfs symlink.
91 * Returns 0 on success, -1 on failure.
93 static int git_get_exec_path_procfs(struct strbuf
*buf
)
95 if (strbuf_realpath(buf
, PROCFS_EXECUTABLE_PATH
, 0)) {
97 "trace: resolved executable path from procfs: %s\n",
103 #endif /* PROCFS_EXECUTABLE_PATH */
105 #ifdef HAVE_BSD_KERN_PROC_SYSCTL
107 * Resolves the executable path using KERN_PROC_PATHNAME BSD sysctl.
109 * Returns 0 on success, -1 on failure.
111 static int git_get_exec_path_bsd_sysctl(struct strbuf
*buf
)
114 char path
[MAXPATHLEN
];
115 size_t cb
= sizeof(path
);
119 mib
[2] = KERN_PROC_PATHNAME
;
121 if (!sysctl(mib
, 4, path
, &cb
, NULL
, 0)) {
123 "trace: resolved executable path from sysctl: %s\n",
125 strbuf_addstr(buf
, path
);
130 #endif /* HAVE_BSD_KERN_PROC_SYSCTL */
132 #ifdef HAVE_NS_GET_EXECUTABLE_PATH
134 * Resolves the executable path by querying Darwin application stack.
136 * Returns 0 on success, -1 on failure.
138 static int git_get_exec_path_darwin(struct strbuf
*buf
)
141 uint32_t size
= sizeof(path
);
142 if (!_NSGetExecutablePath(path
, &size
)) {
144 "trace: resolved executable path from Darwin stack: %s\n",
146 strbuf_addstr(buf
, path
);
151 #endif /* HAVE_NS_GET_EXECUTABLE_PATH */
153 #ifdef HAVE_ZOS_GET_EXECUTABLE_PATH
155 * Resolves the executable path from current program's directory and name.
157 * Returns 0 on success, -1 on failure.
159 static int git_get_exec_path_zos(struct strbuf
*buf
)
161 char *dir
= __getprogramdir();
162 char *exe
= getprogname();
164 strbuf_addf(buf
, "%s/%s", dir
, exe
);
170 #endif /* HAVE_ZOS_GET_EXECUTABLE_PATH */
174 * Resolves the executable path by using the global variable _wpgmptr.
176 * Returns 0 on success, -1 on failure.
178 static int git_get_exec_path_wpgmptr(struct strbuf
*buf
)
180 int len
= wcslen(_wpgmptr
) * 3 + 1;
181 strbuf_grow(buf
, len
);
182 len
= xwcstoutf(buf
->buf
, _wpgmptr
, len
);
188 #endif /* HAVE_WPGMPTR */
191 * Resolves the absolute path of the current executable.
193 * Returns 0 on success, -1 on failure.
195 static int git_get_exec_path(struct strbuf
*buf
, const char *argv0
)
198 * Identifying the executable path is operating system specific.
199 * Selectively employ all available methods in order of preference,
200 * preferring highly-available authoritative methods over
201 * selectively-available or non-authoritative methods.
203 * All cases fall back on resolving against argv[0] if there isn't a
204 * better functional method. However, note that argv[0] can be
205 * used-supplied on many operating systems, and is not authoritative
208 * Each of these functions returns 0 on success, so evaluation will stop
209 * after the first successful method.
212 #ifdef HAVE_BSD_KERN_PROC_SYSCTL
213 git_get_exec_path_bsd_sysctl(buf
) &&
214 #endif /* HAVE_BSD_KERN_PROC_SYSCTL */
216 #ifdef HAVE_NS_GET_EXECUTABLE_PATH
217 git_get_exec_path_darwin(buf
) &&
218 #endif /* HAVE_NS_GET_EXECUTABLE_PATH */
220 #ifdef PROCFS_EXECUTABLE_PATH
221 git_get_exec_path_procfs(buf
) &&
222 #endif /* PROCFS_EXECUTABLE_PATH */
225 git_get_exec_path_wpgmptr(buf
) &&
226 #endif /* HAVE_WPGMPTR */
228 #ifdef HAVE_ZOS_GET_EXECUTABLE_PATH
229 git_get_exec_path_zos(buf
) &&
230 #endif /*HAVE_ZOS_GET_EXECUTABLE_PATH */
232 git_get_exec_path_from_argv0(buf
, argv0
)) {
236 if (strbuf_normalize_path(buf
)) {
237 trace_printf("trace: could not normalize path: %s\n", buf
->buf
);
241 trace2_cmd_path(buf
->buf
);
246 void git_resolve_executable_dir(const char *argv0
)
248 struct strbuf buf
= STRBUF_INIT
;
252 if (git_get_exec_path(&buf
, argv0
)) {
254 "trace: could not determine executable path from: %s\n",
256 strbuf_release(&buf
);
260 resolved
= strbuf_detach(&buf
, NULL
);
261 slash
= find_last_dir_sep(resolved
);
263 resolved
[slash
- resolved
] = '\0';
265 executable_dirname
= resolved
;
266 trace_printf("trace: resolved executable dir: %s\n",
273 * When not using a runtime prefix, Git uses a hard-coded path.
275 static const char *system_prefix(void)
277 return FALLBACK_RUNTIME_PREFIX
;
281 * This is called during initialization, but No work needs to be done here when
282 * runtime prefix is not being used.
284 void git_resolve_executable_dir(const char *argv0 UNUSED
)
288 #endif /* RUNTIME_PREFIX */
290 char *system_path(const char *path
)
292 struct strbuf d
= STRBUF_INIT
;
294 if (is_absolute_path(path
))
295 return xstrdup(path
);
297 strbuf_addf(&d
, "%s/%s", system_prefix(), path
);
298 return strbuf_detach(&d
, NULL
);
301 static const char *exec_path_value
;
303 void git_set_exec_path(const char *exec_path
)
305 exec_path_value
= exec_path
;
307 * Propagate this setting to external programs.
309 setenv(EXEC_PATH_ENVIRONMENT
, exec_path
, 1);
312 /* Returns the highest-priority location to look for git programs. */
313 const char *git_exec_path(void)
315 if (!exec_path_value
) {
316 const char *env
= getenv(EXEC_PATH_ENVIRONMENT
);
318 exec_path_value
= xstrdup(env
);
320 exec_path_value
= system_path(GIT_EXEC_PATH
);
322 return exec_path_value
;
325 static void add_path(struct strbuf
*out
, const char *path
)
328 strbuf_add_absolute_path(out
, path
);
329 strbuf_addch(out
, PATH_SEP
);
333 void setup_path(void)
335 const char *exec_path
= git_exec_path();
336 const char *old_path
= getenv("PATH");
337 struct strbuf new_path
= STRBUF_INIT
;
339 git_set_exec_path(exec_path
);
340 add_path(&new_path
, exec_path
);
343 strbuf_addstr(&new_path
, old_path
);
345 strbuf_addstr(&new_path
, _PATH_DEFPATH
);
347 setenv("PATH", new_path
.buf
, 1);
349 strbuf_release(&new_path
);
352 const char **prepare_git_cmd(struct strvec
*out
, const char **argv
)
354 strvec_push(out
, "git");
355 strvec_pushv(out
, argv
);
359 int execv_git_cmd(const char **argv
)
361 struct strvec nargv
= STRVEC_INIT
;
363 prepare_git_cmd(&nargv
, argv
);
364 trace_argv_printf(nargv
.v
, "trace: exec:");
366 /* execvp() can only ever return if it fails */
367 sane_execvp("git", (char **)nargv
.v
);
369 trace_printf("trace: exec failed: %s\n", strerror(errno
));
371 strvec_clear(&nargv
);
375 int execl_git_cmd(const char *cmd
, ...)
378 const char *argv
[MAX_ARGS
+ 1];
382 va_start(param
, cmd
);
385 while (argc
< MAX_ARGS
) {
386 arg
= argv
[argc
++] = va_arg(param
, char *);
391 if (MAX_ARGS
<= argc
)
392 return error(_("too many args to run %s"), cmd
);
395 return execv_git_cmd(argv
);