Class: Fluent::Plugin::HttpInput::Handler

Inherits:
Coolio::Socket
  • Object
show all
Defined in:
lib/fluent/plugin/in_http.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(io, km, callback, body_size_limit, format_name, log, cors_allow_origins) ⇒ Handler

Returns a new instance of Handler.



253
254
255
256
257
258
259
260
261
262
263
264
265
266
# File 'lib/fluent/plugin/in_http.rb', line 253

def initialize(io, km, callback, body_size_limit, format_name, log, cors_allow_origins)
  super(io)
  @km = km
  @callback = callback
  @body_size_limit = body_size_limit
  @next_close = false
  @format_name = format_name
  @log = log
  @cors_allow_origins = cors_allow_origins
  @idle = 0
  @km.add(self)

  @remote_port, @remote_addr = *Socket.unpack_sockaddr_in(io.getpeername) rescue nil
end

Instance Attribute Details

#content_typeObject (readonly)

Returns the value of attribute content_type.



251
252
253
# File 'lib/fluent/plugin/in_http.rb', line 251

def content_type
  @content_type
end

Instance Method Details

#closing?Boolean

Returns:

  • (Boolean)


407
408
409
# File 'lib/fluent/plugin/in_http.rb', line 407

def closing?
  @next_close
end

#on_body(chunk) ⇒ Object



340
341
342
343
344
345
346
347
348
# File 'lib/fluent/plugin/in_http.rb', line 340

def on_body(chunk)
  if @body.bytesize + chunk.bytesize > @body_size_limit
    unless closing?
      send_response_and_close("413 Request Entity Too Large", {}, "Too large")
    end
    return
  end
  @body << chunk
end

#on_closeObject



272
273
274
# File 'lib/fluent/plugin/in_http.rb', line 272

def on_close
  @km.delete(self)
end

#on_connectObject



276
277
278
# File 'lib/fluent/plugin/in_http.rb', line 276

def on_connect
  @parser = Http::Parser.new(self)
end

#on_headers_complete(headers) ⇒ Object



293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
# File 'lib/fluent/plugin/in_http.rb', line 293

def on_headers_complete(headers)
  expect = nil
  size = nil

  if @parser.http_version == [1, 1]
    @keep_alive = true
  else
    @keep_alive = false
  end
  @env = {}
  @content_type = ""
  headers.each_pair {|k,v|
    @env["HTTP_#{k.gsub('-','_').upcase}"] = v
    case k
    when /Expect/i
      expect = v
    when /Content-Length/i
      size = v.to_i
    when /Content-Type/i
      @content_type = v
    when /Connection/i
      if v =~ /close/i
        @keep_alive = false
      elsif v =~ /Keep-alive/i
        @keep_alive = true
      end
    when /Origin/i
      @origin  = v
    when /X-Forwarded-For/i
      # For multiple X-Forwarded-For headers. Use first header value.
      v = v.first if v.is_a?(Array)
      @remote_addr = v.split(",").first
    end
  }
  if expect
    if expect == '100-continue'
      if !size || size < @body_size_limit
        send_response_nobody("100 Continue", {})
      else
        send_response_and_close("413 Request Entity Too Large", {}, "Too large")
      end
    else
      send_response_and_close("417 Expectation Failed", {}, "")
    end
  end
end

#on_message_beginObject



289
290
291
# File 'lib/fluent/plugin/in_http.rb', line 289

def on_message_begin
  @body = ''
end

#on_message_completeObject



350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
# File 'lib/fluent/plugin/in_http.rb', line 350

def on_message_complete
  return if closing?

  # CORS check
  # ==========
  # For every incoming request, we check if we have some CORS
  # restrictions and white listed origins through @cors_allow_origins.
  unless @cors_allow_origins.nil?
    unless @cors_allow_origins.include?(@origin)
      send_response_and_close("403 Forbidden", {'Connection' => 'close'}, "")
      return
    end
  end

  @env['REMOTE_ADDR'] = @remote_addr if @remote_addr

  uri = URI.parse(@parser.request_url)
  params = WEBrick::HTTPUtils.parse_query(uri.query)

  if @format_name != 'default'
    params[EVENT_RECORD_PARAMETER] = @body
  elsif @content_type =~ /^application\/x-www-form-urlencoded/
    params.update WEBrick::HTTPUtils.parse_query(@body)
  elsif @content_type =~ /^multipart\/form-data; boundary=(.+)/
    boundary = WEBrick::HTTPUtils.dequote($1)
    params.update WEBrick::HTTPUtils.parse_form_data(@body, boundary)
  elsif @content_type =~ /^application\/json/
    params['json'] = @body
  elsif @content_type =~ /^application\/msgpack/
    params['msgpack'] = @body
  end
  path_info = uri.path

  params.merge!(@env)
  @env.clear

  code, header, body = *@callback.call(path_info, params)
  body = body.to_s

  header['Access-Control-Allow-Origin'] = @origin if !@cors_allow_origins.nil? && @cors_allow_origins.include?(@origin)
  if @keep_alive
    header['Connection'] = 'Keep-Alive'
    send_response(code, header, body)
  else
    send_response_and_close(code, header, body)
  end
end

#on_read(data) ⇒ Object



280
281
282
283
284
285
286
287
# File 'lib/fluent/plugin/in_http.rb', line 280

def on_read(data)
  @idle = 0
  @parser << data
rescue
  @log.warn "unexpected error", error: $!.to_s
  @log.warn_backtrace
  close
end

#on_write_completeObject



398
399
400
# File 'lib/fluent/plugin/in_http.rb', line 398

def on_write_complete
  close if @next_close
end

#send_response(code, header, body) ⇒ Object



411
412
413
414
415
416
417
418
419
420
421
422
423
# File 'lib/fluent/plugin/in_http.rb', line 411

def send_response(code, header, body)
  header['Content-Length'] ||= body.bytesize
  header['Content-Type'] ||= 'text/plain'

  data = %[HTTP/1.1 #{code}\r\n]
  header.each_pair {|k,v|
    data << "#{k}: #{v}\r\n"
  }
  data << "\r\n"
  write data

  write body
end

#send_response_and_close(code, header, body) ⇒ Object



402
403
404
405
# File 'lib/fluent/plugin/in_http.rb', line 402

def send_response_and_close(code, header, body)
  send_response(code, header, body)
  @next_close = true
end

#send_response_nobody(code, header) ⇒ Object



425
426
427
428
429
430
431
432
# File 'lib/fluent/plugin/in_http.rb', line 425

def send_response_nobody(code, header)
  data = %[HTTP/1.1 #{code}\r\n]
  header.each_pair {|k,v|
    data << "#{k}: #{v}\r\n"
  }
  data << "\r\n"
  write data
end

#step_idleObject



268
269
270
# File 'lib/fluent/plugin/in_http.rb', line 268

def step_idle
  @idle += 1
end