与epoll异步连接和断开连接(Linux)

时间:2012-04-17 08:00:03

标签: linux sockets asynchronous tcp epoll

我需要使用epoll for Linux为tcp客户端进行异步连接和断开连接。有分机。 Windows中的功能,如ConnectEx,DisconnectEx,AcceptEx等... 在tcp服务器标准接受函数正在工作,但在tcp客户端无法正常工作连接和断开...所有套接字都是非阻塞的。

我该怎么做?

谢谢!

4 个答案:

答案 0 :(得分:30)

要做一个非阻塞的connect(),假设套接字已经被非阻塞:

int res = connect(fd, ...);
if (res < 0 && errno != EINPROGRESS) {
    // error, fail somehow, close socket
    return;
}

if (res == 0) {
    // connection has succeeded immediately
} else {
    // connection attempt is in progress
}

对于第二种情况,其中connect()与EINPROGRESS失败(并且仅在这种情况下),您必须等待套接字可写,例如对于epoll指定您正在等待此套接字上的EPOLLOUT。一旦您收到通知它是可写的(使用epoll,希望获得EPOLLERR或EPOLLHUP事件),请检查连接尝试的结果:

int result;
socklen_t result_len = sizeof(result);
if (getsockopt(fd, SOL_SOCKET, SO_ERROR, &result, &result_len) < 0) {
    // error, fail somehow, close socket
    return;
}

if (result != 0) {
    // connection failed; error code is in 'result'
    return;
}

// socket is ready for read()/write()

根据我的经验,在Linux上,connect()永远不会立即成功,你总是要等待可写性。但是,例如,在FreeBSD上,我看到了对localhost的非阻塞connect()立即成功。

答案 1 :(得分:3)

根据经验,当检测到非阻塞连接时,epoll与select和poll有点不同。

epoll:

在调用connect()之后,检查返回码。

如果无法立即完成连接,请使用epoll注册EPOLLOUT事件。

调用epoll_wait()。

如果连接失败,您的事件将被EPOLLERR或EPOLLHUP填充,否则将触发EPOLLOUT。

答案 2 :(得分:1)

我有一个完整的&#34;如果其他人正在寻找这个问题,请回答:

#include <sys/epoll.h>
#include <errno.h>
....
....
int retVal = -1;
socklen_t retValLen = sizeof (retVal);

int status = connect(socketFD, ...);
if (status == 0)
 {
   // OK -- socket is ready for IO
 }
else if (errno == EINPROGRESS)
 {
    struct epoll_event newPeerConnectionEvent;
    int epollFD = -1;
    struct epoll_event processableEvents;
    unsigned int numEvents = -1;

    if ((epollFD = epoll_create (1)) == -1)
    {
       printf ("Could not create the epoll FD list. Aborting!");
       exit (2);
    }     

    newPeerConnectionEvent.data.fd = socketFD;
    newPeerConnectionEvent.events = EPOLLOUT | EPOLLIN | EPOLLERR;

    if (epoll_ctl (epollFD, EPOLL_CTL_ADD, socketFD, &newPeerConnectionEvent) == -1)
    {
       printf ("Could not add the socket FD to the epoll FD list. Aborting!");
       exit (2);
    }

    numEvents = epoll_wait (epollFD, &processableEvents, 1, -1);

    if (numEvents < 0)
    {
       printf ("Serious error in epoll setup: epoll_wait () returned < 0 status!");
       exit (2);
    }

    if (getsockopt (socketFD, SOL_SOCKET, SO_ERROR, &retVal, &retValLen) < 0)
    {
       // ERROR, fail somehow, close socket
    }

    if (retVal != 0) 
    {
       // ERROR: connect did not "go through"
    }   
}
else
{
   // ERROR: connect did not "go through" for other non-recoverable reasons.
   switch (errno)
   {
     ...
   }
}

答案 3 :(得分:1)

我尝试了Sonny的解决方案,epoll_ctl将返回无效参数。所以我认为正确的方法可能如下:

1.create socketfd和epollfd

2.使用epoll_ctl将socketfd和epollfd与epoll事件相关联。

3.do connect(socketfd,...)

4.检查返回值或错误

5.如果错误== EINPROGRESS,请执行epoll_wait