2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
2018-07-25 16:35:54 -04:00
|
|
|
//
|
2021-04-18 15:41:13 -04:00
|
|
|
// This file is part of MinIO Object Storage stack
|
2018-07-25 16:35:54 -04:00
|
|
|
//
|
2021-04-18 15:41:13 -04:00
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2018-07-25 16:35:54 -04:00
|
|
|
//
|
2021-04-18 15:41:13 -04:00
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-07-25 16:35:54 -04:00
|
|
|
|
|
|
|
package crypto
|
|
|
|
|
|
|
|
import (
|
2020-08-11 11:29:29 -04:00
|
|
|
xhttp "github.com/minio/minio/cmd/http"
|
2020-12-22 12:19:32 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// MetaMultipart indicates that the object has been uploaded
|
|
|
|
// in multiple parts - via the S3 multipart API.
|
|
|
|
MetaMultipart = "X-Minio-Internal-Encrypted-Multipart"
|
|
|
|
|
|
|
|
// MetaIV is the random initialization vector (IV) used for
|
|
|
|
// the MinIO-internal key derivation.
|
|
|
|
MetaIV = "X-Minio-Internal-Server-Side-Encryption-Iv"
|
|
|
|
|
|
|
|
// MetaAlgorithm is the algorithm used to derive internal keys
|
|
|
|
// and encrypt the objects.
|
|
|
|
MetaAlgorithm = "X-Minio-Internal-Server-Side-Encryption-Seal-Algorithm"
|
|
|
|
|
|
|
|
// MetaSealedKeySSEC is the sealed object encryption key in case of SSE-C.
|
|
|
|
MetaSealedKeySSEC = "X-Minio-Internal-Server-Side-Encryption-Sealed-Key"
|
|
|
|
// MetaSealedKeyS3 is the sealed object encryption key in case of SSE-S3
|
|
|
|
MetaSealedKeyS3 = "X-Minio-Internal-Server-Side-Encryption-S3-Sealed-Key"
|
|
|
|
// MetaSealedKeyKMS is the sealed object encryption key in case of SSE-KMS
|
|
|
|
MetaSealedKeyKMS = "X-Minio-Internal-Server-Side-Encryption-Kms-Sealed-Key"
|
|
|
|
|
|
|
|
// MetaKeyID is the KMS master key ID used to generate/encrypt the data
|
|
|
|
// encryption key (DEK).
|
|
|
|
MetaKeyID = "X-Minio-Internal-Server-Side-Encryption-S3-Kms-Key-Id"
|
|
|
|
// MetaDataEncryptionKey is the sealed data encryption key (DEK) received from
|
|
|
|
// the KMS.
|
|
|
|
MetaDataEncryptionKey = "X-Minio-Internal-Server-Side-Encryption-S3-Kms-Sealed-Key"
|
2021-02-03 18:19:08 -05:00
|
|
|
|
|
|
|
// MetaContext is the KMS context provided by a client when encrypting an
|
|
|
|
// object with SSE-KMS. A client may not send a context in which case the
|
|
|
|
// MetaContext will not be present.
|
|
|
|
// MetaContext only contains the bucket/object name if the client explicitly
|
|
|
|
// added it. However, when decrypting an object the bucket/object name must
|
|
|
|
// be part of the object. Therefore, the bucket/object name must be added
|
|
|
|
// to the context, if not present, whenever a decryption is performed.
|
|
|
|
MetaContext = "X-Minio-Internal-Server-Side-Encryption-Context"
|
2018-07-25 16:35:54 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// IsMultiPart returns true if the object metadata indicates
|
|
|
|
// that it was uploaded using some form of server-side-encryption
|
|
|
|
// and the S3 multipart API.
|
|
|
|
func IsMultiPart(metadata map[string]string) bool {
|
2020-12-22 12:19:32 -05:00
|
|
|
if _, ok := metadata[MetaMultipart]; ok {
|
2018-07-25 16:35:54 -04:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2018-09-24 11:32:51 -04:00
|
|
|
// RemoveSensitiveEntries removes confidential encryption
|
|
|
|
// information - e.g. the SSE-C key - from the metadata map.
|
|
|
|
// It has the same semantics as RemoveSensitiveHeaders.
|
|
|
|
func RemoveSensitiveEntries(metadata map[string]string) { // The functions is tested in TestRemoveSensitiveHeaders for compatibility reasons
|
2020-12-22 12:19:32 -05:00
|
|
|
delete(metadata, xhttp.AmzServerSideEncryptionCustomerKey)
|
|
|
|
delete(metadata, xhttp.AmzServerSideEncryptionCopyCustomerKey)
|
2020-08-11 11:29:29 -04:00
|
|
|
delete(metadata, xhttp.AmzMetaUnencryptedContentLength)
|
|
|
|
delete(metadata, xhttp.AmzMetaUnencryptedContentMD5)
|
2018-09-24 11:32:51 -04:00
|
|
|
}
|
|
|
|
|
2019-01-05 17:16:43 -05:00
|
|
|
// RemoveSSEHeaders removes all crypto-specific SSE
|
|
|
|
// header entries from the metadata map.
|
|
|
|
func RemoveSSEHeaders(metadata map[string]string) {
|
2020-12-22 12:19:32 -05:00
|
|
|
delete(metadata, xhttp.AmzServerSideEncryption)
|
|
|
|
delete(metadata, xhttp.AmzServerSideEncryptionKmsID)
|
|
|
|
delete(metadata, xhttp.AmzServerSideEncryptionKmsContext)
|
|
|
|
delete(metadata, xhttp.AmzServerSideEncryptionCustomerAlgorithm)
|
|
|
|
delete(metadata, xhttp.AmzServerSideEncryptionCustomerKey)
|
|
|
|
delete(metadata, xhttp.AmzServerSideEncryptionCustomerKeyMD5)
|
|
|
|
delete(metadata, xhttp.AmzServerSideEncryptionCopyCustomerAlgorithm)
|
|
|
|
delete(metadata, xhttp.AmzServerSideEncryptionCopyCustomerKey)
|
|
|
|
delete(metadata, xhttp.AmzServerSideEncryptionCopyCustomerKeyMD5)
|
2019-01-05 17:16:43 -05:00
|
|
|
}
|
|
|
|
|
2018-10-19 13:50:52 -04:00
|
|
|
// RemoveInternalEntries removes all crypto-specific internal
|
|
|
|
// metadata entries from the metadata map.
|
|
|
|
func RemoveInternalEntries(metadata map[string]string) {
|
2020-12-22 12:19:32 -05:00
|
|
|
delete(metadata, MetaMultipart)
|
|
|
|
delete(metadata, MetaAlgorithm)
|
|
|
|
delete(metadata, MetaIV)
|
|
|
|
delete(metadata, MetaSealedKeySSEC)
|
|
|
|
delete(metadata, MetaSealedKeyS3)
|
|
|
|
delete(metadata, MetaSealedKeyKMS)
|
|
|
|
delete(metadata, MetaKeyID)
|
|
|
|
delete(metadata, MetaDataEncryptionKey)
|
2018-10-19 13:50:52 -04:00
|
|
|
}
|
|
|
|
|
2020-08-22 14:41:49 -04:00
|
|
|
// IsSourceEncrypted returns true if the source is encrypted
|
|
|
|
func IsSourceEncrypted(metadata map[string]string) bool {
|
2020-12-22 12:19:32 -05:00
|
|
|
if _, ok := metadata[xhttp.AmzServerSideEncryptionCustomerAlgorithm]; ok {
|
2020-08-22 14:41:49 -04:00
|
|
|
return true
|
|
|
|
}
|
2020-12-22 12:19:32 -05:00
|
|
|
if _, ok := metadata[xhttp.AmzServerSideEncryption]; ok {
|
2020-08-22 14:41:49 -04:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2018-07-25 16:35:54 -04:00
|
|
|
// IsEncrypted returns true if the object metadata indicates
|
|
|
|
// that it was uploaded using some form of server-side-encryption.
|
|
|
|
//
|
|
|
|
// IsEncrypted only checks whether the metadata contains at least
|
|
|
|
// one entry indicating SSE-C or SSE-S3.
|
2021-02-03 18:19:08 -05:00
|
|
|
func IsEncrypted(metadata map[string]string) (Type, bool) {
|
|
|
|
if S3KMS.IsEncrypted(metadata) {
|
|
|
|
return S3KMS, true
|
2018-07-25 16:35:54 -04:00
|
|
|
}
|
2021-02-03 18:19:08 -05:00
|
|
|
if S3.IsEncrypted(metadata) {
|
|
|
|
return S3, true
|
|
|
|
}
|
|
|
|
if SSEC.IsEncrypted(metadata) {
|
|
|
|
return SSEC, true
|
2018-07-25 16:35:54 -04:00
|
|
|
}
|
|
|
|
if IsMultiPart(metadata) {
|
2021-02-03 18:19:08 -05:00
|
|
|
return nil, true
|
2018-07-25 16:35:54 -04:00
|
|
|
}
|
2021-02-03 18:19:08 -05:00
|
|
|
if _, ok := metadata[MetaIV]; ok {
|
|
|
|
return nil, true
|
2018-07-25 16:35:54 -04:00
|
|
|
}
|
2021-02-03 18:19:08 -05:00
|
|
|
if _, ok := metadata[MetaAlgorithm]; ok {
|
|
|
|
return nil, true
|
2018-07-25 16:35:54 -04:00
|
|
|
}
|
2021-02-03 18:19:08 -05:00
|
|
|
if _, ok := metadata[MetaKeyID]; ok {
|
|
|
|
return nil, true
|
2018-07-25 16:35:54 -04:00
|
|
|
}
|
2021-02-03 18:19:08 -05:00
|
|
|
if _, ok := metadata[MetaDataEncryptionKey]; ok {
|
|
|
|
return nil, true
|
|
|
|
}
|
|
|
|
if _, ok := metadata[MetaContext]; ok {
|
|
|
|
return nil, true
|
|
|
|
}
|
|
|
|
return nil, false
|
2018-07-25 16:35:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// CreateMultipartMetadata adds the multipart flag entry to metadata
|
|
|
|
// and returns modifed metadata. It allocates a new metadata map if
|
|
|
|
// metadata is nil.
|
|
|
|
func CreateMultipartMetadata(metadata map[string]string) map[string]string {
|
|
|
|
if metadata == nil {
|
2020-12-22 12:19:32 -05:00
|
|
|
return map[string]string{MetaMultipart: ""}
|
2018-07-25 16:35:54 -04:00
|
|
|
}
|
2020-12-22 12:19:32 -05:00
|
|
|
metadata[MetaMultipart] = ""
|
2018-07-25 16:35:54 -04:00
|
|
|
return metadata
|
|
|
|
}
|
|
|
|
|
2018-10-16 13:02:19 -04:00
|
|
|
// IsETagSealed returns true if the etag seems to be encrypted.
|
|
|
|
func IsETagSealed(etag []byte) bool { return len(etag) > 16 }
|