2017-11-07 18:18:59 -05:00
|
|
|
/*
|
2018-02-23 18:07:21 -05:00
|
|
|
* Minio Cloud Storage, (C) 2017, 2018 Minio, Inc.
|
2017-11-07 18:18:59 -05:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2018-03-05 11:02:56 -05:00
|
|
|
var hasSSECopyCustomerHeaderTests = []struct {
|
2018-02-23 18:07:21 -05:00
|
|
|
headers map[string]string
|
|
|
|
sseRequest bool
|
|
|
|
}{
|
|
|
|
{headers: map[string]string{SSECopyCustomerAlgorithm: "AES256", SSECopyCustomerKey: "key", SSECopyCustomerKeyMD5: "md5"}, sseRequest: true}, // 0
|
|
|
|
{headers: map[string]string{SSECopyCustomerAlgorithm: "AES256"}, sseRequest: true}, // 1
|
|
|
|
{headers: map[string]string{SSECopyCustomerKey: "key"}, sseRequest: true}, // 2
|
|
|
|
{headers: map[string]string{SSECopyCustomerKeyMD5: "md5"}, sseRequest: true}, // 3
|
|
|
|
{headers: map[string]string{}, sseRequest: false}, // 4
|
|
|
|
{headers: map[string]string{SSECopyCustomerAlgorithm + " ": "AES256", " " + SSECopyCustomerKey: "key", SSECopyCustomerKeyMD5 + " ": "md5"}, sseRequest: false}, // 5
|
|
|
|
{headers: map[string]string{SSECopyCustomerAlgorithm: "", SSECopyCustomerKey: "", SSECopyCustomerKeyMD5: ""}, sseRequest: false}, // 6
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestIsSSECopyCustomerRequest(t *testing.T) {
|
2018-03-05 11:02:56 -05:00
|
|
|
for i, test := range hasSSECopyCustomerHeaderTests {
|
2018-02-23 18:07:21 -05:00
|
|
|
headers := http.Header{}
|
|
|
|
for k, v := range test.headers {
|
|
|
|
headers.Set(k, v)
|
|
|
|
}
|
2018-03-05 11:02:56 -05:00
|
|
|
if hasSSECopyCustomerHeader(headers) != test.sseRequest {
|
|
|
|
t.Errorf("Test %d: Expected hasSSECopyCustomerHeader to return %v", i, test.sseRequest)
|
2018-02-23 18:07:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-05 11:02:56 -05:00
|
|
|
var hasSSECustomerHeaderTests = []struct {
|
2017-11-07 18:18:59 -05:00
|
|
|
headers map[string]string
|
|
|
|
sseRequest bool
|
|
|
|
}{
|
|
|
|
{headers: map[string]string{SSECustomerAlgorithm: "AES256", SSECustomerKey: "key", SSECustomerKeyMD5: "md5"}, sseRequest: true}, // 0
|
|
|
|
{headers: map[string]string{SSECustomerAlgorithm: "AES256"}, sseRequest: true}, // 1
|
|
|
|
{headers: map[string]string{SSECustomerKey: "key"}, sseRequest: true}, // 2
|
|
|
|
{headers: map[string]string{SSECustomerKeyMD5: "md5"}, sseRequest: true}, // 3
|
|
|
|
{headers: map[string]string{}, sseRequest: false}, // 4
|
|
|
|
{headers: map[string]string{SSECustomerAlgorithm + " ": "AES256", " " + SSECustomerKey: "key", SSECustomerKeyMD5 + " ": "md5"}, sseRequest: false}, // 5
|
|
|
|
{headers: map[string]string{SSECustomerAlgorithm: "", SSECustomerKey: "", SSECustomerKeyMD5: ""}, sseRequest: false}, // 6
|
|
|
|
}
|
|
|
|
|
2018-03-05 11:02:56 -05:00
|
|
|
func TesthasSSECustomerHeader(t *testing.T) {
|
|
|
|
for i, test := range hasSSECustomerHeaderTests {
|
2017-11-07 18:18:59 -05:00
|
|
|
headers := http.Header{}
|
|
|
|
for k, v := range test.headers {
|
|
|
|
headers.Set(k, v)
|
|
|
|
}
|
2018-03-05 11:02:56 -05:00
|
|
|
if hasSSECustomerHeader(headers) != test.sseRequest {
|
|
|
|
t.Errorf("Test %d: Expected hasSSECustomerHeader to return %v", i, test.sseRequest)
|
2017-11-07 18:18:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var parseSSECustomerRequestTests = []struct {
|
|
|
|
headers map[string]string
|
|
|
|
useTLS bool
|
|
|
|
err error
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
headers: map[string]string{
|
|
|
|
SSECustomerAlgorithm: "AES256",
|
|
|
|
SSECustomerKey: "XAm0dRrJsEsyPb1UuFNezv1bl9hxuYsgUVC/MUctE2k=", // 0
|
|
|
|
SSECustomerKeyMD5: "bY4wkxQejw9mUJfo72k53A==",
|
|
|
|
},
|
|
|
|
useTLS: true, err: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: map[string]string{
|
|
|
|
SSECustomerAlgorithm: "AES256",
|
|
|
|
SSECustomerKey: "XAm0dRrJsEsyPb1UuFNezv1bl9hxuYsgUVC/MUctE2k=", // 1
|
|
|
|
SSECustomerKeyMD5: "bY4wkxQejw9mUJfo72k53A==",
|
|
|
|
},
|
|
|
|
useTLS: false, err: errInsecureSSERequest,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: map[string]string{
|
|
|
|
SSECustomerAlgorithm: "AES 256",
|
|
|
|
SSECustomerKey: "XAm0dRrJsEsyPb1UuFNezv1bl9hxuYsgUVC/MUctE2k=", // 2
|
|
|
|
SSECustomerKeyMD5: "bY4wkxQejw9mUJfo72k53A==",
|
|
|
|
},
|
|
|
|
useTLS: true, err: errInvalidSSEAlgorithm,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: map[string]string{
|
|
|
|
SSECustomerAlgorithm: "AES256",
|
|
|
|
SSECustomerKey: "NjE0SL87s+ZhYtaTrg5eI5cjhCQLGPVMKenPG2bCJFw=", // 3
|
|
|
|
SSECustomerKeyMD5: "H+jq/LwEOEO90YtiTuNFVw==",
|
|
|
|
},
|
|
|
|
useTLS: true, err: errSSEKeyMD5Mismatch,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: map[string]string{
|
|
|
|
SSECustomerAlgorithm: "AES256",
|
|
|
|
SSECustomerKey: " jE0SL87s+ZhYtaTrg5eI5cjhCQLGPVMKenPG2bCJFw=", // 4
|
|
|
|
SSECustomerKeyMD5: "H+jq/LwEOEO90YtiTuNFVw==",
|
|
|
|
},
|
|
|
|
useTLS: true, err: errInvalidSSEKey,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: map[string]string{
|
|
|
|
SSECustomerAlgorithm: "AES256",
|
|
|
|
SSECustomerKey: "NjE0SL87s+ZhYtaTrg5eI5cjhCQLGPVMKenPG2bCJFw=", // 5
|
|
|
|
SSECustomerKeyMD5: " +jq/LwEOEO90YtiTuNFVw==",
|
|
|
|
},
|
|
|
|
useTLS: true, err: errSSEKeyMD5Mismatch,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: map[string]string{
|
|
|
|
SSECustomerAlgorithm: "AES256",
|
|
|
|
SSECustomerKey: "vFQ9ScFOF6Tu/BfzMS+rVMvlZGJHi5HmGJenJfrfKI45", // 6
|
|
|
|
SSECustomerKeyMD5: "9KPgDdZNTHimuYCwnJTp5g==",
|
|
|
|
},
|
|
|
|
useTLS: true, err: errInvalidSSEKey,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: map[string]string{
|
|
|
|
SSECustomerAlgorithm: "AES256",
|
|
|
|
SSECustomerKey: "", // 7
|
|
|
|
SSECustomerKeyMD5: "9KPgDdZNTHimuYCwnJTp5g==",
|
|
|
|
},
|
|
|
|
useTLS: true, err: errMissingSSEKey,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: map[string]string{
|
|
|
|
SSECustomerAlgorithm: "AES256",
|
|
|
|
SSECustomerKey: "vFQ9ScFOF6Tu/BfzMS+rVMvlZGJHi5HmGJenJfrfKI45", // 8
|
|
|
|
SSECustomerKeyMD5: "",
|
|
|
|
},
|
|
|
|
useTLS: true, err: errMissingSSEKeyMD5,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestParseSSECustomerRequest(t *testing.T) {
|
|
|
|
defer func(flag bool) { globalIsSSL = flag }(globalIsSSL)
|
|
|
|
for i, test := range parseSSECustomerRequestTests {
|
|
|
|
headers := http.Header{}
|
|
|
|
for k, v := range test.headers {
|
|
|
|
headers.Set(k, v)
|
|
|
|
}
|
|
|
|
request := &http.Request{}
|
|
|
|
request.Header = headers
|
|
|
|
globalIsSSL = test.useTLS
|
|
|
|
|
|
|
|
_, err := ParseSSECustomerRequest(request)
|
|
|
|
if err != test.err {
|
|
|
|
t.Errorf("Test %d: Parse returned: %v want: %v", i, err, test.err)
|
|
|
|
}
|
|
|
|
key := request.Header.Get(SSECustomerKey)
|
|
|
|
if (err == nil || err == errSSEKeyMD5Mismatch) && key != "" {
|
2018-02-23 18:07:21 -05:00
|
|
|
t.Errorf("Test %d: Client key survived parsing - found key: %v", i, key)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var parseSSECopyCustomerRequestTests = []struct {
|
|
|
|
headers map[string]string
|
|
|
|
useTLS bool
|
|
|
|
err error
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
headers: map[string]string{
|
|
|
|
SSECopyCustomerAlgorithm: "AES256",
|
|
|
|
SSECopyCustomerKey: "XAm0dRrJsEsyPb1UuFNezv1bl9hxuYsgUVC/MUctE2k=", // 0
|
|
|
|
SSECopyCustomerKeyMD5: "bY4wkxQejw9mUJfo72k53A==",
|
|
|
|
},
|
|
|
|
useTLS: true, err: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: map[string]string{
|
|
|
|
SSECopyCustomerAlgorithm: "AES256",
|
|
|
|
SSECopyCustomerKey: "XAm0dRrJsEsyPb1UuFNezv1bl9hxuYsgUVC/MUctE2k=", // 1
|
|
|
|
SSECopyCustomerKeyMD5: "bY4wkxQejw9mUJfo72k53A==",
|
|
|
|
},
|
|
|
|
useTLS: false, err: errInsecureSSERequest,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: map[string]string{
|
|
|
|
SSECopyCustomerAlgorithm: "AES 256",
|
|
|
|
SSECopyCustomerKey: "XAm0dRrJsEsyPb1UuFNezv1bl9hxuYsgUVC/MUctE2k=", // 2
|
|
|
|
SSECopyCustomerKeyMD5: "bY4wkxQejw9mUJfo72k53A==",
|
|
|
|
},
|
|
|
|
useTLS: true, err: errInvalidSSEAlgorithm,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: map[string]string{
|
|
|
|
SSECopyCustomerAlgorithm: "AES256",
|
|
|
|
SSECopyCustomerKey: "NjE0SL87s+ZhYtaTrg5eI5cjhCQLGPVMKenPG2bCJFw=", // 3
|
|
|
|
SSECopyCustomerKeyMD5: "H+jq/LwEOEO90YtiTuNFVw==",
|
|
|
|
},
|
|
|
|
useTLS: true, err: errSSEKeyMD5Mismatch,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: map[string]string{
|
|
|
|
SSECopyCustomerAlgorithm: "AES256",
|
|
|
|
SSECopyCustomerKey: " jE0SL87s+ZhYtaTrg5eI5cjhCQLGPVMKenPG2bCJFw=", // 4
|
|
|
|
SSECopyCustomerKeyMD5: "H+jq/LwEOEO90YtiTuNFVw==",
|
|
|
|
},
|
|
|
|
useTLS: true, err: errInvalidSSEKey,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: map[string]string{
|
|
|
|
SSECopyCustomerAlgorithm: "AES256",
|
|
|
|
SSECopyCustomerKey: "NjE0SL87s+ZhYtaTrg5eI5cjhCQLGPVMKenPG2bCJFw=", // 5
|
|
|
|
SSECopyCustomerKeyMD5: " +jq/LwEOEO90YtiTuNFVw==",
|
|
|
|
},
|
|
|
|
useTLS: true, err: errSSEKeyMD5Mismatch,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: map[string]string{
|
|
|
|
SSECopyCustomerAlgorithm: "AES256",
|
|
|
|
SSECopyCustomerKey: "vFQ9ScFOF6Tu/BfzMS+rVMvlZGJHi5HmGJenJfrfKI45", // 6
|
|
|
|
SSECopyCustomerKeyMD5: "9KPgDdZNTHimuYCwnJTp5g==",
|
|
|
|
},
|
|
|
|
useTLS: true, err: errInvalidSSEKey,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: map[string]string{
|
|
|
|
SSECopyCustomerAlgorithm: "AES256",
|
|
|
|
SSECopyCustomerKey: "", // 7
|
|
|
|
SSECopyCustomerKeyMD5: "9KPgDdZNTHimuYCwnJTp5g==",
|
|
|
|
},
|
|
|
|
useTLS: true, err: errMissingSSEKey,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: map[string]string{
|
|
|
|
SSECopyCustomerAlgorithm: "AES256",
|
|
|
|
SSECopyCustomerKey: "vFQ9ScFOF6Tu/BfzMS+rVMvlZGJHi5HmGJenJfrfKI45", // 8
|
|
|
|
SSECopyCustomerKeyMD5: "",
|
|
|
|
},
|
|
|
|
useTLS: true, err: errMissingSSEKeyMD5,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestParseSSECopyCustomerRequest(t *testing.T) {
|
|
|
|
defer func(flag bool) { globalIsSSL = flag }(globalIsSSL)
|
|
|
|
for i, test := range parseSSECopyCustomerRequestTests {
|
|
|
|
headers := http.Header{}
|
|
|
|
for k, v := range test.headers {
|
|
|
|
headers.Set(k, v)
|
|
|
|
}
|
|
|
|
request := &http.Request{}
|
|
|
|
request.Header = headers
|
|
|
|
globalIsSSL = test.useTLS
|
|
|
|
|
|
|
|
_, err := ParseSSECopyCustomerRequest(request)
|
|
|
|
if err != test.err {
|
|
|
|
t.Errorf("Test %d: Parse returned: %v want: %v", i, err, test.err)
|
|
|
|
}
|
|
|
|
key := request.Header.Get(SSECopyCustomerKey)
|
|
|
|
if (err == nil || err == errSSEKeyMD5Mismatch) && key != "" {
|
2017-11-07 18:18:59 -05:00
|
|
|
t.Errorf("Test %d: Client key survived parsing - found key: %v", i, key)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var encryptRequestTests = []struct {
|
|
|
|
header map[string]string
|
|
|
|
metadata map[string]string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
header: map[string]string{
|
|
|
|
SSECustomerAlgorithm: "AES256",
|
|
|
|
SSECustomerKey: "XAm0dRrJsEsyPb1UuFNezv1bl9hxuYsgUVC/MUctE2k=",
|
|
|
|
SSECustomerKeyMD5: "bY4wkxQejw9mUJfo72k53A==",
|
|
|
|
},
|
|
|
|
metadata: map[string]string{},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
header: map[string]string{
|
|
|
|
SSECustomerAlgorithm: "AES256",
|
|
|
|
SSECustomerKey: "XAm0dRrJsEsyPb1UuFNezv1bl9hxuYsgUVC/MUctE2k=",
|
|
|
|
SSECustomerKeyMD5: "bY4wkxQejw9mUJfo72k53A==",
|
|
|
|
},
|
|
|
|
metadata: map[string]string{
|
|
|
|
SSECustomerKey: "XAm0dRrJsEsyPb1UuFNezv1bl9hxuYsgUVC/MUctE2k=",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestEncryptRequest(t *testing.T) {
|
|
|
|
defer func(flag bool) { globalIsSSL = flag }(globalIsSSL)
|
|
|
|
globalIsSSL = true
|
|
|
|
for i, test := range encryptRequestTests {
|
|
|
|
content := bytes.NewReader(make([]byte, 64))
|
|
|
|
req := &http.Request{Header: http.Header{}}
|
|
|
|
for k, v := range test.header {
|
|
|
|
req.Header.Set(k, v)
|
|
|
|
}
|
2018-07-09 20:18:28 -04:00
|
|
|
_, err := EncryptRequest(content, req, "bucket", "object", test.metadata)
|
2017-11-07 18:18:59 -05:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Test %d: Failed to encrypt request: %v", i, err)
|
|
|
|
}
|
|
|
|
if key, ok := test.metadata[SSECustomerKey]; ok {
|
|
|
|
t.Errorf("Test %d: Client provided key survived in metadata - key: %s", i, key)
|
|
|
|
}
|
2017-11-10 20:21:23 -05:00
|
|
|
if kdf, ok := test.metadata[ServerSideEncryptionSealAlgorithm]; !ok {
|
2017-11-07 18:18:59 -05:00
|
|
|
t.Errorf("Test %d: ServerSideEncryptionKDF must be part of metadata: %v", i, kdf)
|
|
|
|
}
|
|
|
|
if iv, ok := test.metadata[ServerSideEncryptionIV]; !ok {
|
|
|
|
t.Errorf("Test %d: ServerSideEncryptionIV must be part of metadata: %v", i, iv)
|
|
|
|
}
|
2017-11-10 20:21:23 -05:00
|
|
|
if mac, ok := test.metadata[ServerSideEncryptionSealedKey]; !ok {
|
2017-11-07 18:18:59 -05:00
|
|
|
t.Errorf("Test %d: ServerSideEncryptionKeyMAC must be part of metadata: %v", i, mac)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var decryptRequestTests = []struct {
|
2018-07-09 20:18:28 -04:00
|
|
|
bucket, object string
|
|
|
|
header map[string]string
|
|
|
|
metadata map[string]string
|
|
|
|
shouldFail bool
|
2017-11-07 18:18:59 -05:00
|
|
|
}{
|
|
|
|
{
|
2018-07-09 20:18:28 -04:00
|
|
|
bucket: "bucket",
|
|
|
|
object: "object",
|
2017-11-07 18:18:59 -05:00
|
|
|
header: map[string]string{
|
|
|
|
SSECustomerAlgorithm: "AES256",
|
2017-11-10 20:21:23 -05:00
|
|
|
SSECustomerKey: "MzJieXRlc2xvbmdzZWNyZXRrZXltdXN0cHJvdmlkZWQ=",
|
|
|
|
SSECustomerKeyMD5: "7PpPLAK26ONlVUGOWlusfg==",
|
2017-11-07 18:18:59 -05:00
|
|
|
},
|
|
|
|
metadata: map[string]string{
|
2017-11-10 20:21:23 -05:00
|
|
|
ServerSideEncryptionSealAlgorithm: SSESealAlgorithmDareSha256,
|
|
|
|
ServerSideEncryptionIV: "7nQqotA8xgrPx6QK7Ap3GCfjKitqJSrGP7xzgErSJlw=",
|
|
|
|
ServerSideEncryptionSealedKey: "EAAfAAAAAAD7v1hQq3PFRUHsItalxmrJqrOq6FwnbXNarxOOpb8jTWONPPKyM3Gfjkjyj6NCf+aB/VpHCLCTBA==",
|
2017-11-07 18:18:59 -05:00
|
|
|
},
|
|
|
|
shouldFail: false,
|
|
|
|
},
|
|
|
|
{
|
2018-07-09 20:18:28 -04:00
|
|
|
bucket: "bucket",
|
|
|
|
object: "object",
|
|
|
|
header: map[string]string{
|
|
|
|
SSECustomerAlgorithm: "AES256",
|
|
|
|
SSECustomerKey: "MzJieXRlc2xvbmdzZWNyZXRrZXltdXN0cHJvdmlkZWQ=",
|
|
|
|
SSECustomerKeyMD5: "7PpPLAK26ONlVUGOWlusfg==",
|
|
|
|
},
|
|
|
|
metadata: map[string]string{
|
|
|
|
ServerSideEncryptionSealAlgorithm: SSESealAlgorithmDareV2HmacSha256,
|
|
|
|
ServerSideEncryptionIV: "qEqmsONcorqlcZXJxaw32H04eyXyXwUgjHzlhkaIYrU=",
|
|
|
|
ServerSideEncryptionSealedKey: "IAAfAIM14ugTGcM/dIrn4iQMrkl1sjKyeBQ8FBEvRebYj8vWvxG+0cJRpC6NXRU1wJN50JaUOATjO7kz0wZ2mA==",
|
|
|
|
},
|
|
|
|
shouldFail: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
bucket: "bucket",
|
|
|
|
object: "object",
|
2017-11-07 18:18:59 -05:00
|
|
|
header: map[string]string{
|
|
|
|
SSECustomerAlgorithm: "AES256",
|
|
|
|
SSECustomerKey: "XAm0dRrJsEsyPb1UuFNezv1bl9hxuYsgUVC/MUctE2k=",
|
|
|
|
SSECustomerKeyMD5: "bY4wkxQejw9mUJfo72k53A==",
|
|
|
|
},
|
|
|
|
metadata: map[string]string{
|
2017-11-10 20:21:23 -05:00
|
|
|
ServerSideEncryptionSealAlgorithm: "HMAC-SHA3",
|
|
|
|
ServerSideEncryptionIV: "XAm0dRrJsEsyPb1UuFNezv1bl9hxuYsgUVC/MUctE2k=",
|
|
|
|
ServerSideEncryptionSealedKey: "SY5E9AvI2tI7/nUrUAssIGE32Hcs4rR9z/CUuPqu5N4=",
|
2017-11-07 18:18:59 -05:00
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
},
|
|
|
|
{
|
2018-07-09 20:18:28 -04:00
|
|
|
bucket: "bucket",
|
|
|
|
object: "object",
|
2017-11-07 18:18:59 -05:00
|
|
|
header: map[string]string{
|
|
|
|
SSECustomerAlgorithm: "AES256",
|
|
|
|
SSECustomerKey: "XAm0dRrJsEsyPb1UuFNezv1bl9hxuYsgUVC/MUctE2k=",
|
|
|
|
SSECustomerKeyMD5: "bY4wkxQejw9mUJfo72k53A==",
|
|
|
|
},
|
|
|
|
metadata: map[string]string{
|
2017-11-10 20:21:23 -05:00
|
|
|
ServerSideEncryptionSealAlgorithm: SSESealAlgorithmDareSha256,
|
|
|
|
ServerSideEncryptionIV: "RrJsEsyPb1UuFNezv1bl9hxuYsgUVC/MUctE2k=",
|
|
|
|
ServerSideEncryptionSealedKey: "SY5E9AvI2tI7/nUrUAssIGE32Hcs4rR9z/CUuPqu5N4=",
|
2017-11-07 18:18:59 -05:00
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
},
|
|
|
|
{
|
2018-07-09 20:18:28 -04:00
|
|
|
bucket: "bucket",
|
|
|
|
object: "object",
|
2017-11-07 18:18:59 -05:00
|
|
|
header: map[string]string{
|
|
|
|
SSECustomerAlgorithm: "AES256",
|
|
|
|
SSECustomerKey: "XAm0dRrJsEsyPb1UuFNezv1bl9hxuYsgUVC/MUctE2k=",
|
|
|
|
SSECustomerKeyMD5: "bY4wkxQejw9mUJfo72k53A==",
|
|
|
|
},
|
|
|
|
metadata: map[string]string{
|
2017-11-10 20:21:23 -05:00
|
|
|
ServerSideEncryptionSealAlgorithm: SSESealAlgorithmDareSha256,
|
|
|
|
ServerSideEncryptionIV: "XAm0dRrJsEsyPb1UuFNezv1bl9ehxuYsgUVC/MUctE2k=",
|
|
|
|
ServerSideEncryptionSealedKey: "SY5E9AvI2tI7/nUrUAssIGE32Hds4rR9z/CUuPqu5N4=",
|
2017-11-07 18:18:59 -05:00
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
},
|
2018-07-09 20:18:28 -04:00
|
|
|
{
|
|
|
|
bucket: "bucket",
|
|
|
|
object: "object-2",
|
|
|
|
header: map[string]string{
|
|
|
|
SSECustomerAlgorithm: "AES256",
|
|
|
|
SSECustomerKey: "MzJieXRlc2xvbmdzZWNyZXRrZXltdXN0cHJvdmlkZWQ=",
|
|
|
|
SSECustomerKeyMD5: "7PpPLAK26ONlVUGOWlusfg==",
|
|
|
|
},
|
|
|
|
metadata: map[string]string{
|
|
|
|
ServerSideEncryptionSealAlgorithm: SSESealAlgorithmDareV2HmacSha256,
|
|
|
|
ServerSideEncryptionIV: "qEqmsONcorqlcZXJxaw32H04eyXyXwUgjHzlhkaIYrU=",
|
|
|
|
ServerSideEncryptionSealedKey: "IAAfAIM14ugTGcM/dIrn4iQMrkl1sjKyeBQ8FBEvRebYj8vWvxG+0cJRpC6NXRU1wJN50JaUOATjO7kz0wZ2mA==",
|
|
|
|
},
|
|
|
|
shouldFail: true,
|
|
|
|
},
|
2017-11-07 18:18:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestDecryptRequest(t *testing.T) {
|
|
|
|
defer func(flag bool) { globalIsSSL = flag }(globalIsSSL)
|
|
|
|
globalIsSSL = true
|
2018-07-09 20:18:28 -04:00
|
|
|
for i, test := range decryptRequestTests[1:] {
|
2017-11-07 18:18:59 -05:00
|
|
|
client := bytes.NewBuffer(nil)
|
|
|
|
req := &http.Request{Header: http.Header{}}
|
|
|
|
for k, v := range test.header {
|
|
|
|
req.Header.Set(k, v)
|
|
|
|
}
|
2018-07-09 20:18:28 -04:00
|
|
|
_, err := DecryptRequest(client, req, test.bucket, test.object, test.metadata)
|
2017-11-07 18:18:59 -05:00
|
|
|
if err != nil && !test.shouldFail {
|
|
|
|
t.Fatalf("Test %d: Failed to encrypt request: %v", i, err)
|
|
|
|
}
|
2018-07-09 20:18:28 -04:00
|
|
|
if err == nil && test.shouldFail {
|
|
|
|
t.Fatalf("Test %d: should fail but passed", i)
|
|
|
|
}
|
2017-11-07 18:18:59 -05:00
|
|
|
if key, ok := test.metadata[SSECustomerKey]; ok {
|
|
|
|
t.Errorf("Test %d: Client provided key survived in metadata - key: %s", i, key)
|
|
|
|
}
|
2017-11-10 20:21:23 -05:00
|
|
|
if kdf, ok := test.metadata[ServerSideEncryptionSealAlgorithm]; ok && !test.shouldFail {
|
2017-11-07 18:18:59 -05:00
|
|
|
t.Errorf("Test %d: ServerSideEncryptionKDF should not be part of metadata: %v", i, kdf)
|
|
|
|
}
|
|
|
|
if iv, ok := test.metadata[ServerSideEncryptionIV]; ok && !test.shouldFail {
|
|
|
|
t.Errorf("Test %d: ServerSideEncryptionIV should not be part of metadata: %v", i, iv)
|
|
|
|
}
|
2017-11-10 20:21:23 -05:00
|
|
|
if mac, ok := test.metadata[ServerSideEncryptionSealedKey]; ok && !test.shouldFail {
|
2017-11-07 18:18:59 -05:00
|
|
|
t.Errorf("Test %d: ServerSideEncryptionKeyMAC should not be part of metadata: %v", i, mac)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var decryptObjectInfoTests = []struct {
|
|
|
|
info ObjectInfo
|
|
|
|
headers http.Header
|
|
|
|
expErr APIErrorCode
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
info: ObjectInfo{Size: 100},
|
|
|
|
headers: http.Header{},
|
|
|
|
expErr: ErrNone,
|
|
|
|
},
|
|
|
|
{
|
2017-11-10 20:21:23 -05:00
|
|
|
info: ObjectInfo{Size: 100, UserDefined: map[string]string{ServerSideEncryptionSealAlgorithm: SSESealAlgorithmDareSha256}},
|
2017-11-07 18:18:59 -05:00
|
|
|
headers: http.Header{SSECustomerAlgorithm: []string{SSECustomerAlgorithmAES256}},
|
|
|
|
expErr: ErrNone,
|
|
|
|
},
|
|
|
|
{
|
2017-11-10 20:21:23 -05:00
|
|
|
info: ObjectInfo{Size: 0, UserDefined: map[string]string{ServerSideEncryptionSealAlgorithm: SSESealAlgorithmDareSha256}},
|
2017-11-07 18:18:59 -05:00
|
|
|
headers: http.Header{SSECustomerAlgorithm: []string{SSECustomerAlgorithmAES256}},
|
|
|
|
expErr: ErrNone,
|
|
|
|
},
|
|
|
|
{
|
2017-11-10 20:21:23 -05:00
|
|
|
info: ObjectInfo{Size: 100, UserDefined: map[string]string{ServerSideEncryptionSealAlgorithm: SSESealAlgorithmDareSha256}},
|
2017-11-07 18:18:59 -05:00
|
|
|
headers: http.Header{},
|
|
|
|
expErr: ErrSSEEncryptedObject,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
info: ObjectInfo{Size: 100, UserDefined: map[string]string{}},
|
|
|
|
headers: http.Header{SSECustomerAlgorithm: []string{SSECustomerAlgorithmAES256}},
|
|
|
|
expErr: ErrInvalidEncryptionParameters,
|
|
|
|
},
|
|
|
|
{
|
2017-11-10 20:21:23 -05:00
|
|
|
info: ObjectInfo{Size: 31, UserDefined: map[string]string{ServerSideEncryptionSealAlgorithm: SSESealAlgorithmDareSha256}},
|
2017-11-07 18:18:59 -05:00
|
|
|
headers: http.Header{SSECustomerAlgorithm: []string{SSECustomerAlgorithmAES256}},
|
|
|
|
expErr: ErrObjectTampered,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDecryptObjectInfo(t *testing.T) {
|
|
|
|
for i, test := range decryptObjectInfoTests {
|
|
|
|
if err, encrypted := DecryptObjectInfo(&test.info, test.headers); err != test.expErr {
|
|
|
|
t.Errorf("Test %d: Decryption returned wrong error code: got %d , want %d", i, err, test.expErr)
|
|
|
|
} else if enc := test.info.IsEncrypted(); encrypted && enc != encrypted {
|
|
|
|
t.Errorf("Test %d: Decryption thinks object is encrypted but it is not", i)
|
|
|
|
} else if !encrypted && enc != encrypted {
|
|
|
|
t.Errorf("Test %d: Decryption thinks object is not encrypted but it is", i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|