1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
# frozen_string_literal: true
require 'json'
require 'time'
require 'net/http'
module Aws
class ECSCredentials
include CredentialProvider
include RefreshingCredentials
# @api private
class Non200Response < RuntimeError; end
# These are the errors we trap when attempting to talk to the
# instance metadata service. Any of these imply the service
# is not present, no responding or some other non-recoverable
# error.
# @api private
NETWORK_ERRORS = [
Errno::EHOSTUNREACH,
Errno::ECONNREFUSED,
Errno::EHOSTDOWN,
Errno::ENETUNREACH,
SocketError,
Timeout::Error,
Non200Response,
]
# @param [Hash] options
# @option options [Integer] :retries (5) Number of times to retry
# when retrieving credentials.
# @option options [String] :ip_address ('169.254.170.2')
# @option options [Integer] :port (80)
# @option options [String] :credential_path By default, the value of the
# AWS_CONTAINER_CREDENTIALS_RELATIVE_URI environment variable.
# @option options [Float] :http_open_timeout (5)
# @option options [Float] :http_read_timeout (5)
# @option options [Numeric, Proc] :delay By default, failures are retried
# with exponential back-off, i.e. `sleep(1.2 ** num_failures)`. You can
# pass a number of seconds to sleep between failed attempts, or
# a Proc that accepts the number of failures.
# @option options [IO] :http_debug_output (nil) HTTP wire
# traces are sent to this object. You can specify something
# like $stdout.
def initialize options = {}
@retries = options[:retries] || 5
@ip_address = options[:ip_address] || '169.254.170.2'
@port = options[:port] || 80
@credential_path = options[:credential_path]
@credential_path ||= ENV['AWS_CONTAINER_CREDENTIALS_RELATIVE_URI']
unless @credential_path
raise ArgumentError.new(
"Cannot instantiate an ECS Credential Provider without a credential path."
)
end
@http_open_timeout = options[:http_open_timeout] || 5
@http_read_timeout = options[:http_read_timeout] || 5
@http_debug_output = options[:http_debug_output]
@backoff = backoff(options[:backoff])
super
end
# @return [Integer] The number of times to retry failed attempts to
# fetch credentials from the instance metadata service. Defaults to 0.
attr_reader :retries
private
def backoff(backoff)
case backoff
when Proc then backoff
when Numeric then lambda { |_| sleep(backoff) }
else lambda { |num_failures| Kernel.sleep(1.2 ** num_failures) }
end
end
def refresh
# Retry loading credentials up to 3 times is the instance metadata
# service is responding but is returning invalid JSON documents
# in response to the GET profile credentials call.
begin
retry_errors([JSON::ParserError, StandardError], max_retries: 3) do
c = JSON.parse(get_credentials.to_s)
@credentials = Credentials.new(
c['AccessKeyId'],
c['SecretAccessKey'],
c['Token']
)
@expiration = c['Expiration'] ? Time.iso8601(c['Expiration']) : nil
end
rescue JSON::ParserError
raise Aws::Errors::MetadataParserError.new
end
end
def get_credentials
# Retry loading credentials a configurable number of times if
# the instance metadata service is not responding.
begin
retry_errors(NETWORK_ERRORS, max_retries: @retries) do
open_connection do |conn|
http_get(conn, @credential_path)
end
end
rescue
'{}'
end
end
def open_connection
http = Net::HTTP.new(@ip_address, @port, nil)
http.open_timeout = @http_open_timeout
http.read_timeout = @http_read_timeout
http.set_debug_output(@http_debug_output) if @http_debug_output
http.start
yield(http).tap { http.finish }
end
def http_get(connection, path)
response = connection.request(Net::HTTP::Get.new(path))
if response.code.to_i == 200
response.body
else
raise Non200Response
end
end
def retry_errors(error_classes, options = {}, &block)
max_retries = options[:max_retries]
retries = 0
begin
yield
rescue *error_classes => _error
if retries < max_retries
@backoff.call(retries)
retries += 1
retry
else
raise
end
end
end
end
end
|