From 11e7f2e5842f1aeaf2121044f47adf53bde0d8c6 Mon Sep 17 00:00:00 2001 From: Steve Loughran Date: Mon, 25 Jun 2018 17:27:49 +0100 Subject: [PATCH] HADOOP-15267. S3A multipart upload fails when SSE-C encryption is enabled. Contributed by Anis Elleuch. (cherry picked from commit 1dedc68f9d8d8544d715e67ee77cd3f017c21699) (cherry picked from commit cc0f14c13c1699489777b71a5c21bad27f9020ad) --- .../apache/hadoop/fs/s3a/S3AFileSystem.java | 17 ++++++ .../ITestS3AHugeFilesSSECDiskBlocks.java | 58 +++++++++++++++++++ 2 files changed, 75 insertions(+) create mode 100644 hadoop-tools/hadoop-aws/src/test/java/org/apache/hadoop/fs/s3a/scale/ITestS3AHugeFilesSSECDiskBlocks.java diff --git a/hadoop-tools/hadoop-aws/src/main/java/org/apache/hadoop/fs/s3a/S3AFileSystem.java b/hadoop-tools/hadoop-aws/src/main/java/org/apache/hadoop/fs/s3a/S3AFileSystem.java index f7068c45a62..c171a9e3f18 100644 --- a/hadoop-tools/hadoop-aws/src/main/java/org/apache/hadoop/fs/s3a/S3AFileSystem.java +++ b/hadoop-tools/hadoop-aws/src/main/java/org/apache/hadoop/fs/s3a/S3AFileSystem.java @@ -1300,6 +1300,7 @@ public class S3AFileSystem extends FileSystem { long len = request.getPartSize(); incrementPutStartStatistics(len); try { + setOptionalUploadPartRequestParameters(request); UploadPartResult uploadPartResult = s3.uploadPart(request); incrementPutCompletedStatistics(true, len); return uploadPartResult; @@ -2172,6 +2173,22 @@ public class S3AFileSystem extends FileSystem { } } + /** + * Sets server side encryption parameters to the part upload + * request when encryption is enabled. + * @param request upload part request + */ + protected void setOptionalUploadPartRequestParameters( + UploadPartRequest request) { + switch (serverSideEncryptionAlgorithm) { + case SSE_C: + if (StringUtils.isNotBlank(getServerSideEncryptionKey(getConf()))) { + request.setSSECustomerKey(generateSSECustomerKey()); + } + break; + default: + } + } protected void setOptionalCopyObjectRequestParameters( CopyObjectRequest copyObjectRequest) throws IOException { diff --git a/hadoop-tools/hadoop-aws/src/test/java/org/apache/hadoop/fs/s3a/scale/ITestS3AHugeFilesSSECDiskBlocks.java b/hadoop-tools/hadoop-aws/src/test/java/org/apache/hadoop/fs/s3a/scale/ITestS3AHugeFilesSSECDiskBlocks.java new file mode 100644 index 00000000000..2e5185bf55d --- /dev/null +++ b/hadoop-tools/hadoop-aws/src/test/java/org/apache/hadoop/fs/s3a/scale/ITestS3AHugeFilesSSECDiskBlocks.java @@ -0,0 +1,58 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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 org.apache.hadoop.fs.s3a.scale; + +import org.apache.hadoop.conf.Configuration; +import org.apache.hadoop.fs.s3a.Constants; +import org.apache.hadoop.fs.s3a.S3AEncryptionMethods; +import org.apache.hadoop.fs.s3a.S3ATestUtils; + +import static org.apache.hadoop.fs.s3a.S3ATestUtils.skipIfEncryptionTestsDisabled; + +/** + * Concrete class that extends {@link ITestS3AHugeFilesDiskBlocks} + * and tests huge files operations with SSE-C encryption enabled. + * Skipped if the SSE tests are disabled. + */ +public class ITestS3AHugeFilesSSECDiskBlocks + extends ITestS3AHugeFilesDiskBlocks { + + private static final String KEY_1 + = "4niV/jPK5VFRHY+KNb6wtqYd4xXyMgdJ9XQJpcQUVbs="; + + @Override + public void setup() throws Exception { + super.setup(); + skipIfEncryptionTestsDisabled(getConfiguration()); + } + + @Override + protected Configuration createScaleConfiguration() { + Configuration conf = super.createScaleConfiguration(); + S3ATestUtils.disableFilesystemCaching(conf); + conf.set(Constants.SERVER_SIDE_ENCRYPTION_ALGORITHM, + getSSEAlgorithm().getMethod()); + conf.set(Constants.SERVER_SIDE_ENCRYPTION_KEY, KEY_1); + return conf; + } + + private S3AEncryptionMethods getSSEAlgorithm() { + return S3AEncryptionMethods.SSE_C; + } +}