]> git.ipfire.org Git - thirdparty/git.git/blobdiff - run-command.c
diff --quiet
[thirdparty/git.git] / run-command.c
index 1fb7fa5a8d6e0fb89d41a1b05e344bc62463926f..bef9775e0807200e07c9780c69e3e1bda0c6c874 100644 (file)
@@ -2,18 +2,44 @@
 #include "run-command.h"
 #include "exec_cmd.h"
 
-int run_command(struct child_process *cmd)
+static inline void close_pair(int fd[2])
 {
-       pid_t pid = fork();
+       close(fd[0]);
+       close(fd[1]);
+}
+
+int start_command(struct child_process *cmd)
+{
+       int need_in = !cmd->no_stdin && cmd->in < 0;
+       int fdin[2];
+
+       if (need_in) {
+               if (pipe(fdin) < 0)
+                       return -ERR_RUN_COMMAND_PIPE;
+               cmd->in = fdin[1];
+               cmd->close_in = 1;
+       }
 
-       if (pid < 0)
+       cmd->pid = fork();
+       if (cmd->pid < 0) {
+               if (need_in)
+                       close_pair(fdin);
                return -ERR_RUN_COMMAND_FORK;
-       if (!pid) {
+       }
+
+       if (!cmd->pid) {
                if (cmd->no_stdin) {
                        int fd = open("/dev/null", O_RDWR);
                        dup2(fd, 0);
                        close(fd);
+               } else if (need_in) {
+                       dup2(fdin[0], 0);
+                       close_pair(fdin);
+               } else if (cmd->in) {
+                       dup2(cmd->in, 0);
+                       close(cmd->in);
                }
+
                if (cmd->stdout_to_stderr)
                        dup2(2, 1);
                if (cmd->git_cmd) {
@@ -23,9 +49,23 @@ int run_command(struct child_process *cmd)
                }
                die("exec %s failed.", cmd->argv[0]);
        }
+
+       if (need_in)
+               close(fdin[0]);
+       else if (cmd->in)
+               close(cmd->in);
+
+       return 0;
+}
+
+int finish_command(struct child_process *cmd)
+{
+       if (cmd->close_in)
+               close(cmd->in);
+
        for (;;) {
                int status, code;
-               pid_t waiting = waitpid(pid, &status, 0);
+               pid_t waiting = waitpid(cmd->pid, &status, 0);
 
                if (waiting < 0) {
                        if (errno == EINTR)
@@ -33,7 +73,7 @@ int run_command(struct child_process *cmd)
                        error("waitpid failed (%s)", strerror(errno));
                        return -ERR_RUN_COMMAND_WAITPID;
                }
-               if (waiting != pid)
+               if (waiting != cmd->pid)
                        return -ERR_RUN_COMMAND_WAITPID_WRONG_PID;
                if (WIFSIGNALED(status))
                        return -ERR_RUN_COMMAND_WAITPID_SIGNAL;
@@ -47,6 +87,14 @@ int run_command(struct child_process *cmd)
        }
 }
 
+int run_command(struct child_process *cmd)
+{
+       int code = start_command(cmd);
+       if (code)
+               return code;
+       return finish_command(cmd);
+}
+
 int run_command_v_opt(const char **argv, int opt)
 {
        struct child_process cmd;