Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an asynchronous socket and call to connect() + GetLastError() which returns WSA_WOULD_BLOCK, as expected. So I start "receiving/reading" thread and subscribe Event to FD_READ and FD_CLOSE.

The story is: connect will sequentially fail, since Server is not up and running. My understanding that my receiving thread should get FD_CLOSE soon and I need to follow-up with cleaning.

It does not happen. How soon should I receive FD_CLOSE? Is it proper approach? Is there any other way to understand that connect() failed? Shoul I ever receive FD_CLOSE if socket isn't connected?

I do start my receiving thread and subscribe event after successful call to DoConnect() and I am afraid that racing condition prevents me from getting FD_CLOSE.

Here is some code:

int RecvSocketThread::WaitForData()
{
     int retVal = 0
     while (!retVal)
     {
         // sockets to pool can be added on other threads.
         // please validate that all of them in the pool are connected
         // before doing any reading on them
         retVal = DoWaitForData();
     }
}

int RecvSocketThread::DoWaitForData()
{
    // before waiting for incoming data, check if all sockets are connected
    WaitForPendingConnection_DoForAllSocketsInThePool();


    // other routine to read (FD_READ) or react to FD_CLOSE
    // create array of event (each per socket) and wait
}
void RecvSocketThread::WaitForPendingConnection_DoForAllSocketsInThePool()
{
    // create array and set it for events associated with pending connect sockets
    HANDLE* EventArray = NULL;
    int counter = 0;
    EventArray = new HANDLE[m_RecvSocketInfoPool.size()];

    // add those event whose associated socket is still not connected
    // and wait for FD_WRITE and FD_CLOSE. At the end of this function
    // don't forget to switch them to FD_READ and FD_CLOSE
    while (it != m_RecvSocketInfoPool.end())
    {
         RecvSocketInfo* recvSocketInfo = it->second;
         if (!IsEventSet(recvSocketInfo->m_Connected, &retVal2))
         {
             ::WSAEventSelect(recvSocketInfo->m_WorkerSocket, recvSocketInfo->m_Event, FD_WRITE | FD_CLOSE);
             EventArray[counter++] = recvSocketInfo->m_Event;
         }
         ++it;
    }
    if (counter)
    {
        DWORD indexSignaled = WaitForMultipleObjects(counter, EventArray, WaitAtLeastOneEvent, INFINITE);

        // no matter what is further Wait doen't return for failed to connect socket

        if (WAIT_OBJECT_0 <= indexSignaled &&
                   indexSignaled < (WAIT_OBJECT_0 + counter))
        {
            it = m_RecvSocketInfoPool.begin();
            while (it != m_RecvSocketInfoPool.end())
            {
                RecvSocketInfo* recvSocketInfo = it->second;
                if (IsEventSet(recvSocketInfo->m_Event, NULL))
                {
                  rc = WSAEnumNetworkEvents(recvSocketInfo->m_WorkerSocket,
                  recvSocketInfo->m_Event, &networkEvents);

                   // Check recvSocketInfo->m_Event using WSAEnumnetworkevents
                   // for FD_CLOSE using FD_CLOSE_BIT
                   if ((networkEvents.lNetworkEvents & FD_CLOSE))
                   {
                       recvSocketInfo->m_FD_CLOSE_Recieved = 1;
                       *retVal = networkEvents.iErrorCode[FD_CLOSE_BIT];
                   }
                   if ((networkEvents.lNetworkEvents & FD_WRITE))
                   {
                       WSASetEvent(recvSocketInfo->m_Connected);
                       *retVal = networkEvents.iErrorCode[FD_WRITE_BIT];
                   }
                }
                ++it;
            }
        }

        // if error - DoClean, if FD_WRITE (socket is writable) check if m_Connected
        // before do any sending
    }
}
share|improve this question
How exactly are you monitoring for connect() completion? ie. which WinSock API, and what params do you use to wait for it to be done? – Steve Townsend May 8 '12 at 19:06
I am not monitoring it. DoConnect() is my non-blocking function which creates socket, turn-it to non-blocking and call connect. I understand that connection is still pending. I need a way to understand that connection finally has not been established. It's winsock 1.1. – adspx5 May 8 '12 at 19:10
One important thing here is how does m_connected get set? Can you include that logic in your code posted? – Steve Townsend May 9 '12 at 13:31
Updated. It is doesn't matter since WaitForMUltipleobjects never returns – adspx5 May 9 '12 at 13:47
Sorry dude, I give up here. I don't see any sign that you are getting the suggestions that are being made. If you know why the code is failing why did you post the question? If you don't know, how can you possibly say what matters or not? – Steve Townsend May 9 '12 at 13:54
show 2 more comments

