gpt4 book ai didi

C:被 dup2() 困住了 :-(

转载 作者:行者123 更新时间:2023-12-01 15:05:37 25 4
gpt4 key购买 nike

我准备了一个使用管道模拟 shell (cmd) 接口(interface)的程序。该程序有两个版本:1. Using one pipe(使用一根管道从父子通信)2. 使用double pipe(父到子和子到父使用两个管道进行通信)。

因此,第一个程序提供了所需的界面并按我想要的方式工作,但我无法在第二个程序(使用 dup2() 和类似程序)中达到相同的结果(界面)。

因此,我转达了您的帮助并将这两个代码放在下面。

B.S.:您可以使用这些命令以相同的方式编译和尝试这两个程序:

$ gcc prog1.c -o prog1

接下来让我们运行:

$ ./prog1

接下来让我们运行新终端并尝试将一些数据写入 input.txt:

$ echo pwd > input.txt

然后在第一个终端中观察结果。

(这对第一个程序来说工作正常,但我需要在第二个程序中使用相同的界面)

第一个程序的代码(工作正常):

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>

void do_child(int data_pipe[]) {
int c;
int rc;
close(data_pipe[1]);

dup2(data_pipe[0], 0); /* This string provides the desired interface of the program */

char* cmd[] = { "bash", (char *)0 };
execvp("bash", cmd);

while ((rc = read(data_pipe[0], &c, 1)) > 0)
{
putchar(c);
}
exit(0);
}

void do_parent(int data_pipe[])
{
int c;
int rc;
FILE *in;

close(data_pipe[0]);

while (1)
{
in = fopen("input.txt", "r");
while ((c = fgetc(in)) > 0)
{
rc = write(data_pipe[1], &c, 1);
if (rc == -1)
{
perror("Parent: write");
close(data_pipe[1]);
exit(1);
}
}
fclose(in);
}
close(data_pipe[1]);
exit(0);
}

int main(int argc, char* argv[])
{
int data_pipe[2];
int pid;
int rc;

umask(0);
mknod("input.txt", S_IFIFO|0666, 0);

rc = pipe(data_pipe);
if (rc == -1)
{
perror("pipe");
exit(1);
}
pid = fork();
switch (pid)
{
case -1:
perror("fork");
exit(1);
case 0:
do_child(data_pipe);
default:
do_parent(data_pipe);
}
return 0;
}

第二个程序的代码(需要更正一点):

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>

/* Original version got from http://www.iakovlev.org */

int parent_to_child[2];
int child_to_parent[2];

void do_parent()
{
int c;
char ch;
int rc;
FILE *in;

close(child_to_parent[1]); /* we don't need to write to this pipe. */
close(parent_to_child[0]); /* we don't need to read from this pipe. */

while (1)
{
in = fopen("input.txt", "r");
while ((c = fgetc(in)) > 0) {
ch = (char)c;
/* write to child */
rc = write(parent_to_child[1], &ch, 1);
if (rc == -1) {
perror("child: write");
close(child_to_parent[0]);
close(parent_to_child[1]);
exit(1);
}
/* read back from child */
rc = read(child_to_parent[0], &ch, 1);
c = (int)ch;
if (rc <= 0) {
perror("parent: read");
close(child_to_parent[0]);
close(parent_to_child[1]);
exit(1);
}
putchar(c);
}
fclose(in);
}
close(child_to_parent[0]);
close(parent_to_child[1]);
exit(0);
}

void do_child()
{
int c;
char ch;
int rc;

close(parent_to_child[1]); /* we don't need to write to this pipe. */
close(child_to_parent[0]); /* we don't need to read from this pipe. */

//dup2(parent_to_child[0], STDIN_FILENO);
//dup2(child_to_parent[1], STDOUT_FILENO);

/* Some dup2() routines must be added here
to get this working as the first program above */

char* cmd[] = { "bash", (char *)0 };
execvp("bash", cmd);

while (read(parent_to_child[0], &ch, 1) > 0) {
c = (int)ch;
ch = (char)c;
putchar(ch);
rc = write(child_to_parent[1], &ch, 1);
if (rc == -1) {
perror("child: write");
close(parent_to_child[0]);
close(child_to_parent[1]);
exit(1);
}
}
close(parent_to_child[0]);
close(child_to_parent[1]);
exit(0);
}

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

umask(0);
mknod("input.txt", S_IFIFO|0666, 0);

rc = pipe(parent_to_child);
if (rc == -1) {
perror("main: pipe parent_to_child");
exit(1);
}

rc = pipe(child_to_parent);
if (rc == -1) {
perror("main: pipe child_to_parent");
exit(1);
}

pid = fork();
switch (pid) {
case -1:
perror("main: fork");
exit(1);
case 0:
do_child();
default:
do_parent();
}
return 0;
}

最佳答案

主要区别在于:

    while ((c = fgetc(in)) > 0) {
ch = (char)c;
/* write to child */
rc = write(parent_to_child[1], &ch, 1);
/* .... */
/* read back from child */
rc = read(child_to_parent[0], &ch, 1);
/* .... */
putchar(c);
}

因为我懒得为你编译/测试,我只是推测父级在 read() 中被阻塞了。因为另一方(子进程中的 bash)不能保证回显每个写入的字符。或者它甚至可能决定打印您的代码无法处理的多个字符。

在这种情况下,您必须轮询() 以查看是否有可读取的内容。或者使用 fcntl(F_SETFL) 在 child_to_parent[0] 上设置 O_NONBLOCK 标志,当 errno==EAGAIN 时,只需跳过 read() 分支。并在仍有字符要读取时循环。

Edit1. 顺便说一句,我完全错过了这一部分:你在 do_parent() 循环中必须在 child_to_parent[0] 中使用 poll() ,因为即使您不向其写入任何字符,另一方也可能会写入一些内容(read() 不会阻塞)。

关于C:被 dup2() 困住了 :-(,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3078688/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com