2 #include "run-command.h"
5 #include "argv-array.h"
8 # define SHELL_PATH "/bin/sh"
11 struct child_to_clean {
13 struct child_to_clean *next;
15 static struct child_to_clean *children_to_clean;
16 static int installed_child_cleanup_handler;
18 static void cleanup_children(int sig)
20 while (children_to_clean) {
21 struct child_to_clean *p = children_to_clean;
22 children_to_clean = p->next;
28 static void cleanup_children_on_signal(int sig)
30 cleanup_children(sig);
35 static void cleanup_children_on_exit(void)
37 cleanup_children(SIGTERM);
40 static void mark_child_for_cleanup(pid_t pid)
42 struct child_to_clean *p = xmalloc(sizeof(*p));
44 p->next = children_to_clean;
45 children_to_clean = p;
47 if (!installed_child_cleanup_handler) {
48 atexit(cleanup_children_on_exit);
49 sigchain_push_common(cleanup_children_on_signal);
50 installed_child_cleanup_handler = 1;
54 static void clear_child_for_cleanup(pid_t pid)
56 struct child_to_clean **pp;
58 for (pp = &children_to_clean; *pp; pp = &(*pp)->next) {
59 struct child_to_clean *clean_me = *pp;
61 if (clean_me->pid == pid) {
69 static inline void close_pair(int fd[2])
75 #ifndef GIT_WINDOWS_NATIVE
76 static inline void dup_devnull(int to)
78 int fd = open("/dev/null", O_RDWR);
80 die_errno(_("open /dev/null failed"));
82 die_errno(_("dup2(%d,%d) failed"), fd, to);
87 static char *locate_in_PATH(const char *file)
89 const char *p = getenv("PATH");
90 struct strbuf buf = STRBUF_INIT;
96 const char *end = strchrnul(p, ':');
100 /* POSIX specifies an empty entry as the current directory. */
102 strbuf_add(&buf, p, end - p);
103 strbuf_addch(&buf, '/');
105 strbuf_addstr(&buf, file);
107 if (!access(buf.buf, F_OK))
108 return strbuf_detach(&buf, NULL);
115 strbuf_release(&buf);
119 static int exists_in_PATH(const char *file)
121 char *r = locate_in_PATH(file);
126 int sane_execvp(const char *file, char * const argv[])
128 if (!execvp(file, argv))
129 return 0; /* cannot happen ;-) */
132 * When a command can't be found because one of the directories
133 * listed in $PATH is unsearchable, execvp reports EACCES, but
134 * careful usability testing (read: analysis of occasional bug
135 * reports) reveals that "No such file or directory" is more
138 * We avoid commands with "/", because execvp will not do $PATH
139 * lookups in that case.
141 * The reassignment of EACCES to errno looks like a no-op below,
142 * but we need to protect against exists_in_PATH overwriting errno.
144 if (errno == EACCES && !strchr(file, '/'))
145 errno = exists_in_PATH(file) ? EACCES : ENOENT;
146 else if (errno == ENOTDIR && !strchr(file, '/'))
151 static const char **prepare_shell_cmd(const char **argv)
156 for (argc = 0; argv[argc]; argc++)
157 ; /* just counting */
158 /* +1 for NULL, +3 for "sh -c" plus extra $0 */
159 nargv = xmalloc(sizeof(*nargv) * (argc + 1 + 3));
162 die("BUG: shell command is empty");
164 if (strcspn(argv[0], "|&;<>()$`\\\"' \t\n*?[#~=%") != strlen(argv[0])) {
165 #ifndef GIT_WINDOWS_NATIVE
166 nargv[nargc++] = SHELL_PATH;
168 nargv[nargc++] = "sh";
170 nargv[nargc++] = "-c";
173 nargv[nargc++] = argv[0];
175 struct strbuf arg0 = STRBUF_INIT;
176 strbuf_addf(&arg0, "%s \"$@\"", argv[0]);
177 nargv[nargc++] = strbuf_detach(&arg0, NULL);
181 for (argc = 0; argv[argc]; argc++)
182 nargv[nargc++] = argv[argc];
188 #ifndef GIT_WINDOWS_NATIVE
189 static int execv_shell_cmd(const char **argv)
191 const char **nargv = prepare_shell_cmd(argv);
192 trace_argv_printf(nargv, "trace: exec:");
193 sane_execvp(nargv[0], (char **)nargv);
199 #ifndef GIT_WINDOWS_NATIVE
200 static int child_err = 2;
201 static int child_notifier = -1;
203 static void notify_parent(void)
206 * execvp failed. If possible, we'd like to let start_command
207 * know, so failures like ENOENT can be handled right away; but
208 * otherwise, finish_command will still report the error.
210 xwrite(child_notifier, "", 1);
213 static NORETURN void die_child(const char *err, va_list params)
215 vwritef(child_err, "fatal: ", err, params);
219 static void error_child(const char *err, va_list params)
221 vwritef(child_err, "error: ", err, params);
225 static inline void set_cloexec(int fd)
227 int flags = fcntl(fd, F_GETFD);
229 fcntl(fd, F_SETFD, flags | FD_CLOEXEC);
232 static int wait_or_whine(pid_t pid, const char *argv0)
234 int status, code = -1;
236 int failed_errno = 0;
238 while ((waiting = waitpid(pid, &status, 0)) < 0 && errno == EINTR)
242 failed_errno = errno;
243 error("waitpid for %s failed: %s", argv0, strerror(errno));
244 } else if (waiting != pid) {
245 error("waitpid is confused (%s)", argv0);
246 } else if (WIFSIGNALED(status)) {
247 code = WTERMSIG(status);
248 if (code != SIGINT && code != SIGQUIT)
249 error("%s died of signal %d", argv0, code);
251 * This return value is chosen so that code & 0xff
252 * mimics the exit code that a POSIX shell would report for
253 * a program that died from this signal.
256 } else if (WIFEXITED(status)) {
257 code = WEXITSTATUS(status);
259 * Convert special exit code when execvp failed.
263 failed_errno = ENOENT;
266 error("waitpid is confused (%s)", argv0);
269 clear_child_for_cleanup(pid);
271 errno = failed_errno;
275 int start_command(struct child_process *cmd)
277 int need_in, need_out, need_err;
278 int fdin[2], fdout[2], fderr[2];
283 * In case of errors we must keep the promise to close FDs
284 * that have been passed in via ->in and ->out.
287 need_in = !cmd->no_stdin && cmd->in < 0;
289 if (pipe(fdin) < 0) {
290 failed_errno = errno;
293 str = "standard input";
299 need_out = !cmd->no_stdout
300 && !cmd->stdout_to_stderr
303 if (pipe(fdout) < 0) {
304 failed_errno = errno;
309 str = "standard output";
315 need_err = !cmd->no_stderr && cmd->err < 0;
317 if (pipe(fderr) < 0) {
318 failed_errno = errno;
327 str = "standard error";
329 error("cannot create %s pipe for %s: %s",
330 str, cmd->argv[0], strerror(failed_errno));
331 errno = failed_errno;
337 trace_argv_printf(cmd->argv, "trace: run_command:");
340 #ifndef GIT_WINDOWS_NATIVE
343 if (pipe(notify_pipe))
344 notify_pipe[0] = notify_pipe[1] = -1;
347 failed_errno = errno;
350 * Redirect the channel to write syscall error messages to
351 * before redirecting the process's stderr so that all die()
352 * in subsequent call paths use the parent's stderr.
354 if (cmd->no_stderr || need_err) {
356 set_cloexec(child_err);
358 set_die_routine(die_child);
359 set_error_routine(error_child);
361 close(notify_pipe[0]);
362 set_cloexec(notify_pipe[1]);
363 child_notifier = notify_pipe[1];
364 atexit(notify_parent);
371 } else if (cmd->in) {
381 } else if (cmd->err > 1) {
388 else if (cmd->stdout_to_stderr)
393 } else if (cmd->out > 1) {
398 if (cmd->dir && chdir(cmd->dir))
399 die_errno("exec '%s': cd to '%s' failed", cmd->argv[0],
402 for (; *cmd->env; cmd->env++) {
403 if (strchr(*cmd->env, '='))
404 putenv((char *)*cmd->env);
410 execv_git_cmd(cmd->argv);
411 } else if (cmd->use_shell) {
412 execv_shell_cmd(cmd->argv);
414 sane_execvp(cmd->argv[0], (char *const*) cmd->argv);
416 if (errno == ENOENT) {
417 if (!cmd->silent_exec_failure)
418 error("cannot run %s: %s", cmd->argv[0],
422 die_errno("cannot exec '%s'", cmd->argv[0]);
426 error("cannot fork() for %s: %s", cmd->argv[0],
428 else if (cmd->clean_on_exit)
429 mark_child_for_cleanup(cmd->pid);
432 * Wait for child's execvp. If the execvp succeeds (or if fork()
433 * failed), EOF is seen immediately by the parent. Otherwise, the
434 * child process sends a single byte.
435 * Note that use of this infrastructure is completely advisory,
436 * therefore, we keep error checks minimal.
438 close(notify_pipe[1]);
439 if (read(notify_pipe[0], ¬ify_pipe[1], 1) == 1) {
441 * At this point we know that fork() succeeded, but execvp()
442 * failed. Errors have been reported to our stderr.
444 wait_or_whine(cmd->pid, cmd->argv[0]);
445 failed_errno = errno;
448 close(notify_pipe[0]);
453 int fhin = 0, fhout = 1, fherr = 2;
454 const char **sargv = cmd->argv;
455 char **env = environ;
458 fhin = open("/dev/null", O_RDWR);
465 fherr = open("/dev/null", O_RDWR);
467 fherr = dup(fderr[1]);
468 else if (cmd->err > 2)
469 fherr = dup(cmd->err);
472 fhout = open("/dev/null", O_RDWR);
473 else if (cmd->stdout_to_stderr)
476 fhout = dup(fdout[1]);
477 else if (cmd->out > 1)
478 fhout = dup(cmd->out);
481 env = make_augmented_environ(cmd->env);
484 cmd->argv = prepare_git_cmd(cmd->argv);
485 } else if (cmd->use_shell) {
486 cmd->argv = prepare_shell_cmd(cmd->argv);
489 cmd->pid = mingw_spawnvpe(cmd->argv[0], cmd->argv, env, cmd->dir,
491 failed_errno = errno;
492 if (cmd->pid < 0 && (!cmd->silent_exec_failure || errno != ENOENT))
493 error("cannot spawn %s: %s", cmd->argv[0], strerror(errno));
494 if (cmd->clean_on_exit && cmd->pid >= 0)
495 mark_child_for_cleanup(cmd->pid);
525 errno = failed_errno;
547 int finish_command(struct child_process *cmd)
549 return wait_or_whine(cmd->pid, cmd->argv[0]);
552 int run_command(struct child_process *cmd)
554 int code = start_command(cmd);
557 return finish_command(cmd);
560 static void prepare_run_command_v_opt(struct child_process *cmd,
564 memset(cmd, 0, sizeof(*cmd));
566 cmd->no_stdin = opt & RUN_COMMAND_NO_STDIN ? 1 : 0;
567 cmd->git_cmd = opt & RUN_GIT_CMD ? 1 : 0;
568 cmd->stdout_to_stderr = opt & RUN_COMMAND_STDOUT_TO_STDERR ? 1 : 0;
569 cmd->silent_exec_failure = opt & RUN_SILENT_EXEC_FAILURE ? 1 : 0;
570 cmd->use_shell = opt & RUN_USING_SHELL ? 1 : 0;
571 cmd->clean_on_exit = opt & RUN_CLEAN_ON_EXIT ? 1 : 0;
574 int run_command_v_opt(const char **argv, int opt)
576 struct child_process cmd;
577 prepare_run_command_v_opt(&cmd, argv, opt);
578 return run_command(&cmd);
581 int run_command_v_opt_cd_env(const char **argv, int opt, const char *dir, const char *const *env)
583 struct child_process cmd;
584 prepare_run_command_v_opt(&cmd, argv, opt);
587 return run_command(&cmd);
591 static pthread_t main_thread;
592 static int main_thread_set;
593 static pthread_key_t async_key;
594 static pthread_key_t async_die_counter;
596 static void *run_thread(void *data)
598 struct async *async = data;
601 pthread_setspecific(async_key, async);
602 ret = async->proc(async->proc_in, async->proc_out, async->data);
606 static NORETURN void die_async(const char *err, va_list params)
608 vreportf("fatal: ", err, params);
610 if (!pthread_equal(main_thread, pthread_self())) {
611 struct async *async = pthread_getspecific(async_key);
612 if (async->proc_in >= 0)
613 close(async->proc_in);
614 if (async->proc_out >= 0)
615 close(async->proc_out);
616 pthread_exit((void *)128);
622 static int async_die_is_recursing(void)
624 void *ret = pthread_getspecific(async_die_counter);
625 pthread_setspecific(async_die_counter, (void *)1);
631 int start_async(struct async *async)
633 int need_in, need_out;
634 int fdin[2], fdout[2];
635 int proc_in, proc_out;
637 need_in = async->in < 0;
639 if (pipe(fdin) < 0) {
642 return error("cannot create pipe: %s", strerror(errno));
647 need_out = async->out < 0;
649 if (pipe(fdout) < 0) {
654 return error("cannot create pipe: %s", strerror(errno));
656 async->out = fdout[0];
669 proc_out = async->out;
674 /* Flush stdio before fork() to avoid cloning buffers */
678 if (async->pid < 0) {
679 error("fork (async) failed: %s", strerror(errno));
687 exit(!!async->proc(proc_in, proc_out, async->data));
690 mark_child_for_cleanup(async->pid);
702 if (!main_thread_set) {
704 * We assume that the first time that start_async is called
705 * it is from the main thread.
708 main_thread = pthread_self();
709 pthread_key_create(&async_key, NULL);
710 pthread_key_create(&async_die_counter, NULL);
711 set_die_routine(die_async);
712 set_die_is_recursing_routine(async_die_is_recursing);
716 set_cloexec(proc_in);
718 set_cloexec(proc_out);
719 async->proc_in = proc_in;
720 async->proc_out = proc_out;
722 int err = pthread_create(&async->tid, NULL, run_thread, async);
724 error("cannot create thread: %s", strerror(err));
744 int finish_async(struct async *async)
747 return wait_or_whine(async->pid, "child process");
749 void *ret = (void *)(intptr_t)(-1);
751 if (pthread_join(async->tid, &ret))
752 error("pthread_join failed");
753 return (int)(intptr_t)ret;
757 char *find_hook(const char *name)
759 char *path = git_path("hooks/%s", name);
760 if (access(path, X_OK) < 0)
766 int run_hook(const char *index_file, const char *name, ...)
768 struct child_process hook;
769 struct argv_array argv = ARGV_ARRAY_INIT;
770 const char *p, *env[2];
771 char index[PATH_MAX];
779 argv_array_push(&argv, p);
781 va_start(args, name);
782 while ((p = va_arg(args, const char *)))
783 argv_array_push(&argv, p);
786 memset(&hook, 0, sizeof(hook));
787 hook.argv = argv.argv;
789 hook.stdout_to_stderr = 1;
791 snprintf(index, sizeof(index), "GIT_INDEX_FILE=%s", index_file);
797 ret = run_command(&hook);
798 argv_array_clear(&argv);