2 #include "run-command.h"
5 static inline void close_pair(int fd
[2])
11 static inline void dup_devnull(int to
)
13 int fd
= open("/dev/null", O_RDWR
);
18 int start_command(struct child_process
*cmd
)
20 int need_in
, need_out
, need_err
;
21 int fdin
[2], fdout
[2], fderr
[2];
24 * In case of errors we must keep the promise to close FDs
25 * that have been passed in via ->in and ->out.
28 need_in
= !cmd
->no_stdin
&& cmd
->in
< 0;
33 return -ERR_RUN_COMMAND_PIPE
;
38 need_out
= !cmd
->no_stdout
39 && !cmd
->stdout_to_stderr
42 if (pipe(fdout
) < 0) {
47 return -ERR_RUN_COMMAND_PIPE
;
52 need_err
= !cmd
->no_stderr
&& cmd
->err
< 0;
54 if (pipe(fderr
) < 0) {
63 return -ERR_RUN_COMMAND_PIPE
;
80 return -ERR_RUN_COMMAND_FORK
;
96 else if (cmd
->stdout_to_stderr
)
101 } else if (cmd
->out
> 1) {
113 if (cmd
->dir
&& chdir(cmd
->dir
))
114 die("exec %s: cd to %s failed (%s)", cmd
->argv
[0],
115 cmd
->dir
, strerror(errno
));
117 for (; *cmd
->env
; cmd
->env
++) {
118 if (strchr(*cmd
->env
, '='))
119 putenv((char*)*cmd
->env
);
125 execv_git_cmd(cmd
->argv
);
127 execvp(cmd
->argv
[0], (char *const*) cmd
->argv
);
129 die("exec %s failed.", cmd
->argv
[0]);
148 static int wait_or_whine(pid_t pid
)
152 pid_t waiting
= waitpid(pid
, &status
, 0);
157 error("waitpid failed (%s)", strerror(errno
));
158 return -ERR_RUN_COMMAND_WAITPID
;
161 return -ERR_RUN_COMMAND_WAITPID_WRONG_PID
;
162 if (WIFSIGNALED(status
))
163 return -ERR_RUN_COMMAND_WAITPID_SIGNAL
;
165 if (!WIFEXITED(status
))
166 return -ERR_RUN_COMMAND_WAITPID_NOEXIT
;
167 code
= WEXITSTATUS(status
);
174 int finish_command(struct child_process
*cmd
)
176 return wait_or_whine(cmd
->pid
);
179 int run_command(struct child_process
*cmd
)
181 int code
= start_command(cmd
);
184 return finish_command(cmd
);
187 static void prepare_run_command_v_opt(struct child_process
*cmd
,
191 memset(cmd
, 0, sizeof(*cmd
));
193 cmd
->no_stdin
= opt
& RUN_COMMAND_NO_STDIN
? 1 : 0;
194 cmd
->git_cmd
= opt
& RUN_GIT_CMD
? 1 : 0;
195 cmd
->stdout_to_stderr
= opt
& RUN_COMMAND_STDOUT_TO_STDERR
? 1 : 0;
198 int run_command_v_opt(const char **argv
, int opt
)
200 struct child_process cmd
;
201 prepare_run_command_v_opt(&cmd
, argv
, opt
);
202 return run_command(&cmd
);
205 int run_command_v_opt_cd(const char **argv
, int opt
, const char *dir
)
207 struct child_process cmd
;
208 prepare_run_command_v_opt(&cmd
, argv
, opt
);
210 return run_command(&cmd
);
213 int run_command_v_opt_cd_env(const char **argv
, int opt
, const char *dir
, const char *const *env
)
215 struct child_process cmd
;
216 prepare_run_command_v_opt(&cmd
, argv
, opt
);
219 return run_command(&cmd
);
222 int start_async(struct async
*async
)
226 if (pipe(pipe_out
) < 0)
227 return error("cannot create pipe: %s", strerror(errno
));
230 if (async
->pid
< 0) {
231 error("fork (async) failed: %s", strerror(errno
));
232 close_pair(pipe_out
);
237 exit(!!async
->proc(pipe_out
[1], async
->data
));
239 async
->out
= pipe_out
[0];
244 int finish_async(struct async
*async
)
248 if (wait_or_whine(async
->pid
))
249 ret
= error("waitpid (async) failed");