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
|
# frozen_string_literal: true
require 'forwardable'
module Aws
module S3
# [MAINTENANCE MODE] There is a new version of the Encryption Client.
# AWS strongly recommends upgrading to the {Aws::S3::EncryptionV2::Client},
# which provides updated data security best practices.
# See documentation for {Aws::S3::EncryptionV2::Client}.
# Provides an encryption client that encrypts and decrypts data client-side,
# storing the encrypted data in Amazon S3.
#
# This client uses a process called "envelope encryption". Your private
# encryption keys and your data's plain-text are **never** sent to
# Amazon S3. **If you lose you encryption keys, you will not be able to
# decrypt your data.**
#
# ## Envelope Encryption Overview
#
# The goal of envelope encryption is to combine the performance of
# fast symmetric encryption while maintaining the secure key management
# that asymmetric keys provide.
#
# A one-time-use symmetric key (envelope key) is generated client-side.
# This is used to encrypt the data client-side. This key is then
# encrypted by your master key and stored alongside your data in Amazon
# S3.
#
# When accessing your encrypted data with the encryption client,
# the encrypted envelope key is retrieved and decrypted client-side
# with your master key. The envelope key is then used to decrypt the
# data client-side.
#
# One of the benefits of envelope encryption is that if your master key
# is compromised, you have the option of just re-encrypting the stored
# envelope symmetric keys, instead of re-encrypting all of the
# data in your account.
#
# ## Basic Usage
#
# The encryption client requires an {Aws::S3::Client}. If you do not
# provide a `:client`, then a client will be constructed for you.
#
# require 'openssl'
# key = OpenSSL::PKey::RSA.new(1024)
#
# # encryption client
# s3 = Aws::S3::Encryption::Client.new(encryption_key: key)
#
# # round-trip an object, encrypted/decrypted locally
# s3.put_object(bucket:'aws-sdk', key:'secret', body:'handshake')
# s3.get_object(bucket:'aws-sdk', key:'secret').body.read
# #=> 'handshake'
#
# # reading encrypted object without the encryption client
# # results in the getting the cipher text
# Aws::S3::Client.new.get_object(bucket:'aws-sdk', key:'secret').body.read
# #=> "... cipher text ..."
#
# ## Keys
#
# For client-side encryption to work, you must provide one of the following:
#
# * An encryption key
# * A {KeyProvider}
# * A KMS encryption key id
#
# ### An Encryption Key
#
# You can pass a single encryption key. This is used as a master key
# encrypting and decrypting all object keys.
#
# key = OpenSSL::Cipher.new("AES-256-ECB").random_key # symmetric key
# key = OpenSSL::PKey::RSA.new(1024) # asymmetric key pair
#
# s3 = Aws::S3::Encryption::Client.new(encryption_key: key)
#
# ### Key Provider
#
# Alternatively, you can use a {KeyProvider}. A key provider makes
# it easy to work with multiple keys and simplifies key rotation.
#
# ### KMS Encryption Key Id
#
# If you pass the id to an AWS Key Management Service (KMS) key,
# then KMS will be used to generate, encrypt and decrypt object keys.
#
# # keep track of the kms key id
# kms = Aws::KMS::Client.new
# key_id = kms.create_key.key_metadata.key_id
#
# Aws::S3::Encryption::Client.new(
# kms_key_id: key_id,
# kms_client: kms,
# )
#
# ## Custom Key Providers
#
# A {KeyProvider} is any object that responds to:
#
# * `#encryption_materials`
# * `#key_for(materials_description)`
#
# Here is a trivial implementation of an in-memory key provider.
# This is provided as a demonstration of the key provider interface,
# and should not be used in production:
#
# class KeyProvider
#
# def initialize(default_key_name, keys)
# @keys = keys
# @encryption_materials = Aws::S3::Encryption::Materials.new(
# key: @keys[default_key_name],
# description: JSON.dump(key: default_key_name),
# )
# end
#
# attr_reader :encryption_materials
#
# def key_for(matdesc)
# key_name = JSON.parse(matdesc)['key']
# if key = @keys[key_name]
# key
# else
# raise "encryption key not found for: #{matdesc.inspect}"
# end
# end
# end
#
# Given the above key provider, you can create an encryption client that
# chooses the key to use based on the materials description stored with
# the encrypted object. This makes it possible to use multiple keys
# and simplifies key rotation.
#
# # uses "new-key" for encrypting objects, uses either for decrypting
# keys = KeyProvider.new('new-key', {
# "old-key" => Base64.decode64("kM5UVbhE/4rtMZJfsadYEdm2vaKFsmV2f5+URSeUCV4="),
# "new-key" => Base64.decode64("w1WLio3agRWRTSJK/Ouh8NHoqRQ6fn5WbSXDTHjXMSo="),
# }),
#
# # chooses the key based on the materials description stored
# # with the encrypted object
# s3 = Aws::S3::Encryption::Client.new(key_provider: keys)
#
# ## Materials Description
#
# A materials description is JSON document string that is stored
# in the metadata (or instruction file) of an encrypted object.
# The {DefaultKeyProvider} uses the empty JSON document `"{}"`.
#
# When building a key provider, you are free to store whatever
# information you need to identify the master key that was used
# to encrypt the object.
#
# ## Envelope Location
#
# By default, the encryption client store the encryption envelope
# with the object, as metadata. You can choose to have the envelope
# stored in a separate "instruction file". An instruction file
# is an object, with the key of the encrypted object, suffixed with
# `".instruction"`.
#
# Specify the `:envelope_location` option as `:instruction_file` to
# use an instruction file for storing the envelope.
#
# # default behavior
# s3 = Aws::S3::Encryption::Client.new(
# key_provider: ...,
# envelope_location: :metadata,
# )
#
# # store envelope in a separate object
# s3 = Aws::S3::Encryption::Client.new(
# key_provider: ...,
# envelope_location: :instruction_file,
# instruction_file_suffix: '.instruction' # default
# )
#
# When using an instruction file, multiple requests are made when
# putting and getting the object. **This may cause issues if you are
# issuing concurrent PUT and GET requests to an encrypted object.**
#
module Encryption
class Client
extend Deprecations
extend Forwardable
def_delegators :@client, :config, :delete_object, :head_object, :build_request
# Creates a new encryption client. You must provide one of the following
# options:
#
# * `:encryption_key`
# * `:kms_key_id`
# * `:key_provider`
#
# You may also pass any other options accepted by `Client#initialize`.
#
# @option options [S3::Client] :client A basic S3 client that is used
# to make api calls. If a `:client` is not provided, a new {S3::Client}
# will be constructed.
#
# @option options [OpenSSL::PKey::RSA, String] :encryption_key The master
# key to use for encrypting/decrypting all objects.
#
# @option options [String] :kms_key_id When you provide a `:kms_key_id`,
# then AWS Key Management Service (KMS) will be used to manage the
# object encryption keys. By default a {KMS::Client} will be
# constructed for KMS API calls. Alternatively, you can provide
# your own via `:kms_client`.
#
# @option options [#key_for] :key_provider Any object that responds
# to `#key_for`. This method should accept a materials description
# JSON document string and return return an encryption key.
#
# @option options [Symbol] :envelope_location (:metadata) Where to
# store the envelope encryption keys. By default, the envelope is
# stored with the encrypted object. If you pass `:instruction_file`,
# then the envelope is stored in a separate object in Amazon S3.
#
# @option options [String] :instruction_file_suffix ('.instruction')
# When `:envelope_location` is `:instruction_file` then the
# instruction file uses the object key with this suffix appended.
#
# @option options [KMS::Client] :kms_client A default {KMS::Client}
# is constructed when using KMS to manage encryption keys.
#
def initialize(options = {})
@client = extract_client(options)
@cipher_provider = cipher_provider(options)
@envelope_location = extract_location(options)
@instruction_file_suffix = extract_suffix(options)
end
deprecated :initialize,
message:
'[MAINTENANCE MODE] This version of the S3 Encryption client is currently in maintenance mode. ' \
'AWS strongly recommends upgrading to the Aws::S3::EncryptionV2::Client, ' \
'which provides updated data security best practices. ' \
'See documentation for Aws::S3::EncryptionV2::Client.'
# @return [S3::Client]
attr_reader :client
# @return [KeyProvider, nil] Returns `nil` if you are using
# AWS Key Management Service (KMS).
attr_reader :key_provider
# @return [Symbol<:metadata, :instruction_file>]
attr_reader :envelope_location
# @return [String] When {#envelope_location} is `:instruction_file`,
# the envelope is stored in the object with the object key suffixed
# by this string.
attr_reader :instruction_file_suffix
# Uploads an object to Amazon S3, encrypting data client-side.
# See {S3::Client#put_object} for documentation on accepted
# request parameters.
# @option (see S3::Client#put_object)
# @return (see S3::Client#put_object)
# @see S3::Client#put_object
def put_object(params = {})
req = @client.build_request(:put_object, params)
req.handlers.add(EncryptHandler, priority: 95)
req.context[:encryption] = {
cipher_provider: @cipher_provider,
envelope_location: @envelope_location,
instruction_file_suffix: @instruction_file_suffix,
}
Aws::Plugins::UserAgent.metric('S3_CRYPTO_V1N') do
req.send_request
end
end
# Gets an object from Amazon S3, decrypting data locally.
# See {S3::Client#get_object} for documentation on accepted
# request parameters.
# @option params [String] :instruction_file_suffix The suffix
# used to find the instruction file containing the encryption
# envelope. You should not set this option when the envelope
# is stored in the object metadata. Defaults to
# {#instruction_file_suffix}.
# @option params [String] :instruction_file_suffix
# @option (see S3::Client#get_object)
# @return (see S3::Client#get_object)
# @see S3::Client#get_object
# @note The `:range` request parameter is not yet supported.
def get_object(params = {}, &block)
if params[:range]
raise NotImplementedError, '#get_object with :range not supported yet'
end
envelope_location, instruction_file_suffix = envelope_options(params)
req = @client.build_request(:get_object, params)
req.handlers.add(DecryptHandler)
req.context[:encryption] = {
cipher_provider: @cipher_provider,
envelope_location: envelope_location,
instruction_file_suffix: instruction_file_suffix,
}
Aws::Plugins::UserAgent.metric('S3_CRYPTO_V1N') do
req.send_request(target: block)
end
end
private
def extract_client(options)
options[:client] || begin
options = options.dup
options.delete(:kms_key_id)
options.delete(:kms_client)
options.delete(:key_provider)
options.delete(:encryption_key)
options.delete(:envelope_location)
options.delete(:instruction_file_suffix)
S3::Client.new(options)
end
end
def kms_client(options)
options[:kms_client] || begin
KMS::Client.new(
region: @client.config.region,
credentials: @client.config.credentials,
)
end
end
def cipher_provider(options)
if options[:kms_key_id]
KmsCipherProvider.new(
kms_key_id: options[:kms_key_id],
kms_client: kms_client(options),
)
else
# kept here for backwards compatability, {#key_provider} is deprecated
@key_provider = extract_key_provider(options)
DefaultCipherProvider.new(key_provider: @key_provider)
end
end
def extract_key_provider(options)
if options[:key_provider]
options[:key_provider]
elsif options[:encryption_key]
DefaultKeyProvider.new(options)
else
msg = 'you must pass a :kms_key_id, :key_provider, or :encryption_key'
raise ArgumentError, msg
end
end
def envelope_options(params)
location = params.delete(:envelope_location) || @envelope_location
suffix = params.delete(:instruction_file_suffix)
if suffix
[:instruction_file, suffix]
else
[location, @instruction_file_suffix]
end
end
def extract_location(options)
location = options[:envelope_location] || :metadata
if [:metadata, :instruction_file].include?(location)
location
else
msg = ':envelope_location must be :metadata or :instruction_file '\
"got #{location.inspect}"
raise ArgumentError, msg
end
end
def extract_suffix(options)
suffix = options[:instruction_file_suffix] || '.instruction'
if String === suffix
suffix
else
msg = ':instruction_file_suffix must be a String'
raise ArgumentError, msg
end
end
end
end
end
end
|