[ANNOUNCE] mod_ssl 2.8.17 for Apache 1.3.31

[ANNOUNCE] mod_ssl 2.8.17 for Apache 1.3.31

am 12.05.2004 15:24:57 von rse

Yesterday Apache 1.3.31 was released. I've updated mod_ssl 2.8 to this
version and released the result (together with some other pending
bugfixes; see below) as mod_ssl 2.8.17-1.3.31. You can find it under the
usual locations:

o http://www.modssl.org/source/
o ftp://ftp.modssl.org/source/

Yours,
Ralf S. Engelschall
rse@engelschall.com
www.engelschall.com

Changes with mod_ssl 2.8.17 (01-Nov-2003 to 11-May-2004)

*) Upgraded to Apache 1.3.31

*) Log the OpenSSL error stack contents if the crypto engine
load/init fails.

*) Fixed segfault in lookup of variable SESSION_ID
in case SSL_get_session() returns NULL.

*) Bugfix "dbm" session cache: the DBM file was closed
too early (before accessing the data).

*) Bugfix "shmcb" session cache for situations where
the session data is bigger than the cache size.

____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org

Re: [ANNOUNCE] mod_ssl 2.8.17 for Apache 1.3.31

am 15.05.2004 02:18:32 von a k

Did you add my eintr fix ?



If an interrupt (EINTR) occurs during the handshake
the current code will abort the handshake with:

ssl_log(srvr,
SSL_LOG_ERROR|SSL_ADD_SSLERR|SSL_ADD_ERRNO,
"SSL handshake failed (server
%s, client %s)", cpVHostID,
conn->remote_ip != NULL ?
conn->remote_ip : "unknown");

-- the following will fix this problem:

int err;

err = SSL_get_error(ssl, rc);
if( err == SSL_ERROR_WANT_READ &&

BIO_should_retry(SSL_get_rbio(ssl)) ) {
ssl_log(srvr,SSL_LOG_INFO,"SSL
READ ERROR IGNORED on pid (%d)\n",getpid());
continue;
} else if( err == SSL_ERROR_WANT_WRITE
&&

BIO_should_retry(SSL_get_wbio(ssl)) ) {
ssl_log(srvr,SSL_LOG_INFO,"SSL
READ ERROR IGNORED on pid (%d)\n",getpid());
continue;
}

--- "Ralf S. Engelschall" wrote:
> Yesterday Apache 1.3.31 was released. I've updated
> mod_ssl 2.8 to this
> version and released the result (together with some
> other pending
> bugfixes; see below) as mod_ssl 2.8.17-1.3.31. You
> can find it under the
> usual locations:
>
> o http://www.modssl.org/source/
> o ftp://ftp.modssl.org/source/
>
> Yours,
> Ralf S.
> Engelschall
>
> rse@engelschall.com
>
> www.engelschall.com
>
> Changes with mod_ssl 2.8.17 (01-Nov-2003 to
> 11-May-2004)
>
> *) Upgraded to Apache 1.3.31
>
> *) Log the OpenSSL error stack contents if the
> crypto engine
> load/init fails.
>
> *) Fixed segfault in lookup of variable
> SESSION_ID
> in case SSL_get_session() returns NULL.
>
> *) Bugfix "dbm" session cache: the DBM file was
> closed
> too early (before accessing the data).
>
> *) Bugfix "shmcb" session cache for situations
> where
> the session data is bigger than the cache
> size.
>
>
____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl)
> www.modssl.org
> User Support Mailing List
> modssl-users@modssl.org
> Automated List Manager
majordomo@modssl.org





__________________________________
Do you Yahoo!?
SBC Yahoo! - Internet access at a great low price.
http://promo.yahoo.com/sbc/
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org

Re: [ANNOUNCE] mod_ssl 2.8.17 for Apache 1.3.31

am 27.05.2004 14:49:35 von rse

On Fri, May 14, 2004, a k wrote:

> Did you add my eintr fix ?
> [...]

Ops, I seem to have overlooked this.
I'll include this into mod_ssl 2.8.18.
Thanks.

Ralf S. Engelschall
rse@engelschall.com
www.engelschall.com

____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org

Re: [ANNOUNCE] mod_ssl 2.8.17 for Apache 1.3.31

am 27.05.2004 15:37:28 von Martin Nyberg

test

On Thu, 27 May 2004 14:49:35 +0200, Ralf S. Engelschall =20
wrote:

> On Fri, May 14, 2004, a k wrote:
>
>> Did you add my eintr fix ?
>> [...]
>
> Ops, I seem to have overlooked this.
> I'll include this into mod_ssl 2.8.18.
> Thanks.
>
> Ralf S. Engelschall
> rse@engelschall.com
> www.engelschall.com
>
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users@modssl.org
> Automated List Manager majordomo@modssl.org



--=20
Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org

Re: [ANNOUNCE] mod_ssl 2.8.17 for Apache 1.3.31

am 27.05.2004 16:20:46 von a.moon

I am away on paternity leave for the next few days.
Please contact OLSU if urgent, otherwise i will get back
to you as soon as possible on my return.


____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org

Re: [ANNOUNCE] mod_ssl 2.8.17 for Apache 1.3.31

am 28.05.2004 02:16:30 von a k

Thanks !!

ak
--- "Ralf S. Engelschall" wrote:
> On Fri, May 14, 2004, a k wrote:
>
> > Did you add my eintr fix ?
> > [...]
>
> Ops, I seem to have overlooked this.
> I'll include this into mod_ssl 2.8.18.
> Thanks.
>
> Ralf S.
> Engelschall
>
> rse@engelschall.com
>
> www.engelschall.com
>
>
____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl)
> www.modssl.org
> User Support Mailing List
> modssl-users@modssl.org
> Automated List Manager
majordomo@modssl.org





__________________________________
Do you Yahoo!?
Friends. Fun. Try the all-new Yahoo! Messenger.
http://messenger.yahoo.com/
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org

Re: [ANNOUNCE] mod_ssl 2.8.17 for Apache 1.3.31

am 28.05.2004 03:18:18 von a.moon

I am away on paternity leave for the next few days.
Please contact OLSU if urgent, otherwise i will get back
to you as soon as possible on my return.


____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org