blob: 1978a641e15cdd111aa87cc673c00ab8e81f30b6 [file] [log] [blame]
/*
* 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.nifi.controller;
import org.apache.nifi.controller.repository.FlowFileSwapManager;
import org.apache.nifi.repository.encryption.configuration.EncryptedRepositoryType;
import org.apache.nifi.repository.encryption.configuration.kms.RepositoryKeyProviderFactory;
import org.apache.nifi.repository.encryption.configuration.kms.StandardRepositoryKeyProviderFactory;
import org.apache.nifi.security.kms.KeyProvider;
import org.apache.nifi.util.NiFiProperties;
import javax.crypto.Cipher;
import javax.crypto.CipherInputStream;
import javax.crypto.CipherOutputStream;
import javax.crypto.SecretKey;
import javax.crypto.spec.GCMParameterSpec;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.security.GeneralSecurityException;
import java.security.SecureRandom;
/**
* <p>
* An implementation of {@link FlowFileSwapManager} that swaps FlowFiles
* to/from local disk. The swap file is encrypted using AES/GCM, using the
* encryption key defined in nifi.properties for the FlowFile repository.
* </p>
*/
public class EncryptedFileSystemSwapManager extends FileSystemSwapManager {
private static final String CIPHER_TRANSFORMATION = "AES/GCM/NoPadding";
private static final int SIZE_IV_AES_BYTES = 16;
private static final int SIZE_TAG_GCM_BITS = 128;
private static final SecureRandom secureRandom = new SecureRandom();
private final SecretKey secretKey;
public EncryptedFileSystemSwapManager(final NiFiProperties nifiProperties)
throws GeneralSecurityException {
super(nifiProperties);
final RepositoryKeyProviderFactory repositoryKeyProviderFactory = new StandardRepositoryKeyProviderFactory();
final KeyProvider keyProvider = repositoryKeyProviderFactory.getKeyProvider(EncryptedRepositoryType.FLOWFILE, nifiProperties);
final String keyId = nifiProperties.getFlowFileRepoEncryptionKeyId();
this.secretKey = keyProvider.getKey(keyId);
}
protected InputStream getInputStream(final File file) throws IOException {
final FileInputStream fis = new FileInputStream(file);
try {
final byte[] iv = new byte[SIZE_IV_AES_BYTES];
final int ivBytesRead = fis.read(iv);
if (ivBytesRead != SIZE_IV_AES_BYTES) {
throw new IOException(String.format(
"problem reading IV [expected=%d, actual=%d]", SIZE_IV_AES_BYTES, ivBytesRead));
}
final Cipher cipher = Cipher.getInstance(CIPHER_TRANSFORMATION);
cipher.init(Cipher.DECRYPT_MODE, secretKey, new GCMParameterSpec(SIZE_TAG_GCM_BITS, iv));
return new CipherInputStream(fis, cipher);
} catch (GeneralSecurityException e) {
throw new IOException(String.format("Preparing Cipher Failed for File [%s]", file.getAbsolutePath()), e);
}
}
protected OutputStream getOutputStream(final File file) throws IOException {
final byte[] iv = new byte[SIZE_IV_AES_BYTES];
secureRandom.nextBytes(iv);
final FileOutputStream fos = new FileOutputStream(file);
fos.write(iv);
try {
final Cipher cipher = Cipher.getInstance(CIPHER_TRANSFORMATION);
cipher.init(Cipher.ENCRYPT_MODE, secretKey, new GCMParameterSpec(SIZE_TAG_GCM_BITS, iv));
return new CipherOutputStream(fos, cipher);
} catch (GeneralSecurityException e) {
throw new IOException(String.format("Preparing Cipher Failed for File [%s]", file.getAbsolutePath()), e);
}
}
}