Re: Query regarding SSL_ERROR_SSL during SSL handshake

2020-02-23 Thread Matt Caswell
0.2h. When we call SSL_do_handshake, > > sometimes we notice that handshake fails with error SSL_ERROR_SSL.  > > As per the documentation for this error, it is non recoverable and > fatal > > error.  Documentation also mentions to check the error queue for &

Re: Query regarding SSL_ERROR_SSL during SSL handshake

2020-02-23 Thread Mahendra SP
All, > > > > We are using Openssl version 1.0.2h. When we call SSL_do_handshake, > > sometimes we notice that handshake fails with error SSL_ERROR_SSL. > > As per the documentation for this error, it is non recoverable and fatal > > error. Documentation also

Re: Query regarding SSL_ERROR_SSL during SSL handshake

2020-02-19 Thread Matt Caswell
On 19/02/2020 05:16, Mahendra SP wrote: > Hi All, > > We are using Openssl version 1.0.2h. When we call SSL_do_handshake, > sometimes we notice that handshake fails with error SSL_ERROR_SSL.  > As per the documentation for this error, it is non recoverable and fatal > err

Query regarding SSL_ERROR_SSL during SSL handshake

2020-02-18 Thread Mahendra SP
Hi All, We are using Openssl version 1.0.2h. When we call SSL_do_handshake, sometimes we notice that handshake fails with error SSL_ERROR_SSL. As per the documentation for this error, it is non recoverable and fatal error. Documentation also mentions to check the error queue for further details

Re: SSL_ERROR_SSL

2011-09-22 Thread BharadwajNS
Hi, As far as I know, there is no point going again to the loop when we have SSL_ERROR_SSL. Suppose in case of SSL_ERROR_WANT_READ or SSL_ERROR_WANT_WRITE this would have made sense. Maybe there is a timeout or watchdog which stops it from consuming a lot of time and closes the socket. Since

SSL_ERROR_SSL

2011-09-19 Thread Scott Gifford
perly. The problem seems to be the handling of SSL_ERROR_SSL. The code currently handles SSL_ERROR_SSL by checking the system errno, and returning to its I/O loop (select(2)/SSL_read/SSL_write) if it is EAGAIN, EINTR, or 0. In this case, errno is 0, so it keeps trying again indefinitely. Ending

Do SSL_ERROR_SYSCALL / SSL_ERROR_SSL mean that SSL was shutdown? Is a retry possible?

2011-01-23 Thread Yannay Alon-BAY004
Hi all What is the state of the SSL connection after SSL_ERROR_SYSCALL or SSL_ERROR_SSL? 1) Is the secure session teared down? (I mean within the OpenSSL state machine) 2) If not, may a retry of SSL_write or SSL_read succeed w/o a re-handshake? Regards Alon

RE: ssl_write returned ssl_error_ssl: urgent help needed

2009-11-18 Thread Jeremy Farrell
There's probably something wrong with your code, but from the information you've presented it's difficult to be more precise. I don't see what your question has to do with developing OpenSSL, so I've dropped openssl-dev from the thread. http://www.catb.org/~esr/faqs/smart-questions.html _

Re: ssl_write returned ssl_error_ssl: urgent help needed

