繁体   English   中英

父子之间的双向管道通信

[英]Two way pipe communication between parent and child

我正在尝试使用C中的2个管道在父进程和子进程之间创建双向通信。运行在child1中的prog1我想从prog1中读取3 + 4 + 5,然后通过写操作将某些内容发送到prog1,但是我不能。 哪里错了?

/* prog1.c */

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
void
main(void){
    int FD;
unsigned int buf;
char buf[15];

printf("7+5+11=?\n");
FD=read(0,buf,10);
if(FD<0){
    perror("FAIL\n");
exit(EXIT_FAILURE);
}
     printf("TAKED:%s\n",buf);
}

prog2.c

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <sys/wait.h>
void ERR_SYS(const char *msg);
int
main(void){
    char buf[15];
    int pipe1[2];
    int pipe2[2];
    pid_t childpid;

    memset(buf,'\0',14);

    if(pipe(pipe1) < 0 || pipe(pipe2) < 0)
     ERR_SYS("fail_pipe");

    if((childpid = fork()) < 0)
     ERR_SYS("fail_fork");

    if(childpid==0)
    {
      dup2(pipe2[1],1);
          dup2(pipe1[0],0);
      close(pipe1[1]);
          close(pipe2[0]);
      close(pipe2[1]);
      close(pipe1[0]);
          //close(1);
          //close(0);
      execle("./prog1",NULL,NULL,NULL);
    }else{

     close(pipe1[0]);
     close(pipe2[1]);
     read(pipe2[0],buf,4); /*I hope to read 3+4+5*/
     printf("BuF::%s\n",buf);
     write(pipe1[1],"off",3);/*send {off}*/
     wait(NULL);
    }
 return 0;
 }

 void 
 ERR_SYS(const char *msg)
 {
     perror(msg);
     exit(EXIT_FAILURE);
 }

您的程序几乎没有问题:

  1. 您没有在prog2.c中检查读取,写入和执行的返回值
  2. 您正在发送“ 7 + 5 + 11 =?\\ n”字符串,该字符串长10个字符,但仅预期4个字符(3 + 4 + 5甚至不是4个字符)。
  3. 同样,发送的“关闭”字元长度为3个字符,但不包含空终止符。
  4. 当您从fd读取数据时,在两种情况下都不会获得以null结尾的字符串,然后尝试对其进行printf 这是一种不确定行为的快速方法。 从任何文件描述符读取的缓冲区末尾后面放置“ \\ 0”!
  5. 特别是read返回的内容非常重要,因为它告诉您读取了多少个字符。 您永远不应忽略read返回值(在某些情况下,与write函数相同)。

下次还提供一些程序输出,因为这将更容易提供帮助。

在设置管道时,我没有遵循您的所有逻辑,因此我进行了修改,并希望澄清您的原始文档。 我应该注意,无论出于什么原因,我都从外部程序(prog1)的角度命名了fd_in和fd_out(例如,fd_out是prog1写入的位置,fd_in是prog1读取的位置)。

这是我的prog3.c的内容:

...
#define READ_END 0
#define WRITE_END 1
void ERR_SYS(const char *msg);
int main(void) {

    char buff[15];
    char *msg = "hello";
    int fd_out[2];
    int fd_in[2];
    int nbytes;
    pid_t childpid;

    if(pipe(fd_out) < 0 || pipe(fd_in) < 0) {
            ERR_SYS("fail_pipe");
    }

    if((childpid = fork()) < 0) { 
            ERR_SYS("fail_fork");
    }

    if(childpid==0) { //child 
            //connect the write end of fd_out to stdout
            dup2(fd_out[WRITE_END], STDOUT_FILENO);
            close(fd_out[WRITE_END]);
            //connect the read end of fd_in to stdin
            dup2(fd_in[READ_END], STDIN_FILENO);
            close(fd_in[READ_END]);
            //the exec'd prog1 will inherit the streams
            execlp("./prog1", "prog1", NULL); //TODO: check return
    } else { //parent
            nbytes = write(fd_in[WRITE_END], msg, strlen(msg));
            //TODO: handle any errors from write
            nbytes = read(fd_out[READ_END],buff,sizeof(buff)-1);
            //TODO: handle any errors from read
            buff[nbytes] = '\0';
            printf("contents of buff::%s",buff);
    }
    return 0;
}
void ERR_SYS(const char *msg) {
    perror(msg);
    exit(EXIT_FAILURE);
}

这是我的prog1.c的内容

int main(void){
    char buff[15];
    int nbytes;
    nbytes = read(STDIN_FILENO, buff, sizeof(buff)-1);
    buff[nbytes] = '\0';
    printf("%s world\n", buff);
    return 0;

}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM