2 #include "run-command.h"
6 #include "thread-utils.h"
8 #include "string-list.h"
13 #include "compat/nonblock.h"
15 void child_process_init(struct child_process
*child
)
17 struct child_process blank
= CHILD_PROCESS_INIT
;
18 memcpy(child
, &blank
, sizeof(*child
));
21 void child_process_clear(struct child_process
*child
)
23 strvec_clear(&child
->args
);
24 strvec_clear(&child
->env
);
27 struct child_to_clean
{
29 struct child_process
*process
;
30 struct child_to_clean
*next
;
32 static struct child_to_clean
*children_to_clean
;
33 static int installed_child_cleanup_handler
;
35 static void cleanup_children(int sig
, int in_signal
)
37 struct child_to_clean
*children_to_wait_for
= NULL
;
39 while (children_to_clean
) {
40 struct child_to_clean
*p
= children_to_clean
;
41 children_to_clean
= p
->next
;
43 if (p
->process
&& !in_signal
) {
44 struct child_process
*process
= p
->process
;
45 if (process
->clean_on_exit_handler
) {
47 "trace: run_command: running exit handler for pid %"
48 PRIuMAX
, (uintmax_t)p
->pid
50 process
->clean_on_exit_handler(process
);
56 if (p
->process
&& p
->process
->wait_after_clean
) {
57 p
->next
= children_to_wait_for
;
58 children_to_wait_for
= p
;
65 while (children_to_wait_for
) {
66 struct child_to_clean
*p
= children_to_wait_for
;
67 children_to_wait_for
= p
->next
;
69 while (waitpid(p
->pid
, NULL
, 0) < 0 && errno
== EINTR
)
70 ; /* spin waiting for process exit or error */
77 static void cleanup_children_on_signal(int sig
)
79 cleanup_children(sig
, 1);
84 static void cleanup_children_on_exit(void)
86 cleanup_children(SIGTERM
, 0);
89 static void mark_child_for_cleanup(pid_t pid
, struct child_process
*process
)
91 struct child_to_clean
*p
= xmalloc(sizeof(*p
));
94 p
->next
= children_to_clean
;
95 children_to_clean
= p
;
97 if (!installed_child_cleanup_handler
) {
98 atexit(cleanup_children_on_exit
);
99 sigchain_push_common(cleanup_children_on_signal
);
100 installed_child_cleanup_handler
= 1;
104 static void clear_child_for_cleanup(pid_t pid
)
106 struct child_to_clean
**pp
;
108 for (pp
= &children_to_clean
; *pp
; pp
= &(*pp
)->next
) {
109 struct child_to_clean
*clean_me
= *pp
;
111 if (clean_me
->pid
== pid
) {
112 *pp
= clean_me
->next
;
119 static inline void close_pair(int fd
[2])
125 int is_executable(const char *name
)
129 if (stat(name
, &st
) || /* stat, not lstat */
130 !S_ISREG(st
.st_mode
))
133 #if defined(GIT_WINDOWS_NATIVE)
135 * On Windows there is no executable bit. The file extension
136 * indicates whether it can be run as an executable, and Git
137 * has special-handling to detect scripts and launch them
138 * through the indicated script interpreter. We test for the
139 * file extension first because virus scanners may make
140 * it quite expensive to open many files.
142 if (ends_with(name
, ".exe"))
147 * Now that we know it does not have an executable extension,
148 * peek into the file instead.
152 int fd
= open(name
, O_RDONLY
);
153 st
.st_mode
&= ~S_IXUSR
;
155 n
= read(fd
, buf
, 2);
157 /* look for a she-bang */
158 if (!strcmp(buf
, "#!"))
159 st
.st_mode
|= S_IXUSR
;
164 return st
.st_mode
& S_IXUSR
;
168 * Search $PATH for a command. This emulates the path search that
169 * execvp would perform, without actually executing the command so it
170 * can be used before fork() to prepare to run a command using
171 * execve() or after execvp() to diagnose why it failed.
173 * The caller should ensure that file contains no directory
176 * Returns the path to the command, as found in $PATH or NULL if the
177 * command could not be found. The caller inherits ownership of the memory
178 * used to store the resultant path.
180 * This should not be used on Windows, where the $PATH search rules
181 * are more complicated (e.g., a search for "foo" should find
184 static char *locate_in_PATH(const char *file
)
186 const char *p
= getenv("PATH");
187 struct strbuf buf
= STRBUF_INIT
;
193 const char *end
= strchrnul(p
, ':');
197 /* POSIX specifies an empty entry as the current directory. */
199 strbuf_add(&buf
, p
, end
- p
);
200 strbuf_addch(&buf
, '/');
202 strbuf_addstr(&buf
, file
);
204 if (is_executable(buf
.buf
))
205 return strbuf_detach(&buf
, NULL
);
212 strbuf_release(&buf
);
216 int exists_in_PATH(const char *command
)
218 char *r
= locate_in_PATH(command
);
219 int found
= r
!= NULL
;
224 int sane_execvp(const char *file
, char * const argv
[])
226 #ifndef GIT_WINDOWS_NATIVE
228 * execvp() doesn't return, so we all we can do is tell trace2
229 * what we are about to do and let it leave a hint in the log
230 * (unless of course the execvp() fails).
232 * we skip this for Windows because the compat layer already
233 * has to emulate the execvp() call anyway.
235 int exec_id
= trace2_exec(file
, (const char **)argv
);
238 if (!execvp(file
, argv
))
239 return 0; /* cannot happen ;-) */
241 #ifndef GIT_WINDOWS_NATIVE
244 trace2_exec_result(exec_id
, ec
);
250 * When a command can't be found because one of the directories
251 * listed in $PATH is unsearchable, execvp reports EACCES, but
252 * careful usability testing (read: analysis of occasional bug
253 * reports) reveals that "No such file or directory" is more
256 * We avoid commands with "/", because execvp will not do $PATH
257 * lookups in that case.
259 * The reassignment of EACCES to errno looks like a no-op below,
260 * but we need to protect against exists_in_PATH overwriting errno.
262 if (errno
== EACCES
&& !strchr(file
, '/'))
263 errno
= exists_in_PATH(file
) ? EACCES
: ENOENT
;
264 else if (errno
== ENOTDIR
&& !strchr(file
, '/'))
269 static const char **prepare_shell_cmd(struct strvec
*out
, const char **argv
)
272 BUG("shell command is empty");
274 if (strcspn(argv
[0], "|&;<>()$`\\\"' \t\n*?[#~=%") != strlen(argv
[0])) {
275 #ifndef GIT_WINDOWS_NATIVE
276 strvec_push(out
, SHELL_PATH
);
278 strvec_push(out
, "sh");
280 strvec_push(out
, "-c");
283 * If we have no extra arguments, we do not even need to
284 * bother with the "$@" magic.
287 strvec_push(out
, argv
[0]);
289 strvec_pushf(out
, "%s \"$@\"", argv
[0]);
292 strvec_pushv(out
, argv
);
296 #ifndef GIT_WINDOWS_NATIVE
297 static int child_notifier
= -1;
303 CHILD_ERR_SIGPROCMASK
,
310 enum child_errcode err
;
311 int syserr
; /* errno */
314 static void child_die(enum child_errcode err
)
316 struct child_err buf
;
321 /* write(2) on buf smaller than PIPE_BUF (min 512) is atomic: */
322 xwrite(child_notifier
, &buf
, sizeof(buf
));
326 static void child_dup2(int fd
, int to
)
328 if (dup2(fd
, to
) < 0)
329 child_die(CHILD_ERR_DUP2
);
332 static void child_close(int fd
)
335 child_die(CHILD_ERR_CLOSE
);
338 static void child_close_pair(int fd
[2])
344 static void child_error_fn(const char *err
, va_list params
)
346 const char msg
[] = "error() should not be called in child\n";
347 xwrite(2, msg
, sizeof(msg
) - 1);
350 static void child_warn_fn(const char *err
, va_list params
)
352 const char msg
[] = "warn() should not be called in child\n";
353 xwrite(2, msg
, sizeof(msg
) - 1);
356 static void NORETURN
child_die_fn(const char *err
, va_list params
)
358 const char msg
[] = "die() should not be called in child\n";
359 xwrite(2, msg
, sizeof(msg
) - 1);
363 /* this runs in the parent process */
364 static void child_err_spew(struct child_process
*cmd
, struct child_err
*cerr
)
366 static void (*old_errfn
)(const char *err
, va_list params
);
367 report_fn die_message_routine
= get_die_message_routine();
369 old_errfn
= get_error_routine();
370 set_error_routine(die_message_routine
);
371 errno
= cerr
->syserr
;
374 case CHILD_ERR_CHDIR
:
375 error_errno("exec '%s': cd to '%s' failed",
376 cmd
->args
.v
[0], cmd
->dir
);
379 error_errno("dup2() in child failed");
381 case CHILD_ERR_CLOSE
:
382 error_errno("close() in child failed");
384 case CHILD_ERR_SIGPROCMASK
:
385 error_errno("sigprocmask failed restoring signals");
387 case CHILD_ERR_ENOENT
:
388 error_errno("cannot run %s", cmd
->args
.v
[0]);
390 case CHILD_ERR_SILENT
:
392 case CHILD_ERR_ERRNO
:
393 error_errno("cannot exec '%s'", cmd
->args
.v
[0]);
396 set_error_routine(old_errfn
);
399 static int prepare_cmd(struct strvec
*out
, const struct child_process
*cmd
)
402 BUG("command is empty");
405 * Add SHELL_PATH so in the event exec fails with ENOEXEC we can
406 * attempt to interpret the command with 'sh'.
408 strvec_push(out
, SHELL_PATH
);
411 prepare_git_cmd(out
, cmd
->args
.v
);
412 } else if (cmd
->use_shell
) {
413 prepare_shell_cmd(out
, cmd
->args
.v
);
415 strvec_pushv(out
, cmd
->args
.v
);
419 * If there are no dir separator characters in the command then perform
420 * a path lookup and use the resolved path as the command to exec. If
421 * there are dir separator characters, we have exec attempt to invoke
422 * the command directly.
424 if (!has_dir_sep(out
->v
[1])) {
425 char *program
= locate_in_PATH(out
->v
[1]);
427 free((char *)out
->v
[1]);
439 static char **prep_childenv(const char *const *deltaenv
)
441 extern char **environ
;
443 struct string_list env
= STRING_LIST_INIT_DUP
;
444 struct strbuf key
= STRBUF_INIT
;
445 const char *const *p
;
448 /* Construct a sorted string list consisting of the current environ */
449 for (p
= (const char *const *) environ
; p
&& *p
; p
++) {
450 const char *equals
= strchr(*p
, '=');
454 strbuf_add(&key
, *p
, equals
- *p
);
455 string_list_append(&env
, key
.buf
)->util
= (void *) *p
;
457 string_list_append(&env
, *p
)->util
= (void *) *p
;
460 string_list_sort(&env
);
462 /* Merge in 'deltaenv' with the current environ */
463 for (p
= deltaenv
; p
&& *p
; p
++) {
464 const char *equals
= strchr(*p
, '=');
467 /* ('key=value'), insert or replace entry */
469 strbuf_add(&key
, *p
, equals
- *p
);
470 string_list_insert(&env
, key
.buf
)->util
= (void *) *p
;
472 /* otherwise ('key') remove existing entry */
473 string_list_remove(&env
, *p
, 0);
477 /* Create an array of 'char *' to be used as the childenv */
478 ALLOC_ARRAY(childenv
, env
.nr
+ 1);
479 for (i
= 0; i
< env
.nr
; i
++)
480 childenv
[i
] = env
.items
[i
].util
;
481 childenv
[env
.nr
] = NULL
;
483 string_list_clear(&env
, 0);
484 strbuf_release(&key
);
488 struct atfork_state
{
495 #define CHECK_BUG(err, msg) \
499 BUG("%s: %s", msg, strerror(e)); \
502 static void atfork_prepare(struct atfork_state
*as
)
506 if (sigfillset(&all
))
507 die_errno("sigfillset");
509 if (sigprocmask(SIG_SETMASK
, &all
, &as
->old
))
510 die_errno("sigprocmask");
512 CHECK_BUG(pthread_sigmask(SIG_SETMASK
, &all
, &as
->old
),
513 "blocking all signals");
514 CHECK_BUG(pthread_setcancelstate(PTHREAD_CANCEL_DISABLE
, &as
->cs
),
515 "disabling cancellation");
519 static void atfork_parent(struct atfork_state
*as
)
522 if (sigprocmask(SIG_SETMASK
, &as
->old
, NULL
))
523 die_errno("sigprocmask");
525 CHECK_BUG(pthread_setcancelstate(as
->cs
, NULL
),
526 "re-enabling cancellation");
527 CHECK_BUG(pthread_sigmask(SIG_SETMASK
, &as
->old
, NULL
),
528 "restoring signal mask");
531 #endif /* GIT_WINDOWS_NATIVE */
533 static inline void set_cloexec(int fd
)
535 int flags
= fcntl(fd
, F_GETFD
);
537 fcntl(fd
, F_SETFD
, flags
| FD_CLOEXEC
);
540 static int wait_or_whine(pid_t pid
, const char *argv0
, int in_signal
)
542 int status
, code
= -1;
544 int failed_errno
= 0;
546 while ((waiting
= waitpid(pid
, &status
, 0)) < 0 && errno
== EINTR
)
550 failed_errno
= errno
;
552 error_errno("waitpid for %s failed", argv0
);
553 } else if (waiting
!= pid
) {
555 error("waitpid is confused (%s)", argv0
);
556 } else if (WIFSIGNALED(status
)) {
557 code
= WTERMSIG(status
);
558 if (!in_signal
&& code
!= SIGINT
&& code
!= SIGQUIT
&& code
!= SIGPIPE
)
559 error("%s died of signal %d", argv0
, code
);
561 * This return value is chosen so that code & 0xff
562 * mimics the exit code that a POSIX shell would report for
563 * a program that died from this signal.
566 } else if (WIFEXITED(status
)) {
567 code
= WEXITSTATUS(status
);
570 error("waitpid is confused (%s)", argv0
);
574 clear_child_for_cleanup(pid
);
576 errno
= failed_errno
;
580 static void trace_add_env(struct strbuf
*dst
, const char *const *deltaenv
)
582 struct string_list envs
= STRING_LIST_INIT_DUP
;
583 const char *const *e
;
585 int printed_unset
= 0;
587 /* Last one wins, see run-command.c:prep_childenv() for context */
588 for (e
= deltaenv
; e
&& *e
; e
++) {
589 struct strbuf key
= STRBUF_INIT
;
590 char *equals
= strchr(*e
, '=');
593 strbuf_add(&key
, *e
, equals
- *e
);
594 string_list_insert(&envs
, key
.buf
)->util
= equals
+ 1;
596 string_list_insert(&envs
, *e
)->util
= NULL
;
598 strbuf_release(&key
);
601 /* "unset X Y...;" */
602 for (i
= 0; i
< envs
.nr
; i
++) {
603 const char *var
= envs
.items
[i
].string
;
604 const char *val
= envs
.items
[i
].util
;
606 if (val
|| !getenv(var
))
609 if (!printed_unset
) {
610 strbuf_addstr(dst
, " unset");
613 strbuf_addf(dst
, " %s", var
);
616 strbuf_addch(dst
, ';');
618 /* ... followed by "A=B C=D ..." */
619 for (i
= 0; i
< envs
.nr
; i
++) {
620 const char *var
= envs
.items
[i
].string
;
621 const char *val
= envs
.items
[i
].util
;
627 oldval
= getenv(var
);
628 if (oldval
&& !strcmp(val
, oldval
))
631 strbuf_addf(dst
, " %s=", var
);
632 sq_quote_buf_pretty(dst
, val
);
634 string_list_clear(&envs
, 0);
637 static void trace_run_command(const struct child_process
*cp
)
639 struct strbuf buf
= STRBUF_INIT
;
641 if (!trace_want(&trace_default_key
))
644 strbuf_addstr(&buf
, "trace: run_command:");
646 strbuf_addstr(&buf
, " cd ");
647 sq_quote_buf_pretty(&buf
, cp
->dir
);
648 strbuf_addch(&buf
, ';');
650 trace_add_env(&buf
, cp
->env
.v
);
652 strbuf_addstr(&buf
, " git");
653 sq_quote_argv_pretty(&buf
, cp
->args
.v
);
655 trace_printf("%s", buf
.buf
);
656 strbuf_release(&buf
);
659 int start_command(struct child_process
*cmd
)
661 int need_in
, need_out
, need_err
;
662 int fdin
[2], fdout
[2], fderr
[2];
667 * In case of errors we must keep the promise to close FDs
668 * that have been passed in via ->in and ->out.
671 need_in
= !cmd
->no_stdin
&& cmd
->in
< 0;
673 if (pipe(fdin
) < 0) {
674 failed_errno
= errno
;
677 str
= "standard input";
683 need_out
= !cmd
->no_stdout
684 && !cmd
->stdout_to_stderr
687 if (pipe(fdout
) < 0) {
688 failed_errno
= errno
;
693 str
= "standard output";
699 need_err
= !cmd
->no_stderr
&& cmd
->err
< 0;
701 if (pipe(fderr
) < 0) {
702 failed_errno
= errno
;
711 str
= "standard error";
713 error("cannot create %s pipe for %s: %s",
714 str
, cmd
->args
.v
[0], strerror(failed_errno
));
715 child_process_clear(cmd
);
716 errno
= failed_errno
;
722 trace2_child_start(cmd
);
723 trace_run_command(cmd
);
727 if (cmd
->close_object_store
)
728 close_object_store(the_repository
->objects
);
730 #ifndef GIT_WINDOWS_NATIVE
735 struct strvec argv
= STRVEC_INIT
;
736 struct child_err cerr
;
737 struct atfork_state as
;
739 if (prepare_cmd(&argv
, cmd
) < 0) {
740 failed_errno
= errno
;
742 if (!cmd
->silent_exec_failure
)
743 error_errno("cannot run %s", cmd
->args
.v
[0]);
747 if (pipe(notify_pipe
))
748 notify_pipe
[0] = notify_pipe
[1] = -1;
750 if (cmd
->no_stdin
|| cmd
->no_stdout
|| cmd
->no_stderr
) {
751 null_fd
= xopen("/dev/null", O_RDWR
| O_CLOEXEC
);
752 set_cloexec(null_fd
);
755 childenv
= prep_childenv(cmd
->env
.v
);
759 * NOTE: In order to prevent deadlocking when using threads special
760 * care should be taken with the function calls made in between the
761 * fork() and exec() calls. No calls should be made to functions which
762 * require acquiring a lock (e.g. malloc) as the lock could have been
763 * held by another thread at the time of forking, causing the lock to
764 * never be released in the child process. This means only
765 * Async-Signal-Safe functions are permitted in the child.
768 failed_errno
= errno
;
772 * Ensure the default die/error/warn routines do not get
773 * called, they can take stdio locks and malloc.
775 set_die_routine(child_die_fn
);
776 set_error_routine(child_error_fn
);
777 set_warn_routine(child_warn_fn
);
779 close(notify_pipe
[0]);
780 set_cloexec(notify_pipe
[1]);
781 child_notifier
= notify_pipe
[1];
784 child_dup2(null_fd
, 0);
786 child_dup2(fdin
[0], 0);
787 child_close_pair(fdin
);
788 } else if (cmd
->in
) {
789 child_dup2(cmd
->in
, 0);
790 child_close(cmd
->in
);
794 child_dup2(null_fd
, 2);
796 child_dup2(fderr
[1], 2);
797 child_close_pair(fderr
);
798 } else if (cmd
->err
> 1) {
799 child_dup2(cmd
->err
, 2);
800 child_close(cmd
->err
);
804 child_dup2(null_fd
, 1);
805 else if (cmd
->stdout_to_stderr
)
808 child_dup2(fdout
[1], 1);
809 child_close_pair(fdout
);
810 } else if (cmd
->out
> 1) {
811 child_dup2(cmd
->out
, 1);
812 child_close(cmd
->out
);
815 if (cmd
->dir
&& chdir(cmd
->dir
))
816 child_die(CHILD_ERR_CHDIR
);
819 * restore default signal handlers here, in case
820 * we catch a signal right before execve below
822 for (sig
= 1; sig
< NSIG
; sig
++) {
823 /* ignored signals get reset to SIG_DFL on execve */
824 if (signal(sig
, SIG_DFL
) == SIG_IGN
)
825 signal(sig
, SIG_IGN
);
828 if (sigprocmask(SIG_SETMASK
, &as
.old
, NULL
) != 0)
829 child_die(CHILD_ERR_SIGPROCMASK
);
832 * Attempt to exec using the command and arguments starting at
833 * argv.argv[1]. argv.argv[0] contains SHELL_PATH which will
834 * be used in the event exec failed with ENOEXEC at which point
835 * we will try to interpret the command using 'sh'.
837 execve(argv
.v
[1], (char *const *) argv
.v
+ 1,
838 (char *const *) childenv
);
839 if (errno
== ENOEXEC
)
840 execve(argv
.v
[0], (char *const *) argv
.v
,
841 (char *const *) childenv
);
843 if (errno
== ENOENT
) {
844 if (cmd
->silent_exec_failure
)
845 child_die(CHILD_ERR_SILENT
);
846 child_die(CHILD_ERR_ENOENT
);
848 child_die(CHILD_ERR_ERRNO
);
853 error_errno("cannot fork() for %s", cmd
->args
.v
[0]);
854 else if (cmd
->clean_on_exit
)
855 mark_child_for_cleanup(cmd
->pid
, cmd
);
858 * Wait for child's exec. If the exec succeeds (or if fork()
859 * failed), EOF is seen immediately by the parent. Otherwise, the
860 * child process sends a child_err struct.
861 * Note that use of this infrastructure is completely advisory,
862 * therefore, we keep error checks minimal.
864 close(notify_pipe
[1]);
865 if (xread(notify_pipe
[0], &cerr
, sizeof(cerr
)) == sizeof(cerr
)) {
867 * At this point we know that fork() succeeded, but exec()
868 * failed. Errors have been reported to our stderr.
870 wait_or_whine(cmd
->pid
, cmd
->args
.v
[0], 0);
871 child_err_spew(cmd
, &cerr
);
872 failed_errno
= errno
;
875 close(notify_pipe
[0]);
886 int fhin
= 0, fhout
= 1, fherr
= 2;
887 const char **sargv
= cmd
->args
.v
;
888 struct strvec nargv
= STRVEC_INIT
;
891 fhin
= open("/dev/null", O_RDWR
);
898 fherr
= open("/dev/null", O_RDWR
);
900 fherr
= dup(fderr
[1]);
901 else if (cmd
->err
> 2)
902 fherr
= dup(cmd
->err
);
905 fhout
= open("/dev/null", O_RDWR
);
906 else if (cmd
->stdout_to_stderr
)
909 fhout
= dup(fdout
[1]);
910 else if (cmd
->out
> 1)
911 fhout
= dup(cmd
->out
);
914 cmd
->args
.v
= prepare_git_cmd(&nargv
, sargv
);
915 else if (cmd
->use_shell
)
916 cmd
->args
.v
= prepare_shell_cmd(&nargv
, sargv
);
918 cmd
->pid
= mingw_spawnvpe(cmd
->args
.v
[0], cmd
->args
.v
,
920 cmd
->dir
, fhin
, fhout
, fherr
);
921 failed_errno
= errno
;
922 if (cmd
->pid
< 0 && (!cmd
->silent_exec_failure
|| errno
!= ENOENT
))
923 error_errno("cannot spawn %s", cmd
->args
.v
[0]);
924 if (cmd
->clean_on_exit
&& cmd
->pid
>= 0)
925 mark_child_for_cleanup(cmd
->pid
, cmd
);
927 strvec_clear(&nargv
);
939 trace2_child_exit(cmd
, -1);
953 child_process_clear(cmd
);
954 errno
= failed_errno
;
976 int finish_command(struct child_process
*cmd
)
978 int ret
= wait_or_whine(cmd
->pid
, cmd
->args
.v
[0], 0);
979 trace2_child_exit(cmd
, ret
);
980 child_process_clear(cmd
);
981 invalidate_lstat_cache();
985 int finish_command_in_signal(struct child_process
*cmd
)
987 int ret
= wait_or_whine(cmd
->pid
, cmd
->args
.v
[0], 1);
989 trace2_child_exit(cmd
, ret
);
994 int run_command(struct child_process
*cmd
)
998 if (cmd
->out
< 0 || cmd
->err
< 0)
999 BUG("run_command with a pipe can cause deadlock");
1001 code
= start_command(cmd
);
1004 return finish_command(cmd
);
1008 static pthread_t main_thread
;
1009 static int main_thread_set
;
1010 static pthread_key_t async_key
;
1011 static pthread_key_t async_die_counter
;
1013 static void *run_thread(void *data
)
1015 struct async
*async
= data
;
1018 if (async
->isolate_sigpipe
) {
1021 sigaddset(&mask
, SIGPIPE
);
1022 if (pthread_sigmask(SIG_BLOCK
, &mask
, NULL
)) {
1023 ret
= error("unable to block SIGPIPE in async thread");
1028 pthread_setspecific(async_key
, async
);
1029 ret
= async
->proc(async
->proc_in
, async
->proc_out
, async
->data
);
1033 static NORETURN
void die_async(const char *err
, va_list params
)
1035 report_fn die_message_fn
= get_die_message_routine();
1037 die_message_fn(err
, params
);
1040 struct async
*async
= pthread_getspecific(async_key
);
1041 if (async
->proc_in
>= 0)
1042 close(async
->proc_in
);
1043 if (async
->proc_out
>= 0)
1044 close(async
->proc_out
);
1045 pthread_exit((void *)128);
1051 static int async_die_is_recursing(void)
1053 void *ret
= pthread_getspecific(async_die_counter
);
1054 pthread_setspecific(async_die_counter
, &async_die_counter
); /* set to any non-NULL valid pointer */
1060 if (!main_thread_set
)
1061 return 0; /* no asyncs started yet */
1062 return !pthread_equal(main_thread
, pthread_self());
1065 static void NORETURN
async_exit(int code
)
1067 pthread_exit((void *)(intptr_t)code
);
1073 void (**handlers
)(void);
1078 static int git_atexit_installed
;
1080 static void git_atexit_dispatch(void)
1084 for (i
=git_atexit_hdlrs
.nr
; i
; i
--)
1085 git_atexit_hdlrs
.handlers
[i
-1]();
1088 static void git_atexit_clear(void)
1090 free(git_atexit_hdlrs
.handlers
);
1091 memset(&git_atexit_hdlrs
, 0, sizeof(git_atexit_hdlrs
));
1092 git_atexit_installed
= 0;
1096 int git_atexit(void (*handler
)(void))
1098 ALLOC_GROW(git_atexit_hdlrs
.handlers
, git_atexit_hdlrs
.nr
+ 1, git_atexit_hdlrs
.alloc
);
1099 git_atexit_hdlrs
.handlers
[git_atexit_hdlrs
.nr
++] = handler
;
1100 if (!git_atexit_installed
) {
1101 if (atexit(&git_atexit_dispatch
))
1103 git_atexit_installed
= 1;
1107 #define atexit git_atexit
1109 static int process_is_async
;
1112 return process_is_async
;
1115 static void NORETURN
async_exit(int code
)
1122 void check_pipe(int err
)
1128 signal(SIGPIPE
, SIG_DFL
);
1130 /* Should never happen, but just in case... */
1135 int start_async(struct async
*async
)
1137 int need_in
, need_out
;
1138 int fdin
[2], fdout
[2];
1139 int proc_in
, proc_out
;
1141 need_in
= async
->in
< 0;
1143 if (pipe(fdin
) < 0) {
1146 return error_errno("cannot create pipe");
1148 async
->in
= fdin
[1];
1151 need_out
= async
->out
< 0;
1153 if (pipe(fdout
) < 0) {
1158 return error_errno("cannot create pipe");
1160 async
->out
= fdout
[0];
1166 proc_in
= async
->in
;
1171 proc_out
= fdout
[1];
1172 else if (async
->out
)
1173 proc_out
= async
->out
;
1178 /* Flush stdio before fork() to avoid cloning buffers */
1181 async
->pid
= fork();
1182 if (async
->pid
< 0) {
1183 error_errno("fork (async) failed");
1192 process_is_async
= 1;
1193 exit(!!async
->proc(proc_in
, proc_out
, async
->data
));
1196 mark_child_for_cleanup(async
->pid
, NULL
);
1205 else if (async
->out
)
1208 if (!main_thread_set
) {
1210 * We assume that the first time that start_async is called
1211 * it is from the main thread.
1213 main_thread_set
= 1;
1214 main_thread
= pthread_self();
1215 pthread_key_create(&async_key
, NULL
);
1216 pthread_key_create(&async_die_counter
, NULL
);
1217 set_die_routine(die_async
);
1218 set_die_is_recursing_routine(async_die_is_recursing
);
1222 set_cloexec(proc_in
);
1224 set_cloexec(proc_out
);
1225 async
->proc_in
= proc_in
;
1226 async
->proc_out
= proc_out
;
1228 int err
= pthread_create(&async
->tid
, NULL
, run_thread
, async
);
1230 error(_("cannot create async thread: %s"), strerror(err
));
1245 else if (async
->out
)
1250 int finish_async(struct async
*async
)
1253 int ret
= wait_or_whine(async
->pid
, "child process", 0);
1255 invalidate_lstat_cache();
1259 void *ret
= (void *)(intptr_t)(-1);
1261 if (pthread_join(async
->tid
, &ret
))
1262 error("pthread_join failed");
1263 invalidate_lstat_cache();
1264 return (int)(intptr_t)ret
;
1269 int async_with_fork(void)
1279 /* initialized by caller */
1281 int type
; /* POLLOUT or POLLIN */
1293 /* returned by pump_io */
1294 int error
; /* 0 for success, otherwise errno */
1300 static int pump_io_round(struct io_pump
*slots
, int nr
, struct pollfd
*pfd
)
1305 for (i
= 0; i
< nr
; i
++) {
1306 struct io_pump
*io
= &slots
[i
];
1309 pfd
[pollsize
].fd
= io
->fd
;
1310 pfd
[pollsize
].events
= io
->type
;
1311 io
->pfd
= &pfd
[pollsize
++];
1317 if (poll(pfd
, pollsize
, -1) < 0) {
1320 die_errno("poll failed");
1323 for (i
= 0; i
< nr
; i
++) {
1324 struct io_pump
*io
= &slots
[i
];
1329 if (!(io
->pfd
->revents
& (POLLOUT
|POLLIN
|POLLHUP
|POLLERR
|POLLNVAL
)))
1332 if (io
->type
== POLLOUT
) {
1336 * Don't use xwrite() here. It loops forever on EAGAIN,
1337 * and we're in our own poll() loop here.
1339 * Note that we lose xwrite()'s handling of MAX_IO_SIZE
1340 * and EINTR, so we have to implement those ourselves.
1342 len
= write(io
->fd
, io
->u
.out
.buf
,
1343 io
->u
.out
.len
<= MAX_IO_SIZE
?
1344 io
->u
.out
.len
: MAX_IO_SIZE
);
1346 if (errno
!= EINTR
&& errno
!= EAGAIN
&&
1353 io
->u
.out
.buf
+= len
;
1354 io
->u
.out
.len
-= len
;
1355 if (!io
->u
.out
.len
) {
1362 if (io
->type
== POLLIN
) {
1363 ssize_t len
= strbuf_read_once(io
->u
.in
.buf
,
1364 io
->fd
, io
->u
.in
.hint
);
1377 static int pump_io(struct io_pump
*slots
, int nr
)
1382 for (i
= 0; i
< nr
; i
++)
1385 ALLOC_ARRAY(pfd
, nr
);
1386 while (pump_io_round(slots
, nr
, pfd
))
1390 /* There may be multiple errno values, so just pick the first. */
1391 for (i
= 0; i
< nr
; i
++) {
1392 if (slots
[i
].error
) {
1393 errno
= slots
[i
].error
;
1401 int pipe_command(struct child_process
*cmd
,
1402 const char *in
, size_t in_len
,
1403 struct strbuf
*out
, size_t out_hint
,
1404 struct strbuf
*err
, size_t err_hint
)
1406 struct io_pump io
[3];
1416 if (start_command(cmd
) < 0)
1420 if (enable_pipe_nonblock(cmd
->in
) < 0) {
1421 error_errno("unable to make pipe non-blocking");
1429 io
[nr
].fd
= cmd
->in
;
1430 io
[nr
].type
= POLLOUT
;
1431 io
[nr
].u
.out
.buf
= in
;
1432 io
[nr
].u
.out
.len
= in_len
;
1436 io
[nr
].fd
= cmd
->out
;
1437 io
[nr
].type
= POLLIN
;
1438 io
[nr
].u
.in
.buf
= out
;
1439 io
[nr
].u
.in
.hint
= out_hint
;
1443 io
[nr
].fd
= cmd
->err
;
1444 io
[nr
].type
= POLLIN
;
1445 io
[nr
].u
.in
.buf
= err
;
1446 io
[nr
].u
.in
.hint
= err_hint
;
1450 if (pump_io(io
, nr
) < 0) {
1451 finish_command(cmd
); /* throw away exit code */
1455 return finish_command(cmd
);
1461 GIT_CP_WAIT_CLEANUP
,
1464 struct parallel_processes
{
1465 size_t nr_processes
;
1468 enum child_state state
;
1469 struct child_process process
;
1474 * The struct pollfd is logically part of *children,
1475 * but the system call expects it as its own array.
1479 unsigned shutdown
: 1;
1481 size_t output_owner
;
1482 struct strbuf buffered_output
; /* of finished children */
1485 struct parallel_processes_for_signal
{
1486 const struct run_process_parallel_opts
*opts
;
1487 const struct parallel_processes
*pp
;
1490 static void kill_children(const struct parallel_processes
*pp
,
1491 const struct run_process_parallel_opts
*opts
,
1494 for (size_t i
= 0; i
< opts
->processes
; i
++)
1495 if (pp
->children
[i
].state
== GIT_CP_WORKING
)
1496 kill(pp
->children
[i
].process
.pid
, signo
);
1499 static void kill_children_signal(const struct parallel_processes_for_signal
*pp_sig
,
1502 kill_children(pp_sig
->pp
, pp_sig
->opts
, signo
);
1505 static struct parallel_processes_for_signal
*pp_for_signal
;
1507 static void handle_children_on_signal(int signo
)
1509 kill_children_signal(pp_for_signal
, signo
);
1510 sigchain_pop(signo
);
1514 static void pp_init(struct parallel_processes
*pp
,
1515 const struct run_process_parallel_opts
*opts
,
1516 struct parallel_processes_for_signal
*pp_sig
)
1518 const size_t n
= opts
->processes
;
1521 BUG("you must provide a non-zero number of processes!");
1523 trace_printf("run_processes_parallel: preparing to run up to %"PRIuMAX
" tasks",
1526 if (!opts
->get_next_task
)
1527 BUG("you need to specify a get_next_task function");
1529 CALLOC_ARRAY(pp
->children
, n
);
1531 CALLOC_ARRAY(pp
->pfd
, n
);
1533 for (size_t i
= 0; i
< n
; i
++) {
1534 strbuf_init(&pp
->children
[i
].err
, 0);
1535 child_process_init(&pp
->children
[i
].process
);
1537 pp
->pfd
[i
].events
= POLLIN
| POLLHUP
;
1543 pp_sig
->opts
= opts
;
1544 pp_for_signal
= pp_sig
;
1545 sigchain_push_common(handle_children_on_signal
);
1548 static void pp_cleanup(struct parallel_processes
*pp
,
1549 const struct run_process_parallel_opts
*opts
)
1551 trace_printf("run_processes_parallel: done");
1552 for (size_t i
= 0; i
< opts
->processes
; i
++) {
1553 strbuf_release(&pp
->children
[i
].err
);
1554 child_process_clear(&pp
->children
[i
].process
);
1561 * When get_next_task added messages to the buffer in its last
1562 * iteration, the buffered output is non empty.
1564 strbuf_write(&pp
->buffered_output
, stderr
);
1565 strbuf_release(&pp
->buffered_output
);
1567 sigchain_pop_common();
1571 * 0 if a new task was started.
1572 * 1 if no new jobs was started (get_next_task ran out of work, non critical
1573 * problem with starting a new command)
1574 * <0 no new job was started, user wishes to shutdown early. Use negative code
1575 * to signal the children.
1577 static int pp_start_one(struct parallel_processes
*pp
,
1578 const struct run_process_parallel_opts
*opts
)
1583 for (i
= 0; i
< opts
->processes
; i
++)
1584 if (pp
->children
[i
].state
== GIT_CP_FREE
)
1586 if (i
== opts
->processes
)
1587 BUG("bookkeeping is hard");
1589 code
= opts
->get_next_task(&pp
->children
[i
].process
,
1590 opts
->ungroup
? NULL
: &pp
->children
[i
].err
,
1592 &pp
->children
[i
].data
);
1594 if (!opts
->ungroup
) {
1595 strbuf_addbuf(&pp
->buffered_output
, &pp
->children
[i
].err
);
1596 strbuf_reset(&pp
->children
[i
].err
);
1600 if (!opts
->ungroup
) {
1601 pp
->children
[i
].process
.err
= -1;
1602 pp
->children
[i
].process
.stdout_to_stderr
= 1;
1604 pp
->children
[i
].process
.no_stdin
= 1;
1606 if (start_command(&pp
->children
[i
].process
)) {
1607 if (opts
->start_failure
)
1608 code
= opts
->start_failure(opts
->ungroup
? NULL
:
1609 &pp
->children
[i
].err
,
1611 pp
->children
[i
].data
);
1615 if (!opts
->ungroup
) {
1616 strbuf_addbuf(&pp
->buffered_output
, &pp
->children
[i
].err
);
1617 strbuf_reset(&pp
->children
[i
].err
);
1625 pp
->children
[i
].state
= GIT_CP_WORKING
;
1627 pp
->pfd
[i
].fd
= pp
->children
[i
].process
.err
;
1631 static void pp_buffer_stderr(struct parallel_processes
*pp
,
1632 const struct run_process_parallel_opts
*opts
,
1637 while ((i
= poll(pp
->pfd
, opts
->processes
, output_timeout
) < 0)) {
1640 pp_cleanup(pp
, opts
);
1644 /* Buffer output from all pipes. */
1645 for (size_t i
= 0; i
< opts
->processes
; i
++) {
1646 if (pp
->children
[i
].state
== GIT_CP_WORKING
&&
1647 pp
->pfd
[i
].revents
& (POLLIN
| POLLHUP
)) {
1648 int n
= strbuf_read_once(&pp
->children
[i
].err
,
1649 pp
->children
[i
].process
.err
, 0);
1651 close(pp
->children
[i
].process
.err
);
1652 pp
->children
[i
].state
= GIT_CP_WAIT_CLEANUP
;
1654 if (errno
!= EAGAIN
)
1660 static void pp_output(const struct parallel_processes
*pp
)
1662 size_t i
= pp
->output_owner
;
1664 if (pp
->children
[i
].state
== GIT_CP_WORKING
&&
1665 pp
->children
[i
].err
.len
) {
1666 strbuf_write(&pp
->children
[i
].err
, stderr
);
1667 strbuf_reset(&pp
->children
[i
].err
);
1671 static int pp_collect_finished(struct parallel_processes
*pp
,
1672 const struct run_process_parallel_opts
*opts
)
1678 while (pp
->nr_processes
> 0) {
1679 for (i
= 0; i
< opts
->processes
; i
++)
1680 if (pp
->children
[i
].state
== GIT_CP_WAIT_CLEANUP
)
1682 if (i
== opts
->processes
)
1685 code
= finish_command(&pp
->children
[i
].process
);
1687 if (opts
->task_finished
)
1688 code
= opts
->task_finished(code
, opts
->ungroup
? NULL
:
1689 &pp
->children
[i
].err
, opts
->data
,
1690 pp
->children
[i
].data
);
1700 pp
->children
[i
].state
= GIT_CP_FREE
;
1703 child_process_init(&pp
->children
[i
].process
);
1705 if (opts
->ungroup
) {
1706 ; /* no strbuf_*() work to do here */
1707 } else if (i
!= pp
->output_owner
) {
1708 strbuf_addbuf(&pp
->buffered_output
, &pp
->children
[i
].err
);
1709 strbuf_reset(&pp
->children
[i
].err
);
1711 const size_t n
= opts
->processes
;
1713 strbuf_write(&pp
->children
[i
].err
, stderr
);
1714 strbuf_reset(&pp
->children
[i
].err
);
1716 /* Output all other finished child processes */
1717 strbuf_write(&pp
->buffered_output
, stderr
);
1718 strbuf_reset(&pp
->buffered_output
);
1721 * Pick next process to output live.
1723 * For now we pick it randomly by doing a round
1724 * robin. Later we may want to pick the one with
1725 * the most output or the longest or shortest
1726 * running process time.
1728 for (i
= 0; i
< n
; i
++)
1729 if (pp
->children
[(pp
->output_owner
+ i
) % n
].state
== GIT_CP_WORKING
)
1731 pp
->output_owner
= (pp
->output_owner
+ i
) % n
;
1737 void run_processes_parallel(const struct run_process_parallel_opts
*opts
)
1740 int output_timeout
= 100;
1742 struct parallel_processes_for_signal pp_sig
;
1743 struct parallel_processes pp
= {
1744 .buffered_output
= STRBUF_INIT
,
1747 const char *tr2_category
= opts
->tr2_category
;
1748 const char *tr2_label
= opts
->tr2_label
;
1749 const int do_trace2
= tr2_category
&& tr2_label
;
1752 trace2_region_enter_printf(tr2_category
, tr2_label
, NULL
,
1753 "max:%d", opts
->processes
);
1755 pp_init(&pp
, opts
, &pp_sig
);
1758 i
< spawn_cap
&& !pp
.shutdown
&&
1759 pp
.nr_processes
< opts
->processes
;
1761 code
= pp_start_one(&pp
, opts
);
1766 kill_children(&pp
, opts
, -code
);
1770 if (!pp
.nr_processes
)
1772 if (opts
->ungroup
) {
1773 for (size_t i
= 0; i
< opts
->processes
; i
++)
1774 pp
.children
[i
].state
= GIT_CP_WAIT_CLEANUP
;
1776 pp_buffer_stderr(&pp
, opts
, output_timeout
);
1779 code
= pp_collect_finished(&pp
, opts
);
1783 kill_children(&pp
, opts
,-code
);
1787 pp_cleanup(&pp
, opts
);
1790 trace2_region_leave(tr2_category
, tr2_label
, NULL
);
1793 int run_auto_maintenance(int quiet
)
1796 struct child_process maint
= CHILD_PROCESS_INIT
;
1798 if (!git_config_get_bool("maintenance.auto", &enabled
) &&
1803 maint
.close_object_store
= 1;
1804 strvec_pushl(&maint
.args
, "maintenance", "run", "--auto", NULL
);
1805 strvec_push(&maint
.args
, quiet
? "--quiet" : "--no-quiet");
1807 return run_command(&maint
);
1810 void prepare_other_repo_env(struct strvec
*env
, const char *new_git_dir
)
1812 const char * const *var
;
1814 for (var
= local_repo_env
; *var
; var
++) {
1815 if (strcmp(*var
, CONFIG_DATA_ENVIRONMENT
) &&
1816 strcmp(*var
, CONFIG_COUNT_ENVIRONMENT
))
1817 strvec_push(env
, *var
);
1819 strvec_pushf(env
, "%s=%s", GIT_DIR_ENVIRONMENT
, new_git_dir
);
1822 enum start_bg_result
start_bg_command(struct child_process
*cmd
,
1823 start_bg_wait_cb
*wait_cb
,
1825 unsigned int timeout_sec
)
1827 enum start_bg_result sbgr
= SBGR_ERROR
;
1834 * We do not allow clean-on-exit because the child process
1835 * should persist in the background and possibly/probably
1836 * after this process exits. So we don't want to kill the
1837 * child during our atexit routine.
1839 if (cmd
->clean_on_exit
)
1840 BUG("start_bg_command() does not allow non-zero clean_on_exit");
1842 if (!cmd
->trace2_child_class
)
1843 cmd
->trace2_child_class
= "background";
1845 ret
= start_command(cmd
);
1848 * We assume that if `start_command()` fails, we
1849 * either get a complete `trace2_child_start() /
1850 * trace2_child_exit()` pair or it fails before the
1851 * `trace2_child_start()` is emitted, so we do not
1852 * need to worry about it here.
1854 * We also assume that `start_command()` does not add
1855 * us to the cleanup list. And that it calls
1856 * `child_process_clear()`.
1863 time_limit
+= timeout_sec
;
1866 pid_seen
= waitpid(cmd
->pid
, &wait_status
, WNOHANG
);
1870 * The child is currently running. Ask the callback
1871 * if the child is ready to do work or whether we
1872 * should keep waiting for it to boot up.
1874 ret
= (*wait_cb
)(cmd
, cb_data
);
1877 * The child is running and "ready".
1879 trace2_child_ready(cmd
, "ready");
1882 } else if (ret
> 0) {
1884 * The callback said to give it more time to boot up
1885 * (subject to our timeout limit).
1890 if (now
< time_limit
)
1894 * Our timeout has expired. We don't try to
1895 * kill the child, but rather let it continue
1896 * (hopefully) trying to startup.
1898 trace2_child_ready(cmd
, "timeout");
1899 sbgr
= SBGR_TIMEOUT
;
1903 * The cb gave up on this child. It is still running,
1904 * but our cb got an error trying to probe it.
1906 trace2_child_ready(cmd
, "error");
1907 sbgr
= SBGR_CB_ERROR
;
1912 else if (pid_seen
== cmd
->pid
) {
1913 int child_code
= -1;
1916 * The child started, but exited or was terminated
1917 * before becoming "ready".
1919 * We try to match the behavior of `wait_or_whine()`
1920 * WRT the handling of WIFSIGNALED() and WIFEXITED()
1921 * and convert the child's status to a return code for
1922 * tracing purposes and emit the `trace2_child_exit()`
1925 * We do not want the wait_or_whine() error message
1926 * because we will be called by client-side library
1929 if (WIFEXITED(wait_status
))
1930 child_code
= WEXITSTATUS(wait_status
);
1931 else if (WIFSIGNALED(wait_status
))
1932 child_code
= WTERMSIG(wait_status
) + 128;
1933 trace2_child_exit(cmd
, child_code
);
1939 else if (pid_seen
< 0 && errno
== EINTR
)
1942 trace2_child_exit(cmd
, -1);
1946 child_process_clear(cmd
);
1947 invalidate_lstat_cache();