Почему использование процесса подстановки вызывает зависание? - PullRequest
2 голосов
/ 09 марта 2020

У меня есть программа, которая должна запускать другие программы, возможно заменяя их stdio файлами и каналами. Хотя кажется, что он «работает» в том смысле, что подпроцесс действительно получает данные ввода-вывода из исходного канала, к сожалению, это также вызывает зависание. Подпроцесс, по-видимому, никогда не получает EOF.

Вот минимальное воспроизведение кода, почему оно зависает после печати "Hello World\n"?

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>

int main(int argc, char *argv[]) {

    switch (pid_t pid = fork()) {
    case 0: {
        // in child

        // replace the child's stdin with whatever filename is given as argv[1]
        freopen(argv[1], "r+b", stdin);

        // construct an argv array for to exec, no need for anything except 
        // argv[0] since we want it to use stdin
        char path[]  = "/bin/cat";
        char *args[] = {path, NULL};

        // run it!
        execv(args[0], args);
        abort(); // we should never get here!
    }
    case -1:
        // error
        return -1;
    default: {
        // in parent, just wait for the sub-process to terminate
        int status;
        const auto r = waitpid(pid, &status, __WALL);

        if (r == -1) {
            perror("waitpid");
            return -1;
        }
        break;
    }
    }
}
# runs printf creating a pipe, which is then passed as the argv of my test program
./test >(printf "Hello\n")

1 Ответ

1 голос
/ 09 марта 2020
./test <(printf "Hello\n")

Переключитесь на >(...) на <(...) для чтения с printf вместо записи в него.

freopen(argv[1], "rb", stdin);

Не используйте r+. Вы только читаете из файла, так что сделайте это r.

...