2 #include "run-command.h"
5 #include "argv-array.h"
6 #include "thread-utils.h"
9 void child_process_init(struct child_process *child)
11 memset(child, 0, sizeof(*child));
12 argv_array_init(&child->args);
13 argv_array_init(&child->env_array);
16 void child_process_clear(struct child_process *child)
18 argv_array_clear(&child->args);
19 argv_array_clear(&child->env_array);
22 struct child_to_clean {
24 struct child_to_clean *next;
26 static struct child_to_clean *children_to_clean;
27 static int installed_child_cleanup_handler;
29 static void cleanup_children(int sig, int in_signal)
31 while (children_to_clean) {
32 struct child_to_clean *p = children_to_clean;
33 children_to_clean = p->next;
40 static void cleanup_children_on_signal(int sig)
42 cleanup_children(sig, 1);
47 static void cleanup_children_on_exit(void)
49 cleanup_children(SIGTERM, 0);
52 static void mark_child_for_cleanup(pid_t pid)
54 struct child_to_clean *p = xmalloc(sizeof(*p));
56 p->next = children_to_clean;
57 children_to_clean = p;
59 if (!installed_child_cleanup_handler) {
60 atexit(cleanup_children_on_exit);
61 sigchain_push_common(cleanup_children_on_signal);
62 installed_child_cleanup_handler = 1;
66 static void clear_child_for_cleanup(pid_t pid)
68 struct child_to_clean **pp;
70 for (pp = &children_to_clean; *pp; pp = &(*pp)->next) {
71 struct child_to_clean *clean_me = *pp;
73 if (clean_me->pid == pid) {
81 static inline void close_pair(int fd[2])
87 #ifndef GIT_WINDOWS_NATIVE
88 static inline void dup_devnull(int to)
90 int fd = open("/dev/null", O_RDWR);
92 die_errno(_("open /dev/null failed"));
94 die_errno(_("dup2(%d,%d) failed"), fd, to);
99 static char *locate_in_PATH(const char *file)
101 const char *p = getenv("PATH");
102 struct strbuf buf = STRBUF_INIT;
108 const char *end = strchrnul(p, ':');
112 /* POSIX specifies an empty entry as the current directory. */
114 strbuf_add(&buf, p, end - p);
115 strbuf_addch(&buf, '/');
117 strbuf_addstr(&buf, file);
119 if (!access(buf.buf, F_OK))
120 return strbuf_detach(&buf, NULL);
127 strbuf_release(&buf);
131 static int exists_in_PATH(const char *file)
133 char *r = locate_in_PATH(file);
138 int sane_execvp(const char *file, char * const argv[])
140 if (!execvp(file, argv))
141 return 0; /* cannot happen ;-) */
144 * When a command can't be found because one of the directories
145 * listed in $PATH is unsearchable, execvp reports EACCES, but
146 * careful usability testing (read: analysis of occasional bug
147 * reports) reveals that "No such file or directory" is more
150 * We avoid commands with "/", because execvp will not do $PATH
151 * lookups in that case.
153 * The reassignment of EACCES to errno looks like a no-op below,
154 * but we need to protect against exists_in_PATH overwriting errno.
156 if (errno == EACCES && !strchr(file, '/'))
157 errno = exists_in_PATH(file) ? EACCES : ENOENT;
158 else if (errno == ENOTDIR && !strchr(file, '/'))
163 static const char **prepare_shell_cmd(const char **argv)
168 for (argc = 0; argv[argc]; argc++)
169 ; /* just counting */
170 /* +1 for NULL, +3 for "sh -c" plus extra $0 */
171 nargv = xmalloc(sizeof(*nargv) * (argc + 1 + 3));
174 die("BUG: shell command is empty");
176 if (strcspn(argv[0], "|&;<>()$`\\\"' \t\n*?[#~=%") != strlen(argv[0])) {
177 #ifndef GIT_WINDOWS_NATIVE
178 nargv[nargc++] = SHELL_PATH;
180 nargv[nargc++] = "sh";
182 nargv[nargc++] = "-c";
185 nargv[nargc++] = argv[0];
187 struct strbuf arg0 = STRBUF_INIT;
188 strbuf_addf(&arg0, "%s \"$@\"", argv[0]);
189 nargv[nargc++] = strbuf_detach(&arg0, NULL);
193 for (argc = 0; argv[argc]; argc++)
194 nargv[nargc++] = argv[argc];
200 #ifndef GIT_WINDOWS_NATIVE
201 static int execv_shell_cmd(const char **argv)
203 const char **nargv = prepare_shell_cmd(argv);
204 trace_argv_printf(nargv, "trace: exec:");
205 sane_execvp(nargv[0], (char **)nargv);
211 #ifndef GIT_WINDOWS_NATIVE
212 static int child_notifier = -1;
214 static void notify_parent(void)
217 * execvp failed. If possible, we'd like to let start_command
218 * know, so failures like ENOENT can be handled right away; but
219 * otherwise, finish_command will still report the error.
221 xwrite(child_notifier, "", 1);
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, int in_signal)
234 int status, code = -1;
236 int failed_errno = 0;
238 while ((waiting = waitpid(pid, &status, 0)) < 0 && errno == EINTR)
244 failed_errno = errno;
245 error("waitpid for %s failed: %s", argv0, strerror(errno));
246 } else if (waiting != pid) {
247 error("waitpid is confused (%s)", argv0);
248 } else if (WIFSIGNALED(status)) {
249 code = WTERMSIG(status);
250 if (code != SIGINT && code != SIGQUIT && code != SIGPIPE)
251 error("%s died of signal %d", argv0, code);
253 * This return value is chosen so that code & 0xff
254 * mimics the exit code that a POSIX shell would report for
255 * a program that died from this signal.
258 } else if (WIFEXITED(status)) {
259 code = WEXITSTATUS(status);
261 * Convert special exit code when execvp failed.
265 failed_errno = ENOENT;
268 error("waitpid is confused (%s)", argv0);
271 clear_child_for_cleanup(pid);
273 errno = failed_errno;
277 int start_command(struct child_process *cmd)
279 int need_in, need_out, need_err;
280 int fdin[2], fdout[2], fderr[2];
285 cmd->argv = cmd->args.argv;
287 cmd->env = cmd->env_array.argv;
290 * In case of errors we must keep the promise to close FDs
291 * that have been passed in via ->in and ->out.
294 need_in = !cmd->no_stdin && cmd->in < 0;
296 if (pipe(fdin) < 0) {
297 failed_errno = errno;
300 str = "standard input";
306 need_out = !cmd->no_stdout
307 && !cmd->stdout_to_stderr
310 if (pipe(fdout) < 0) {
311 failed_errno = errno;
316 str = "standard output";
322 need_err = !cmd->no_stderr && cmd->err < 0;
324 if (pipe(fderr) < 0) {
325 failed_errno = errno;
334 str = "standard error";
336 error("cannot create %s pipe for %s: %s",
337 str, cmd->argv[0], strerror(failed_errno));
338 child_process_clear(cmd);
339 errno = failed_errno;
345 trace_argv_printf(cmd->argv, "trace: run_command:");
348 #ifndef GIT_WINDOWS_NATIVE
351 if (pipe(notify_pipe))
352 notify_pipe[0] = notify_pipe[1] = -1;
355 failed_errno = errno;
358 * Redirect the channel to write syscall error messages to
359 * before redirecting the process's stderr so that all die()
360 * in subsequent call paths use the parent's stderr.
362 if (cmd->no_stderr || need_err) {
363 int child_err = dup(2);
364 set_cloexec(child_err);
365 set_error_handle(fdopen(child_err, "w"));
368 close(notify_pipe[0]);
369 set_cloexec(notify_pipe[1]);
370 child_notifier = notify_pipe[1];
371 atexit(notify_parent);
378 } else if (cmd->in) {
388 } else if (cmd->err > 1) {
395 else if (cmd->stdout_to_stderr)
400 } else if (cmd->out > 1) {
405 if (cmd->dir && chdir(cmd->dir))
406 die_errno("exec '%s': cd to '%s' failed", cmd->argv[0],
409 for (; *cmd->env; cmd->env++) {
410 if (strchr(*cmd->env, '='))
411 putenv((char *)*cmd->env);
417 execv_git_cmd(cmd->argv);
418 else if (cmd->use_shell)
419 execv_shell_cmd(cmd->argv);
421 sane_execvp(cmd->argv[0], (char *const*) cmd->argv);
422 if (errno == ENOENT) {
423 if (!cmd->silent_exec_failure)
424 error("cannot run %s: %s", cmd->argv[0],
428 die_errno("cannot exec '%s'", cmd->argv[0]);
432 error("cannot fork() for %s: %s", cmd->argv[0],
434 else if (cmd->clean_on_exit)
435 mark_child_for_cleanup(cmd->pid);
438 * Wait for child's execvp. If the execvp succeeds (or if fork()
439 * failed), EOF is seen immediately by the parent. Otherwise, the
440 * child process sends a single byte.
441 * Note that use of this infrastructure is completely advisory,
442 * therefore, we keep error checks minimal.
444 close(notify_pipe[1]);
445 if (read(notify_pipe[0], ¬ify_pipe[1], 1) == 1) {
447 * At this point we know that fork() succeeded, but execvp()
448 * failed. Errors have been reported to our stderr.
450 wait_or_whine(cmd->pid, cmd->argv[0], 0);
451 failed_errno = errno;
454 close(notify_pipe[0]);
458 int fhin = 0, fhout = 1, fherr = 2;
459 const char **sargv = cmd->argv;
462 fhin = open("/dev/null", O_RDWR);
469 fherr = open("/dev/null", O_RDWR);
471 fherr = dup(fderr[1]);
472 else if (cmd->err > 2)
473 fherr = dup(cmd->err);
476 fhout = open("/dev/null", O_RDWR);
477 else if (cmd->stdout_to_stderr)
480 fhout = dup(fdout[1]);
481 else if (cmd->out > 1)
482 fhout = dup(cmd->out);
485 cmd->argv = prepare_git_cmd(cmd->argv);
486 else if (cmd->use_shell)
487 cmd->argv = prepare_shell_cmd(cmd->argv);
489 cmd->pid = mingw_spawnvpe(cmd->argv[0], cmd->argv, (char**) cmd->env,
490 cmd->dir, fhin, fhout, fherr);
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);
523 child_process_clear(cmd);
524 errno = failed_errno;
546 int finish_command(struct child_process *cmd)
548 int ret = wait_or_whine(cmd->pid, cmd->argv[0], 0);
549 child_process_clear(cmd);
553 int finish_command_in_signal(struct child_process *cmd)
555 return wait_or_whine(cmd->pid, cmd->argv[0], 1);
559 int run_command(struct child_process *cmd)
563 if (cmd->out < 0 || cmd->err < 0)
564 die("BUG: run_command with a pipe can cause deadlock");
566 code = start_command(cmd);
569 return finish_command(cmd);
572 int run_command_v_opt(const char **argv, int opt)
574 return run_command_v_opt_cd_env(argv, opt, NULL, NULL);
577 int run_command_v_opt_cd_env(const char **argv, int opt, const char *dir, const char *const *env)
579 struct child_process cmd = CHILD_PROCESS_INIT;
581 cmd.no_stdin = opt & RUN_COMMAND_NO_STDIN ? 1 : 0;
582 cmd.git_cmd = opt & RUN_GIT_CMD ? 1 : 0;
583 cmd.stdout_to_stderr = opt & RUN_COMMAND_STDOUT_TO_STDERR ? 1 : 0;
584 cmd.silent_exec_failure = opt & RUN_SILENT_EXEC_FAILURE ? 1 : 0;
585 cmd.use_shell = opt & RUN_USING_SHELL ? 1 : 0;
586 cmd.clean_on_exit = opt & RUN_CLEAN_ON_EXIT ? 1 : 0;
589 return run_command(&cmd);
593 static pthread_t main_thread;
594 static int main_thread_set;
595 static pthread_key_t async_key;
596 static pthread_key_t async_die_counter;
598 static void *run_thread(void *data)
600 struct async *async = data;
603 pthread_setspecific(async_key, async);
604 ret = async->proc(async->proc_in, async->proc_out, async->data);
608 static NORETURN void die_async(const char *err, va_list params)
610 vreportf("fatal: ", err, params);
613 struct async *async = pthread_getspecific(async_key);
614 if (async->proc_in >= 0)
615 close(async->proc_in);
616 if (async->proc_out >= 0)
617 close(async->proc_out);
618 pthread_exit((void *)128);
624 static int async_die_is_recursing(void)
626 void *ret = pthread_getspecific(async_die_counter);
627 pthread_setspecific(async_die_counter, (void *)1);
633 if (!main_thread_set)
634 return 0; /* no asyncs started yet */
635 return !pthread_equal(main_thread, pthread_self());
641 void (**handlers)(void);
646 static int git_atexit_installed;
648 static void git_atexit_dispatch(void)
652 for (i=git_atexit_hdlrs.nr ; i ; i--)
653 git_atexit_hdlrs.handlers[i-1]();
656 static void git_atexit_clear(void)
658 free(git_atexit_hdlrs.handlers);
659 memset(&git_atexit_hdlrs, 0, sizeof(git_atexit_hdlrs));
660 git_atexit_installed = 0;
664 int git_atexit(void (*handler)(void))
666 ALLOC_GROW(git_atexit_hdlrs.handlers, git_atexit_hdlrs.nr + 1, git_atexit_hdlrs.alloc);
667 git_atexit_hdlrs.handlers[git_atexit_hdlrs.nr++] = handler;
668 if (!git_atexit_installed) {
669 if (atexit(&git_atexit_dispatch))
671 git_atexit_installed = 1;
675 #define atexit git_atexit
677 static int process_is_async;
680 return process_is_async;
685 int start_async(struct async *async)
687 int need_in, need_out;
688 int fdin[2], fdout[2];
689 int proc_in, proc_out;
691 need_in = async->in < 0;
693 if (pipe(fdin) < 0) {
696 return error("cannot create pipe: %s", strerror(errno));
701 need_out = async->out < 0;
703 if (pipe(fdout) < 0) {
708 return error("cannot create pipe: %s", strerror(errno));
710 async->out = fdout[0];
723 proc_out = async->out;
728 /* Flush stdio before fork() to avoid cloning buffers */
732 if (async->pid < 0) {
733 error("fork (async) failed: %s", strerror(errno));
742 process_is_async = 1;
743 exit(!!async->proc(proc_in, proc_out, async->data));
746 mark_child_for_cleanup(async->pid);
758 if (!main_thread_set) {
760 * We assume that the first time that start_async is called
761 * it is from the main thread.
764 main_thread = pthread_self();
765 pthread_key_create(&async_key, NULL);
766 pthread_key_create(&async_die_counter, NULL);
767 set_die_routine(die_async);
768 set_die_is_recursing_routine(async_die_is_recursing);
772 set_cloexec(proc_in);
774 set_cloexec(proc_out);
775 async->proc_in = proc_in;
776 async->proc_out = proc_out;
778 int err = pthread_create(&async->tid, NULL, run_thread, async);
780 error("cannot create thread: %s", strerror(err));
800 int finish_async(struct async *async)
803 return wait_or_whine(async->pid, "child process", 0);
805 void *ret = (void *)(intptr_t)(-1);
807 if (pthread_join(async->tid, &ret))
808 error("pthread_join failed");
809 return (int)(intptr_t)ret;
813 const char *find_hook(const char *name)
815 static struct strbuf path = STRBUF_INIT;
818 strbuf_git_path(&path, "hooks/%s", name);
819 if (access(path.buf, X_OK) < 0)
824 int run_hook_ve(const char *const *env, const char *name, va_list args)
826 struct child_process hook = CHILD_PROCESS_INIT;
833 argv_array_push(&hook.args, p);
834 while ((p = va_arg(args, const char *)))
835 argv_array_push(&hook.args, p);
838 hook.stdout_to_stderr = 1;
840 return run_command(&hook);
843 int run_hook_le(const char *const *env, const char *name, ...)
848 va_start(args, name);
849 ret = run_hook_ve(env, name, args);
855 int capture_command(struct child_process *cmd, struct strbuf *buf, size_t hint)
858 if (start_command(cmd) < 0)
861 if (strbuf_read(buf, cmd->out, hint) < 0) {
863 finish_command(cmd); /* throw away exit code */
868 return finish_command(cmd);
877 struct parallel_processes {
883 get_next_task_fn get_next_task;
884 start_failure_fn start_failure;
885 task_finished_fn task_finished;
888 enum child_state state;
889 struct child_process process;
894 * The struct pollfd is logically part of *children,
895 * but the system call expects it as its own array.
899 unsigned shutdown : 1;
902 struct strbuf buffered_output; /* of finished children */
905 static int default_start_failure(struct child_process *cp,
912 strbuf_addstr(err, "Starting a child failed:");
913 for (i = 0; cp->argv[i]; i++)
914 strbuf_addf(err, " %s", cp->argv[i]);
919 static int default_task_finished(int result,
920 struct child_process *cp,
930 strbuf_addf(err, "A child failed with return code %d:", result);
931 for (i = 0; cp->argv[i]; i++)
932 strbuf_addf(err, " %s", cp->argv[i]);
937 static void kill_children(struct parallel_processes *pp, int signo)
939 int i, n = pp->max_processes;
941 for (i = 0; i < n; i++)
942 if (pp->children[i].state == GIT_CP_WORKING)
943 kill(pp->children[i].process.pid, signo);
946 static struct parallel_processes *pp_for_signal;
948 static void handle_children_on_signal(int signo)
950 kill_children(pp_for_signal, signo);
955 static void pp_init(struct parallel_processes *pp,
957 get_next_task_fn get_next_task,
958 start_failure_fn start_failure,
959 task_finished_fn task_finished,
967 pp->max_processes = n;
969 trace_printf("run_processes_parallel: preparing to run up to %d tasks", n);
973 die("BUG: you need to specify a get_next_task function");
974 pp->get_next_task = get_next_task;
976 pp->start_failure = start_failure ? start_failure : default_start_failure;
977 pp->task_finished = task_finished ? task_finished : default_task_finished;
979 pp->nr_processes = 0;
980 pp->output_owner = 0;
982 pp->children = xcalloc(n, sizeof(*pp->children));
983 pp->pfd = xcalloc(n, sizeof(*pp->pfd));
984 strbuf_init(&pp->buffered_output, 0);
986 for (i = 0; i < n; i++) {
987 strbuf_init(&pp->children[i].err, 0);
988 child_process_init(&pp->children[i].process);
989 pp->pfd[i].events = POLLIN | POLLHUP;
994 sigchain_push_common(handle_children_on_signal);
997 static void pp_cleanup(struct parallel_processes *pp)
1001 trace_printf("run_processes_parallel: done");
1002 for (i = 0; i < pp->max_processes; i++) {
1003 strbuf_release(&pp->children[i].err);
1004 child_process_clear(&pp->children[i].process);
1011 * When get_next_task added messages to the buffer in its last
1012 * iteration, the buffered output is non empty.
1014 fputs(pp->buffered_output.buf, stderr);
1015 strbuf_release(&pp->buffered_output);
1017 sigchain_pop_common();
1021 * 0 if a new task was started.
1022 * 1 if no new jobs was started (get_next_task ran out of work, non critical
1023 * problem with starting a new command)
1024 * <0 no new job was started, user wishes to shutdown early. Use negative code
1025 * to signal the children.
1027 static int pp_start_one(struct parallel_processes *pp)
1031 for (i = 0; i < pp->max_processes; i++)
1032 if (pp->children[i].state == GIT_CP_FREE)
1034 if (i == pp->max_processes)
1035 die("BUG: bookkeeping is hard");
1037 code = pp->get_next_task(&pp->children[i].process,
1038 &pp->children[i].err,
1040 &pp->children[i].data);
1042 strbuf_addbuf(&pp->buffered_output, &pp->children[i].err);
1043 strbuf_reset(&pp->children[i].err);
1046 pp->children[i].process.err = -1;
1047 pp->children[i].process.stdout_to_stderr = 1;
1048 pp->children[i].process.no_stdin = 1;
1050 if (start_command(&pp->children[i].process)) {
1051 code = pp->start_failure(&pp->children[i].process,
1052 &pp->children[i].err,
1054 &pp->children[i].data);
1055 strbuf_addbuf(&pp->buffered_output, &pp->children[i].err);
1056 strbuf_reset(&pp->children[i].err);
1063 pp->children[i].state = GIT_CP_WORKING;
1064 pp->pfd[i].fd = pp->children[i].process.err;
1068 static void pp_buffer_stderr(struct parallel_processes *pp, int output_timeout)
1072 while ((i = poll(pp->pfd, pp->max_processes, output_timeout)) < 0) {
1079 /* Buffer output from all pipes. */
1080 for (i = 0; i < pp->max_processes; i++) {
1081 if (pp->children[i].state == GIT_CP_WORKING &&
1082 pp->pfd[i].revents & (POLLIN | POLLHUP)) {
1083 int n = strbuf_read_once(&pp->children[i].err,
1084 pp->children[i].process.err, 0);
1086 close(pp->children[i].process.err);
1087 pp->children[i].state = GIT_CP_WAIT_CLEANUP;
1089 if (errno != EAGAIN)
1095 static void pp_output(struct parallel_processes *pp)
1097 int i = pp->output_owner;
1098 if (pp->children[i].state == GIT_CP_WORKING &&
1099 pp->children[i].err.len) {
1100 fputs(pp->children[i].err.buf, stderr);
1101 strbuf_reset(&pp->children[i].err);
1105 static int pp_collect_finished(struct parallel_processes *pp)
1108 int n = pp->max_processes;
1111 while (pp->nr_processes > 0) {
1112 for (i = 0; i < pp->max_processes; i++)
1113 if (pp->children[i].state == GIT_CP_WAIT_CLEANUP)
1115 if (i == pp->max_processes)
1118 code = finish_command(&pp->children[i].process);
1120 code = pp->task_finished(code, &pp->children[i].process,
1121 &pp->children[i].err, pp->data,
1122 &pp->children[i].data);
1130 pp->children[i].state = GIT_CP_FREE;
1132 child_process_init(&pp->children[i].process);
1134 if (i != pp->output_owner) {
1135 strbuf_addbuf(&pp->buffered_output, &pp->children[i].err);
1136 strbuf_reset(&pp->children[i].err);
1138 fputs(pp->children[i].err.buf, stderr);
1139 strbuf_reset(&pp->children[i].err);
1141 /* Output all other finished child processes */
1142 fputs(pp->buffered_output.buf, stderr);
1143 strbuf_reset(&pp->buffered_output);
1146 * Pick next process to output live.
1148 * For now we pick it randomly by doing a round
1149 * robin. Later we may want to pick the one with
1150 * the most output or the longest or shortest
1151 * running process time.
1153 for (i = 0; i < n; i++)
1154 if (pp->children[(pp->output_owner + i) % n].state == GIT_CP_WORKING)
1156 pp->output_owner = (pp->output_owner + i) % n;
1162 int run_processes_parallel(int n,
1163 get_next_task_fn get_next_task,
1164 start_failure_fn start_failure,
1165 task_finished_fn task_finished,
1169 int output_timeout = 100;
1171 struct parallel_processes pp;
1173 pp_init(&pp, n, get_next_task, start_failure, task_finished, pp_cb);
1176 i < spawn_cap && !pp.shutdown &&
1177 pp.nr_processes < pp.max_processes;
1179 code = pp_start_one(&pp);
1184 kill_children(&pp, -code);
1188 if (!pp.nr_processes)
1190 pp_buffer_stderr(&pp, output_timeout);
1192 code = pp_collect_finished(&pp);
1196 kill_children(&pp, -code);