Josef Weidendorfer | b1bf95b | 2005-07-31 21:17:43 +0200 | [diff] [blame] | 1 | #include "cache.h" |
| 2 | #include "run-command.h" |
Michal Ostrowski | 77cb17e | 2006-01-10 21:12:17 -0500 | [diff] [blame] | 3 | #include "exec_cmd.h" |
Jeff King | afe19ff | 2012-01-07 12:42:43 +0100 | [diff] [blame] | 4 | #include "sigchain.h" |
Jeff King | 5d40a17 | 2011-09-13 17:58:25 -0400 | [diff] [blame] | 5 | #include "argv-array.h" |
Josef Weidendorfer | b1bf95b | 2005-07-31 21:17:43 +0200 | [diff] [blame] | 6 | |
Ben Walton | b3e34dd | 2012-03-30 21:33:21 -0400 | [diff] [blame] | 7 | #ifndef SHELL_PATH |
| 8 | # define SHELL_PATH "/bin/sh" |
| 9 | #endif |
| 10 | |
Jeff King | afe19ff | 2012-01-07 12:42:43 +0100 | [diff] [blame] | 11 | struct child_to_clean { |
| 12 | pid_t pid; |
| 13 | struct child_to_clean *next; |
| 14 | }; |
| 15 | static struct child_to_clean *children_to_clean; |
| 16 | static int installed_child_cleanup_handler; |
| 17 | |
| 18 | static 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 | |
| 28 | static void cleanup_children_on_signal(int sig) |
| 29 | { |
| 30 | cleanup_children(sig); |
| 31 | sigchain_pop(sig); |
| 32 | raise(sig); |
| 33 | } |
| 34 | |
| 35 | static void cleanup_children_on_exit(void) |
| 36 | { |
| 37 | cleanup_children(SIGTERM); |
| 38 | } |
| 39 | |
| 40 | static 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 | |
| 54 | static void clear_child_for_cleanup(pid_t pid) |
| 55 | { |
David Gould | bdee397 | 2012-09-11 15:32:47 +0100 | [diff] [blame] | 56 | struct child_to_clean **pp; |
Jeff King | afe19ff | 2012-01-07 12:42:43 +0100 | [diff] [blame] | 57 | |
David Gould | bdee397 | 2012-09-11 15:32:47 +0100 | [diff] [blame] | 58 | 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 King | afe19ff | 2012-01-07 12:42:43 +0100 | [diff] [blame] | 64 | return; |
| 65 | } |
| 66 | } |
| 67 | } |
| 68 | |
Shawn O. Pearce | 9dc09c7 | 2007-03-12 14:37:28 -0400 | [diff] [blame] | 69 | static inline void close_pair(int fd[2]) |
| 70 | { |
| 71 | close(fd[0]); |
| 72 | close(fd[1]); |
| 73 | } |
| 74 | |
Jonathan Nieder | 380395d | 2013-05-02 20:26:08 +0100 | [diff] [blame] | 75 | #ifndef GIT_WINDOWS_NATIVE |
Shawn O. Pearce | e4507ae | 2007-03-12 14:37:55 -0400 | [diff] [blame] | 76 | static inline void dup_devnull(int to) |
| 77 | { |
| 78 | int fd = open("/dev/null", O_RDWR); |
Thomas Rast | a77f106 | 2013-07-12 10:58:36 +0200 | [diff] [blame] | 79 | 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. Pearce | e4507ae | 2007-03-12 14:37:55 -0400 | [diff] [blame] | 83 | close(fd); |
| 84 | } |
Johannes Sixt | 75301f9 | 2010-01-15 21:12:18 +0100 | [diff] [blame] | 85 | #endif |
Shawn O. Pearce | e4507ae | 2007-03-12 14:37:55 -0400 | [diff] [blame] | 86 | |
Jeff King | 38f865c | 2012-03-30 03:52:18 -0400 | [diff] [blame] | 87 | static 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 | |
| 119 | static int exists_in_PATH(const char *file) |
| 120 | { |
| 121 | char *r = locate_in_PATH(file); |
| 122 | free(r); |
| 123 | return r != NULL; |
| 124 | } |
| 125 | |
| 126 | int 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 Hamano | a785508 | 2012-07-31 12:51:30 -0700 | [diff] [blame] | 146 | else if (errno == ENOTDIR && !strchr(file, '/')) |
| 147 | errno = ENOENT; |
Jeff King | 38f865c | 2012-03-30 03:52:18 -0400 | [diff] [blame] | 148 | return -1; |
| 149 | } |
| 150 | |
Jeff King | 8dba1e6 | 2009-12-30 05:53:16 -0500 | [diff] [blame] | 151 | static 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 King | f445644 | 2009-12-30 05:55:36 -0500 | [diff] [blame] | 164 | if (strcspn(argv[0], "|&;<>()$`\\\"' \t\n*?[#~=%") != strlen(argv[0])) { |
Jonathan Nieder | 380395d | 2013-05-02 20:26:08 +0100 | [diff] [blame] | 165 | #ifndef GIT_WINDOWS_NATIVE |
Ben Walton | b3e34dd | 2012-03-30 21:33:21 -0400 | [diff] [blame] | 166 | nargv[nargc++] = SHELL_PATH; |
Johannes Sixt | 7762975 | 2012-04-17 09:03:21 +0200 | [diff] [blame] | 167 | #else |
| 168 | nargv[nargc++] = "sh"; |
| 169 | #endif |
Jeff King | f445644 | 2009-12-30 05:55:36 -0500 | [diff] [blame] | 170 | nargv[nargc++] = "-c"; |
Jeff King | 8dba1e6 | 2009-12-30 05:53:16 -0500 | [diff] [blame] | 171 | |
Jeff King | f445644 | 2009-12-30 05:55:36 -0500 | [diff] [blame] | 172 | 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 King | 8dba1e6 | 2009-12-30 05:53:16 -0500 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | for (argc = 0; argv[argc]; argc++) |
| 182 | nargv[nargc++] = argv[argc]; |
| 183 | nargv[nargc] = NULL; |
| 184 | |
| 185 | return nargv; |
| 186 | } |
| 187 | |
Jonathan Nieder | 380395d | 2013-05-02 20:26:08 +0100 | [diff] [blame] | 188 | #ifndef GIT_WINDOWS_NATIVE |
Jeff King | 8dba1e6 | 2009-12-30 05:53:16 -0500 | [diff] [blame] | 189 | static int execv_shell_cmd(const char **argv) |
| 190 | { |
| 191 | const char **nargv = prepare_shell_cmd(argv); |
| 192 | trace_argv_printf(nargv, "trace: exec:"); |
Jeff King | 38f865c | 2012-03-30 03:52:18 -0400 | [diff] [blame] | 193 | sane_execvp(nargv[0], (char **)nargv); |
Jeff King | 8dba1e6 | 2009-12-30 05:53:16 -0500 | [diff] [blame] | 194 | free(nargv); |
| 195 | return -1; |
| 196 | } |
| 197 | #endif |
| 198 | |
Jonathan Nieder | 380395d | 2013-05-02 20:26:08 +0100 | [diff] [blame] | 199 | #ifndef GIT_WINDOWS_NATIVE |
Johannes Sixt | a5487dd | 2010-01-10 14:07:52 +0100 | [diff] [blame] | 200 | static int child_err = 2; |
Johannes Sixt | 2b541bf | 2010-01-10 14:11:22 +0100 | [diff] [blame] | 201 | static int child_notifier = -1; |
| 202 | |
| 203 | static void notify_parent(void) |
| 204 | { |
Jonathan Nieder | a111eb7 | 2011-04-20 05:40:05 -0500 | [diff] [blame] | 205 | /* |
| 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 Sixt | 2b541bf | 2010-01-10 14:11:22 +0100 | [diff] [blame] | 211 | } |
Johannes Sixt | a5487dd | 2010-01-10 14:07:52 +0100 | [diff] [blame] | 212 | |
| 213 | static NORETURN void die_child(const char *err, va_list params) |
| 214 | { |
Clemens Buchacher | 3bc4181 | 2011-07-27 23:32:34 +0200 | [diff] [blame] | 215 | vwritef(child_err, "fatal: ", err, params); |
Johannes Sixt | a5487dd | 2010-01-10 14:07:52 +0100 | [diff] [blame] | 216 | exit(128); |
| 217 | } |
Clemens Buchacher | 3bc4181 | 2011-07-27 23:32:34 +0200 | [diff] [blame] | 218 | |
| 219 | static void error_child(const char *err, va_list params) |
| 220 | { |
| 221 | vwritef(child_err, "error: ", err, params); |
| 222 | } |
Johannes Sixt | 200a76b | 2010-03-06 16:40:42 +0100 | [diff] [blame] | 223 | #endif |
Johannes Sixt | a5487dd | 2010-01-10 14:07:52 +0100 | [diff] [blame] | 224 | |
| 225 | static 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 Sixt | a5487dd | 2010-01-10 14:07:52 +0100 | [diff] [blame] | 231 | |
Jeff King | 1327452 | 2012-11-30 17:40:50 -0500 | [diff] [blame] | 232 | static int wait_or_whine(pid_t pid, const char *argv0) |
Johannes Sixt | ab0b41d | 2010-01-10 14:08:45 +0100 | [diff] [blame] | 233 | { |
| 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 King | a2767c5 | 2012-11-30 17:41:38 -0500 | [diff] [blame] | 248 | if (code != SIGINT && code != SIGQUIT) |
| 249 | error("%s died of signal %d", argv0, code); |
Johannes Sixt | ab0b41d | 2010-01-10 14:08:45 +0100 | [diff] [blame] | 250 | /* |
| 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 King | 709ca73 | 2013-01-05 09:49:49 -0500 | [diff] [blame] | 255 | code += 128; |
Johannes Sixt | ab0b41d | 2010-01-10 14:08:45 +0100 | [diff] [blame] | 256 | } 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 Sixt | ab0b41d | 2010-01-10 14:08:45 +0100 | [diff] [blame] | 264 | } |
| 265 | } else { |
| 266 | error("waitpid is confused (%s)", argv0); |
| 267 | } |
Jeff King | afe19ff | 2012-01-07 12:42:43 +0100 | [diff] [blame] | 268 | |
| 269 | clear_child_for_cleanup(pid); |
| 270 | |
Johannes Sixt | ab0b41d | 2010-01-10 14:08:45 +0100 | [diff] [blame] | 271 | errno = failed_errno; |
| 272 | return code; |
| 273 | } |
| 274 | |
Shawn O. Pearce | ebcb5d1 | 2007-03-10 03:28:05 -0500 | [diff] [blame] | 275 | int start_command(struct child_process *cmd) |
Josef Weidendorfer | b1bf95b | 2005-07-31 21:17:43 +0200 | [diff] [blame] | 276 | { |
Johannes Sixt | f3b33f1 | 2007-10-19 21:47:58 +0200 | [diff] [blame] | 277 | int need_in, need_out, need_err; |
| 278 | int fdin[2], fdout[2], fderr[2]; |
Jeff King | 25043d8 | 2013-03-21 11:45:00 -0400 | [diff] [blame] | 279 | int failed_errno; |
Stephen Boyd | 939296c | 2013-01-30 18:01:05 -0800 | [diff] [blame] | 280 | char *str; |
Shawn O. Pearce | 4919bf0 | 2007-03-10 03:28:08 -0500 | [diff] [blame] | 281 | |
Johannes Sixt | c20181e | 2008-02-21 23:42:56 +0100 | [diff] [blame] | 282 | /* |
| 283 | * In case of errors we must keep the promise to close FDs |
| 284 | * that have been passed in via ->in and ->out. |
| 285 | */ |
| 286 | |
Shawn O. Pearce | e4507ae | 2007-03-12 14:37:55 -0400 | [diff] [blame] | 287 | need_in = !cmd->no_stdin && cmd->in < 0; |
Shawn O. Pearce | 4919bf0 | 2007-03-10 03:28:08 -0500 | [diff] [blame] | 288 | if (need_in) { |
Johannes Sixt | c20181e | 2008-02-21 23:42:56 +0100 | [diff] [blame] | 289 | if (pipe(fdin) < 0) { |
Johannes Sixt | 0ac77ec | 2009-07-04 21:26:40 +0200 | [diff] [blame] | 290 | failed_errno = errno; |
Johannes Sixt | c20181e | 2008-02-21 23:42:56 +0100 | [diff] [blame] | 291 | if (cmd->out > 0) |
| 292 | close(cmd->out); |
Stephen Boyd | 939296c | 2013-01-30 18:01:05 -0800 | [diff] [blame] | 293 | str = "standard input"; |
Johannes Sixt | 0ac77ec | 2009-07-04 21:26:40 +0200 | [diff] [blame] | 294 | goto fail_pipe; |
Johannes Sixt | c20181e | 2008-02-21 23:42:56 +0100 | [diff] [blame] | 295 | } |
Shawn O. Pearce | 4919bf0 | 2007-03-10 03:28:08 -0500 | [diff] [blame] | 296 | cmd->in = fdin[1]; |
Shawn O. Pearce | 4919bf0 | 2007-03-10 03:28:08 -0500 | [diff] [blame] | 297 | } |
| 298 | |
Shawn O. Pearce | e4507ae | 2007-03-12 14:37:55 -0400 | [diff] [blame] | 299 | need_out = !cmd->no_stdout |
| 300 | && !cmd->stdout_to_stderr |
| 301 | && cmd->out < 0; |
Shawn O. Pearce | f4bba25 | 2007-03-12 14:37:45 -0400 | [diff] [blame] | 302 | if (need_out) { |
| 303 | if (pipe(fdout) < 0) { |
Johannes Sixt | 0ac77ec | 2009-07-04 21:26:40 +0200 | [diff] [blame] | 304 | failed_errno = errno; |
Shawn O. Pearce | f4bba25 | 2007-03-12 14:37:45 -0400 | [diff] [blame] | 305 | if (need_in) |
| 306 | close_pair(fdin); |
Johannes Sixt | c20181e | 2008-02-21 23:42:56 +0100 | [diff] [blame] | 307 | else if (cmd->in) |
| 308 | close(cmd->in); |
Stephen Boyd | 939296c | 2013-01-30 18:01:05 -0800 | [diff] [blame] | 309 | str = "standard output"; |
Johannes Sixt | 0ac77ec | 2009-07-04 21:26:40 +0200 | [diff] [blame] | 310 | goto fail_pipe; |
Shawn O. Pearce | f4bba25 | 2007-03-12 14:37:45 -0400 | [diff] [blame] | 311 | } |
| 312 | cmd->out = fdout[0]; |
Shawn O. Pearce | f4bba25 | 2007-03-12 14:37:45 -0400 | [diff] [blame] | 313 | } |
| 314 | |
Shawn O. Pearce | b73a439 | 2007-11-11 02:29:37 -0500 | [diff] [blame] | 315 | need_err = !cmd->no_stderr && cmd->err < 0; |
Johannes Sixt | f3b33f1 | 2007-10-19 21:47:58 +0200 | [diff] [blame] | 316 | if (need_err) { |
| 317 | if (pipe(fderr) < 0) { |
Johannes Sixt | 0ac77ec | 2009-07-04 21:26:40 +0200 | [diff] [blame] | 318 | failed_errno = errno; |
Johannes Sixt | f3b33f1 | 2007-10-19 21:47:58 +0200 | [diff] [blame] | 319 | if (need_in) |
| 320 | close_pair(fdin); |
Johannes Sixt | c20181e | 2008-02-21 23:42:56 +0100 | [diff] [blame] | 321 | else if (cmd->in) |
| 322 | close(cmd->in); |
Johannes Sixt | f3b33f1 | 2007-10-19 21:47:58 +0200 | [diff] [blame] | 323 | if (need_out) |
| 324 | close_pair(fdout); |
Johannes Sixt | c20181e | 2008-02-21 23:42:56 +0100 | [diff] [blame] | 325 | else if (cmd->out) |
| 326 | close(cmd->out); |
Stephen Boyd | 939296c | 2013-01-30 18:01:05 -0800 | [diff] [blame] | 327 | str = "standard error"; |
Johannes Sixt | 0ac77ec | 2009-07-04 21:26:40 +0200 | [diff] [blame] | 328 | fail_pipe: |
Stephen Boyd | 939296c | 2013-01-30 18:01:05 -0800 | [diff] [blame] | 329 | error("cannot create %s pipe for %s: %s", |
| 330 | str, cmd->argv[0], strerror(failed_errno)); |
Johannes Sixt | 0ac77ec | 2009-07-04 21:26:40 +0200 | [diff] [blame] | 331 | errno = failed_errno; |
| 332 | return -1; |
Johannes Sixt | f3b33f1 | 2007-10-19 21:47:58 +0200 | [diff] [blame] | 333 | } |
| 334 | cmd->err = fderr[0]; |
| 335 | } |
| 336 | |
Johannes Schindelin | 8852f5d | 2008-07-07 14:41:34 +0100 | [diff] [blame] | 337 | trace_argv_printf(cmd->argv, "trace: run_command:"); |
Johannes Sixt | 13af8cb | 2011-02-04 09:41:58 +0100 | [diff] [blame] | 338 | fflush(NULL); |
Johannes Schindelin | 8852f5d | 2008-07-07 14:41:34 +0100 | [diff] [blame] | 339 | |
Jonathan Nieder | 380395d | 2013-05-02 20:26:08 +0100 | [diff] [blame] | 340 | #ifndef GIT_WINDOWS_NATIVE |
Johannes Sixt | 2b541bf | 2010-01-10 14:11:22 +0100 | [diff] [blame] | 341 | { |
| 342 | int notify_pipe[2]; |
| 343 | if (pipe(notify_pipe)) |
| 344 | notify_pipe[0] = notify_pipe[1] = -1; |
| 345 | |
Shawn O. Pearce | ebcb5d1 | 2007-03-10 03:28:05 -0500 | [diff] [blame] | 346 | cmd->pid = fork(); |
Jeff King | 25043d8 | 2013-03-21 11:45:00 -0400 | [diff] [blame] | 347 | failed_errno = errno; |
Shawn O. Pearce | ebcb5d1 | 2007-03-10 03:28:05 -0500 | [diff] [blame] | 348 | if (!cmd->pid) { |
Johannes Sixt | a5487dd | 2010-01-10 14:07:52 +0100 | [diff] [blame] | 349 | /* |
| 350 | * Redirect the channel to write syscall error messages to |
| 351 | * before redirecting the process's stderr so that all die() |
| 352 | * in subsequent call paths use the parent's stderr. |
| 353 | */ |
| 354 | if (cmd->no_stderr || need_err) { |
| 355 | child_err = dup(2); |
| 356 | set_cloexec(child_err); |
| 357 | } |
| 358 | set_die_routine(die_child); |
Clemens Buchacher | 3bc4181 | 2011-07-27 23:32:34 +0200 | [diff] [blame] | 359 | set_error_routine(error_child); |
Johannes Sixt | a5487dd | 2010-01-10 14:07:52 +0100 | [diff] [blame] | 360 | |
Johannes Sixt | 2b541bf | 2010-01-10 14:11:22 +0100 | [diff] [blame] | 361 | close(notify_pipe[0]); |
| 362 | set_cloexec(notify_pipe[1]); |
| 363 | child_notifier = notify_pipe[1]; |
| 364 | atexit(notify_parent); |
| 365 | |
Shawn O. Pearce | e4507ae | 2007-03-12 14:37:55 -0400 | [diff] [blame] | 366 | if (cmd->no_stdin) |
| 367 | dup_devnull(0); |
| 368 | else if (need_in) { |
Shawn O. Pearce | 4919bf0 | 2007-03-10 03:28:08 -0500 | [diff] [blame] | 369 | dup2(fdin[0], 0); |
Shawn O. Pearce | 9dc09c7 | 2007-03-12 14:37:28 -0400 | [diff] [blame] | 370 | close_pair(fdin); |
Shawn O. Pearce | 4919bf0 | 2007-03-10 03:28:08 -0500 | [diff] [blame] | 371 | } else if (cmd->in) { |
| 372 | dup2(cmd->in, 0); |
| 373 | close(cmd->in); |
Shawn O. Pearce | 95d3c4f | 2006-12-30 21:55:22 -0500 | [diff] [blame] | 374 | } |
Shawn O. Pearce | 4919bf0 | 2007-03-10 03:28:08 -0500 | [diff] [blame] | 375 | |
Christian Couder | ce2cf27 | 2008-03-05 08:35:16 +0100 | [diff] [blame] | 376 | if (cmd->no_stderr) |
| 377 | dup_devnull(2); |
| 378 | else if (need_err) { |
| 379 | dup2(fderr[1], 2); |
| 380 | close_pair(fderr); |
Shawn O. Pearce | 4f41b61 | 2010-02-05 12:57:37 -0800 | [diff] [blame] | 381 | } else if (cmd->err > 1) { |
| 382 | dup2(cmd->err, 2); |
| 383 | close(cmd->err); |
Christian Couder | ce2cf27 | 2008-03-05 08:35:16 +0100 | [diff] [blame] | 384 | } |
| 385 | |
Shawn O. Pearce | e4507ae | 2007-03-12 14:37:55 -0400 | [diff] [blame] | 386 | if (cmd->no_stdout) |
| 387 | dup_devnull(1); |
| 388 | else if (cmd->stdout_to_stderr) |
Shawn O. Pearce | cd83c74 | 2006-12-30 21:55:19 -0500 | [diff] [blame] | 389 | dup2(2, 1); |
Shawn O. Pearce | f4bba25 | 2007-03-12 14:37:45 -0400 | [diff] [blame] | 390 | else if (need_out) { |
| 391 | dup2(fdout[1], 1); |
| 392 | close_pair(fdout); |
| 393 | } else if (cmd->out > 1) { |
| 394 | dup2(cmd->out, 1); |
| 395 | close(cmd->out); |
| 396 | } |
| 397 | |
Alex Riesen | 1568fea | 2007-05-22 23:48:23 +0200 | [diff] [blame] | 398 | if (cmd->dir && chdir(cmd->dir)) |
Thomas Rast | d824cbb | 2009-06-27 17:58:46 +0200 | [diff] [blame] | 399 | die_errno("exec '%s': cd to '%s' failed", cmd->argv[0], |
| 400 | cmd->dir); |
Alex Riesen | ee49314 | 2007-05-22 23:48:47 +0200 | [diff] [blame] | 401 | if (cmd->env) { |
Alex Riesen | 3427b37 | 2007-05-23 22:21:39 +0200 | [diff] [blame] | 402 | for (; *cmd->env; cmd->env++) { |
| 403 | if (strchr(*cmd->env, '=')) |
Felipe Contreras | 4b25d09 | 2009-05-01 12:06:36 +0300 | [diff] [blame] | 404 | putenv((char *)*cmd->env); |
Alex Riesen | 3427b37 | 2007-05-23 22:21:39 +0200 | [diff] [blame] | 405 | else |
| 406 | unsetenv(*cmd->env); |
| 407 | } |
Alex Riesen | ee49314 | 2007-05-22 23:48:47 +0200 | [diff] [blame] | 408 | } |
Shawn O. Pearce | f100089 | 2007-03-10 03:28:00 -0500 | [diff] [blame] | 409 | if (cmd->git_cmd) { |
| 410 | execv_git_cmd(cmd->argv); |
Jeff King | 8dba1e6 | 2009-12-30 05:53:16 -0500 | [diff] [blame] | 411 | } else if (cmd->use_shell) { |
| 412 | execv_shell_cmd(cmd->argv); |
Michal Ostrowski | 77cb17e | 2006-01-10 21:12:17 -0500 | [diff] [blame] | 413 | } else { |
Jeff King | 38f865c | 2012-03-30 03:52:18 -0400 | [diff] [blame] | 414 | sane_execvp(cmd->argv[0], (char *const*) cmd->argv); |
Michal Ostrowski | 77cb17e | 2006-01-10 21:12:17 -0500 | [diff] [blame] | 415 | } |
Clemens Buchacher | fc1b56f | 2011-08-01 19:59:21 +0200 | [diff] [blame] | 416 | if (errno == ENOENT) { |
| 417 | if (!cmd->silent_exec_failure) |
| 418 | error("cannot run %s: %s", cmd->argv[0], |
| 419 | strerror(ENOENT)); |
Johannes Sixt | a5487dd | 2010-01-10 14:07:52 +0100 | [diff] [blame] | 420 | exit(127); |
Clemens Buchacher | fc1b56f | 2011-08-01 19:59:21 +0200 | [diff] [blame] | 421 | } else { |
Johannes Sixt | a5487dd | 2010-01-10 14:07:52 +0100 | [diff] [blame] | 422 | die_errno("cannot exec '%s'", cmd->argv[0]); |
Clemens Buchacher | fc1b56f | 2011-08-01 19:59:21 +0200 | [diff] [blame] | 423 | } |
Josef Weidendorfer | b1bf95b | 2005-07-31 21:17:43 +0200 | [diff] [blame] | 424 | } |
Johannes Sixt | 0ac77ec | 2009-07-04 21:26:40 +0200 | [diff] [blame] | 425 | if (cmd->pid < 0) |
| 426 | error("cannot fork() for %s: %s", cmd->argv[0], |
Jeff King | 25043d8 | 2013-03-21 11:45:00 -0400 | [diff] [blame] | 427 | strerror(errno)); |
Jeff King | afe19ff | 2012-01-07 12:42:43 +0100 | [diff] [blame] | 428 | else if (cmd->clean_on_exit) |
| 429 | mark_child_for_cleanup(cmd->pid); |
Johannes Sixt | 2b541bf | 2010-01-10 14:11:22 +0100 | [diff] [blame] | 430 | |
| 431 | /* |
| 432 | * Wait for child's execvp. If the execvp succeeds (or if fork() |
| 433 | * failed), EOF is seen immediately by the parent. Otherwise, the |
| 434 | * child process sends a single byte. |
| 435 | * Note that use of this infrastructure is completely advisory, |
| 436 | * therefore, we keep error checks minimal. |
| 437 | */ |
| 438 | close(notify_pipe[1]); |
| 439 | if (read(notify_pipe[0], ¬ify_pipe[1], 1) == 1) { |
| 440 | /* |
| 441 | * At this point we know that fork() succeeded, but execvp() |
| 442 | * failed. Errors have been reported to our stderr. |
| 443 | */ |
Jeff King | 1327452 | 2012-11-30 17:40:50 -0500 | [diff] [blame] | 444 | wait_or_whine(cmd->pid, cmd->argv[0]); |
Johannes Sixt | 2b541bf | 2010-01-10 14:11:22 +0100 | [diff] [blame] | 445 | failed_errno = errno; |
| 446 | cmd->pid = -1; |
| 447 | } |
| 448 | close(notify_pipe[0]); |
Jeff King | afe19ff | 2012-01-07 12:42:43 +0100 | [diff] [blame] | 449 | |
Johannes Sixt | 2b541bf | 2010-01-10 14:11:22 +0100 | [diff] [blame] | 450 | } |
Johannes Sixt | ba26f29 | 2007-12-07 22:08:59 +0100 | [diff] [blame] | 451 | #else |
Frank Li | 0d30ad7 | 2009-09-16 10:20:17 +0200 | [diff] [blame] | 452 | { |
Johannes Sixt | 75301f9 | 2010-01-15 21:12:18 +0100 | [diff] [blame] | 453 | int fhin = 0, fhout = 1, fherr = 2; |
Steffen Prohaska | 108ac31 | 2008-07-28 07:50:28 +0200 | [diff] [blame] | 454 | const char **sargv = cmd->argv; |
Johannes Sixt | ba26f29 | 2007-12-07 22:08:59 +0100 | [diff] [blame] | 455 | char **env = environ; |
Johannes Sixt | ba26f29 | 2007-12-07 22:08:59 +0100 | [diff] [blame] | 456 | |
Johannes Sixt | 75301f9 | 2010-01-15 21:12:18 +0100 | [diff] [blame] | 457 | if (cmd->no_stdin) |
| 458 | fhin = open("/dev/null", O_RDWR); |
| 459 | else if (need_in) |
| 460 | fhin = dup(fdin[0]); |
| 461 | else if (cmd->in) |
| 462 | fhin = dup(cmd->in); |
Johannes Sixt | ba26f29 | 2007-12-07 22:08:59 +0100 | [diff] [blame] | 463 | |
Johannes Sixt | 75301f9 | 2010-01-15 21:12:18 +0100 | [diff] [blame] | 464 | if (cmd->no_stderr) |
| 465 | fherr = open("/dev/null", O_RDWR); |
| 466 | else if (need_err) |
| 467 | fherr = dup(fderr[1]); |
Junio C Hamano | 76d44c8 | 2010-02-05 21:08:53 -0800 | [diff] [blame] | 468 | else if (cmd->err > 2) |
| 469 | fherr = dup(cmd->err); |
Johannes Sixt | ba26f29 | 2007-12-07 22:08:59 +0100 | [diff] [blame] | 470 | |
Johannes Sixt | 75301f9 | 2010-01-15 21:12:18 +0100 | [diff] [blame] | 471 | if (cmd->no_stdout) |
| 472 | fhout = open("/dev/null", O_RDWR); |
| 473 | else if (cmd->stdout_to_stderr) |
| 474 | fhout = dup(fherr); |
| 475 | else if (need_out) |
| 476 | fhout = dup(fdout[1]); |
| 477 | else if (cmd->out > 1) |
| 478 | fhout = dup(cmd->out); |
Johannes Sixt | ba26f29 | 2007-12-07 22:08:59 +0100 | [diff] [blame] | 479 | |
Johannes Sixt | 2affea4 | 2009-09-11 19:40:08 +0200 | [diff] [blame] | 480 | if (cmd->env) |
| 481 | env = make_augmented_environ(cmd->env); |
Johannes Sixt | ba26f29 | 2007-12-07 22:08:59 +0100 | [diff] [blame] | 482 | |
| 483 | if (cmd->git_cmd) { |
Steffen Prohaska | 108ac31 | 2008-07-28 07:50:28 +0200 | [diff] [blame] | 484 | cmd->argv = prepare_git_cmd(cmd->argv); |
Jeff King | 8dba1e6 | 2009-12-30 05:53:16 -0500 | [diff] [blame] | 485 | } else if (cmd->use_shell) { |
| 486 | cmd->argv = prepare_shell_cmd(cmd->argv); |
Johannes Sixt | ba26f29 | 2007-12-07 22:08:59 +0100 | [diff] [blame] | 487 | } |
| 488 | |
Johannes Sixt | f9a2743 | 2010-04-11 22:40:12 +0200 | [diff] [blame] | 489 | cmd->pid = mingw_spawnvpe(cmd->argv[0], cmd->argv, env, cmd->dir, |
Johannes Sixt | 75301f9 | 2010-01-15 21:12:18 +0100 | [diff] [blame] | 490 | fhin, fhout, fherr); |
Johannes Sixt | 0ac77ec | 2009-07-04 21:26:40 +0200 | [diff] [blame] | 491 | failed_errno = errno; |
Johannes Sixt | c024beb | 2009-07-04 21:26:42 +0200 | [diff] [blame] | 492 | if (cmd->pid < 0 && (!cmd->silent_exec_failure || errno != ENOENT)) |
Johannes Sixt | 0ac77ec | 2009-07-04 21:26:40 +0200 | [diff] [blame] | 493 | error("cannot spawn %s: %s", cmd->argv[0], strerror(errno)); |
Jeff King | afe19ff | 2012-01-07 12:42:43 +0100 | [diff] [blame] | 494 | if (cmd->clean_on_exit && cmd->pid >= 0) |
| 495 | mark_child_for_cleanup(cmd->pid); |
Johannes Sixt | ba26f29 | 2007-12-07 22:08:59 +0100 | [diff] [blame] | 496 | |
| 497 | if (cmd->env) |
| 498 | free_environ(env); |
| 499 | if (cmd->git_cmd) |
Steffen Prohaska | 108ac31 | 2008-07-28 07:50:28 +0200 | [diff] [blame] | 500 | free(cmd->argv); |
Johannes Sixt | ba26f29 | 2007-12-07 22:08:59 +0100 | [diff] [blame] | 501 | |
Steffen Prohaska | 108ac31 | 2008-07-28 07:50:28 +0200 | [diff] [blame] | 502 | cmd->argv = sargv; |
Johannes Sixt | 75301f9 | 2010-01-15 21:12:18 +0100 | [diff] [blame] | 503 | if (fhin != 0) |
| 504 | close(fhin); |
| 505 | if (fhout != 1) |
| 506 | close(fhout); |
| 507 | if (fherr != 2) |
| 508 | close(fherr); |
Frank Li | 0d30ad7 | 2009-09-16 10:20:17 +0200 | [diff] [blame] | 509 | } |
Johannes Sixt | ba26f29 | 2007-12-07 22:08:59 +0100 | [diff] [blame] | 510 | #endif |
| 511 | |
| 512 | if (cmd->pid < 0) { |
| 513 | if (need_in) |
| 514 | close_pair(fdin); |
| 515 | else if (cmd->in) |
| 516 | close(cmd->in); |
| 517 | if (need_out) |
| 518 | close_pair(fdout); |
| 519 | else if (cmd->out) |
| 520 | close(cmd->out); |
| 521 | if (need_err) |
| 522 | close_pair(fderr); |
bert Dvornik | fc012c2 | 2010-05-20 20:57:52 +0200 | [diff] [blame] | 523 | else if (cmd->err) |
| 524 | close(cmd->err); |
Johannes Sixt | 0ac77ec | 2009-07-04 21:26:40 +0200 | [diff] [blame] | 525 | errno = failed_errno; |
| 526 | return -1; |
Johannes Sixt | ba26f29 | 2007-12-07 22:08:59 +0100 | [diff] [blame] | 527 | } |
Shawn O. Pearce | 4919bf0 | 2007-03-10 03:28:08 -0500 | [diff] [blame] | 528 | |
| 529 | if (need_in) |
| 530 | close(fdin[0]); |
| 531 | else if (cmd->in) |
| 532 | close(cmd->in); |
| 533 | |
Shawn O. Pearce | f4bba25 | 2007-03-12 14:37:45 -0400 | [diff] [blame] | 534 | if (need_out) |
| 535 | close(fdout[1]); |
Johannes Sixt | c20181e | 2008-02-21 23:42:56 +0100 | [diff] [blame] | 536 | else if (cmd->out) |
Shawn O. Pearce | f4bba25 | 2007-03-12 14:37:45 -0400 | [diff] [blame] | 537 | close(cmd->out); |
| 538 | |
Johannes Sixt | f3b33f1 | 2007-10-19 21:47:58 +0200 | [diff] [blame] | 539 | if (need_err) |
| 540 | close(fderr[1]); |
Shawn O. Pearce | 4f41b61 | 2010-02-05 12:57:37 -0800 | [diff] [blame] | 541 | else if (cmd->err) |
| 542 | close(cmd->err); |
Johannes Sixt | f3b33f1 | 2007-10-19 21:47:58 +0200 | [diff] [blame] | 543 | |
Shawn O. Pearce | ebcb5d1 | 2007-03-10 03:28:05 -0500 | [diff] [blame] | 544 | return 0; |
| 545 | } |
| 546 | |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 547 | int finish_command(struct child_process *cmd) |
| 548 | { |
Jeff King | 1327452 | 2012-11-30 17:40:50 -0500 | [diff] [blame] | 549 | return wait_or_whine(cmd->pid, cmd->argv[0]); |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 550 | } |
| 551 | |
Shawn O. Pearce | ebcb5d1 | 2007-03-10 03:28:05 -0500 | [diff] [blame] | 552 | int run_command(struct child_process *cmd) |
| 553 | { |
| 554 | int code = start_command(cmd); |
| 555 | if (code) |
| 556 | return code; |
| 557 | return finish_command(cmd); |
| 558 | } |
| 559 | |
Alex Riesen | 1568fea | 2007-05-22 23:48:23 +0200 | [diff] [blame] | 560 | static void prepare_run_command_v_opt(struct child_process *cmd, |
Alex Riesen | ee49314 | 2007-05-22 23:48:47 +0200 | [diff] [blame] | 561 | const char **argv, |
| 562 | int opt) |
Alex Riesen | 1568fea | 2007-05-22 23:48:23 +0200 | [diff] [blame] | 563 | { |
| 564 | memset(cmd, 0, sizeof(*cmd)); |
| 565 | cmd->argv = argv; |
| 566 | cmd->no_stdin = opt & RUN_COMMAND_NO_STDIN ? 1 : 0; |
| 567 | cmd->git_cmd = opt & RUN_GIT_CMD ? 1 : 0; |
| 568 | cmd->stdout_to_stderr = opt & RUN_COMMAND_STDOUT_TO_STDERR ? 1 : 0; |
Johannes Sixt | c024beb | 2009-07-04 21:26:42 +0200 | [diff] [blame] | 569 | cmd->silent_exec_failure = opt & RUN_SILENT_EXEC_FAILURE ? 1 : 0; |
Jeff King | 8dba1e6 | 2009-12-30 05:53:16 -0500 | [diff] [blame] | 570 | cmd->use_shell = opt & RUN_USING_SHELL ? 1 : 0; |
Clemens Buchacher | 10c6cdd | 2012-01-08 21:41:09 +0100 | [diff] [blame] | 571 | cmd->clean_on_exit = opt & RUN_CLEAN_ON_EXIT ? 1 : 0; |
Alex Riesen | 1568fea | 2007-05-22 23:48:23 +0200 | [diff] [blame] | 572 | } |
| 573 | |
Shawn O. Pearce | f100089 | 2007-03-10 03:28:00 -0500 | [diff] [blame] | 574 | int run_command_v_opt(const char **argv, int opt) |
| 575 | { |
| 576 | struct child_process cmd; |
Alex Riesen | 1568fea | 2007-05-22 23:48:23 +0200 | [diff] [blame] | 577 | prepare_run_command_v_opt(&cmd, argv, opt); |
| 578 | return run_command(&cmd); |
| 579 | } |
| 580 | |
Alex Riesen | ee49314 | 2007-05-22 23:48:47 +0200 | [diff] [blame] | 581 | int run_command_v_opt_cd_env(const char **argv, int opt, const char *dir, const char *const *env) |
| 582 | { |
| 583 | struct child_process cmd; |
| 584 | prepare_run_command_v_opt(&cmd, argv, opt); |
| 585 | cmd.dir = dir; |
| 586 | cmd.env = env; |
| 587 | return run_command(&cmd); |
| 588 | } |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 589 | |
Johannes Sixt | f6b6098 | 2010-03-09 21:00:36 +0100 | [diff] [blame] | 590 | #ifndef NO_PTHREADS |
Johannes Sixt | 0ea1c89 | 2010-03-06 16:40:43 +0100 | [diff] [blame] | 591 | static pthread_t main_thread; |
| 592 | static int main_thread_set; |
| 593 | static pthread_key_t async_key; |
Jeff King | 1ece66b | 2013-04-16 15:50:07 -0400 | [diff] [blame] | 594 | static pthread_key_t async_die_counter; |
Johannes Sixt | 0ea1c89 | 2010-03-06 16:40:43 +0100 | [diff] [blame] | 595 | |
Johannes Sixt | 200a76b | 2010-03-06 16:40:42 +0100 | [diff] [blame] | 596 | static void *run_thread(void *data) |
Johannes Sixt | 618ebe9 | 2007-12-08 22:19:14 +0100 | [diff] [blame] | 597 | { |
| 598 | struct async *async = data; |
Johannes Sixt | f6b6098 | 2010-03-09 21:00:36 +0100 | [diff] [blame] | 599 | intptr_t ret; |
Johannes Sixt | 0ea1c89 | 2010-03-06 16:40:43 +0100 | [diff] [blame] | 600 | |
| 601 | pthread_setspecific(async_key, async); |
Johannes Sixt | f6b6098 | 2010-03-09 21:00:36 +0100 | [diff] [blame] | 602 | ret = async->proc(async->proc_in, async->proc_out, async->data); |
Johannes Sixt | 200a76b | 2010-03-06 16:40:42 +0100 | [diff] [blame] | 603 | return (void *)ret; |
Johannes Sixt | 618ebe9 | 2007-12-08 22:19:14 +0100 | [diff] [blame] | 604 | } |
Johannes Sixt | 0ea1c89 | 2010-03-06 16:40:43 +0100 | [diff] [blame] | 605 | |
| 606 | static NORETURN void die_async(const char *err, va_list params) |
| 607 | { |
| 608 | vreportf("fatal: ", err, params); |
| 609 | |
| 610 | if (!pthread_equal(main_thread, pthread_self())) { |
| 611 | struct async *async = pthread_getspecific(async_key); |
| 612 | if (async->proc_in >= 0) |
| 613 | close(async->proc_in); |
| 614 | if (async->proc_out >= 0) |
| 615 | close(async->proc_out); |
| 616 | pthread_exit((void *)128); |
| 617 | } |
| 618 | |
| 619 | exit(128); |
Johannes Sixt | 618ebe9 | 2007-12-08 22:19:14 +0100 | [diff] [blame] | 620 | } |
Jeff King | 1ece66b | 2013-04-16 15:50:07 -0400 | [diff] [blame] | 621 | |
| 622 | static int async_die_is_recursing(void) |
| 623 | { |
| 624 | void *ret = pthread_getspecific(async_die_counter); |
| 625 | pthread_setspecific(async_die_counter, (void *)1); |
| 626 | return ret != NULL; |
| 627 | } |
| 628 | |
Johannes Sixt | 618ebe9 | 2007-12-08 22:19:14 +0100 | [diff] [blame] | 629 | #endif |
| 630 | |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 631 | int start_async(struct async *async) |
| 632 | { |
Erik Faye-Lund | ae6a560 | 2010-02-05 12:57:38 -0800 | [diff] [blame] | 633 | int need_in, need_out; |
| 634 | int fdin[2], fdout[2]; |
| 635 | int proc_in, proc_out; |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 636 | |
Erik Faye-Lund | ae6a560 | 2010-02-05 12:57:38 -0800 | [diff] [blame] | 637 | need_in = async->in < 0; |
| 638 | if (need_in) { |
| 639 | if (pipe(fdin) < 0) { |
| 640 | if (async->out > 0) |
| 641 | close(async->out); |
| 642 | return error("cannot create pipe: %s", strerror(errno)); |
| 643 | } |
| 644 | async->in = fdin[1]; |
| 645 | } |
| 646 | |
| 647 | need_out = async->out < 0; |
| 648 | if (need_out) { |
| 649 | if (pipe(fdout) < 0) { |
| 650 | if (need_in) |
| 651 | close_pair(fdin); |
| 652 | else if (async->in) |
| 653 | close(async->in); |
| 654 | return error("cannot create pipe: %s", strerror(errno)); |
| 655 | } |
| 656 | async->out = fdout[0]; |
| 657 | } |
| 658 | |
| 659 | if (need_in) |
| 660 | proc_in = fdin[0]; |
| 661 | else if (async->in) |
| 662 | proc_in = async->in; |
| 663 | else |
| 664 | proc_in = -1; |
| 665 | |
| 666 | if (need_out) |
| 667 | proc_out = fdout[1]; |
| 668 | else if (async->out) |
| 669 | proc_out = async->out; |
| 670 | else |
| 671 | proc_out = -1; |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 672 | |
Johannes Sixt | f6b6098 | 2010-03-09 21:00:36 +0100 | [diff] [blame] | 673 | #ifdef NO_PTHREADS |
Anders Melchiorsen | 2c3766f | 2008-08-04 02:30:03 +0200 | [diff] [blame] | 674 | /* Flush stdio before fork() to avoid cloning buffers */ |
| 675 | fflush(NULL); |
| 676 | |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 677 | async->pid = fork(); |
| 678 | if (async->pid < 0) { |
| 679 | error("fork (async) failed: %s", strerror(errno)); |
Erik Faye-Lund | ae6a560 | 2010-02-05 12:57:38 -0800 | [diff] [blame] | 680 | goto error; |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 681 | } |
| 682 | if (!async->pid) { |
Erik Faye-Lund | ae6a560 | 2010-02-05 12:57:38 -0800 | [diff] [blame] | 683 | if (need_in) |
| 684 | close(fdin[1]); |
| 685 | if (need_out) |
| 686 | close(fdout[0]); |
| 687 | exit(!!async->proc(proc_in, proc_out, async->data)); |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 688 | } |
Erik Faye-Lund | ae6a560 | 2010-02-05 12:57:38 -0800 | [diff] [blame] | 689 | |
Jeff King | afe19ff | 2012-01-07 12:42:43 +0100 | [diff] [blame] | 690 | mark_child_for_cleanup(async->pid); |
| 691 | |
Erik Faye-Lund | ae6a560 | 2010-02-05 12:57:38 -0800 | [diff] [blame] | 692 | if (need_in) |
| 693 | close(fdin[0]); |
| 694 | else if (async->in) |
| 695 | close(async->in); |
| 696 | |
| 697 | if (need_out) |
| 698 | close(fdout[1]); |
| 699 | else if (async->out) |
| 700 | close(async->out); |
Johannes Sixt | 618ebe9 | 2007-12-08 22:19:14 +0100 | [diff] [blame] | 701 | #else |
Johannes Sixt | 0ea1c89 | 2010-03-06 16:40:43 +0100 | [diff] [blame] | 702 | if (!main_thread_set) { |
| 703 | /* |
| 704 | * We assume that the first time that start_async is called |
| 705 | * it is from the main thread. |
| 706 | */ |
| 707 | main_thread_set = 1; |
| 708 | main_thread = pthread_self(); |
| 709 | pthread_key_create(&async_key, NULL); |
Jeff King | 1ece66b | 2013-04-16 15:50:07 -0400 | [diff] [blame] | 710 | pthread_key_create(&async_die_counter, NULL); |
Johannes Sixt | 0ea1c89 | 2010-03-06 16:40:43 +0100 | [diff] [blame] | 711 | set_die_routine(die_async); |
Jeff King | 1ece66b | 2013-04-16 15:50:07 -0400 | [diff] [blame] | 712 | set_die_is_recursing_routine(async_die_is_recursing); |
Johannes Sixt | 0ea1c89 | 2010-03-06 16:40:43 +0100 | [diff] [blame] | 713 | } |
| 714 | |
Johannes Sixt | 200a76b | 2010-03-06 16:40:42 +0100 | [diff] [blame] | 715 | if (proc_in >= 0) |
| 716 | set_cloexec(proc_in); |
| 717 | if (proc_out >= 0) |
| 718 | set_cloexec(proc_out); |
Erik Faye-Lund | ae6a560 | 2010-02-05 12:57:38 -0800 | [diff] [blame] | 719 | async->proc_in = proc_in; |
| 720 | async->proc_out = proc_out; |
Johannes Sixt | 200a76b | 2010-03-06 16:40:42 +0100 | [diff] [blame] | 721 | { |
| 722 | int err = pthread_create(&async->tid, NULL, run_thread, async); |
| 723 | if (err) { |
| 724 | error("cannot create thread: %s", strerror(err)); |
| 725 | goto error; |
| 726 | } |
Johannes Sixt | 618ebe9 | 2007-12-08 22:19:14 +0100 | [diff] [blame] | 727 | } |
| 728 | #endif |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 729 | return 0; |
Erik Faye-Lund | ae6a560 | 2010-02-05 12:57:38 -0800 | [diff] [blame] | 730 | |
| 731 | error: |
| 732 | if (need_in) |
| 733 | close_pair(fdin); |
| 734 | else if (async->in) |
| 735 | close(async->in); |
| 736 | |
| 737 | if (need_out) |
| 738 | close_pair(fdout); |
| 739 | else if (async->out) |
| 740 | close(async->out); |
| 741 | return -1; |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 742 | } |
| 743 | |
| 744 | int finish_async(struct async *async) |
| 745 | { |
Johannes Sixt | f6b6098 | 2010-03-09 21:00:36 +0100 | [diff] [blame] | 746 | #ifdef NO_PTHREADS |
Jeff King | 0398fc3 | 2013-01-05 09:52:29 -0500 | [diff] [blame] | 747 | return wait_or_whine(async->pid, "child process"); |
Johannes Sixt | 618ebe9 | 2007-12-08 22:19:14 +0100 | [diff] [blame] | 748 | #else |
Johannes Sixt | 200a76b | 2010-03-06 16:40:42 +0100 | [diff] [blame] | 749 | void *ret = (void *)(intptr_t)(-1); |
| 750 | |
| 751 | if (pthread_join(async->tid, &ret)) |
| 752 | error("pthread_join failed"); |
| 753 | return (int)(intptr_t)ret; |
Johannes Sixt | 618ebe9 | 2007-12-08 22:19:14 +0100 | [diff] [blame] | 754 | #endif |
Johannes Sixt | 2d22c20 | 2007-10-19 21:48:00 +0200 | [diff] [blame] | 755 | } |
Stephan Beyer | ae98a00 | 2009-01-16 20:09:59 +0100 | [diff] [blame] | 756 | |
Aaron Schrab | 5a7da2d | 2013-01-13 00:17:02 -0500 | [diff] [blame] | 757 | char *find_hook(const char *name) |
| 758 | { |
| 759 | char *path = git_path("hooks/%s", name); |
| 760 | if (access(path, X_OK) < 0) |
| 761 | path = NULL; |
| 762 | |
| 763 | return path; |
| 764 | } |
| 765 | |
Stephan Beyer | ae98a00 | 2009-01-16 20:09:59 +0100 | [diff] [blame] | 766 | int run_hook(const char *index_file, const char *name, ...) |
| 767 | { |
| 768 | struct child_process hook; |
Jeff King | 5d40a17 | 2011-09-13 17:58:25 -0400 | [diff] [blame] | 769 | struct argv_array argv = ARGV_ARRAY_INIT; |
| 770 | const char *p, *env[2]; |
Stephan Beyer | ae98a00 | 2009-01-16 20:09:59 +0100 | [diff] [blame] | 771 | char index[PATH_MAX]; |
| 772 | va_list args; |
| 773 | int ret; |
Stephan Beyer | ae98a00 | 2009-01-16 20:09:59 +0100 | [diff] [blame] | 774 | |
Aaron Schrab | 5a7da2d | 2013-01-13 00:17:02 -0500 | [diff] [blame] | 775 | p = find_hook(name); |
| 776 | if (!p) |
Stephan Beyer | cf94ca8 | 2009-01-16 20:10:01 +0100 | [diff] [blame] | 777 | return 0; |
| 778 | |
Aaron Schrab | 5a7da2d | 2013-01-13 00:17:02 -0500 | [diff] [blame] | 779 | argv_array_push(&argv, p); |
| 780 | |
Stephan Beyer | ae98a00 | 2009-01-16 20:09:59 +0100 | [diff] [blame] | 781 | va_start(args, name); |
Jeff King | 5d40a17 | 2011-09-13 17:58:25 -0400 | [diff] [blame] | 782 | while ((p = va_arg(args, const char *))) |
| 783 | argv_array_push(&argv, p); |
Stephan Beyer | ae98a00 | 2009-01-16 20:09:59 +0100 | [diff] [blame] | 784 | va_end(args); |
| 785 | |
Stephan Beyer | ae98a00 | 2009-01-16 20:09:59 +0100 | [diff] [blame] | 786 | memset(&hook, 0, sizeof(hook)); |
Jeff King | 5d40a17 | 2011-09-13 17:58:25 -0400 | [diff] [blame] | 787 | hook.argv = argv.argv; |
Stephan Beyer | ae98a00 | 2009-01-16 20:09:59 +0100 | [diff] [blame] | 788 | hook.no_stdin = 1; |
| 789 | hook.stdout_to_stderr = 1; |
| 790 | if (index_file) { |
| 791 | snprintf(index, sizeof(index), "GIT_INDEX_FILE=%s", index_file); |
| 792 | env[0] = index; |
| 793 | env[1] = NULL; |
| 794 | hook.env = env; |
| 795 | } |
| 796 | |
Johannes Sixt | 0ac77ec | 2009-07-04 21:26:40 +0200 | [diff] [blame] | 797 | ret = run_command(&hook); |
Jeff King | 5d40a17 | 2011-09-13 17:58:25 -0400 | [diff] [blame] | 798 | argv_array_clear(&argv); |
Stephan Beyer | ae98a00 | 2009-01-16 20:09:59 +0100 | [diff] [blame] | 799 | return ret; |
| 800 | } |