4

しばらくの間、名前付きパイプのセットからポーリングしようとしていますが、名前付きパイプ ファイル記述子で POLLNVAL の即時応答を取得し続けています。OS X の壊れたポーリングに関するこのブログ投稿を見つけた後、これは OS X のバグ バグであると確信しています。

私はすでにコードをUDPソケットを使用するように切り替えることを計画していますが、これについてa)本当に壊れていることを確認するため、およびb)文書化の目的でSOに検証を依頼したかったのです。

これは私が書いたコードの簡略化されたバージョンです(ただし、私がテストした上記のリンクのコードは、それをかなりうまく綴っています):

#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;
}

これは以下を出力します:

$ ./エグゼクティブ
POLLNVAL
POLLNVAL
POLLNVAL
POLLNVAL
POLLNVAL
POLLNVAL
POLLNVAL
POLLNVAL
POLLNVAL
...

吐き気。

他の誰かがこれに遭遇しますか?これは本当のバグですよね?

4

3 に答える 3

4

これは本物のバグのようです。Linux と OpenBSD では期待どおりに動作し、OS X で説明したように失敗します。

于 2009-02-26T19:19:17.023 に答える