2009-11-18 Thread luiz
Hi i use the follow to write to ssl int hb_inetSSLWrite( SSL* pSSL, int iSock,int iTimeout char * msg, int length, int* iRet) { int ret; int sslerr; int r; fd_set fd_r, fd_w; struct timeval tv; do { ret = SSL_write(pSSL, msg, length); sslerr = SSL_get_error(pS

ssl_write returned ssl_error_ssl: urgent help needed

2009-11-18 Thread sandeep.kumar17
Hi, I got some weird error. help needed urgent. SSL_write() is returned with error "SSL3_WRITE_PENDING:bad write retry". I have tried with flags "PARTIAL_WRITE" and "AUTO_RETRY" and "MOVING BUFFER". Still i am facing this problem. Any temporary workaround will also be appreciated. Thanks & Regar

Re: [FWD] SSL_write returned SSL_ERROR_SSL

2009-11-03 Thread luiz
sion. > > Best regards, > Lutz > > - Forwarded message from sandeep.kuma...@wipro.com - > > Subject: SSL_write returned SSL_ERROR_SSL > Date: Tue, 3 Nov 2009 19:25:03 +0530 > Thread-Topic: SSL_write returned SSL_ERROR_SSL > Thread-Index: AcpcjT4Rk9sPCTZ0QEa

RE: [FWD] SSL_write returned SSL_ERROR_SSL

2009-11-03 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of Lutz Jaenicke > Sent: Tuesday, 03 November, 2009 14:13 > - Forwarded message from sandeep.kuma...@wipro.com - > Subject: SSL_write returned SSL_ERROR_SSL > Date: Tue, 3 Nov 2009 19:25:03 +0530 > Thread-Topic:

[FWD] SSL_write returned SSL_ERROR_SSL

2009-11-03 Thread Lutz Jaenicke
Forwarding to openssl-users for public discussion. Best regards, Lutz - Forwarded message from sandeep.kuma...@wipro.com - Subject: SSL_write returned SSL_ERROR_SSL Date: Tue, 3 Nov 2009 19:25:03 +0530 Thread-Topic: SSL_write returned SSL_ERROR_SSL Thread-Index

RE: SSL_Connect fails with error SSL_ERROR_SSL

2009-09-20 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of Kyle Hamilton > Sent: Friday, 18 September, 2009 15:07 > Once you receive SSL_ERROR_SSL, the next step is to use > ERR_get_error(3ssl) to figure out what the specific SSL error was. > Before you do this, you should call ERR_load

Re: SSL_Connect fails with error SSL_ERROR_SSL

2009-09-18 Thread Kyle Hamilton
Once you receive SSL_ERROR_SSL, the next step is to use ERR_get_error(3ssl) to figure out what the specific SSL error was. Before you do this, you should call ERR_load_crypto_strings(3ssl) and SSL_load_error_strings(3ssl) so that you can get the full string; if you don't, you'll get a h

SSL_Connect fails with error SSL_ERROR_SSL

2009-09-18 Thread Anuradha Gupta
Hi I am using Linux provided SSL Library "OpenSSL 0.9.7a Feb 19 2003". The problem is that SSL_Connect fails with error SSL_ERROR_SSL I am not able to trace the possible reason for error. Any help is valuable as I need to resolve the issue urgently. Regards Anuradha Gupta Techni

Re: SSL_Accept() failing with error SSL_ERROR_SSL

2009-04-27 Thread Kyle Hamilton
Are you appropriately calling SSL_clear() after your connection is shut down? -Kyle H On Mon, Apr 27, 2009 at 3:08 PM, Dave Thompson wrote: >>       From: owner-openssl-us...@openssl.org On Behalf Of Prokash Sinha >>       Sent: Friday, 24 April, 2009 16:45 > >>       I'm trying to understand wh

RE: SSL_Accept() failing with error SSL_ERROR_SSL

2009-04-27 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of Prokash Sinha > Sent: Friday, 24 April, 2009 16:45 > I'm trying to understand why this following code is failing > the second or third time... Is it a good way ( meaning first accept() > without ssl, then do those association

SSL_Accept() failing with error SSL_ERROR_SSL

2009-04-25 Thread Prokash Sinha
Hi, I'm trying to understand why this following code is failing the second or third time... Is it a good way ( meaning first accept() without ssl, then do those association, then SSL_Accept() ) <<< tls_socket is just a plain listner socket sock = accept (tls_socket, (struct sockaddr *) &sa

Re: bug? SSL_ERROR_SSL/EAGAIN from SSL_write()

2008-06-05 Thread Aleksander Korzynski
David, Thanks for your prompt reply, again. David Schwartz wrote: ERR_get_error() returned 67596407 ERR_error_string() returned error:04077077:rsa routines:RSA_verify:wrong signature length ERR_get_error() returned 218910726 ERR_error_string() returned error:0D0C5006:asn1 encoding routines:ASN

RE: bug? SSL_ERROR_SSL/EAGAIN from SSL_write()

2008-06-03 Thread David Schwartz
> I'm seeing weird OpenSSL behaviour and I suspect it's a bug in > the library. It sounds like a typical protocol error. > The problem is that SSL_write() sometimes returns SSL_ERROR_SSL with > errno equal to EAGAIN. This is your problem. You are confusing yours

Re: bug? SSL_ERROR_SSL/EAGAIN from SSL_write()

2008-06-03 Thread Aleksander Korzynski
David, Thanks for the quick reply. David Schwartz wrote: * the underlying socket is blocking It sounds like you're trying to get some kind of fake halfway-non-blocking operation. This never works quite right. Either use blocking operations on blocking sockets or non-blocking operations on no

RE: bug? SSL_ERROR_SSL/EAGAIN from SSL_write()

2008-06-02 Thread David Schwartz
> The problem is that SSL_write() sometimes returns SSL_ERROR_SSL with > errno equal to EAGAIN. Calling SSL_write() again seems to solve the > problem. I have the impression that SSL_write() should return > SSL_ERROR_WANT_WRITE in this situation. > * the underlying socket is bloc

bug? SSL_ERROR_SSL/EAGAIN from SSL_write()

2008-06-02 Thread Aleksander Korzynski
Hi all, I'm seeing weird OpenSSL behaviour and I suspect it's a bug in the library. The problem is that SSL_write() sometimes returns SSL_ERROR_SSL with errno equal to EAGAIN. Calling SSL_write() again seems to solve the problem. I have the impression that SSL_write() sho

SSL_ERROR_SSL on SSL_write

2006-03-09 Thread CHIN, LEY-HUA \(Ginger\), ALABS
Hi,   I need help in SSL_ERROR_SSL error ..   I got "SSL_ERROR_SSL" often in SSL_write(), I don't know what causes this error and I don't know how to reset or correct this condition.  The docs I found just said it's a "protocol error" and can anyone ela

RE: SSL_connect fails with SSL_ERROR_SSL

2006-01-31 Thread Ambarish Mitra
ilton Sent: Tuesday, January 31, 2006 4:32 PM To: openssl-users@openssl.org Subject: Re: SSL_connect fails with SSL_ERROR_SSL Okay. The question is: You have a CA. Did you encode the "CA:true" attribute in it? You created a server certificate signed by that CA. How? You created a clien

Re: SSL_connect fails with SSL_ERROR_SSL

2006-01-31 Thread Kyle Hamilton
ot using .PEM certificates, I am using what the keytool created, > got the CSR signed. > > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Samy Thiyagarajan > Sent: Tuesday, January 31, 2006 4:03 PM > To: openssl-users@openssl.org >

RE: SSL_connect fails with SSL_ERROR_SSL

2006-01-31 Thread Ambarish Mitra
the cleint certificate, the private key and the CA cert to the context.Please see the code snippet. ... Initialization is successful, but the handshake fails. We first create TCPsocket and then "connect" as shown below. Then, we call SSL_connect, whichfails with SSL_ERROR_SSL

Re: SSL_connect fails with SSL_ERROR_SSL

2006-01-31 Thread Samy Thiyagarajan
socket and then "connect" as shown below. Then, we call SSL_connect, which fails with SSL_ERROR_SSL. At this point, the Java server outputs SSLException "No Trusted certificate". >> If you want client authentication, you need to explicitly state this at the server side(ie., you

SSL_connect fails with SSL_ERROR_SSL

2006-01-31 Thread Ambarish Mitra
TCP socket and then "connect" as shown below. Then, we call SSL_connect, which fails with SSL_ERROR_SSL. At this point, the Java server outputs SSLException "No Trusted certificate". sd = socket(AF_INET, SOCK_STREAM, 0); int c = connect(sd, (struct sockaddr*) &

SSL_ERROR_SSL while SSL_read from version (TLS1_VERSION)

2005-03-07 Thread Eric Chen
HI, Recently we encounter SSL_ERROR_SSL error on client side.  Our application code(initialization, handshaking, read and write) is common for sslv2 and sslv3. It happens when we turn on sslv3.  But when we turn off sslv3 but using sslv2, the problem goes away.   The following are the

SSL_ERROR_SSL: error:1409441B:SSL routines:SSL3_READ_BYTES:tlsv1 alert decrypt error

2005-02-17 Thread Manu Narang
errors Client side "SSL_ERROR_SSL error:1409441B:SSL routines:SSL3_READ_BYTES:tlsv1 alert decrypt error" Detail: SSL connect failed in tcp_connect() Server side: "SSL_ERROR_SSL error:0D0890A1:lib(13):func(137):reason(161)error:140890B2:lib(20):func(137):reason(178)" Detail:

SSL_ERROR_SYSCALL and SSL_ERROR_SSL

2002-08-28 Thread Jonathan Hersch
ecial cases to my code to handle the possible combinations but new ones keep coming up. For example, what does it mean to get SSL_ERROR_SSL with errno of 0 ? Is this the same as shutdown, or retry? I've looked at s_client and s_server and they seem to generally handle these as a shutdown

Re: strange error SSL_ERROR_SSL

2002-06-04 Thread Lutz Jaenicke
socket_h_to, BIO_NOCLOSE); > SSL_set_bio(ssl_h_to, sbio, sbio); > int dummy = SSL_connect(ssl_h_to); > if (dummy <= 0) > { > log(LOG_INFO, "do_http_request(): problem starting SSL connection > %d", SSL_get_error(ssl_h_to, dummy)); &

strange error SSL_ERROR_SSL

2002-06-04 Thread Folkert van Heusden
{ log(LOG_INFO, "do_http_request(): problem starting SSL connection %d", SSL_get_error(ssl_h_to, dummy)); } dummy gets <= 0 and the logging tells me an error 1 (SSL_ERROR_SSL) occured server: -- socket_h_from = accept(...); // and fork sbio = BI

RE: SSL_ERROR_SSL generated in SSL_connect

2001-03-07 Thread Toby Shepheard
eers! Toby > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Lutz Jaenicke > Sent: 07 March 2001 16:38 > To: [EMAIL PROTECTED] > Subject: Re: SSL_ERROR_SSL generated in SSL_connect > > > On Wed, Mar 07, 2001 at 02:32:08PM -, Toby S

Re: SSL_ERROR_SSL generated in SSL_connect

2001-03-07 Thread Lutz Jaenicke
On Wed, Mar 07, 2001 at 02:32:08PM -, Toby Shepheard wrote: > //Is this ok? I'm using the generic SSLv3_method > meth=SSLv3_method(); > ctx=SSL_CTX_new(meth); > > > * You are not reusing an old SSL object that was already used once and > > not cleared with SSL_clear()? > > // The SSL objec

RE: SSL_ERROR_SSL generated in SSL_connect

2001-03-07 Thread Toby Shepheard
Comments inserted below. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Lutz Jaenicke > Sent: 07 March 2001 12:32 > To: [EMAIL PROTECTED] > Subject: Re: SSL_ERROR_SSL generated in SSL_connect > > > On Wed, Mar 0

Re: SSL_ERROR_SSL generated in SSL_connect

2001-03-07 Thread Lutz Jaenicke
On Wed, Mar 07, 2001 at 11:19:28AM -, Toby Shepheard wrote: > Small update: > > I got the proper error response working now (it was getting a bit late > yesterday, my brain obviously wasn't in top gear!), and it is as follows: > > error:140840FF:SSL routines:SSL3_CONNECT:unknown state > > D

RE: SSL_ERROR_SSL generated in SSL_connect

2001-03-07 Thread Toby Shepheard
What could cause an unknown state? Cheers, Toby > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Toby Shepheard > Sent: 06 March 2001 19:42 > To: [EMAIL PROTECTED] > Subject: SSL_ERROR_SSL generated in SSL_connect > > > Hi,

SSL_ERROR_SSL generated in SSL_connect

2001-03-06 Thread Toby Shepheard
er, when I compile as a .so and run it in the StoryServer environment, I hit a problem with SSL_connect: SSL_get_error(ssl, (SSL_connect(ssl)) always returns SSL_ERROR_SSL The man pages suggest this may be a protocol error. I then called ERR_print_errors(bio_err) ERR_error_string(err, szDebug) this