ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
From: michiel@karnebeek.com
To: ruby-core@ruby-lang.org
Subject: [ruby-core:71948] [Ruby trunk - Bug #10398] Server Name Indication support broken when reusing a (dead) session
Date: Tue, 08 Dec 2015 13:20:10 +0000	[thread overview]
Message-ID: <redmine.journal-55356.20151208132010.248455a81c6c2787@ruby-lang.org> (raw)
In-Reply-To: redmine.issue-10398.20141019123151@ruby-lang.org

Issue #10398 has been updated by Michiel Karnebeek.


bugs.ruby-lang.org/issues/11401 solves this issue.

----------------------------------------
Bug #10398: Server Name Indication support broken when reusing a (dead) session
https://bugs.ruby-lang.org/issues/10398#change-55356

* Author: Arthur Holstvoogd
* Status: Open
* Priority: Normal
* Assignee: openssl
* 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/

  parent reply	other threads:[~2015-12-08 12:48 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <redmine.issue-10398.20141019123151@ruby-lang.org>
2014-10-19 12:31 ` [ruby-core:65789] [ruby-trunk - Bug #10398] [Open] Server Name Indication support broken when reusing a (dead) session aholstvoogd
2015-06-24  8:41 ` [ruby-core:69728] [Ruby trunk - Bug #10398] " aholstvoogd
2015-09-13  3:07 ` [ruby-core:70737] " zzak
2015-12-08 13:20 ` michiel [this message]
2016-06-29 13:16 ` [ruby-core:76202] [Ruby trunk Bug#10398][Closed] " k

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.ruby-lang.org/en/community/mailing-lists/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=redmine.journal-55356.20151208132010.248455a81c6c2787@ruby-lang.org \
    --to=ruby-core@ruby-lang.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).