重定向 stdin 和 stdout in child in c

Redirect stdin and stdout in child in c

我需要创建一个客户端-服务器应用程序(使用套接字),基本思路是:

"other app" 是一个闭源计算器(一种从标准输入读取 4 5 + 类型并打印 9 的计算器)。

我正在尝试在服务器上创建双管道,fork,并使用此管道重定向计算的标准输入和标准输出:

if(!fork())
{

    close(STDOUT_FILENO);
    close(STDIN_FILENO);

    dup2(outfd[0], STDIN_FILENO);
    dup2(infd[1], STDOUT_FILENO);

    close(outfd[0]); /* Not required for the child */
    close(outfd[1]);
    close(infd[0]);
    close(infd[1]);

    system("./calc/calc ");
    exit(0);
}

并从服务器写入一个管道并读取另一个管道

    close(outfd[0]); /* These are being used by the child */
    close(infd[1]);

    char c;
    do
    {
        c=getchar();
        write(outfd[1],&c,1);
    }while(c!='\n');
    input[read(infd[0],input,100)] = 0; /* Read from child’s stdout */

    printf("%s",input);

    close(outfd[1]);
    close(infd[0]);

我知道这很不完整,但我认为它至少应该打印 calc 中第一行的输出。

(完整代码)

#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>

int main()
{

int outfd[2];
int infd[2];

pipe(outfd); /* Where the parent is going to write to */
pipe(infd); /* From where parent is going to read */

if(!fork())
{

    close(STDOUT_FILENO);
    close(STDIN_FILENO);

    dup2(outfd[0], STDIN_FILENO);
    dup2(infd[1], STDOUT_FILENO);

    close(outfd[0]); /* Not required for the child */
    close(outfd[1]);
    close(infd[0]);
    close(infd[1]);

    //system("/usr/bin/bc -q");
    system("./calc/calc ");
    exit(0);
}
else
{

    char input[100];

    close(outfd[0]); /* These are being used by the child */
    close(infd[1]);

    //write(outfd[1],"2^32\n",5); /* Write to child’s stdin */
    //write(outfd[1],"2 4 +\n",6);
    char c;
    do
    {
        c=getchar();
        write(outfd[1],&c,1);
    }while(c!='\n');
    input[read(infd[0],input,100)] = 0; /* Read from child’s stdout */

    printf("%s",input);

    close(outfd[1]);
    close(infd[0]);

}
return 0;

它非常基础,但仅用于测试。当我执行它时,它什么也没做。

如果我 ps -e | grep calc 在执行过程中,我可以看到它正在运行,但无论我输入什么似乎都没有做任何事情。

尝试移动:

close(outfd[1]);

do-while 循环和 input[read(infd[0],input,100)] = 0; 之间。

这将在 calc 的标准输入上发送 EOF。它会退出,这会刷新它的输出缓冲区,所以会有一些东西可以读取。

您的代码陷入僵局:您在关闭管道之前等待输出,但它在发送输出之前等待您关闭管道。