如何在c中执行任意管道并继续

时间:2013-01-26 01:10:14

标签: c exec fork pipe gnu

我正在尝试fork并在子进程中执行两个或更多个管道命令。我的想法是使用while循环在一个进程中连续分叉和执行命令,同时在另一个进程中继续循环。这是我的代码:

void
execute_pipe_command(command_t *c)
{
    command_t command = *c;
    pid_t pid = fork();
    if(pid > 0) {
        int status;
        while(waitpid(pid, &status, 0) < 0)
            continue;
        if(!WIFEXITED(status))
            error(1, errno, "Child exit error");
        command->status = WEXITSTATUS(status);
        return;
    } else if (pid == 0) {
        while(command->type == PIPE_COMMAND)
        {
            int fd[2]; pipe(fd);
            pid = fork();
            if(pid > 0) {
                close(fd[0]);
                dup2(fd[1], STDOUT_FILENO);
                char **args = command->u.command[1]->u.word;
                execvp(args[0], args);
            } else if (pid == 0) {
                close(fd[1]);
                dup2(fd[0], STDIN_FILENO);
                command = command->u.command[0];
                continue;
            } else {
                error(1, errno, "forking error");
            }
        }
        char **args = command->u.word;
        execvp(args[0], args);
    } else {
        error(1, errno, "forking error");
    }
}

Command是一个保存它的类型的结构,如果它是一个管道命令,它保存左右子命令。否则,如果它是一个简单的命令,它将包含构成命令的字符串数组。

当我使用像ls | cat之类的管道命令调用此函数时,它应该执行命令,但它的行为很奇怪。前两个管道命令将运行但不会将控制权交还给程序。相反,它会挂起。后续命令只是被忽略。因此,如果我给这个ls | cat | wc这个函数将打印ls并且在我给出SIGINT之前不会退出。

我对发生的事情感到很困惑。如果有人能够指出问题,我会很感激。

1 个答案:

答案 0 :(得分:0)

while (command->type == PIPE_COMMAND)永远是真的!这就是它挂起的方式。