blob: be07d4ad335ba6df4653239b7ccd6930c91c9879 [file] [log] [blame]
Josef Weidendorferb1bf95b2005-07-31 21:17:43 +02001#include "cache.h"
2#include "run-command.h"
Michal Ostrowski77cb17e2006-01-10 21:12:17 -05003#include "exec_cmd.h"
Jeff Kingafe19ff2012-01-07 12:42:43 +01004#include "sigchain.h"
Jeff King5d40a172011-09-13 17:58:25 -04005#include "argv-array.h"
Josef Weidendorferb1bf95b2005-07-31 21:17:43 +02006
Ben Waltonb3e34dd2012-03-30 21:33:21 -04007#ifndef SHELL_PATH
8# define SHELL_PATH "/bin/sh"
9#endif
10
Jeff Kingafe19ff2012-01-07 12:42:43 +010011struct child_to_clean {
12 pid_t pid;
13 struct child_to_clean *next;
14};
15static struct child_to_clean *children_to_clean;
16static int installed_child_cleanup_handler;
17
18static void cleanup_children(int sig)
19{
20 while (children_to_clean) {
21 struct child_to_clean *p = children_to_clean;
22 children_to_clean = p->next;
23 kill(p->pid, sig);
24 free(p);
25 }
26}
27
28static void cleanup_children_on_signal(int sig)
29{
30 cleanup_children(sig);
31 sigchain_pop(sig);
32 raise(sig);
33}
34
35static void cleanup_children_on_exit(void)
36{
37 cleanup_children(SIGTERM);
38}
39
40static void mark_child_for_cleanup(pid_t pid)
41{
42 struct child_to_clean *p = xmalloc(sizeof(*p));
43 p->pid = pid;
44 p->next = children_to_clean;
45 children_to_clean = p;
46
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;
51 }
52}
53
54static void clear_child_for_cleanup(pid_t pid)
55{
David Gouldbdee3972012-09-11 15:32:47 +010056 struct child_to_clean **pp;
Jeff Kingafe19ff2012-01-07 12:42:43 +010057
David Gouldbdee3972012-09-11 15:32:47 +010058 for (pp = &children_to_clean; *pp; pp = &(*pp)->next) {
59 struct child_to_clean *clean_me = *pp;
60
61 if (clean_me->pid == pid) {
62 *pp = clean_me->next;
63 free(clean_me);
Jeff Kingafe19ff2012-01-07 12:42:43 +010064 return;
65 }
66 }
67}
68
Shawn O. Pearce9dc09c72007-03-12 14:37:28 -040069static inline void close_pair(int fd[2])
70{
71 close(fd[0]);
72 close(fd[1]);
73}
74
Jonathan Nieder380395d2013-05-02 20:26:08 +010075#ifndef GIT_WINDOWS_NATIVE
Shawn O. Pearcee4507ae2007-03-12 14:37:55 -040076static inline void dup_devnull(int to)
77{
78 int fd = open("/dev/null", O_RDWR);
Thomas Rasta77f1062013-07-12 10:58:36 +020079 if (fd < 0)
80 die_errno(_("open /dev/null failed"));
81 if (dup2(fd, to) < 0)
82 die_errno(_("dup2(%d,%d) failed"), fd, to);
Shawn O. Pearcee4507ae2007-03-12 14:37:55 -040083 close(fd);
84}
Johannes Sixt75301f92010-01-15 21:12:18 +010085#endif
Shawn O. Pearcee4507ae2007-03-12 14:37:55 -040086
Jeff King38f865c2012-03-30 03:52:18 -040087static char *locate_in_PATH(const char *file)
88{
89 const char *p = getenv("PATH");
90 struct strbuf buf = STRBUF_INIT;
91
92 if (!p || !*p)
93 return NULL;
94
95 while (1) {
96 const char *end = strchrnul(p, ':');
97
98 strbuf_reset(&buf);
99
100 /* POSIX specifies an empty entry as the current directory. */
101 if (end != p) {
102 strbuf_add(&buf, p, end - p);
103 strbuf_addch(&buf, '/');
104 }
105 strbuf_addstr(&buf, file);
106
107 if (!access(buf.buf, F_OK))
108 return strbuf_detach(&buf, NULL);
109
110 if (!*end)
111 break;
112 p = end + 1;
113 }
114
115 strbuf_release(&buf);
116 return NULL;
117}
118
119static int exists_in_PATH(const char *file)
120{
121 char *r = locate_in_PATH(file);
122 free(r);
123 return r != NULL;
124}
125
126int sane_execvp(const char *file, char * const argv[])
127{
128 if (!execvp(file, argv))
129 return 0; /* cannot happen ;-) */
130
131 /*
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
136 * intuitive.
137 *
138 * We avoid commands with "/", because execvp will not do $PATH
139 * lookups in that case.
140 *
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.
143 */
144 if (errno == EACCES && !strchr(file, '/'))
145 errno = exists_in_PATH(file) ? EACCES : ENOENT;
Junio C Hamanoa7855082012-07-31 12:51:30 -0700146 else if (errno == ENOTDIR && !strchr(file, '/'))
147 errno = ENOENT;
Jeff King38f865c2012-03-30 03:52:18 -0400148 return -1;
149}
150
Jeff King8dba1e62009-12-30 05:53:16 -0500151static const char **prepare_shell_cmd(const char **argv)
152{
153 int argc, nargc = 0;
154 const char **nargv;
155
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));
160
161 if (argc < 1)
162 die("BUG: shell command is empty");
163
Jeff Kingf4456442009-12-30 05:55:36 -0500164 if (strcspn(argv[0], "|&;<>()$`\\\"' \t\n*?[#~=%") != strlen(argv[0])) {
Jonathan Nieder380395d2013-05-02 20:26:08 +0100165#ifndef GIT_WINDOWS_NATIVE
Ben Waltonb3e34dd2012-03-30 21:33:21 -0400166 nargv[nargc++] = SHELL_PATH;
Johannes Sixt77629752012-04-17 09:03:21 +0200167#else
168 nargv[nargc++] = "sh";
169#endif
Jeff Kingf4456442009-12-30 05:55:36 -0500170 nargv[nargc++] = "-c";
Jeff King8dba1e62009-12-30 05:53:16 -0500171
Jeff Kingf4456442009-12-30 05:55:36 -0500172 if (argc < 2)
173 nargv[nargc++] = argv[0];
174 else {
175 struct strbuf arg0 = STRBUF_INIT;
176 strbuf_addf(&arg0, "%s \"$@\"", argv[0]);
177 nargv[nargc++] = strbuf_detach(&arg0, NULL);
178 }
Jeff King8dba1e62009-12-30 05:53:16 -0500179 }
180
181 for (argc = 0; argv[argc]; argc++)
182 nargv[nargc++] = argv[argc];
183 nargv[nargc] = NULL;
184
185 return nargv;
186}
187
Jonathan Nieder380395d2013-05-02 20:26:08 +0100188#ifndef GIT_WINDOWS_NATIVE
Jeff King8dba1e62009-12-30 05:53:16 -0500189static int execv_shell_cmd(const char **argv)
190{
191 const char **nargv = prepare_shell_cmd(argv);
192 trace_argv_printf(nargv, "trace: exec:");
Jeff King38f865c2012-03-30 03:52:18 -0400193 sane_execvp(nargv[0], (char **)nargv);
Jeff King8dba1e62009-12-30 05:53:16 -0500194 free(nargv);
195 return -1;
196}
197#endif
198
Jonathan Nieder380395d2013-05-02 20:26:08 +0100199#ifndef GIT_WINDOWS_NATIVE
Johannes Sixta5487dd2010-01-10 14:07:52 +0100200static int child_err = 2;
Johannes Sixt2b541bf2010-01-10 14:11:22 +0100201static int child_notifier = -1;
202
203static void notify_parent(void)
204{
Jonathan Niedera111eb72011-04-20 05:40:05 -0500205 /*
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.
209 */
210 xwrite(child_notifier, "", 1);
Johannes Sixt2b541bf2010-01-10 14:11:22 +0100211}
Johannes Sixta5487dd2010-01-10 14:07:52 +0100212
213static NORETURN void die_child(const char *err, va_list params)
214{
Clemens Buchacher3bc41812011-07-27 23:32:34 +0200215 vwritef(child_err, "fatal: ", err, params);
Johannes Sixta5487dd2010-01-10 14:07:52 +0100216 exit(128);
217}
Clemens Buchacher3bc41812011-07-27 23:32:34 +0200218
219static void error_child(const char *err, va_list params)
220{
221 vwritef(child_err, "error: ", err, params);
222}
Johannes Sixt200a76b2010-03-06 16:40:42 +0100223#endif
Johannes Sixta5487dd2010-01-10 14:07:52 +0100224
225static inline void set_cloexec(int fd)
226{
227 int flags = fcntl(fd, F_GETFD);
228 if (flags >= 0)
229 fcntl(fd, F_SETFD, flags | FD_CLOEXEC);
230}
Johannes Sixta5487dd2010-01-10 14:07:52 +0100231
Jeff King13274522012-11-30 17:40:50 -0500232static int wait_or_whine(pid_t pid, const char *argv0)
Johannes Sixtab0b41d2010-01-10 14:08:45 +0100233{
234 int status, code = -1;
235 pid_t waiting;
236 int failed_errno = 0;
237
238 while ((waiting = waitpid(pid, &status, 0)) < 0 && errno == EINTR)
239 ; /* nothing */
240
241 if (waiting < 0) {
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);
Jeff Kinga2767c52012-11-30 17:41:38 -0500248 if (code != SIGINT && code != SIGQUIT)
249 error("%s died of signal %d", argv0, code);
Johannes Sixtab0b41d2010-01-10 14:08:45 +0100250 /*
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.
254 */
Jeff King709ca732013-01-05 09:49:49 -0500255 code += 128;
Johannes Sixtab0b41d2010-01-10 14:08:45 +0100256 } else if (WIFEXITED(status)) {
257 code = WEXITSTATUS(status);
258 /*
259 * Convert special exit code when execvp failed.
260 */
261 if (code == 127) {
262 code = -1;
263 failed_errno = ENOENT;
Johannes Sixtab0b41d2010-01-10 14:08:45 +0100264 }
265 } else {
266 error("waitpid is confused (%s)", argv0);
267 }
Jeff Kingafe19ff2012-01-07 12:42:43 +0100268
269 clear_child_for_cleanup(pid);
270
Johannes Sixtab0b41d2010-01-10 14:08:45 +0100271 errno = failed_errno;
272 return code;
273}
274
Shawn O. Pearceebcb5d12007-03-10 03:28:05 -0500275int start_command(struct child_process *cmd)
Josef Weidendorferb1bf95b2005-07-31 21:17:43 +0200276{
Johannes Sixtf3b33f12007-10-19 21:47:58 +0200277 int need_in, need_out, need_err;
278 int fdin[2], fdout[2], fderr[2];
Jeff King25043d82013-03-21 11:45:00 -0400279 int failed_errno;
Stephen Boyd939296c2013-01-30 18:01:05 -0800280 char *str;
Shawn O. Pearce4919bf02007-03-10 03:28:08 -0500281
Jeff Kingc460c0e2014-05-15 04:33:26 -0400282 if (!cmd->argv)
283 cmd->argv = cmd->args.argv;
284
Johannes Sixtc20181e2008-02-21 23:42:56 +0100285 /*
286 * In case of errors we must keep the promise to close FDs
287 * that have been passed in via ->in and ->out.
288 */
289
Shawn O. Pearcee4507ae2007-03-12 14:37:55 -0400290 need_in = !cmd->no_stdin && cmd->in < 0;
Shawn O. Pearce4919bf02007-03-10 03:28:08 -0500291 if (need_in) {
Johannes Sixtc20181e2008-02-21 23:42:56 +0100292 if (pipe(fdin) < 0) {
Johannes Sixt0ac77ec2009-07-04 21:26:40 +0200293 failed_errno = errno;
Johannes Sixtc20181e2008-02-21 23:42:56 +0100294 if (cmd->out > 0)
295 close(cmd->out);
Stephen Boyd939296c2013-01-30 18:01:05 -0800296 str = "standard input";
Johannes Sixt0ac77ec2009-07-04 21:26:40 +0200297 goto fail_pipe;
Johannes Sixtc20181e2008-02-21 23:42:56 +0100298 }
Shawn O. Pearce4919bf02007-03-10 03:28:08 -0500299 cmd->in = fdin[1];
Shawn O. Pearce4919bf02007-03-10 03:28:08 -0500300 }
301
Shawn O. Pearcee4507ae2007-03-12 14:37:55 -0400302 need_out = !cmd->no_stdout
303 && !cmd->stdout_to_stderr
304 && cmd->out < 0;
Shawn O. Pearcef4bba252007-03-12 14:37:45 -0400305 if (need_out) {
306 if (pipe(fdout) < 0) {
Johannes Sixt0ac77ec2009-07-04 21:26:40 +0200307 failed_errno = errno;
Shawn O. Pearcef4bba252007-03-12 14:37:45 -0400308 if (need_in)
309 close_pair(fdin);
Johannes Sixtc20181e2008-02-21 23:42:56 +0100310 else if (cmd->in)
311 close(cmd->in);
Stephen Boyd939296c2013-01-30 18:01:05 -0800312 str = "standard output";
Johannes Sixt0ac77ec2009-07-04 21:26:40 +0200313 goto fail_pipe;
Shawn O. Pearcef4bba252007-03-12 14:37:45 -0400314 }
315 cmd->out = fdout[0];
Shawn O. Pearcef4bba252007-03-12 14:37:45 -0400316 }
317
Shawn O. Pearceb73a4392007-11-11 02:29:37 -0500318 need_err = !cmd->no_stderr && cmd->err < 0;
Johannes Sixtf3b33f12007-10-19 21:47:58 +0200319 if (need_err) {
320 if (pipe(fderr) < 0) {
Johannes Sixt0ac77ec2009-07-04 21:26:40 +0200321 failed_errno = errno;
Johannes Sixtf3b33f12007-10-19 21:47:58 +0200322 if (need_in)
323 close_pair(fdin);
Johannes Sixtc20181e2008-02-21 23:42:56 +0100324 else if (cmd->in)
325 close(cmd->in);
Johannes Sixtf3b33f12007-10-19 21:47:58 +0200326 if (need_out)
327 close_pair(fdout);
Johannes Sixtc20181e2008-02-21 23:42:56 +0100328 else if (cmd->out)
329 close(cmd->out);
Stephen Boyd939296c2013-01-30 18:01:05 -0800330 str = "standard error";
Johannes Sixt0ac77ec2009-07-04 21:26:40 +0200331fail_pipe:
Stephen Boyd939296c2013-01-30 18:01:05 -0800332 error("cannot create %s pipe for %s: %s",
333 str, cmd->argv[0], strerror(failed_errno));
Jeff Kingc460c0e2014-05-15 04:33:26 -0400334 argv_array_clear(&cmd->args);
Johannes Sixt0ac77ec2009-07-04 21:26:40 +0200335 errno = failed_errno;
336 return -1;
Johannes Sixtf3b33f12007-10-19 21:47:58 +0200337 }
338 cmd->err = fderr[0];
339 }
340
Johannes Schindelin8852f5d2008-07-07 14:41:34 +0100341 trace_argv_printf(cmd->argv, "trace: run_command:");
Johannes Sixt13af8cb2011-02-04 09:41:58 +0100342 fflush(NULL);
Johannes Schindelin8852f5d2008-07-07 14:41:34 +0100343
Jonathan Nieder380395d2013-05-02 20:26:08 +0100344#ifndef GIT_WINDOWS_NATIVE
Johannes Sixt2b541bf2010-01-10 14:11:22 +0100345{
346 int notify_pipe[2];
347 if (pipe(notify_pipe))
348 notify_pipe[0] = notify_pipe[1] = -1;
349
Shawn O. Pearceebcb5d12007-03-10 03:28:05 -0500350 cmd->pid = fork();
Jeff King25043d82013-03-21 11:45:00 -0400351 failed_errno = errno;
Shawn O. Pearceebcb5d12007-03-10 03:28:05 -0500352 if (!cmd->pid) {
Johannes Sixta5487dd2010-01-10 14:07:52 +0100353 /*
354 * Redirect the channel to write syscall error messages to
355 * before redirecting the process's stderr so that all die()
356 * in subsequent call paths use the parent's stderr.
357 */
358 if (cmd->no_stderr || need_err) {
359 child_err = dup(2);
360 set_cloexec(child_err);
361 }
362 set_die_routine(die_child);
Clemens Buchacher3bc41812011-07-27 23:32:34 +0200363 set_error_routine(error_child);
Johannes Sixta5487dd2010-01-10 14:07:52 +0100364
Johannes Sixt2b541bf2010-01-10 14:11:22 +0100365 close(notify_pipe[0]);
366 set_cloexec(notify_pipe[1]);
367 child_notifier = notify_pipe[1];
368 atexit(notify_parent);
369
Shawn O. Pearcee4507ae2007-03-12 14:37:55 -0400370 if (cmd->no_stdin)
371 dup_devnull(0);
372 else if (need_in) {
Shawn O. Pearce4919bf02007-03-10 03:28:08 -0500373 dup2(fdin[0], 0);
Shawn O. Pearce9dc09c72007-03-12 14:37:28 -0400374 close_pair(fdin);
Shawn O. Pearce4919bf02007-03-10 03:28:08 -0500375 } else if (cmd->in) {
376 dup2(cmd->in, 0);
377 close(cmd->in);
Shawn O. Pearce95d3c4f2006-12-30 21:55:22 -0500378 }
Shawn O. Pearce4919bf02007-03-10 03:28:08 -0500379
Christian Couderce2cf272008-03-05 08:35:16 +0100380 if (cmd->no_stderr)
381 dup_devnull(2);
382 else if (need_err) {
383 dup2(fderr[1], 2);
384 close_pair(fderr);
Shawn O. Pearce4f41b612010-02-05 12:57:37 -0800385 } else if (cmd->err > 1) {
386 dup2(cmd->err, 2);
387 close(cmd->err);
Christian Couderce2cf272008-03-05 08:35:16 +0100388 }
389
Shawn O. Pearcee4507ae2007-03-12 14:37:55 -0400390 if (cmd->no_stdout)
391 dup_devnull(1);
392 else if (cmd->stdout_to_stderr)
Shawn O. Pearcecd83c742006-12-30 21:55:19 -0500393 dup2(2, 1);
Shawn O. Pearcef4bba252007-03-12 14:37:45 -0400394 else if (need_out) {
395 dup2(fdout[1], 1);
396 close_pair(fdout);
397 } else if (cmd->out > 1) {
398 dup2(cmd->out, 1);
399 close(cmd->out);
400 }
401
Alex Riesen1568fea2007-05-22 23:48:23 +0200402 if (cmd->dir && chdir(cmd->dir))
Thomas Rastd824cbb2009-06-27 17:58:46 +0200403 die_errno("exec '%s': cd to '%s' failed", cmd->argv[0],
404 cmd->dir);
Alex Riesenee493142007-05-22 23:48:47 +0200405 if (cmd->env) {
Alex Riesen3427b372007-05-23 22:21:39 +0200406 for (; *cmd->env; cmd->env++) {
407 if (strchr(*cmd->env, '='))
Felipe Contreras4b25d092009-05-01 12:06:36 +0300408 putenv((char *)*cmd->env);
Alex Riesen3427b372007-05-23 22:21:39 +0200409 else
410 unsetenv(*cmd->env);
411 }
Alex Riesenee493142007-05-22 23:48:47 +0200412 }
Felipe Contreras5a500852013-10-31 03:25:45 -0600413 if (cmd->git_cmd)
Shawn O. Pearcef1000892007-03-10 03:28:00 -0500414 execv_git_cmd(cmd->argv);
Felipe Contreras5a500852013-10-31 03:25:45 -0600415 else if (cmd->use_shell)
Jeff King8dba1e62009-12-30 05:53:16 -0500416 execv_shell_cmd(cmd->argv);
Felipe Contreras5a500852013-10-31 03:25:45 -0600417 else
Jeff King38f865c2012-03-30 03:52:18 -0400418 sane_execvp(cmd->argv[0], (char *const*) cmd->argv);
Clemens Buchacherfc1b56f2011-08-01 19:59:21 +0200419 if (errno == ENOENT) {
420 if (!cmd->silent_exec_failure)
421 error("cannot run %s: %s", cmd->argv[0],
422 strerror(ENOENT));
Johannes Sixta5487dd2010-01-10 14:07:52 +0100423 exit(127);
Clemens Buchacherfc1b56f2011-08-01 19:59:21 +0200424 } else {
Johannes Sixta5487dd2010-01-10 14:07:52 +0100425 die_errno("cannot exec '%s'", cmd->argv[0]);
Clemens Buchacherfc1b56f2011-08-01 19:59:21 +0200426 }
Josef Weidendorferb1bf95b2005-07-31 21:17:43 +0200427 }
Johannes Sixt0ac77ec2009-07-04 21:26:40 +0200428 if (cmd->pid < 0)
429 error("cannot fork() for %s: %s", cmd->argv[0],
Jeff King25043d82013-03-21 11:45:00 -0400430 strerror(errno));
Jeff Kingafe19ff2012-01-07 12:42:43 +0100431 else if (cmd->clean_on_exit)
432 mark_child_for_cleanup(cmd->pid);
Johannes Sixt2b541bf2010-01-10 14:11:22 +0100433
434 /*
435 * Wait for child's execvp. If the execvp succeeds (or if fork()
436 * failed), EOF is seen immediately by the parent. Otherwise, the
437 * child process sends a single byte.
438 * Note that use of this infrastructure is completely advisory,
439 * therefore, we keep error checks minimal.
440 */
441 close(notify_pipe[1]);
442 if (read(notify_pipe[0], &notify_pipe[1], 1) == 1) {
443 /*
444 * At this point we know that fork() succeeded, but execvp()
445 * failed. Errors have been reported to our stderr.
446 */
Jeff King13274522012-11-30 17:40:50 -0500447 wait_or_whine(cmd->pid, cmd->argv[0]);
Johannes Sixt2b541bf2010-01-10 14:11:22 +0100448 failed_errno = errno;
449 cmd->pid = -1;
450 }
451 close(notify_pipe[0]);
452}
Johannes Sixtba26f292007-12-07 22:08:59 +0100453#else
Frank Li0d30ad72009-09-16 10:20:17 +0200454{
Johannes Sixt75301f92010-01-15 21:12:18 +0100455 int fhin = 0, fhout = 1, fherr = 2;
Steffen Prohaska108ac312008-07-28 07:50:28 +0200456 const char **sargv = cmd->argv;
Johannes Sixtba26f292007-12-07 22:08:59 +0100457 char **env = environ;
Johannes Sixtba26f292007-12-07 22:08:59 +0100458
Johannes Sixt75301f92010-01-15 21:12:18 +0100459 if (cmd->no_stdin)
460 fhin = open("/dev/null", O_RDWR);
461 else if (need_in)
462 fhin = dup(fdin[0]);
463 else if (cmd->in)
464 fhin = dup(cmd->in);
Johannes Sixtba26f292007-12-07 22:08:59 +0100465
Johannes Sixt75301f92010-01-15 21:12:18 +0100466 if (cmd->no_stderr)
467 fherr = open("/dev/null", O_RDWR);
468 else if (need_err)
469 fherr = dup(fderr[1]);
Junio C Hamano76d44c82010-02-05 21:08:53 -0800470 else if (cmd->err > 2)
471 fherr = dup(cmd->err);
Johannes Sixtba26f292007-12-07 22:08:59 +0100472
Johannes Sixt75301f92010-01-15 21:12:18 +0100473 if (cmd->no_stdout)
474 fhout = open("/dev/null", O_RDWR);
475 else if (cmd->stdout_to_stderr)
476 fhout = dup(fherr);
477 else if (need_out)
478 fhout = dup(fdout[1]);
479 else if (cmd->out > 1)
480 fhout = dup(cmd->out);
Johannes Sixtba26f292007-12-07 22:08:59 +0100481
Johannes Sixt2affea42009-09-11 19:40:08 +0200482 if (cmd->env)
483 env = make_augmented_environ(cmd->env);
Johannes Sixtba26f292007-12-07 22:08:59 +0100484
Felipe Contreras5a500852013-10-31 03:25:45 -0600485 if (cmd->git_cmd)
Steffen Prohaska108ac312008-07-28 07:50:28 +0200486 cmd->argv = prepare_git_cmd(cmd->argv);
Felipe Contreras5a500852013-10-31 03:25:45 -0600487 else if (cmd->use_shell)
Jeff King8dba1e62009-12-30 05:53:16 -0500488 cmd->argv = prepare_shell_cmd(cmd->argv);
Johannes Sixtba26f292007-12-07 22:08:59 +0100489
Johannes Sixtf9a27432010-04-11 22:40:12 +0200490 cmd->pid = mingw_spawnvpe(cmd->argv[0], cmd->argv, env, cmd->dir,
Johannes Sixt75301f92010-01-15 21:12:18 +0100491 fhin, fhout, fherr);
Johannes Sixt0ac77ec2009-07-04 21:26:40 +0200492 failed_errno = errno;
Johannes Sixtc024beb2009-07-04 21:26:42 +0200493 if (cmd->pid < 0 && (!cmd->silent_exec_failure || errno != ENOENT))
Johannes Sixt0ac77ec2009-07-04 21:26:40 +0200494 error("cannot spawn %s: %s", cmd->argv[0], strerror(errno));
Jeff Kingafe19ff2012-01-07 12:42:43 +0100495 if (cmd->clean_on_exit && cmd->pid >= 0)
496 mark_child_for_cleanup(cmd->pid);
Johannes Sixtba26f292007-12-07 22:08:59 +0100497
498 if (cmd->env)
499 free_environ(env);
500 if (cmd->git_cmd)
Steffen Prohaska108ac312008-07-28 07:50:28 +0200501 free(cmd->argv);
Johannes Sixtba26f292007-12-07 22:08:59 +0100502
Steffen Prohaska108ac312008-07-28 07:50:28 +0200503 cmd->argv = sargv;
Johannes Sixt75301f92010-01-15 21:12:18 +0100504 if (fhin != 0)
505 close(fhin);
506 if (fhout != 1)
507 close(fhout);
508 if (fherr != 2)
509 close(fherr);
Frank Li0d30ad72009-09-16 10:20:17 +0200510}
Johannes Sixtba26f292007-12-07 22:08:59 +0100511#endif
512
513 if (cmd->pid < 0) {
514 if (need_in)
515 close_pair(fdin);
516 else if (cmd->in)
517 close(cmd->in);
518 if (need_out)
519 close_pair(fdout);
520 else if (cmd->out)
521 close(cmd->out);
522 if (need_err)
523 close_pair(fderr);
bert Dvornikfc012c22010-05-20 20:57:52 +0200524 else if (cmd->err)
525 close(cmd->err);
Jeff Kingc460c0e2014-05-15 04:33:26 -0400526 argv_array_clear(&cmd->args);
Johannes Sixt0ac77ec2009-07-04 21:26:40 +0200527 errno = failed_errno;
528 return -1;
Johannes Sixtba26f292007-12-07 22:08:59 +0100529 }
Shawn O. Pearce4919bf02007-03-10 03:28:08 -0500530
531 if (need_in)
532 close(fdin[0]);
533 else if (cmd->in)
534 close(cmd->in);
535
Shawn O. Pearcef4bba252007-03-12 14:37:45 -0400536 if (need_out)
537 close(fdout[1]);
Johannes Sixtc20181e2008-02-21 23:42:56 +0100538 else if (cmd->out)
Shawn O. Pearcef4bba252007-03-12 14:37:45 -0400539 close(cmd->out);
540
Johannes Sixtf3b33f12007-10-19 21:47:58 +0200541 if (need_err)
542 close(fderr[1]);
Shawn O. Pearce4f41b612010-02-05 12:57:37 -0800543 else if (cmd->err)
544 close(cmd->err);
Johannes Sixtf3b33f12007-10-19 21:47:58 +0200545
Shawn O. Pearceebcb5d12007-03-10 03:28:05 -0500546 return 0;
547}
548
Johannes Sixt2d22c202007-10-19 21:48:00 +0200549int finish_command(struct child_process *cmd)
550{
Jeff Kingc460c0e2014-05-15 04:33:26 -0400551 int ret = wait_or_whine(cmd->pid, cmd->argv[0]);
552 argv_array_clear(&cmd->args);
553 return ret;
Johannes Sixt2d22c202007-10-19 21:48:00 +0200554}
555
Shawn O. Pearceebcb5d12007-03-10 03:28:05 -0500556int run_command(struct child_process *cmd)
557{
558 int code = start_command(cmd);
559 if (code)
560 return code;
561 return finish_command(cmd);
562}
563
Alex Riesen1568fea2007-05-22 23:48:23 +0200564static void prepare_run_command_v_opt(struct child_process *cmd,
Alex Riesenee493142007-05-22 23:48:47 +0200565 const char **argv,
566 int opt)
Alex Riesen1568fea2007-05-22 23:48:23 +0200567{
568 memset(cmd, 0, sizeof(*cmd));
569 cmd->argv = argv;
570 cmd->no_stdin = opt & RUN_COMMAND_NO_STDIN ? 1 : 0;
571 cmd->git_cmd = opt & RUN_GIT_CMD ? 1 : 0;
572 cmd->stdout_to_stderr = opt & RUN_COMMAND_STDOUT_TO_STDERR ? 1 : 0;
Johannes Sixtc024beb2009-07-04 21:26:42 +0200573 cmd->silent_exec_failure = opt & RUN_SILENT_EXEC_FAILURE ? 1 : 0;
Jeff King8dba1e62009-12-30 05:53:16 -0500574 cmd->use_shell = opt & RUN_USING_SHELL ? 1 : 0;
Clemens Buchacher10c6cdd2012-01-08 21:41:09 +0100575 cmd->clean_on_exit = opt & RUN_CLEAN_ON_EXIT ? 1 : 0;
Alex Riesen1568fea2007-05-22 23:48:23 +0200576}
577
Shawn O. Pearcef1000892007-03-10 03:28:00 -0500578int run_command_v_opt(const char **argv, int opt)
579{
580 struct child_process cmd;
Alex Riesen1568fea2007-05-22 23:48:23 +0200581 prepare_run_command_v_opt(&cmd, argv, opt);
582 return run_command(&cmd);
583}
584
Alex Riesenee493142007-05-22 23:48:47 +0200585int run_command_v_opt_cd_env(const char **argv, int opt, const char *dir, const char *const *env)
586{
587 struct child_process cmd;
588 prepare_run_command_v_opt(&cmd, argv, opt);
589 cmd.dir = dir;
590 cmd.env = env;
591 return run_command(&cmd);
592}
Johannes Sixt2d22c202007-10-19 21:48:00 +0200593
Johannes Sixtf6b60982010-03-09 21:00:36 +0100594#ifndef NO_PTHREADS
Johannes Sixt0ea1c892010-03-06 16:40:43 +0100595static pthread_t main_thread;
596static int main_thread_set;
597static pthread_key_t async_key;
Jeff King1ece66b2013-04-16 15:50:07 -0400598static pthread_key_t async_die_counter;
Johannes Sixt0ea1c892010-03-06 16:40:43 +0100599
Johannes Sixt200a76b2010-03-06 16:40:42 +0100600static void *run_thread(void *data)
Johannes Sixt618ebe92007-12-08 22:19:14 +0100601{
602 struct async *async = data;
Johannes Sixtf6b60982010-03-09 21:00:36 +0100603 intptr_t ret;
Johannes Sixt0ea1c892010-03-06 16:40:43 +0100604
605 pthread_setspecific(async_key, async);
Johannes Sixtf6b60982010-03-09 21:00:36 +0100606 ret = async->proc(async->proc_in, async->proc_out, async->data);
Johannes Sixt200a76b2010-03-06 16:40:42 +0100607 return (void *)ret;
Johannes Sixt618ebe92007-12-08 22:19:14 +0100608}
Johannes Sixt0ea1c892010-03-06 16:40:43 +0100609
610static NORETURN void die_async(const char *err, va_list params)
611{
612 vreportf("fatal: ", err, params);
613
614 if (!pthread_equal(main_thread, pthread_self())) {
615 struct async *async = pthread_getspecific(async_key);
616 if (async->proc_in >= 0)
617 close(async->proc_in);
618 if (async->proc_out >= 0)
619 close(async->proc_out);
620 pthread_exit((void *)128);
621 }
622
623 exit(128);
Johannes Sixt618ebe92007-12-08 22:19:14 +0100624}
Jeff King1ece66b2013-04-16 15:50:07 -0400625
626static int async_die_is_recursing(void)
627{
628 void *ret = pthread_getspecific(async_die_counter);
629 pthread_setspecific(async_die_counter, (void *)1);
630 return ret != NULL;
631}
632
Johannes Sixt618ebe92007-12-08 22:19:14 +0100633#endif
634
Johannes Sixt2d22c202007-10-19 21:48:00 +0200635int start_async(struct async *async)
636{
Erik Faye-Lundae6a5602010-02-05 12:57:38 -0800637 int need_in, need_out;
638 int fdin[2], fdout[2];
639 int proc_in, proc_out;
Johannes Sixt2d22c202007-10-19 21:48:00 +0200640
Erik Faye-Lundae6a5602010-02-05 12:57:38 -0800641 need_in = async->in < 0;
642 if (need_in) {
643 if (pipe(fdin) < 0) {
644 if (async->out > 0)
645 close(async->out);
646 return error("cannot create pipe: %s", strerror(errno));
647 }
648 async->in = fdin[1];
649 }
650
651 need_out = async->out < 0;
652 if (need_out) {
653 if (pipe(fdout) < 0) {
654 if (need_in)
655 close_pair(fdin);
656 else if (async->in)
657 close(async->in);
658 return error("cannot create pipe: %s", strerror(errno));
659 }
660 async->out = fdout[0];
661 }
662
663 if (need_in)
664 proc_in = fdin[0];
665 else if (async->in)
666 proc_in = async->in;
667 else
668 proc_in = -1;
669
670 if (need_out)
671 proc_out = fdout[1];
672 else if (async->out)
673 proc_out = async->out;
674 else
675 proc_out = -1;
Johannes Sixt2d22c202007-10-19 21:48:00 +0200676
Johannes Sixtf6b60982010-03-09 21:00:36 +0100677#ifdef NO_PTHREADS
Anders Melchiorsen2c3766f2008-08-04 02:30:03 +0200678 /* Flush stdio before fork() to avoid cloning buffers */
679 fflush(NULL);
680
Johannes Sixt2d22c202007-10-19 21:48:00 +0200681 async->pid = fork();
682 if (async->pid < 0) {
683 error("fork (async) failed: %s", strerror(errno));
Erik Faye-Lundae6a5602010-02-05 12:57:38 -0800684 goto error;
Johannes Sixt2d22c202007-10-19 21:48:00 +0200685 }
686 if (!async->pid) {
Erik Faye-Lundae6a5602010-02-05 12:57:38 -0800687 if (need_in)
688 close(fdin[1]);
689 if (need_out)
690 close(fdout[0]);
691 exit(!!async->proc(proc_in, proc_out, async->data));
Johannes Sixt2d22c202007-10-19 21:48:00 +0200692 }
Erik Faye-Lundae6a5602010-02-05 12:57:38 -0800693
Jeff Kingafe19ff2012-01-07 12:42:43 +0100694 mark_child_for_cleanup(async->pid);
695
Erik Faye-Lundae6a5602010-02-05 12:57:38 -0800696 if (need_in)
697 close(fdin[0]);
698 else if (async->in)
699 close(async->in);
700
701 if (need_out)
702 close(fdout[1]);
703 else if (async->out)
704 close(async->out);
Johannes Sixt618ebe92007-12-08 22:19:14 +0100705#else
Johannes Sixt0ea1c892010-03-06 16:40:43 +0100706 if (!main_thread_set) {
707 /*
708 * We assume that the first time that start_async is called
709 * it is from the main thread.
710 */
711 main_thread_set = 1;
712 main_thread = pthread_self();
713 pthread_key_create(&async_key, NULL);
Jeff King1ece66b2013-04-16 15:50:07 -0400714 pthread_key_create(&async_die_counter, NULL);
Johannes Sixt0ea1c892010-03-06 16:40:43 +0100715 set_die_routine(die_async);
Jeff King1ece66b2013-04-16 15:50:07 -0400716 set_die_is_recursing_routine(async_die_is_recursing);
Johannes Sixt0ea1c892010-03-06 16:40:43 +0100717 }
718
Johannes Sixt200a76b2010-03-06 16:40:42 +0100719 if (proc_in >= 0)
720 set_cloexec(proc_in);
721 if (proc_out >= 0)
722 set_cloexec(proc_out);
Erik Faye-Lundae6a5602010-02-05 12:57:38 -0800723 async->proc_in = proc_in;
724 async->proc_out = proc_out;
Johannes Sixt200a76b2010-03-06 16:40:42 +0100725 {
726 int err = pthread_create(&async->tid, NULL, run_thread, async);
727 if (err) {
728 error("cannot create thread: %s", strerror(err));
729 goto error;
730 }
Johannes Sixt618ebe92007-12-08 22:19:14 +0100731 }
732#endif
Johannes Sixt2d22c202007-10-19 21:48:00 +0200733 return 0;
Erik Faye-Lundae6a5602010-02-05 12:57:38 -0800734
735error:
736 if (need_in)
737 close_pair(fdin);
738 else if (async->in)
739 close(async->in);
740
741 if (need_out)
742 close_pair(fdout);
743 else if (async->out)
744 close(async->out);
745 return -1;
Johannes Sixt2d22c202007-10-19 21:48:00 +0200746}
747
748int finish_async(struct async *async)
749{
Johannes Sixtf6b60982010-03-09 21:00:36 +0100750#ifdef NO_PTHREADS
Jeff King0398fc32013-01-05 09:52:29 -0500751 return wait_or_whine(async->pid, "child process");
Johannes Sixt618ebe92007-12-08 22:19:14 +0100752#else
Johannes Sixt200a76b2010-03-06 16:40:42 +0100753 void *ret = (void *)(intptr_t)(-1);
754
755 if (pthread_join(async->tid, &ret))
756 error("pthread_join failed");
757 return (int)(intptr_t)ret;
Johannes Sixt618ebe92007-12-08 22:19:14 +0100758#endif
Johannes Sixt2d22c202007-10-19 21:48:00 +0200759}
Stephan Beyerae98a002009-01-16 20:09:59 +0100760
Aaron Schrab5a7da2d2013-01-13 00:17:02 -0500761char *find_hook(const char *name)
762{
763 char *path = git_path("hooks/%s", name);
764 if (access(path, X_OK) < 0)
765 path = NULL;
766
767 return path;
768}
769
Benoit Pierre15048f82014-03-18 11:00:53 +0100770int run_hook_ve(const char *const *env, const char *name, va_list args)
Stephan Beyerae98a002009-01-16 20:09:59 +0100771{
772 struct child_process hook;
Jeff King5d40a172011-09-13 17:58:25 -0400773 struct argv_array argv = ARGV_ARRAY_INIT;
Benoit Pierre15048f82014-03-18 11:00:53 +0100774 const char *p;
Stephan Beyerae98a002009-01-16 20:09:59 +0100775 int ret;
Stephan Beyerae98a002009-01-16 20:09:59 +0100776
Aaron Schrab5a7da2d2013-01-13 00:17:02 -0500777 p = find_hook(name);
778 if (!p)
Stephan Beyercf94ca82009-01-16 20:10:01 +0100779 return 0;
780
Aaron Schrab5a7da2d2013-01-13 00:17:02 -0500781 argv_array_push(&argv, p);
782
Jeff King5d40a172011-09-13 17:58:25 -0400783 while ((p = va_arg(args, const char *)))
784 argv_array_push(&argv, p);
Stephan Beyerae98a002009-01-16 20:09:59 +0100785
Stephan Beyerae98a002009-01-16 20:09:59 +0100786 memset(&hook, 0, sizeof(hook));
Jeff King5d40a172011-09-13 17:58:25 -0400787 hook.argv = argv.argv;
Benoit Pierre15048f82014-03-18 11:00:53 +0100788 hook.env = env;
Stephan Beyerae98a002009-01-16 20:09:59 +0100789 hook.no_stdin = 1;
790 hook.stdout_to_stderr = 1;
Stephan Beyerae98a002009-01-16 20:09:59 +0100791
Johannes Sixt0ac77ec2009-07-04 21:26:40 +0200792 ret = run_command(&hook);
Jeff King5d40a172011-09-13 17:58:25 -0400793 argv_array_clear(&argv);
Stephan Beyerae98a002009-01-16 20:09:59 +0100794 return ret;
795}
Benoit Pierre15048f82014-03-18 11:00:53 +0100796
797int run_hook_le(const char *const *env, const char *name, ...)
798{
799 va_list args;
800 int ret;
801
802 va_start(args, name);
803 ret = run_hook_ve(env, name, args);
804 va_end(args);
805
806 return ret;
807}
808
809int run_hook_with_custom_index(const char *index_file, const char *name, ...)
810{
811 const char *hook_env[3] = { NULL };
812 char index[PATH_MAX];
813 va_list args;
814 int ret;
815
816 snprintf(index, sizeof(index), "GIT_INDEX_FILE=%s", index_file);
817 hook_env[0] = index;
818
819 va_start(args, name);
820 ret = run_hook_ve(hook_env, name, args);
821 va_end(args);
822
823 return ret;
824}