Project

General

Profile

Actions

Feature #9459

closed

Net::HTTP initializes openssl library after TCP connection is established

Added by joshc (Josh C) about 10 years ago. Updated about 3 years ago.

Status:
Closed
Target version:
-
[ruby-core:60202]
Tags:

Description

When making an HTTPS connection, the Net::HTTP#connect method makes the following calls:

  1. TCPSocket.new
  2. OpenSSL:SSL::SSLContext.new
  3. OpenSSL:SSL:SSLSocket.connect

Here is a link to the 2.1.0 version, though the basic sequence is the same in trunk and as far back as 1.8.7, possibly earlier.

The problem is that between step 1 and 3, the server must keep the TCP socket open while the SSL client calls OpenSSL:SSL::SSLContext.new. The first time this code path is taken, step 2 has the side effect of initializing the OpenSSL library. This can take a non-trivial amount of time, and is made worse when several clients start at the same time.

I would suggest that the order of operations be switched to:

  1. OpenSSL:SSL::SSLContext.new
  2. TCPSocket.new
  3. OpenSSL:SSL:SSLSocket.connect

I've attached a patch that shows this. It is based off of trunk.

Thank you


Files

net_http_connect.patch (742 Bytes) net_http_connect.patch joshc (Josh C), 01/29/2014 05:50 AM
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0