2014-12-30 17:25:09 -05:00
|
|
|
# See http://docs.amazonwebservices.com/general/latest/gr/signature-version-4.html
|
2015-03-28 13:05:19 -04:00
|
|
|
|
2014-12-30 17:25:09 -05:00
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class SignatureV4
|
2015-01-02 12:34:40 -05:00
|
|
|
ALGORITHM = 'AWS4-HMAC-SHA256'
|
2015-03-28 13:05:19 -04:00
|
|
|
|
2014-12-30 17:25:09 -05:00
|
|
|
def initialize(aws_access_key_id, secret_key, region, service)
|
|
|
|
@region = region
|
|
|
|
@service = service
|
|
|
|
@aws_access_key_id = aws_access_key_id
|
2015-01-02 12:34:40 -05:00
|
|
|
@hmac = Fog::HMAC.new('sha256', 'AWS4' + secret_key)
|
2014-12-30 17:25:09 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def signature_parameters(params, date, body_sha = nil)
|
|
|
|
params = params.dup.merge(:query => params[:query].merge(
|
|
|
|
'X-Amz-Algorithm' => ALGORITHM,
|
|
|
|
'X-Amz-Credential' => "#{@aws_access_key_id}/#{credential_scope(date)}",
|
|
|
|
'X-Amz-SignedHeaders' => signed_headers(params[:headers])
|
|
|
|
))
|
|
|
|
signature_components(params, date, body_sha)
|
|
|
|
end
|
|
|
|
|
|
|
|
def signature_header(params, date, body_sha = nil)
|
|
|
|
components_to_header(signature_components(params, date, body_sha))
|
|
|
|
end
|
|
|
|
|
|
|
|
def sign(params, date) #legacy method name
|
|
|
|
signature_header(params, date)
|
|
|
|
end
|
|
|
|
|
|
|
|
def components_to_header components
|
|
|
|
"#{components['X-Amz-Algorithm']} Credential=#{components['X-Amz-Credential']}, SignedHeaders=#{components['X-Amz-SignedHeaders']}, Signature=#{components['X-Amz-Signature']}"
|
|
|
|
end
|
|
|
|
|
|
|
|
def signature_components(params, date, body_sha)
|
|
|
|
canonical_request = <<-DATA
|
|
|
|
#{params[:method].to_s.upcase}
|
|
|
|
#{canonical_path(params[:path])}
|
|
|
|
#{canonical_query_string(params[:query])}
|
|
|
|
#{canonical_headers(params[:headers])}
|
|
|
|
#{signed_headers(params[:headers])}
|
|
|
|
#{body_sha || Digest::SHA256.hexdigest(params[:body] || '')}
|
|
|
|
DATA
|
|
|
|
canonical_request.chop!
|
|
|
|
|
|
|
|
string_to_sign = <<-DATA
|
|
|
|
#{ALGORITHM}
|
|
|
|
#{date.to_iso8601_basic}
|
|
|
|
#{credential_scope(date)}
|
|
|
|
#{Digest::SHA256.hexdigest(canonical_request)}
|
|
|
|
DATA
|
|
|
|
|
|
|
|
string_to_sign.chop!
|
|
|
|
|
|
|
|
signature = derived_hmac(date).sign(string_to_sign)
|
|
|
|
|
|
|
|
{
|
|
|
|
'X-Amz-Algorithm' => ALGORITHM,
|
|
|
|
'X-Amz-Credential' => "#{@aws_access_key_id}/#{credential_scope(date)}",
|
|
|
|
'X-Amz-SignedHeaders' => signed_headers(params[:headers]),
|
|
|
|
'X-Amz-Signature' => signature.unpack('H*').first
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def derived_hmac(date)
|
|
|
|
kDate = @hmac.sign(date.utc.strftime('%Y%m%d'))
|
|
|
|
kRegion = Fog::HMAC.new('sha256', kDate).sign(@region)
|
|
|
|
kService = Fog::HMAC.new('sha256', kRegion).sign(@service)
|
|
|
|
kSigning = Fog::HMAC.new('sha256', kService).sign('aws4_request')
|
|
|
|
Fog::HMAC.new('sha256', kSigning)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def credential_scope(date)
|
|
|
|
"#{date.utc.strftime('%Y%m%d')}/#{@region}/#{@service}/aws4_request"
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def canonical_path(path)
|
2015-02-01 14:47:59 -05:00
|
|
|
#leading and trailing repeated slashes are collapsed, but not ones that appear elsewhere
|
|
|
|
path = path.gsub(%r{\A/+},'/').gsub(%r{/+\z},'/')
|
|
|
|
components = path.split('/',-1)
|
2014-12-30 17:25:09 -05:00
|
|
|
path = components.inject([]) do |acc, component|
|
|
|
|
case component
|
|
|
|
when '.' #canonicalize by removing .
|
|
|
|
when '..' then acc.pop#canonicalize by reducing ..
|
|
|
|
else
|
|
|
|
acc << component
|
|
|
|
end
|
|
|
|
acc
|
|
|
|
end.join('/')
|
|
|
|
path.empty? ? '/' : path
|
|
|
|
end
|
|
|
|
|
|
|
|
def canonical_query_string(query)
|
|
|
|
canonical_query_string = []
|
|
|
|
for key in (query || {}).keys.sort_by {|k| k.to_s}
|
|
|
|
component = "#{Fog::AWS.escape(key.to_s)}=#{Fog::AWS.escape(query[key].to_s)}"
|
|
|
|
canonical_query_string << component
|
|
|
|
end
|
|
|
|
canonical_query_string.join("&")
|
|
|
|
end
|
|
|
|
|
|
|
|
def canonical_headers(headers)
|
|
|
|
canonical_headers = ''
|
|
|
|
|
2015-01-11 16:06:22 -05:00
|
|
|
for key in headers.keys.sort_by {|k| k.to_s.downcase}
|
2014-12-30 17:25:09 -05:00
|
|
|
canonical_headers << "#{key.to_s.downcase}:#{headers[key].to_s.strip}\n"
|
|
|
|
end
|
|
|
|
canonical_headers
|
|
|
|
end
|
|
|
|
|
|
|
|
def signed_headers(headers)
|
2015-01-11 16:06:22 -05:00
|
|
|
headers.keys.map {|key| key.to_s.downcase}.sort.join(';')
|
2014-12-30 17:25:09 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|