Project

General

Profile

Actions

Bug #2157

closed

SSL_CTX_set_options() return value not checked properly

Added by mlcreech about 14 years ago. Updated about 14 years ago.

Status:
Fixed
Priority:
Normal
Category:
core
Target version:
ASK QUESTIONS IN Forums:

Description

I updated my OpenSSL version to 1.0.0-rc5, and started getting the following error when trying to start Lighttpd:

$ ./lighttpd -f lighttpd.conf  -D
2010-01-28 10:21:07: (network.c.529) SSL: error:2507006C:DSO support routines:DSO_load:functionality not supported 

I hadn't needed DSO support in SSL before, but I re-enabled it anyway. This just changed the text of the error:

$ ./lighttpd -f lighttpd.conf  -D
2010-01-28 10:23:01: (network.c.529) SSL: error:00000000:lib(0):func(0):reason(0)

Looking at the line in question, it seems that Lighttpd is expecting the return value of SSL_CTX_set_options() to equal the option that was just passed in. This is only true if no other options are set; in 1.0.0-rc5, SSL_OP_LEGACY_SERVER_CONNECT is enabled by default, which causes this check to fail.

The attached patch makes Lighttpd only check to see that the option it requested was set, ignoring the rest of the mask.


Files

08-ssl-retval-fix.patch (580 Bytes) 08-ssl-retval-fix.patch Patch to allow for multiple bits in option mask mlcreech, 2010-01-28 15:50

Related issues 1 (0 open1 closed)

Has duplicate Bug #2189: lighttpd-1.4.26 : Server fails to start with ssl enabledDuplicate2010-04-23Actions
Actions #1

Updated by stbuehler about 14 years ago

  • Target version set to 1.4.27
  • Missing in 1.5.x changed from No to Yes
Actions #2

Updated by stbuehler about 14 years ago

  • Status changed from New to Fixed
  • % Done changed from 0 to 100

Applied in changeset r2716.

Actions #3

Updated by hvdkamer about 14 years ago

The r2716 is also needed when the latest OpenSSL version 0.9.8m is used.

Actions

Also available in: Atom