Thanks for the reply Alain, I have changed as you mentioned by placing a call to do a read on s_ssl_bio (for reading/writing UNEncrypted Data). Here is how that function looks like...

bool CSSLSession::GetData(std::string& RecvData)
{
/*The RecvData WILL contain ****UN-ENCRYPTED-DATA**** that was received earlier*/
        bool bRet = false;
        int nRet = -1;
        char RecvBuffer[BUF_LEN * 2] = {0, };

        memset(RecvBuffer, 0, sizeof(char) * (BUF_LEN * 2));

nRet = BIO_read(m_SessionInfo.SSLBio, RecvBuffer, sizeof(char) * (BUF_LEN * 2));
        if( 0 > nRet )
        {
                if( !BIO_should_retry(m_SessionInfo.SSLBio) )
                {
                        return bRet;
                }
                /* Ignore "BIO_should_retry" for the time being */
               nRet = 1;
        }
       else
       {
           if( nRet )
           {
               RecvData.assign(RecvBuffer, nRet);
           }
       }

        if( nRet )
        {
                bRet = true;
        }

        return bRet;
}

Now, in the above function, "BIO_should_retry" returns true or 1 so afterwards i call the function (the one mentioned in my first post) to write data to "server_io" BIO (that was received from the client socket). This time "BIO_ctrl_get_read_request(m_SessionInfo.ioBio);" returns 5, and i write 5 bytes to the BIO and return (even though i always get something like 105 bytes in the beginning from the client). Now what should be done next with those remaining bytes??? Should try to write on the "server_io" BIO again (i tried that but the second time "BIO_ctrl_get_read_request" returns 0. Can you please help me sort this out.
Thanks in Advance,
Regards,
Usman.



My mail server crashed just before I could send this reply to the list so I'm using another email to send it directly to you. You can reply to the list if there are further questions...


Hi there,

You might have missed one thing in ssltest.c... there is a first call to BIO_read on the server side before any data is available. Before that call, the read request on server_io is actaully 0. After the call to BIO_read, then some data is requested. So if you're using read request, the trick would be to first attempt a read before any data is available.

You can also try using write_guarantee. This basically would allow more data than requested to be available on the network BIO. In either case, be careful not to drop data that you have received from the network but that couldn't be fed into the network BIO right away. Since SSL uses a reliable transport layer, the other end can rightfully assume that this data has been received and it has no obligation to resend it. In your code it seems that this would be what is contained at the end in pData, beyond offset nRet - I think you should buffer this for future use...

I hope this makes sense and helps :)

_________________________________________________________________
Express yourself instantly with MSN Messenger! Download today it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to