1

私は問題を抱えています:時々(定期的ではありませんが)recvが戻り-1、モードerrno == EAGAINで使用epollしている間。edge-triggeredコードの一部:

server_sock = startup(&port);

if ( (epollfd = epoll_create(4096)) < 0) {
    perror("epoll_create error");
    exit(EXIT_FAILURE);
}

ev.events = EPOLLIN | EPOLLET;
ev.data.fd = server_sock;
if (epoll_ctl(epollfd, EPOLL_CTL_ADD, server_sock, &ev) == -1) {
    perror("epoll_ctl: server_sock");
    exit(EXIT_FAILURE);
}

while (1) {
    int nfds = epoll_wait(epollfd, events, 4096, -1);
    if (nfds == -1) {
        perror("epoll_wait");
        exit(EXIT_FAILURE);
    }

    for (int i = 0; i < nfds; i++) {
        if (events[i].data.fd == server_sock) {
            client_sock = accept(server_sock,
                         (struct sockaddr *)&client_name,
                         (socklen_t *)(&client_name_len));

        if (client_sock == -1) //server overloaded
            continue;

        if (events[i].events & EPOLLIN) {
            std::cout << "EPOLLIN on " << client_sock << std::endl;
        }

        Arch::set_nonblocking(client_sock);
        ev.events = EPOLLIN | EPOLLRDHUP | EPOLLET; //input data and connection closing
        ev.data.fd = client_sock;

        if (epoll_ctl(epollfd, EPOLL_CTL_ADD, client_sock, &ev) == -1) {
            perror("epoll_ctl: client_socket");
            exit(EXIT_FAILURE);
        }

        accept_request(client_sock);

        } else {
            if (events[i].events & EPOLLRDHUP) {
                epoll_ctl(epollfd, EPOLL_CTL_DEL, events[i].data.fd, &ev);
            }
        }
    }
}

startup(&port)ノンブロッキングソケット、ポートとのバインドなどを作成します。私のスクリプトは次のデータを送信します: GET /connect?id=1&secret=1 HTTP/1.0\r\n\r\nしかし時々この関数でrecv返さ-1れます(内部を呼び出すaccept_request):

/**********************************************************************/
/* Get a line from a socket, whether the line ends in a newline,
 * carriage return, or a CRLF combination.  Terminates the string read
 * with a null character.  If no newline indicator is found before the
 * end of the buffer, the string is terminated with a null.  If any of
 * the above three line terminators is read, the last character of the
 * string will be a linefeed and the string will be terminated with a
 * null character.
 * Parameters: the socket descriptor
 *             the buffer to save the data in
 *             the size of the buffer
 * Returns: the number of bytes stored (excluding null) */
/**********************************************************************/
int get_line(int sock, char *buf, int size) {
    int i = 0;
    char c = '\0';
    int n;

    while ((i < size - 1) && (c != '\n')) {
        n = recv(sock, &c, 1, 0);
        //debug
        std::cout << "n = " << n << std::endl;
        if (n > 0) {
            if (c == '\r') {
                n = recv(sock, &c, 1, MSG_PEEK);
                if ((n > 0) && (c == '\n'))
                    recv(sock, &c, 1, 0);
                else
                    c = '\n';
            }
            buf[i] = c;
            i++;
        } else {
            //debug
            if (errno == EWOULDBLOCK)
                std::cout << "EWOULDBLOCK" << std::endl;
            c = '\n';
        }
    }
    buf[i] = '\0';

    return(i);
}

epollのmanページに書かれているように、私は取得するまで読み取り/書き込みを行う必要がありますEAGAINが、すでに取得しています。バッファが空にならないことを確認します。私は何を間違えますか?

UPD:興味深いことがわかりました。そのような状況が発生した場合、コードsleep(1)で使用し、recc(...)期待するデータを取得します。それは汚いトリックです。この問題を解決するためのより優雅なアプローチはありますか?

4

1 に答える 1

1

recv()その場合、最初にが戻るのは完全に正常ですEAGAINepoll()それがまだ読めるかどうかをあなたに決して言わなかった。

非ブロッキングソケットを使用している場合は、すべてのシングルrecv()を処理できるように準備する必要があります。EAGAIN誤ったウェイクアップが発生する可能性があるため、のようなAPI select()poll()またはepoll()ソケットが読み取り可能であると通知する場合は常に、「読み取り可能である可能性があります。試してみてください」とだけ表示されます。

于 2010-09-08T04:07:18.977 に答える