2 #include "run-command.h"
5 #include "argv-array.h"
7 void child_process_init(struct child_process *child)
9 memset(child, 0, sizeof(*child));
10 argv_array_init(&child->args);
11 argv_array_init(&child->env_array);
14 struct child_to_clean {
16 struct child_to_clean *next;
18 static struct child_to_clean *children_to_clean;
19 static int installed_child_cleanup_handler;
21 static void cleanup_children(int sig)
23 while (children_to_clean) {
24 struct child_to_clean *p = children_to_clean;
25 children_to_clean = p->next;
31 static void cleanup_children_on_signal(int sig)
33 cleanup_children(sig);
38 static void cleanup_children_on_exit(void)
40 cleanup_children(SIGTERM);
43 static void mark_child_for_cleanup(pid_t pid)
45 struct child_to_clean *p = xmalloc(sizeof(*p));
47 p->next = children_to_clean;
48 children_to_clean = p;
50 if (!installed_child_cleanup_handler) {
51 atexit(cleanup_children_on_exit);
52 sigchain_push_common(cleanup_children_on_signal);
53 installed_child_cleanup_handler = 1;
57 static void clear_child_for_cleanup(pid_t pid)
59 struct child_to_clean **pp;
61 for (pp = &children_to_clean; *pp; pp = &(*pp)->next) {
62 struct child_to_clean *clean_me = *pp;
64 if (clean_me->pid == pid) {
72 static inline void close_pair(int fd[2])
78 #ifndef GIT_WINDOWS_NATIVE
79 static inline void dup_devnull(int to)
81 int fd = open("/dev/null", O_RDWR);
83 die_errno(_("open /dev/null failed"));
85 die_errno(_("dup2(%d,%d) failed"), fd, to);
90 static char *locate_in_PATH(const char *file)
92 const char *p = getenv("PATH");
93 struct strbuf buf = STRBUF_INIT;
99 const char *end = strchrnul(p, ':');
103 /* POSIX specifies an empty entry as the current directory. */
105 strbuf_add(&buf, p, end - p);
106 strbuf_addch(&buf, '/');
108 strbuf_addstr(&buf, file);
110 if (!access(buf.buf, F_OK))
111 return strbuf_detach(&buf, NULL);
118 strbuf_release(&buf);
122 static int exists_in_PATH(const char *file)
124 char *r = locate_in_PATH(file);
129 int sane_execvp(const char *file, char * const argv[])
131 if (!execvp(file, argv))
132 return 0; /* cannot happen ;-) */
135 * When a command can't be found because one of the directories
136 * listed in $PATH is unsearchable, execvp reports EACCES, but
137 * careful usability testing (read: analysis of occasional bug
138 * reports) reveals that "No such file or directory" is more
141 * We avoid commands with "/", because execvp will not do $PATH
142 * lookups in that case.
144 * The reassignment of EACCES to errno looks like a no-op below,
145 * but we need to protect against exists_in_PATH overwriting errno.
147 if (errno == EACCES && !strchr(file, '/'))
148 errno = exists_in_PATH(file) ? EACCES : ENOENT;
149 else if (errno == ENOTDIR && !strchr(file, '/'))
154 static const char **prepare_shell_cmd(const char **argv)
159 for (argc = 0; argv[argc]; argc++)
160 ; /* just counting */
161 /* +1 for NULL, +3 for "sh -c" plus extra $0 */
162 nargv = xmalloc(sizeof(*nargv) * (argc + 1 + 3));
165 die("BUG: shell command is empty");
167 if (strcspn(argv[0], "|&;<>()$`\\\"' \t\n*?[#~=%") != strlen(argv[0])) {
168 #ifndef GIT_WINDOWS_NATIVE
169 nargv[nargc++] = SHELL_PATH;
171 nargv[nargc++] = "sh";
173 nargv[nargc++] = "-c";
176 nargv[nargc++] = argv[0];
178 struct strbuf arg0 = STRBUF_INIT;
179 strbuf_addf(&arg0, "%s \"$@\"", argv[0]);
180 nargv[nargc++] = strbuf_detach(&arg0, NULL);
184 for (argc = 0; argv[argc]; argc++)
185 nargv[nargc++] = argv[argc];
191 #ifndef GIT_WINDOWS_NATIVE
192 static int execv_shell_cmd(const char **argv)
194 const char **nargv = prepare_shell_cmd(argv);
195 trace_argv_printf(nargv, "trace: exec:");
196 sane_execvp(nargv[0], (char **)nargv);
202 #ifndef GIT_WINDOWS_NATIVE
203 static int child_err = 2;
204 static int child_notifier = -1;
206 static void notify_parent(void)
209 * execvp failed. If possible, we'd like to let start_command
210 * know, so failures like ENOENT can be handled right away; but
211 * otherwise, finish_command will still report the error.
213 xwrite(child_notifier, "", 1);
216 static NORETURN void die_child(const char *err, va_list params)
218 vwritef(child_err, "fatal: ", err, params);
222 static void error_child(const char *err, va_list params)
224 vwritef(child_err, "error: ", err, params);
228 static inline void set_cloexec(int fd)
230 int flags = fcntl(fd, F_GETFD);
232 fcntl(fd, F_SETFD, flags | FD_CLOEXEC);
235 static int wait_or_whine(pid_t pid, const char *argv0)
237 int status, code = -1;
239 int failed_errno = 0;
241 while ((waiting = waitpid(pid, &status, 0)) < 0 && errno == EINTR)
245 failed_errno = errno;
246 error("waitpid for %s failed: %s", argv0, strerror(errno));
247 } else if (waiting != pid) {
248 error("waitpid is confused (%s)", argv0);
249 } else if (WIFSIGNALED(status)) {
250 code = WTERMSIG(status);
251 if (code != SIGINT && code != SIGQUIT)
252 error("%s died of signal %d", argv0, code);
254 * This return value is chosen so that code & 0xff
255 * mimics the exit code that a POSIX shell would report for
256 * a program that died from this signal.
259 } else if (WIFEXITED(status)) {
260 code = WEXITSTATUS(status);
262 * Convert special exit code when execvp failed.
266 failed_errno = ENOENT;
269 error("waitpid is confused (%s)", argv0);
272 clear_child_for_cleanup(pid);
274 errno = failed_errno;
278 int start_command(struct child_process *cmd)
280 int need_in, need_out, need_err;
281 int fdin[2], fdout[2], fderr[2];
286 cmd->argv = cmd->args.argv;
288 cmd->env = cmd->env_array.argv;
291 * In case of errors we must keep the promise to close FDs
292 * that have been passed in via ->in and ->out.
295 need_in = !cmd->no_stdin && cmd->in < 0;
297 if (pipe(fdin) < 0) {
298 failed_errno = errno;
301 str = "standard input";
307 need_out = !cmd->no_stdout
308 && !cmd->stdout_to_stderr
311 if (pipe(fdout) < 0) {
312 failed_errno = errno;
317 str = "standard output";
323 need_err = !cmd->no_stderr && cmd->err < 0;
325 if (pipe(fderr) < 0) {
326 failed_errno = errno;
335 str = "standard error";
337 error("cannot create %s pipe for %s: %s",
338 str, cmd->argv[0], strerror(failed_errno));
339 argv_array_clear(&cmd->args);
340 argv_array_clear(&cmd->env_array);
341 errno = failed_errno;
347 trace_argv_printf(cmd->argv, "trace: run_command:");
350 #ifndef GIT_WINDOWS_NATIVE
353 if (pipe(notify_pipe))
354 notify_pipe[0] = notify_pipe[1] = -1;
357 failed_errno = errno;
360 * Redirect the channel to write syscall error messages to
361 * before redirecting the process's stderr so that all die()
362 * in subsequent call paths use the parent's stderr.
364 if (cmd->no_stderr || need_err) {
366 set_cloexec(child_err);
368 set_die_routine(die_child);
369 set_error_routine(error_child);
371 close(notify_pipe[0]);
372 set_cloexec(notify_pipe[1]);
373 child_notifier = notify_pipe[1];
374 atexit(notify_parent);
381 } else if (cmd->in) {
391 } else if (cmd->err > 1) {
398 else if (cmd->stdout_to_stderr)
403 } else if (cmd->out > 1) {
408 if (cmd->dir && chdir(cmd->dir))
409 die_errno("exec '%s': cd to '%s' failed", cmd->argv[0],
412 for (; *cmd->env; cmd->env++) {
413 if (strchr(*cmd->env, '='))
414 putenv((char *)*cmd->env);
420 execv_git_cmd(cmd->argv);
421 else if (cmd->use_shell)
422 execv_shell_cmd(cmd->argv);
424 sane_execvp(cmd->argv[0], (char *const*) cmd->argv);
425 if (errno == ENOENT) {
426 if (!cmd->silent_exec_failure)
427 error("cannot run %s: %s", cmd->argv[0],
431 die_errno("cannot exec '%s'", cmd->argv[0]);
435 error("cannot fork() for %s: %s", cmd->argv[0],
437 else if (cmd->clean_on_exit)
438 mark_child_for_cleanup(cmd->pid);
441 * Wait for child's execvp. If the execvp succeeds (or if fork()
442 * failed), EOF is seen immediately by the parent. Otherwise, the
443 * child process sends a single byte.
444 * Note that use of this infrastructure is completely advisory,
445 * therefore, we keep error checks minimal.
447 close(notify_pipe[1]);
448 if (read(notify_pipe[0], ¬ify_pipe[1], 1) == 1) {
450 * At this point we know that fork() succeeded, but execvp()
451 * failed. Errors have been reported to our stderr.
453 wait_or_whine(cmd->pid, cmd->argv[0]);
454 failed_errno = errno;
457 close(notify_pipe[0]);
461 int fhin = 0, fhout = 1, fherr = 2;
462 const char **sargv = cmd->argv;
465 fhin = open("/dev/null", O_RDWR);
472 fherr = open("/dev/null", O_RDWR);
474 fherr = dup(fderr[1]);
475 else if (cmd->err > 2)
476 fherr = dup(cmd->err);
479 fhout = open("/dev/null", O_RDWR);
480 else if (cmd->stdout_to_stderr)
483 fhout = dup(fdout[1]);
484 else if (cmd->out > 1)
485 fhout = dup(cmd->out);
488 cmd->argv = prepare_git_cmd(cmd->argv);
489 else if (cmd->use_shell)
490 cmd->argv = prepare_shell_cmd(cmd->argv);
492 cmd->pid = mingw_spawnvpe(cmd->argv[0], cmd->argv, (char**) cmd->env,
493 cmd->dir, fhin, fhout, fherr);
494 failed_errno = errno;
495 if (cmd->pid < 0 && (!cmd->silent_exec_failure || errno != ENOENT))
496 error("cannot spawn %s: %s", cmd->argv[0], strerror(errno));
497 if (cmd->clean_on_exit && cmd->pid >= 0)
498 mark_child_for_cleanup(cmd->pid);
526 argv_array_clear(&cmd->args);
527 argv_array_clear(&cmd->env_array);
528 errno = failed_errno;
550 int finish_command(struct child_process *cmd)
552 int ret = wait_or_whine(cmd->pid, cmd->argv[0]);
553 argv_array_clear(&cmd->args);
554 argv_array_clear(&cmd->env_array);
558 int run_command(struct child_process *cmd)
562 if (cmd->out < 0 || cmd->err < 0)
563 die("BUG: run_command with a pipe can cause deadlock");
565 code = start_command(cmd);
568 return finish_command(cmd);
571 int run_command_v_opt(const char **argv, int opt)
573 return run_command_v_opt_cd_env(argv, opt, NULL, NULL);
576 int run_command_v_opt_cd_env(const char **argv, int opt, const char *dir, const char *const *env)
578 struct child_process cmd = CHILD_PROCESS_INIT;
580 cmd.no_stdin = opt & RUN_COMMAND_NO_STDIN ? 1 : 0;
581 cmd.git_cmd = opt & RUN_GIT_CMD ? 1 : 0;
582 cmd.stdout_to_stderr = opt & RUN_COMMAND_STDOUT_TO_STDERR ? 1 : 0;
583 cmd.silent_exec_failure = opt & RUN_SILENT_EXEC_FAILURE ? 1 : 0;
584 cmd.use_shell = opt & RUN_USING_SHELL ? 1 : 0;
585 cmd.clean_on_exit = opt & RUN_CLEAN_ON_EXIT ? 1 : 0;
588 return run_command(&cmd);
592 static pthread_t main_thread;
593 static int main_thread_set;
594 static pthread_key_t async_key;
595 static pthread_key_t async_die_counter;
597 static void *run_thread(void *data)
599 struct async *async = data;
602 pthread_setspecific(async_key, async);
603 ret = async->proc(async->proc_in, async->proc_out, async->data);
607 static NORETURN void die_async(const char *err, va_list params)
609 vreportf("fatal: ", err, params);
611 if (!pthread_equal(main_thread, pthread_self())) {
612 struct async *async = pthread_getspecific(async_key);
613 if (async->proc_in >= 0)
614 close(async->proc_in);
615 if (async->proc_out >= 0)
616 close(async->proc_out);
617 pthread_exit((void *)128);
623 static int async_die_is_recursing(void)
625 void *ret = pthread_getspecific(async_die_counter);
626 pthread_setspecific(async_die_counter, (void *)1);
633 void (**handlers)(void);
638 static int git_atexit_installed;
640 static void git_atexit_dispatch(void)
644 for (i=git_atexit_hdlrs.nr ; i ; i--)
645 git_atexit_hdlrs.handlers[i-1]();
648 static void git_atexit_clear(void)
650 free(git_atexit_hdlrs.handlers);
651 memset(&git_atexit_hdlrs, 0, sizeof(git_atexit_hdlrs));
652 git_atexit_installed = 0;
656 int git_atexit(void (*handler)(void))
658 ALLOC_GROW(git_atexit_hdlrs.handlers, git_atexit_hdlrs.nr + 1, git_atexit_hdlrs.alloc);
659 git_atexit_hdlrs.handlers[git_atexit_hdlrs.nr++] = handler;
660 if (!git_atexit_installed) {
661 if (atexit(&git_atexit_dispatch))
663 git_atexit_installed = 1;
667 #define atexit git_atexit
671 int start_async(struct async *async)
673 int need_in, need_out;
674 int fdin[2], fdout[2];
675 int proc_in, proc_out;
677 need_in = async->in < 0;
679 if (pipe(fdin) < 0) {
682 return error("cannot create pipe: %s", strerror(errno));
687 need_out = async->out < 0;
689 if (pipe(fdout) < 0) {
694 return error("cannot create pipe: %s", strerror(errno));
696 async->out = fdout[0];
709 proc_out = async->out;
714 /* Flush stdio before fork() to avoid cloning buffers */
718 if (async->pid < 0) {
719 error("fork (async) failed: %s", strerror(errno));
728 exit(!!async->proc(proc_in, proc_out, async->data));
731 mark_child_for_cleanup(async->pid);
743 if (!main_thread_set) {
745 * We assume that the first time that start_async is called
746 * it is from the main thread.
749 main_thread = pthread_self();
750 pthread_key_create(&async_key, NULL);
751 pthread_key_create(&async_die_counter, NULL);
752 set_die_routine(die_async);
753 set_die_is_recursing_routine(async_die_is_recursing);
757 set_cloexec(proc_in);
759 set_cloexec(proc_out);
760 async->proc_in = proc_in;
761 async->proc_out = proc_out;
763 int err = pthread_create(&async->tid, NULL, run_thread, async);
765 error("cannot create thread: %s", strerror(err));
785 int finish_async(struct async *async)
788 return wait_or_whine(async->pid, "child process");
790 void *ret = (void *)(intptr_t)(-1);
792 if (pthread_join(async->tid, &ret))
793 error("pthread_join failed");
794 return (int)(intptr_t)ret;
798 char *find_hook(const char *name)
800 char *path = git_path("hooks/%s", name);
801 if (access(path, X_OK) < 0)
807 int run_hook_ve(const char *const *env, const char *name, va_list args)
809 struct child_process hook = CHILD_PROCESS_INIT;
816 argv_array_push(&hook.args, p);
817 while ((p = va_arg(args, const char *)))
818 argv_array_push(&hook.args, p);
821 hook.stdout_to_stderr = 1;
823 return run_command(&hook);
826 int run_hook_le(const char *const *env, const char *name, ...)
831 va_start(args, name);
832 ret = run_hook_ve(env, name, args);
838 int capture_command(struct child_process *cmd, struct strbuf *buf, size_t hint)
841 if (start_command(cmd) < 0)
844 if (strbuf_read(buf, cmd->out, hint) < 0) {
846 finish_command(cmd); /* throw away exit code */
851 return finish_command(cmd);