3 Answers

You will not receive an FD_CLOSE notification if connect() fails. You must subscribe to FD_CONNECT to detect that. This is clearly stated in the connect() documentation:

With a nonblocking socket, the connection attempt cannot be completed immediately. In this case, connect will return SOCKET_ERROR, and WSAGetLastError will return WSAEWOULDBLOCK. In this case, there are three possible scenarios:

•Use the select function to determine the completion of the connection request by checking to see if the socket is writeable.

•If the application is using WSAAsyncSelect to indicate interest in connection events, then the application will receive an FD_CONNECT notification indicating that the connect operation is complete (successfully or not).

•If the application is using WSAEventSelect to indicate interest in connection events, then the associated event object will be signaled indicating that the connect operation is complete (successfully or not).

The result code of connect() will be in the event's HIWORD(lParam) value when LOWORD(lParam) is FD_CONNECT. If the result code is 0, connect() was successful, otherwise it will be a WinSock error code.

share|improve this answer
Thanks. Probably FD_CONNECT is only way to get it. I'll try to change code and start/prepare thread to wait for FD_CONNECT. It's a bit complicated to make a test right away, since there are other BalanceLoading logic in the code. – adspx5 May 9 '12 at 13:59
Either don't start your receiving thread at all unless FD_CONNECT reports success, or else just update the receive thread to include FD_CONNECT. It just won't get FD_READ or FD_CLOSE unless it gets a successful FD_CONNECT first, that's all. – Remy Lebeau May 9 '12 at 18:11

If you call connect() and get a blocking notification you have to write more code to monitor for connect() completion (success or failure) via one of three methods as described here.

With a nonblocking socket, the connection attempt cannot be completed immediately. In this case, connect will return SOCKET_ERROR, and WSAGetLastError will return WSAEWOULDBLOCK. In this case, there are three possible scenarios:

•Use the select function to determine the completion of the connection request by checking to see if the socket is writeable.

•If the application is using WSAAsyncSelect to indicate interest in connection events, then the application will receive an FD_CONNECT notification indicating that the connect operation is complete (successfully or not).

•If the application is using WSAEventSelect to indicate interest in connection events, then the associated event object will be signaled indicating that the connect operation is complete (successfully or not).

share|improve this answer
I know about FD_WRITE, but I can't wait for FD_WRITE since receiving thread already subscribed to FD_READ and FD_CLOSE. Two events cannot be attached to state of a single socket. – adspx5 May 8 '12 at 19:16
Again, which API are you using here in the 'receiving thread'? – Steve Townsend May 8 '12 at 19:18
It's all my code and I am using winsock 1.1. C++, stl only – adspx5 May 8 '12 at 19:22
I know. What Win32 function (API) does your receiving thread call to check for events on the socket? – Steve Townsend May 8 '12 at 19:23
WaitForMultipleObjects – adspx5 May 8 '12 at 19:25
show 9 more comments

I think I need to start Receving thread once socket handle is created, but before connect is called. It is too late to create it after connect was called on asynchronous socket. For synchronous socket those two calls createsocket() and connect() was just two consequitive lines. Does not work for non-blocking.

In this case at the beginning of receiving thread I need to check for FD_CONNECT and/or FD_WRITE in order be informed of connect attempt status.

share|improve this answer
Ok. Here is an update. I have changed the code and before any reading on client side I check for FD_CONNECT status. If connected I set m_Connected, if failed - set m_FailedSocket event. Sending thread checks for status of those two events before any attempt to send(). On server side, once socket is accepted, I explicitly set m_Connected and socket ready for FD_READ and FD_CLOSE. – adspx5 May 9 '12 at 21:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.