带有两个管道的双向消息传递中的SIGPIPE

时间:2017-02-24 21:51:24

标签: c pipe multiprocessing sigpipe

您好我要开发这个程序,创建4个孩子,并按顺序让他们做一个简单的操作。第一个是总和,第二个是其余的,第三个是乘法,第四个是除法。父亲会在套接字上写下他想让孩子“计算”的两个数字的字符串,每个孩子都应该读取这个字符串,提取数字和操作。显然,作为两个管道,由于孩子的阅读,父亲每次都要写字符串。我真的不明白为什么在第二次迭代中,我在父亲的写作上收到了一个SIGPIPE。有人能解释一下为什么吗?我在调试时失去了3天,但我没有找到任何东西。非常感谢你。

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

/*
fd_0 padre escribe y hijo lee ==== padre cierra fd_0[0] y hijo cierra fd_0[1]
fd_1 hijo escribe y padre lee ===  padre cierra fd_1[1] y hijo cierra fd_1[0]
*/


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


    char * str = malloc(100*sizeof(char));//hijo
    char readbuffer_h[150];

    char * stringa = malloc(100*sizeof(char));//padre
    char readbuffer_p[150];


    int a,b;
    int x,y;
    int n = 4;
    int i,status,nbytes, pipe_status;
    int pid, ppid,yo,padre;
    int fd_0[2], fd_1[2] ;



    pipe_status=pipe(fd_0);
    if(pipe_status==- 1) {
        perror("Error creando la tuberia 0\n");
        exit(EXIT_FAILURE);
    }


    pipe_status=pipe(fd_1);
    if(pipe_status== -1) {
        perror("Error creando la tuberia 1 \n");
        exit(EXIT_FAILURE);
    }   



    for(i=0; i< n; i++){

        if ((pid=fork()) <0 ){
        printf("Error al emplear fork\n");
        exit(EXIT_FAILURE);
        }

/*-------------------------------------------------------------------------------------------------------------------------------------------------*/

        else if (pid ==0){// soy el hijo


            yo = getpid();
            padre = getppid();
            printf("HIJO: %d, mi padre es: %d\n", yo, padre);    

            close(fd_0[1]);
            close(fd_1[0]);

            //TODO


            nbytes = read(fd_0[0], readbuffer_h, sizeof(readbuffer_h));

            sscanf(readbuffer_h, "%d,%d", &x, &y);


            switch(i) {

                case 0 :
                    //TODO
                    sprintf(str, "Datos enviados a través de la tuberia por el proceso hijo: %d. Primero operando: %d, segundo operando: %d. La suma es %d", yo,x,y,(x+y));
                    break;

                case 1 :
                    //TODO
                    sprintf(str, "Datos enviados a través de la tuberia por el proceso hijo: %d. Primero operando: %d, segundo operando: %d. La resta es %d", yo,x,y,(x-y));
                    break;          

                case 2 :
                    //TODO
                    sprintf(str, "Datos enviados a través de la tuberia por el proceso hijo: %d. Primero operando: %d, segundo operando: %d. El producto es %d", yo,x,y,(x*y));
                    break;

                case 3 :
                    //TODO
                    sprintf(str, "Datos enviados a través de la tuberia por el proceso hijo: %d. Primero operando: %d, segundo operando: %d. El cociente es %d", yo,x,y,(x/y));
                    break;

            }


            write(fd_1[1], str, strlen(str));


            exit(EXIT_SUCCESS); 
        }

/*-------------------------------------------------------------------------------------------------------------------------------------------------*/


        else{ //soy el padre
            yo = getpid();
            printf("PADRE:%d\n", yo);

            a = 3; b = 4;

            close(fd_0[0]);
            close(fd_1[1]);


            sprintf(stringa,"%d,%d",a,b);
            printf("Stringa padre : %s\n", stringa);
                fflush(stdout);

            write(fd_0[1],stringa,strlen(stringa)); // questa write non va a buon fine


            wait(&status);

            read(fd_1[0], readbuffer_p, sizeof(readbuffer_p));
            printf("%s\n",readbuffer_p);
                fflush(stdout);

        }


    }

close(fd_0[0]);
close(fd_0[1]);
close(fd_1[0]);
close(fd_1[1]);


return 0;
}

1 个答案:

答案 0 :(得分:1)

通过尝试使用相同的管道与每个孩子进行交流,你会遇到麻烦。

您可以在程序开头创建两个管道。在循环的第一次迭代中,父分叉,子代继承所有父代的打开文件描述符。孩子关闭它不需要的管道末端,父母关闭管道末端不需要。沟通按照预期发生(我想) - 到目前为止一切顺利。

但现在考虑循环的第二次迭代。你再次分叉,孩子再次继承父的打开文件描述符。但是现在,孩子想要使用的文件描述符在循环的前一次迭代中由父级关闭。我有点惊讶的是,当孩子尝试使用这些文件描述符时,他们会得到EPIPE而不是EBADF,但我对它的读取尝试失败并不感到惊讶。

最干净的事情是为每个孩子创建一对新管道,而不是尝试重用一组管道。如果您只想使用一对,那么父进程必须避免关闭任何管道末端(如果您愿意,子进程可能会关闭它们的副本)。