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
**last
, *p
;
58 last
= &children_to_clean
;
59 for (p
= children_to_clean
; p
; p
= p
->next
) {
68 static inline void close_pair(int fd
[2])
75 static inline void dup_devnull(int to
)
77 int fd
= open("/dev/null", O_RDWR
);
83 static const char **prepare_shell_cmd(const char **argv
)
88 for (argc
= 0; argv
[argc
]; argc
++)
90 /* +1 for NULL, +3 for "sh -c" plus extra $0 */
91 nargv
= xmalloc(sizeof(*nargv
) * (argc
+ 1 + 3));
94 die("BUG: shell command is empty");
96 if (strcspn(argv
[0], "|&;<>()$`\\\"' \t\n*?[#~=%") != strlen(argv
[0])) {
97 nargv
[nargc
++] = SHELL_PATH
;
98 nargv
[nargc
++] = "-c";
101 nargv
[nargc
++] = argv
[0];
103 struct strbuf arg0
= STRBUF_INIT
;
104 strbuf_addf(&arg0
, "%s \"$@\"", argv
[0]);
105 nargv
[nargc
++] = strbuf_detach(&arg0
, NULL
);
109 for (argc
= 0; argv
[argc
]; argc
++)
110 nargv
[nargc
++] = argv
[argc
];
117 static int execv_shell_cmd(const char **argv
)
119 const char **nargv
= prepare_shell_cmd(argv
);
120 trace_argv_printf(nargv
, "trace: exec:");
121 execvp(nargv
[0], (char **)nargv
);
128 static int child_err
= 2;
129 static int child_notifier
= -1;
131 static void notify_parent(void)
134 * execvp failed. If possible, we'd like to let start_command
135 * know, so failures like ENOENT can be handled right away; but
136 * otherwise, finish_command will still report the error.
138 xwrite(child_notifier
, "", 1);
141 static NORETURN
void die_child(const char *err
, va_list params
)
143 vwritef(child_err
, "fatal: ", err
, params
);
147 static void error_child(const char *err
, va_list params
)
149 vwritef(child_err
, "error: ", err
, params
);
153 static inline void set_cloexec(int fd
)
155 int flags
= fcntl(fd
, F_GETFD
);
157 fcntl(fd
, F_SETFD
, flags
| FD_CLOEXEC
);
160 static int wait_or_whine(pid_t pid
, const char *argv0
, int silent_exec_failure
)
162 int status
, code
= -1;
164 int failed_errno
= 0;
166 while ((waiting
= waitpid(pid
, &status
, 0)) < 0 && errno
== EINTR
)
170 failed_errno
= errno
;
171 error("waitpid for %s failed: %s", argv0
, strerror(errno
));
172 } else if (waiting
!= pid
) {
173 error("waitpid is confused (%s)", argv0
);
174 } else if (WIFSIGNALED(status
)) {
175 code
= WTERMSIG(status
);
176 error("%s died of signal %d", argv0
, code
);
178 * This return value is chosen so that code & 0xff
179 * mimics the exit code that a POSIX shell would report for
180 * a program that died from this signal.
183 } else if (WIFEXITED(status
)) {
184 code
= WEXITSTATUS(status
);
186 * Convert special exit code when execvp failed.
190 failed_errno
= ENOENT
;
193 error("waitpid is confused (%s)", argv0
);
196 clear_child_for_cleanup(pid
);
198 errno
= failed_errno
;
202 int start_command(struct child_process
*cmd
)
204 int need_in
, need_out
, need_err
;
205 int fdin
[2], fdout
[2], fderr
[2];
206 int failed_errno
= failed_errno
;
209 * In case of errors we must keep the promise to close FDs
210 * that have been passed in via ->in and ->out.
213 need_in
= !cmd
->no_stdin
&& cmd
->in
< 0;
215 if (pipe(fdin
) < 0) {
216 failed_errno
= errno
;
224 need_out
= !cmd
->no_stdout
225 && !cmd
->stdout_to_stderr
228 if (pipe(fdout
) < 0) {
229 failed_errno
= errno
;
239 need_err
= !cmd
->no_stderr
&& cmd
->err
< 0;
241 if (pipe(fderr
) < 0) {
242 failed_errno
= errno
;
252 error("cannot create pipe for %s: %s",
253 cmd
->argv
[0], strerror(failed_errno
));
254 errno
= failed_errno
;
260 trace_argv_printf(cmd
->argv
, "trace: run_command:");
266 if (pipe(notify_pipe
))
267 notify_pipe
[0] = notify_pipe
[1] = -1;
272 * Redirect the channel to write syscall error messages to
273 * before redirecting the process's stderr so that all die()
274 * in subsequent call paths use the parent's stderr.
276 if (cmd
->no_stderr
|| need_err
) {
278 set_cloexec(child_err
);
280 set_die_routine(die_child
);
281 set_error_routine(error_child
);
283 close(notify_pipe
[0]);
284 set_cloexec(notify_pipe
[1]);
285 child_notifier
= notify_pipe
[1];
286 atexit(notify_parent
);
293 } else if (cmd
->in
) {
303 } else if (cmd
->err
> 1) {
310 else if (cmd
->stdout_to_stderr
)
315 } else if (cmd
->out
> 1) {
320 if (cmd
->dir
&& chdir(cmd
->dir
))
321 die_errno("exec '%s': cd to '%s' failed", cmd
->argv
[0],
324 for (; *cmd
->env
; cmd
->env
++) {
325 if (strchr(*cmd
->env
, '='))
326 putenv((char *)*cmd
->env
);
331 if (cmd
->preexec_cb
) {
333 * We cannot predict what the pre-exec callback does.
334 * Forgo parent notification.
336 close(child_notifier
);
342 execv_git_cmd(cmd
->argv
);
343 } else if (cmd
->use_shell
) {
344 execv_shell_cmd(cmd
->argv
);
346 execvp(cmd
->argv
[0], (char *const*) cmd
->argv
);
348 if (errno
== ENOENT
) {
349 if (!cmd
->silent_exec_failure
)
350 error("cannot run %s: %s", cmd
->argv
[0],
354 die_errno("cannot exec '%s'", cmd
->argv
[0]);
358 error("cannot fork() for %s: %s", cmd
->argv
[0],
359 strerror(failed_errno
= errno
));
360 else if (cmd
->clean_on_exit
)
361 mark_child_for_cleanup(cmd
->pid
);
364 * Wait for child's execvp. If the execvp succeeds (or if fork()
365 * failed), EOF is seen immediately by the parent. Otherwise, the
366 * child process sends a single byte.
367 * Note that use of this infrastructure is completely advisory,
368 * therefore, we keep error checks minimal.
370 close(notify_pipe
[1]);
371 if (read(notify_pipe
[0], ¬ify_pipe
[1], 1) == 1) {
373 * At this point we know that fork() succeeded, but execvp()
374 * failed. Errors have been reported to our stderr.
376 wait_or_whine(cmd
->pid
, cmd
->argv
[0],
377 cmd
->silent_exec_failure
);
378 failed_errno
= errno
;
381 close(notify_pipe
[0]);
386 int fhin
= 0, fhout
= 1, fherr
= 2;
387 const char **sargv
= cmd
->argv
;
388 char **env
= environ
;
391 fhin
= open("/dev/null", O_RDWR
);
398 fherr
= open("/dev/null", O_RDWR
);
400 fherr
= dup(fderr
[1]);
401 else if (cmd
->err
> 2)
402 fherr
= dup(cmd
->err
);
405 fhout
= open("/dev/null", O_RDWR
);
406 else if (cmd
->stdout_to_stderr
)
409 fhout
= dup(fdout
[1]);
410 else if (cmd
->out
> 1)
411 fhout
= dup(cmd
->out
);
414 env
= make_augmented_environ(cmd
->env
);
417 cmd
->argv
= prepare_git_cmd(cmd
->argv
);
418 } else if (cmd
->use_shell
) {
419 cmd
->argv
= prepare_shell_cmd(cmd
->argv
);
422 cmd
->pid
= mingw_spawnvpe(cmd
->argv
[0], cmd
->argv
, env
, cmd
->dir
,
424 failed_errno
= errno
;
425 if (cmd
->pid
< 0 && (!cmd
->silent_exec_failure
|| errno
!= ENOENT
))
426 error("cannot spawn %s: %s", cmd
->argv
[0], strerror(errno
));
427 if (cmd
->clean_on_exit
&& cmd
->pid
>= 0)
428 mark_child_for_cleanup(cmd
->pid
);
458 errno
= failed_errno
;
480 int finish_command(struct child_process
*cmd
)
482 return wait_or_whine(cmd
->pid
, cmd
->argv
[0], cmd
->silent_exec_failure
);
485 int run_command(struct child_process
*cmd
)
487 int code
= start_command(cmd
);
490 return finish_command(cmd
);
493 static void prepare_run_command_v_opt(struct child_process
*cmd
,
497 memset(cmd
, 0, sizeof(*cmd
));
499 cmd
->no_stdin
= opt
& RUN_COMMAND_NO_STDIN
? 1 : 0;
500 cmd
->git_cmd
= opt
& RUN_GIT_CMD
? 1 : 0;
501 cmd
->stdout_to_stderr
= opt
& RUN_COMMAND_STDOUT_TO_STDERR
? 1 : 0;
502 cmd
->silent_exec_failure
= opt
& RUN_SILENT_EXEC_FAILURE
? 1 : 0;
503 cmd
->use_shell
= opt
& RUN_USING_SHELL
? 1 : 0;
504 cmd
->clean_on_exit
= opt
& RUN_CLEAN_ON_EXIT
? 1 : 0;
507 int run_command_v_opt(const char **argv
, int opt
)
509 struct child_process cmd
;
510 prepare_run_command_v_opt(&cmd
, argv
, opt
);
511 return run_command(&cmd
);
514 int run_command_v_opt_cd_env(const char **argv
, int opt
, const char *dir
, const char *const *env
)
516 struct child_process cmd
;
517 prepare_run_command_v_opt(&cmd
, argv
, opt
);
520 return run_command(&cmd
);
524 static pthread_t main_thread
;
525 static int main_thread_set
;
526 static pthread_key_t async_key
;
528 static void *run_thread(void *data
)
530 struct async
*async
= data
;
533 pthread_setspecific(async_key
, async
);
534 ret
= async
->proc(async
->proc_in
, async
->proc_out
, async
->data
);
538 static NORETURN
void die_async(const char *err
, va_list params
)
540 vreportf("fatal: ", err
, params
);
542 if (!pthread_equal(main_thread
, pthread_self())) {
543 struct async
*async
= pthread_getspecific(async_key
);
544 if (async
->proc_in
>= 0)
545 close(async
->proc_in
);
546 if (async
->proc_out
>= 0)
547 close(async
->proc_out
);
548 pthread_exit((void *)128);
555 int start_async(struct async
*async
)
557 int need_in
, need_out
;
558 int fdin
[2], fdout
[2];
559 int proc_in
, proc_out
;
561 need_in
= async
->in
< 0;
563 if (pipe(fdin
) < 0) {
566 return error("cannot create pipe: %s", strerror(errno
));
571 need_out
= async
->out
< 0;
573 if (pipe(fdout
) < 0) {
578 return error("cannot create pipe: %s", strerror(errno
));
580 async
->out
= fdout
[0];
593 proc_out
= async
->out
;
598 /* Flush stdio before fork() to avoid cloning buffers */
602 if (async
->pid
< 0) {
603 error("fork (async) failed: %s", strerror(errno
));
611 exit(!!async
->proc(proc_in
, proc_out
, async
->data
));
614 mark_child_for_cleanup(async
->pid
);
626 if (!main_thread_set
) {
628 * We assume that the first time that start_async is called
629 * it is from the main thread.
632 main_thread
= pthread_self();
633 pthread_key_create(&async_key
, NULL
);
634 set_die_routine(die_async
);
638 set_cloexec(proc_in
);
640 set_cloexec(proc_out
);
641 async
->proc_in
= proc_in
;
642 async
->proc_out
= proc_out
;
644 int err
= pthread_create(&async
->tid
, NULL
, run_thread
, async
);
646 error("cannot create thread: %s", strerror(err
));
666 int finish_async(struct async
*async
)
669 return wait_or_whine(async
->pid
, "child process", 0);
671 void *ret
= (void *)(intptr_t)(-1);
673 if (pthread_join(async
->tid
, &ret
))
674 error("pthread_join failed");
675 return (int)(intptr_t)ret
;
679 int run_hook(const char *index_file
, const char *name
, ...)
681 struct child_process hook
;
682 struct argv_array argv
= ARGV_ARRAY_INIT
;
683 const char *p
, *env
[2];
684 char index
[PATH_MAX
];
688 if (access(git_path("hooks/%s", name
), X_OK
) < 0)
691 va_start(args
, name
);
692 argv_array_push(&argv
, git_path("hooks/%s", name
));
693 while ((p
= va_arg(args
, const char *)))
694 argv_array_push(&argv
, p
);
697 memset(&hook
, 0, sizeof(hook
));
698 hook
.argv
= argv
.argv
;
700 hook
.stdout_to_stderr
= 1;
702 snprintf(index
, sizeof(index
), "GIT_INDEX_FILE=%s", index_file
);
708 ret
= run_command(&hook
);
709 argv_array_clear(&argv
);