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 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 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 339 340 341 342 343 344 345 346 347 348 349 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 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
|
# frozen_string_literal: true
module Aws
module Plugins
# @api private
class ChecksumAlgorithm < Seahorse::Client::Plugin
CHECKSUM_CHUNK_SIZE = 1 * 1024 * 1024 # one MB
DEFAULT_TRAILER_CHUNK_SIZE = 16_384 # 16 KB
# determine the set of supported client side checksum algorithms
# CRC32c requires aws-crt (optional sdk dependency) for support
CLIENT_ALGORITHMS = begin
supported = %w[SHA256 SHA1 CRC32]
begin
require 'aws-crt'
supported << 'CRC32C'
supported << 'CRC64NVME' if Aws::Crt::GEM_VERSION >= '0.3.0'
rescue LoadError
# Ignored
end
supported
end.freeze
CRT_ALGORITHMS = %w[CRC32C CRC64NVME].freeze
DEFAULT_CHECKSUM = 'CRC32'
# Priority order of checksum algorithms to validate responses against.
# Remove any algorithms not supported by client (ie, depending on CRT availability).
# This list was chosen based on average performance.
CHECKSUM_ALGORITHM_PRIORITIES = %w[CRC32 CRC32C CRC64NVME SHA1 SHA256] & CLIENT_ALGORITHMS
# byte size of checksums, used in computing the trailer length
CHECKSUM_SIZE = {
'CRC32' => 9,
'CRC32C' => 9,
'CRC64NVME' => 13,
# SHA functions need 1 byte padding because of how they are encoded
'SHA1' => 28 + 1,
'SHA256' => 44 + 1
}.freeze
option(:request_checksum_calculation,
doc_default: 'when_supported',
doc_type: 'String',
docstring: <<~DOCS) do |cfg|
Determines when a checksum will be calculated for request payloads. Values are:
* `when_supported` - (default) When set, a checksum will be
calculated for all request payloads of operations modeled with the
`httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
`requestAlgorithmMember` is modeled.
* `when_required` - When set, a checksum will only be calculated for
request payloads of operations modeled with the `httpChecksum` trait where
`requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
is modeled and supplied.
DOCS
resolve_request_checksum_calculation(cfg)
end
option(:response_checksum_validation,
doc_default: 'when_supported',
doc_type: 'String',
docstring: <<~DOCS) do |cfg|
Determines when checksum validation will be performed on response payloads. Values are:
* `when_supported` - (default) When set, checksum validation is performed on all
response payloads of operations modeled with the `httpChecksum` trait where
`responseAlgorithms` is modeled, except when no modeled checksum algorithms
are supported.
* `when_required` - When set, checksum validation is not performed on
response payloads of operations unless the checksum algorithm is supported and
the `requestValidationModeMember` member is set to `ENABLED`.
DOCS
resolve_response_checksum_validation(cfg)
end
class << self
def digest_for_algorithm(algorithm)
case algorithm
when 'CRC32'
Digest.new(Zlib.method(:crc32), 'N')
when 'CRC32C'
Digest.new(Aws::Crt::Checksums.method(:crc32c), 'N')
when 'CRC64NVME'
Digest.new(Aws::Crt::Checksums.method(:crc64nvme), 'Q>')
when 'SHA1'
::Digest::SHA1.new
when 'SHA256'
::Digest::SHA256.new
else
raise ArgumentError,
"#{algorithm} is not a supported checksum algorithm."
end
end
# The trailer size (in bytes) is the overhead (0, \r, \n) + the trailer
# name + the bytesize of the base64 encoded checksum.
def trailer_length(algorithm, location_name)
7 + location_name.size + CHECKSUM_SIZE[algorithm]
end
private
def resolve_request_checksum_calculation(cfg)
mode = ENV['AWS_REQUEST_CHECKSUM_CALCULATION'] ||
Aws.shared_config.request_checksum_calculation(profile: cfg.profile) ||
'when_supported'
mode = mode.downcase
unless %w[when_supported when_required].include?(mode)
raise ArgumentError,
'expected :request_checksum_calculation or' \
" ENV['AWS_REQUEST_CHECKSUM_CALCULATION'] to be " \
'`when_supported` or `when_required`.'
end
mode
end
def resolve_response_checksum_validation(cfg)
mode = ENV['AWS_RESPONSE_CHECKSUM_VALIDATION'] ||
Aws.shared_config.response_checksum_validation(profile: cfg.profile) ||
'when_supported'
mode = mode.downcase
unless %w[when_supported when_required].include?(mode)
raise ArgumentError,
'expected :response_checksum_validation or' \
" ENV['AWS_RESPONSE_CHECKSUM_VALIDATION'] to be " \
'`when_supported` or `when_required`.'
end
mode
end
end
# Interface for computing digests on request/response bodies
# which may be files, strings or IO like objects.
# Applies only to digest functions that produce 32 or 64 bit
# integer checksums (eg CRC32 or CRC64).
class Digest
def initialize(digest_fn, directive)
@digest_fn = digest_fn
@directive = directive
@value = 0
end
def update(chunk)
@value = @digest_fn.call(chunk, @value)
end
def base64digest
Base64.encode64([@value].pack(@directive)).chomp
end
end
def add_handlers(handlers, _config)
handlers.add(OptionHandler, step: :initialize)
# Priority is set low to ensure the checksum is computed AFTER the
# request is built but before it is signed.
handlers.add(ChecksumHandler, priority: 15, step: :build)
end
class OptionHandler < Seahorse::Client::Handler
def call(context)
context[:http_checksum] ||= {}
# Set validation mode to enabled when supported.
enable_request_validation_mode(context) if context.config.response_checksum_validation == 'when_supported'
@handler.call(context)
end
private
def enable_request_validation_mode(context)
return unless context.operation.http_checksum
input_member = context.operation.http_checksum['requestValidationModeMember']
context.params[input_member.to_sym] ||= 'ENABLED' if input_member
end
end
class ChecksumHandler < Seahorse::Client::Handler
def call(context)
algorithm = nil
if should_calculate_request_checksum?(context)
algorithm = choose_request_algorithm!(context)
request_algorithm = {
algorithm: algorithm,
in: checksum_request_in(context),
name: "x-amz-checksum-#{algorithm.downcase}",
request_algorithm_header: request_algorithm_header(context)
}
context[:http_checksum][:request_algorithm] = request_algorithm
calculate_request_checksum(context, request_algorithm)
end
add_verify_response_checksum_handlers(context) if should_verify_response_checksum?(context)
with_metrics(context.config, algorithm) { @handler.call(context) }
end
private
def with_metrics(config, algorithm, &block)
metrics = []
add_request_config_metric(config, metrics)
add_response_config_metric(config, metrics)
add_request_checksum_metrics(algorithm, metrics)
Aws::Plugins::UserAgent.metric(*metrics, &block)
end
def add_request_config_metric(config, metrics)
case config.request_checksum_calculation
when 'when_supported'
metrics << 'FLEXIBLE_CHECKSUMS_REQ_WHEN_SUPPORTED'
when 'when_required'
metrics << 'FLEXIBLE_CHECKSUMS_REQ_WHEN_REQUIRED'
end
end
def add_response_config_metric(config, metrics)
case config.response_checksum_validation
when 'when_supported'
metrics << 'FLEXIBLE_CHECKSUMS_RES_WHEN_SUPPORTED'
when 'when_required'
metrics << 'FLEXIBLE_CHECKSUMS_RES_WHEN_REQUIRED'
end
end
def add_request_checksum_metrics(algorithm, metrics)
case algorithm
when 'CRC32'
metrics << 'FLEXIBLE_CHECKSUMS_REQ_CRC32'
when 'CRC32C'
metrics << 'FLEXIBLE_CHECKSUMS_REQ_CRC32C'
when 'CRC64NVME'
metrics << 'FLEXIBLE_CHECKSUMS_REQ_CRC64'
when 'SHA1'
metrics << 'FLEXIBLE_CHECKSUMS_REQ_SHA1'
when 'SHA256'
metrics << 'FLEXIBLE_CHECKSUMS_REQ_SHA256'
end
end
def request_algorithm_selection(context)
return unless context.operation.http_checksum
input_member = context.operation.http_checksum['requestAlgorithmMember']
context.params[input_member.to_sym] ||= DEFAULT_CHECKSUM if input_member
end
def request_algorithm_header(context)
input_member = context.operation.http_checksum['requestAlgorithmMember']
shape = context.operation.input.shape.member(input_member)
shape.location_name if shape && shape.location == 'header'
end
def request_validation_mode(context)
return unless context.operation.http_checksum
input_member = context.operation.http_checksum['requestValidationModeMember']
context.params[input_member.to_sym] if input_member
end
def operation_response_algorithms(context)
return unless context.operation.http_checksum
context.operation.http_checksum['responseAlgorithms']
end
def checksum_provided_as_header?(headers)
headers.any? { |k, _| k.start_with?('x-amz-checksum-') }
end
# Determines whether a request checksum should be calculated.
# 1. **No existing checksum in header**: Skips if checksum header already present
# 2. **Operation support**: Considers model, client configuration and user input.
def should_calculate_request_checksum?(context)
!checksum_provided_as_header?(context.http_request.headers) && checksum_applicable?(context)
end
# Checks if checksum calculation should proceed based on operation requirements and client settings.
# Returns true when any of these conditions are met:
# 1. http checksum's requestChecksumRequired is true
# 2. Config for request_checksum_calculation is "when_supported"
# 3. Config for request_checksum_calculation is "when_required" AND user provided checksum algorithm
def checksum_applicable?(context)
http_checksum = context.operation.http_checksum
return false unless http_checksum
return true if http_checksum['requestChecksumRequired']
return false unless (algorithm_member = http_checksum['requestAlgorithmMember'])
case context.config.request_checksum_calculation
when 'when_supported'
true
when 'when_required'
!context.params[algorithm_member.to_sym].nil?
else
false
end
end
def choose_request_algorithm!(context)
algorithm = request_algorithm_selection(context).upcase
return algorithm if CLIENT_ALGORITHMS.include?(algorithm)
if CRT_ALGORITHMS.include?(algorithm)
raise ArgumentError,
'CRC32C and CRC64NVME requires CRT support ' \
'- install the aws-crt gem'
end
raise ArgumentError,
"#{algorithm} is not a supported checksum algorithm."
end
def checksum_request_in(context)
return 'header' unless supports_trailer_checksums?(context.operation)
should_fallback_to_header?(context) ? 'header' : 'trailer'
end
def supports_trailer_checksums?(operation)
operation['unsignedPayload'] || operation['authtype'] == 'v4-unsigned-body'
end
def calculate_request_checksum(context, checksum_properties)
headers = context.http_request.headers
if (algorithm_header = checksum_properties[:request_algorithm_header])
headers[algorithm_header] = checksum_properties[:algorithm]
end
case checksum_properties[:in]
when 'header'
apply_request_checksum(context, headers, checksum_properties)
when 'trailer'
apply_request_trailer_checksum(context, headers, checksum_properties)
else
# nothing
end
end
def should_fallback_to_header?(context)
# Trailer implementation within Mac/JRUBY environment is facing some
# network issues that will need further investigation:
# * https://github.com/jruby/jruby-openssl/issues/271
# * https://github.com/jruby/jruby-openssl/issues/317
return true if defined?(JRUBY_VERSION)
# Chunked signing is currently not supported
# Https is required for unsigned payload for security
return true if context.http_request.endpoint.scheme == 'http'
context[:skip_trailer_checksums]
end
def apply_request_checksum(context, headers, checksum_properties)
header_name = checksum_properties[:name]
headers[header_name] = calculate_checksum(
checksum_properties[:algorithm],
context.http_request.body
)
end
def calculate_checksum(algorithm, body)
digest = ChecksumAlgorithm.digest_for_algorithm(algorithm)
if body.respond_to?(:read)
body.rewind
update_in_chunks(digest, body)
body.rewind
else
digest.update(body)
end
digest.base64digest
end
def update_in_chunks(digest, io)
loop do
chunk = io.read(CHECKSUM_CHUNK_SIZE)
break unless chunk
digest.update(chunk)
end
io.rewind
end
def apply_request_trailer_checksum(context, headers, checksum_properties)
location_name = checksum_properties[:name]
# set required headers
headers['Content-Encoding'] =
if headers['Content-Encoding']
headers['Content-Encoding'] += ', aws-chunked'
else
'aws-chunked'
end
headers['X-Amz-Content-Sha256'] = 'STREAMING-UNSIGNED-PAYLOAD-TRAILER'
headers['X-Amz-Trailer'] = location_name
# We currently always compute the size in the modified body wrapper - allowing us
# to set the Content-Length header (set by content_length plugin).
# This means we cannot use Transfer-Encoding=chunked
unless context.http_request.body.respond_to?(:size)
raise Aws::Errors::ChecksumError, 'Could not determine length of the body'
end
headers['X-Amz-Decoded-Content-Length'] = context.http_request.body.size
context.http_request.body =
AwsChunkedTrailerDigestIO.new(
io: context.http_request.body,
algorithm: checksum_properties[:algorithm],
location_name: location_name
)
end
def should_verify_response_checksum?(context)
request_validation_mode(context) == 'ENABLED'
end
# Add events to the http_response to verify the checksum as its read
# This prevents the body from being read multiple times
# verification is done only once a successful response has completed
def add_verify_response_checksum_handlers(context)
checksum_context = {}
add_verify_response_headers_handler(context, checksum_context)
add_verify_response_data_handler(context, checksum_context)
add_verify_response_success_handler(context, checksum_context)
end
def add_verify_response_headers_handler(context, checksum_context)
validation_list = CHECKSUM_ALGORITHM_PRIORITIES & operation_response_algorithms(context)
context[:http_checksum][:validation_list] = validation_list
context.http_response.on_headers do |_status, headers|
header_name, algorithm = response_header_to_verify(headers, validation_list)
next unless header_name
expected = headers[header_name]
next if context[:http_checksum][:skip_on_suffix] && /-\d+$/.match(expected)
checksum_context[:algorithm] = algorithm
checksum_context[:header_name] = header_name
checksum_context[:digest] = ChecksumAlgorithm.digest_for_algorithm(algorithm)
checksum_context[:expected] = expected
end
end
def add_verify_response_data_handler(context, checksum_context)
context.http_response.on_data do |chunk|
checksum_context[:digest]&.update(chunk)
end
end
def add_verify_response_success_handler(context, checksum_context)
context.http_response.on_success do
next unless checksum_context[:digest]
computed = checksum_context[:digest].base64digest
if computed == checksum_context[:expected]
context[:http_checksum][:validated] = checksum_context[:algorithm]
else
raise Aws::Errors::ChecksumError,
"Checksum validation failed on #{checksum_context[:header_name]} "\
"computed: #{computed}, expected: #{checksum_context[:expected]}"
end
end
end
def response_header_to_verify(headers, validation_list)
validation_list.each do |algorithm|
header_name = "x-amz-checksum-#{algorithm.downcase}"
return [header_name, algorithm] if headers[header_name]
end
nil
end
end
# Wrapper for request body that implements application-layer
# chunking with Digest computed on chunks + added as a trailer
class AwsChunkedTrailerDigestIO
CHUNK_OVERHEAD = 4 # "\r\n\r\n"
HEX_BASE = 16
def initialize(options = {})
@io = options.delete(:io)
@io.rewind if @io.respond_to?(:rewind)
@location_name = options.delete(:location_name)
@algorithm = options.delete(:algorithm)
@digest = ChecksumAlgorithm.digest_for_algorithm(@algorithm)
@chunk_size = Thread.current[:net_http_override_body_stream_chunk] || DEFAULT_TRAILER_CHUNK_SIZE
@overhead_bytes = calculate_overhead(@chunk_size)
@base_chunk_size = @chunk_size - @overhead_bytes
@encoded_buffer = +''
@eof = false
end
# the size of the application layer aws-chunked + trailer body
def size
orig_body_size = @io.size
n_full_chunks = orig_body_size / @base_chunk_size
partial_bytes = orig_body_size % @base_chunk_size
full_chunk_overhead = @base_chunk_size.to_s(HEX_BASE).size + CHUNK_OVERHEAD
chunked_body_size = n_full_chunks * (@base_chunk_size + full_chunk_overhead)
unless partial_bytes.zero?
chunked_body_size += partial_bytes.to_s(HEX_BASE).size + partial_bytes + CHUNK_OVERHEAD
end
trailer_size = ChecksumAlgorithm.trailer_length(@algorithm, @location_name)
chunked_body_size + trailer_size
end
def rewind
@io.rewind
@encoded_buffer = +''
@eof = false
@digest = ChecksumAlgorithm.digest_for_algorithm(@algorithm)
end
def read(length = nil, buf = nil)
return '' if length&.zero?
return if eof?
buf&.clear
output_buffer = buf || +''
fill_encoded_buffer(length)
if length
output_buffer << @encoded_buffer.slice!(0, length)
else
output_buffer << @encoded_buffer
@encoded_buffer.clear
end
output_buffer.empty? && eof? ? nil : output_buffer
end
def eof?
@eof && @encoded_buffer.empty?
end
private
def calculate_overhead(chunk_size)
chunk_size.to_s(HEX_BASE).size + CHUNK_OVERHEAD
end
def fill_encoded_buffer(required_length)
return if required_length && @encoded_buffer.bytesize >= required_length
while !@eof && fill_data?(required_length)
chunk = @io.read(@base_chunk_size)
if chunk && !chunk.empty?
@digest.update(chunk)
@encoded_buffer << "#{chunk.bytesize.to_s(HEX_BASE)}\r\n#{chunk}\r\n"
else
@encoded_buffer << "0\r\n#{trailer_string}\r\n\r\n"
@eof = true
end
end
end
def trailer_string
{ @location_name => @digest.base64digest }.map { |k, v| "#{k}:#{v}" }.join("\r\n")
end
# Returns true if more data needs to be read into the buffer
def fill_data?(length)
length.nil? || @encoded_buffer.bytesize < length
end
end
end
end
end
|