2012-08-09 19:54:55 -04:00
|
|
|
class IO
|
2012-08-10 22:35:47 -04:00
|
|
|
# We need to use this for a jruby work around on both 1.8 and 1.9.
|
|
|
|
# So this either creates the constant (on 1.8), or harmlessly
|
|
|
|
# reopens it (on 1.9).
|
2012-08-09 19:54:55 -04:00
|
|
|
module WaitReadable
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-08-10 22:35:47 -04:00
|
|
|
require 'puma/detect'
|
|
|
|
|
|
|
|
if Puma::IS_JRUBY
|
|
|
|
# We have to work around some OpenSSL buffer/io-readiness bugs
|
|
|
|
# so we pull it in regardless of if the user is binding
|
|
|
|
# to an SSL socket
|
|
|
|
require 'openssl'
|
|
|
|
end
|
|
|
|
|
2012-07-23 13:26:52 -04:00
|
|
|
module Puma
|
2013-06-01 17:20:45 -04:00
|
|
|
|
|
|
|
class ConnectionError < RuntimeError; end
|
|
|
|
|
2012-07-23 13:26:52 -04:00
|
|
|
class Client
|
|
|
|
include Puma::Const
|
|
|
|
|
2013-08-07 19:36:04 -04:00
|
|
|
def initialize(io, env=nil)
|
2012-07-23 13:26:52 -04:00
|
|
|
@io = io
|
|
|
|
@to_io = io.to_io
|
|
|
|
@proto_env = env
|
2013-08-07 19:36:04 -04:00
|
|
|
if !env
|
|
|
|
@env = nil
|
|
|
|
else
|
|
|
|
@env = env.dup
|
|
|
|
end
|
2012-07-23 13:26:52 -04:00
|
|
|
|
|
|
|
@parser = HttpParser.new
|
|
|
|
@parsed_bytes = 0
|
|
|
|
@read_header = true
|
2012-07-23 17:29:33 -04:00
|
|
|
@ready = false
|
|
|
|
|
2012-07-23 13:26:52 -04:00
|
|
|
@body = nil
|
|
|
|
@buffer = nil
|
|
|
|
|
|
|
|
@timeout_at = nil
|
2012-08-09 19:54:55 -04:00
|
|
|
|
|
|
|
@requests_served = 0
|
2013-02-06 01:39:16 -05:00
|
|
|
@hijacked = false
|
2012-07-23 13:26:52 -04:00
|
|
|
end
|
|
|
|
|
2013-02-06 01:39:16 -05:00
|
|
|
attr_reader :env, :to_io, :body, :io, :timeout_at, :ready, :hijacked
|
2012-07-23 13:26:52 -04:00
|
|
|
|
2012-08-09 19:54:55 -04:00
|
|
|
def inspect
|
|
|
|
"#<Puma::Client:0x#{object_id.to_s(16)} @ready=#{@ready.inspect}>"
|
|
|
|
end
|
|
|
|
|
2013-02-06 01:39:16 -05:00
|
|
|
# For the hijack protocol (allows us to just put the Client object
|
|
|
|
# into the env)
|
|
|
|
def call
|
|
|
|
@hijacked = true
|
|
|
|
env[HIJACK_IO] ||= @io
|
|
|
|
end
|
|
|
|
|
2014-01-30 17:37:38 -05:00
|
|
|
def in_data_phase
|
|
|
|
!@read_header
|
|
|
|
end
|
|
|
|
|
2012-07-23 13:26:52 -04:00
|
|
|
def set_timeout(val)
|
|
|
|
@timeout_at = Time.now + val
|
|
|
|
end
|
|
|
|
|
2012-09-09 22:51:36 -04:00
|
|
|
def reset(fast_check=true)
|
2012-07-23 13:26:52 -04:00
|
|
|
@parser.reset
|
|
|
|
@read_header = true
|
|
|
|
@env = @proto_env.dup
|
|
|
|
@body = nil
|
|
|
|
@parsed_bytes = 0
|
2012-07-23 17:29:33 -04:00
|
|
|
@ready = false
|
2012-07-23 13:26:52 -04:00
|
|
|
|
|
|
|
if @buffer
|
|
|
|
@parsed_bytes = @parser.execute(@env, @buffer, @parsed_bytes)
|
|
|
|
|
|
|
|
if @parser.finished?
|
|
|
|
return setup_body
|
|
|
|
elsif @parsed_bytes >= MAX_HEADER
|
|
|
|
raise HttpParserError,
|
|
|
|
"HEADER is longer than allowed, aborting client early."
|
|
|
|
end
|
|
|
|
|
|
|
|
return false
|
2012-09-09 22:51:36 -04:00
|
|
|
elsif fast_check &&
|
|
|
|
IO.select([@to_io], nil, nil, FAST_TRACK_KA_TIMEOUT)
|
2012-08-10 20:02:30 -04:00
|
|
|
return try_to_finish
|
2012-07-23 13:26:52 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def close
|
2012-07-24 20:24:44 -04:00
|
|
|
begin
|
|
|
|
@io.close
|
|
|
|
rescue IOError
|
|
|
|
end
|
2012-07-23 13:26:52 -04:00
|
|
|
end
|
|
|
|
|
2012-07-23 20:00:53 -04:00
|
|
|
# The object used for a request with no body. All requests with
|
|
|
|
# no body share this one object since it has no state.
|
2012-07-23 13:26:52 -04:00
|
|
|
EmptyBody = NullIO.new
|
|
|
|
|
|
|
|
def setup_body
|
2014-01-30 17:37:38 -05:00
|
|
|
@in_data_phase = true
|
2012-07-23 13:26:52 -04:00
|
|
|
body = @parser.body
|
|
|
|
cl = @env[CONTENT_LENGTH]
|
|
|
|
|
|
|
|
unless cl
|
|
|
|
@buffer = body.empty? ? nil : body
|
|
|
|
@body = EmptyBody
|
2012-08-09 19:54:55 -04:00
|
|
|
@requests_served += 1
|
2012-07-23 17:29:33 -04:00
|
|
|
@ready = true
|
2012-07-23 13:26:52 -04:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
remain = cl.to_i - body.bytesize
|
|
|
|
|
|
|
|
if remain <= 0
|
|
|
|
@body = StringIO.new(body)
|
2012-07-24 13:59:04 -04:00
|
|
|
@buffer = nil
|
2012-08-09 19:54:55 -04:00
|
|
|
@requests_served += 1
|
2012-07-23 17:29:33 -04:00
|
|
|
@ready = true
|
2012-07-23 13:26:52 -04:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
if remain > MAX_BODY
|
|
|
|
@body = Tempfile.new(Const::PUMA_TMP_BASE)
|
|
|
|
@body.binmode
|
|
|
|
else
|
|
|
|
# The body[0,0] trick is to get an empty string in the same
|
|
|
|
# encoding as body.
|
|
|
|
@body = StringIO.new body[0,0]
|
|
|
|
end
|
|
|
|
|
|
|
|
@body.write body
|
|
|
|
|
|
|
|
@body_remain = remain
|
|
|
|
|
|
|
|
@read_header = false
|
|
|
|
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
def try_to_finish
|
|
|
|
return read_body unless @read_header
|
|
|
|
|
2012-08-23 01:34:10 -04:00
|
|
|
begin
|
|
|
|
data = @io.read_nonblock(CHUNK_SIZE)
|
|
|
|
rescue Errno::EAGAIN
|
|
|
|
return false
|
2013-06-01 17:20:45 -04:00
|
|
|
rescue SystemCallError, IOError
|
|
|
|
raise ConnectionError, "Connection error detected during read"
|
2012-08-23 01:34:10 -04:00
|
|
|
end
|
2012-07-23 13:26:52 -04:00
|
|
|
|
|
|
|
if @buffer
|
|
|
|
@buffer << data
|
|
|
|
else
|
|
|
|
@buffer = data
|
|
|
|
end
|
|
|
|
|
|
|
|
@parsed_bytes = @parser.execute(@env, @buffer, @parsed_bytes)
|
|
|
|
|
|
|
|
if @parser.finished?
|
|
|
|
return setup_body
|
|
|
|
elsif @parsed_bytes >= MAX_HEADER
|
|
|
|
raise HttpParserError,
|
|
|
|
"HEADER is longer than allowed, aborting client early."
|
|
|
|
end
|
|
|
|
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2012-08-10 22:35:47 -04:00
|
|
|
if IS_JRUBY
|
|
|
|
def jruby_start_try_to_finish
|
|
|
|
return read_body unless @read_header
|
2012-08-09 19:54:55 -04:00
|
|
|
|
2012-08-10 22:35:47 -04:00
|
|
|
begin
|
|
|
|
data = @io.sysread_nonblock(CHUNK_SIZE)
|
|
|
|
rescue OpenSSL::SSL::SSLError => e
|
|
|
|
return false if e.kind_of? IO::WaitReadable
|
|
|
|
raise e
|
|
|
|
end
|
2012-08-09 19:54:55 -04:00
|
|
|
|
2012-08-10 22:35:47 -04:00
|
|
|
if @buffer
|
|
|
|
@buffer << data
|
|
|
|
else
|
|
|
|
@buffer = data
|
|
|
|
end
|
2012-08-09 19:54:55 -04:00
|
|
|
|
2012-08-10 22:35:47 -04:00
|
|
|
@parsed_bytes = @parser.execute(@env, @buffer, @parsed_bytes)
|
2012-08-09 19:54:55 -04:00
|
|
|
|
2012-08-10 22:35:47 -04:00
|
|
|
if @parser.finished?
|
|
|
|
return setup_body
|
|
|
|
elsif @parsed_bytes >= MAX_HEADER
|
|
|
|
raise HttpParserError,
|
|
|
|
"HEADER is longer than allowed, aborting client early."
|
|
|
|
end
|
|
|
|
|
|
|
|
false
|
2012-08-09 19:54:55 -04:00
|
|
|
end
|
|
|
|
|
2012-08-10 22:35:47 -04:00
|
|
|
def eagerly_finish
|
|
|
|
return true if @ready
|
2012-08-09 19:54:55 -04:00
|
|
|
|
2012-08-10 22:35:47 -04:00
|
|
|
if @io.kind_of? OpenSSL::SSL::SSLSocket
|
|
|
|
return true if jruby_start_try_to_finish
|
|
|
|
end
|
2012-08-09 19:54:55 -04:00
|
|
|
|
2012-08-10 22:35:47 -04:00
|
|
|
return false unless IO.select([@to_io], nil, nil, 0)
|
|
|
|
try_to_finish
|
2012-08-09 19:54:55 -04:00
|
|
|
end
|
|
|
|
|
2012-08-10 22:35:47 -04:00
|
|
|
else
|
|
|
|
|
|
|
|
def eagerly_finish
|
|
|
|
return true if @ready
|
|
|
|
return false unless IO.select([@to_io], nil, nil, 0)
|
|
|
|
try_to_finish
|
|
|
|
end
|
|
|
|
end # IS_JRUBY
|
2012-07-23 17:29:33 -04:00
|
|
|
|
2012-07-23 13:26:52 -04:00
|
|
|
def read_body
|
|
|
|
# Read an odd sized chunk so we can read even sized ones
|
|
|
|
# after this
|
|
|
|
remain = @body_remain
|
|
|
|
|
|
|
|
if remain > CHUNK_SIZE
|
|
|
|
want = CHUNK_SIZE
|
|
|
|
else
|
|
|
|
want = remain
|
|
|
|
end
|
|
|
|
|
2012-08-23 01:34:10 -04:00
|
|
|
begin
|
|
|
|
chunk = @io.read_nonblock(want)
|
|
|
|
rescue Errno::EAGAIN
|
|
|
|
return false
|
2013-06-01 17:20:45 -04:00
|
|
|
rescue SystemCallError, IOError
|
|
|
|
raise ConnectionError, "Connection error detected during read"
|
2012-08-23 01:34:10 -04:00
|
|
|
end
|
2012-07-23 13:26:52 -04:00
|
|
|
|
|
|
|
# No chunk means a closed socket
|
|
|
|
unless chunk
|
|
|
|
@body.close
|
2012-07-24 13:59:04 -04:00
|
|
|
@buffer = nil
|
2012-08-09 19:54:55 -04:00
|
|
|
@requests_served += 1
|
2012-07-23 17:29:33 -04:00
|
|
|
@ready = true
|
2012-07-23 13:26:52 -04:00
|
|
|
raise EOFError
|
|
|
|
end
|
|
|
|
|
|
|
|
remain -= @body.write(chunk)
|
|
|
|
|
|
|
|
if remain <= 0
|
|
|
|
@body.rewind
|
2012-07-24 13:59:04 -04:00
|
|
|
@buffer = nil
|
2012-08-09 19:54:55 -04:00
|
|
|
@requests_served += 1
|
2012-07-23 17:29:33 -04:00
|
|
|
@ready = true
|
2012-07-23 13:26:52 -04:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
@body_remain = remain
|
|
|
|
|
|
|
|
false
|
|
|
|
end
|
2012-09-06 01:09:42 -04:00
|
|
|
|
|
|
|
def write_400
|
|
|
|
begin
|
|
|
|
@io << ERROR_400_RESPONSE
|
|
|
|
rescue StandardError
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-30 13:23:01 -05:00
|
|
|
def write_408
|
|
|
|
begin
|
|
|
|
@io << ERROR_408_RESPONSE
|
|
|
|
rescue StandardError
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-09-06 01:09:42 -04:00
|
|
|
def write_500
|
|
|
|
begin
|
|
|
|
@io << ERROR_500_RESPONSE
|
|
|
|
rescue StandardError
|
|
|
|
end
|
|
|
|
end
|
2012-07-23 13:26:52 -04:00
|
|
|
end
|
|
|
|
end
|