[#69616] [Ruby trunk - Feature #11258] add 'x' mode character for O_EXCL — cremno@...
Issue #11258 has been updated by cremno phobia.
3 messages
2015/06/16
[#69643] [Ruby trunk - Misc #11276] [RFC] compile.c: convert to use ccan/list — normalperson@...
Issue #11276 has been updated by Eric Wong.
3 messages
2015/06/17
[#69751] [Ruby trunk - Bug #11001] 2.2.1 Segmentation fault in reserve_stack() function. — kubo@...
Issue #11001 has been updated by Takehiro Kubo.
3 messages
2015/06/27
[ruby-core:69728] [Ruby trunk - Bug #10398] Server Name Indication support broken when reusing a (dead) session
From:
aholstvoogd@...
Date:
2015-06-24 08:41:47 UTC
List:
ruby-core #69728
Issue #10398 has been updated by Arthur Holstvoogd.
Same issue: #10533
----------------------------------------
Bug #10398: Server Name Indication support broken when reusing a (dead) session
https://bugs.ruby-lang.org/issues/10398#change-53109
* Author: Arthur Holstvoogd
* Status: Open
* Priority: Low
* Assignee: Martin Bosslet
* ruby -v: ruby 2.1.2p95 (2014-05-08 revision 45877) [x86_64-darwin13.0]
* Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN
----------------------------------------
RFC3546 recommend that the client includes the server_name in each client hello message when possible.
The ruby openssl client implementation doesn't send a server_name when it has a session to resume. Normally the server can resume the session and doesn't need the server_name. However if the server for what ever reason does not recognize the session ID, it is unable to determine what certificate to serve. This can cause intermittent failures.
This issue surfaced due to broken session_id based persistence in a VMWare load balancer, causing every second connect to fail due to a invalid certificate. (The second connection was load balanced to another server that didn't know the session). Since this might also occur if the server forgets the session more quickly than the client, I think this can be considered a bug.
I have tried to figure out how to patch this, but my C knowledge is not sufficient to figure this out.
## Steps to reproduce
When monitoring the following code with wireshark, it shows that when reopening a https connection with a session, there is no server_name part included in the message.
I used the following few lines of code to test:
~~~
uri = URI('https://www.example.com/')
req = Net::HTTP::Get.new uri.request_uri
con = Net::HTTP.new uri.host, uri.port
con.use_ssl = true
con.start
con.finish
con.start # Produces a certificate error if the session is lost by the server
~~~
--
https://bugs.ruby-lang.org/