It seems that OS X has an error when using poll () on a named pipe (FIFO) ... can the expert confirm?

I'm trying to poll from a set of named pipes for a while, and now I get an immediate POLLNVAL response to any named pipe file descriptor. Having found this blog post about a broken poll in OS X , I am pretty sure that this is a bug bug in OS X.

I am already planning on switching my code to using UDP sockets, but I wanted to ask SO to verify this. a) that I am sure that it is really broken, and b) for documentation purposes.

Here is a stripped down version of the code I wrote (although the code in the link above that I tested says pretty well):

#includes
...
....
#

static const char* first_fifo_path = "/tmp/fifo1";
static const char* second_fifo_path = "/tmp/fifo2";

int setup_read_fifo(const char* path){
  int fifo_fd = -1;

  if( mkfifo(path, S_IRWXU | S_IRWXG | S_IRWXO) )
    perror("error calling mkfifo()... already exists?\n");

  if((fifo_fd = open(path, O_RDONLY | O_NDELAY)) < 0)
    perror("error calling open()");

  return fifo_fd;
}

void do_poll(int fd1, int fd2){
  char inbuf[1024];
  int num_fds = 2;
  struct pollfd fds[num_fds];
  int timeout_msecs = 500;

  fds[0].fd = fd1;
  fds[1].fd = fd2;
  fds[0].events = POLLIN;
  fds[1].events = POLLIN;

  int ret;
  while((ret = poll(fds, num_fds, timeout_msecs)) >= 0){
    if(ret < 0){
      printf("Error occured when polling\n");
      printf("ret %d, errno %d\n", ret, errno);
      printf("revents =  %xh : %xh \n\n", fds[0].revents, fds[1].revents);
    }

   if(ret == 0){
      printf("Timeout Occurred\n");
      continue;
    }                                                                   

    for(int i = 0; i< num_fds; i++){
      if(int event = fds[i].revents){

        if(event & POLLHUP)
          printf("Pollhup\n");
        if(event & POLLERR)
          printf("POLLERR\n");
        if(event & POLLNVAL)
          printf("POLLNVAL\n");

        if(event & POLLIN){
          read(fds[i].fd, inbuf, sizeof(inbuf));
          printf("Received: %s", inbuf);
        }
      }
    }
  }
}

int main (int argc, char * const argv[]) {
  do_poll(setup_read_fifo(first_fifo_path), setup_read_fifo(second_fifo_path));
  return 0;
}

these outputs:

$ ./executive 
POLLNVAL
POLLNVAL
POLLNVAL
POLLNVAL
POLLNVAL
POLLNVAL
POLLNVAL
POLLNVAL
POLLNVAL
...

ad nauseam.

- ? ?

+3
3

, . , , Linux OpenBSD , OS X.

+3

OSX 10.4.1, . ( , ) Linux. , - http://www.virtualbox.de/changeset/12347 - .

+3

Yup, . , - 10.4, . Glib configure.in , , . (, , glib , fifos.)

+1

Source: https://habr.com/ru/post/1703913/


All Articles