org.apache.hadoop.hbase.security.EncryptionUtil.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.hadoop.hbase.security.EncryptionUtil.java

Source

/*
 * 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.hbase.security;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.security.Key;
import java.security.KeyException;
import java.security.SecureRandom;

import javax.crypto.spec.SecretKeySpec;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.HColumnDescriptor;
import org.apache.hadoop.hbase.HConstants;
import org.apache.hadoop.hbase.classification.InterfaceAudience;
import org.apache.hadoop.hbase.classification.InterfaceStability;
import org.apache.hadoop.hbase.io.crypto.Cipher;
import org.apache.hadoop.hbase.io.crypto.Encryption;
import org.apache.hadoop.hbase.protobuf.generated.EncryptionProtos;
import org.apache.hadoop.hbase.util.ByteStringer;
import org.apache.hadoop.hbase.util.Bytes;

/**
 * Some static utility methods for encryption uses in hbase-client.
 */
@InterfaceAudience.Private
@InterfaceStability.Evolving
public final class EncryptionUtil {
    static private final Log LOG = LogFactory.getLog(EncryptionUtil.class);

    static private final SecureRandom RNG = new SecureRandom();

    /**
     * Private constructor to keep this class from being instantiated.
     */
    private EncryptionUtil() {
    }

    /**
     * Protect a key by encrypting it with the secret key of the given subject.
     * The configuration must be set up correctly for key alias resolution.
     * @param conf configuration
     * @param key the raw key bytes
     * @param algorithm the algorithm to use with this key material
     * @return the encrypted key bytes
     * @throws IOException
     */
    public static byte[] wrapKey(Configuration conf, byte[] key, String algorithm) throws IOException {
        return wrapKey(conf, conf.get(HConstants.CRYPTO_MASTERKEY_NAME_CONF_KEY, User.getCurrent().getShortName()),
                new SecretKeySpec(key, algorithm));
    }

    /**
     * Protect a key by encrypting it with the secret key of the given subject.
     * The configuration must be set up correctly for key alias resolution.
     * @param conf configuration
     * @param subject subject key alias
     * @param key the key
     * @return the encrypted key bytes
     */
    public static byte[] wrapKey(Configuration conf, String subject, Key key) throws IOException {
        // Wrap the key with the configured encryption algorithm.
        String algorithm = conf.get(HConstants.CRYPTO_KEY_ALGORITHM_CONF_KEY, HConstants.CIPHER_AES);
        Cipher cipher = Encryption.getCipher(conf, algorithm);
        if (cipher == null) {
            throw new RuntimeException("Cipher '" + algorithm + "' not available");
        }
        EncryptionProtos.WrappedKey.Builder builder = EncryptionProtos.WrappedKey.newBuilder();
        builder.setAlgorithm(key.getAlgorithm());
        byte[] iv = null;
        if (cipher.getIvLength() > 0) {
            iv = new byte[cipher.getIvLength()];
            RNG.nextBytes(iv);
            builder.setIv(ByteStringer.wrap(iv));
        }
        byte[] keyBytes = key.getEncoded();
        builder.setLength(keyBytes.length);
        builder.setHash(ByteStringer.wrap(Encryption.hash128(keyBytes)));
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        Encryption.encryptWithSubjectKey(out, new ByteArrayInputStream(keyBytes), subject, conf, cipher, iv);
        builder.setData(ByteStringer.wrap(out.toByteArray()));
        // Build and return the protobuf message
        out.reset();
        builder.build().writeDelimitedTo(out);
        return out.toByteArray();
    }

    /**
     * Unwrap a key by decrypting it with the secret key of the given subject.
     * The configuration must be set up correctly for key alias resolution.
     * @param conf configuration
     * @param subject subject key alias
     * @param value the encrypted key bytes
     * @return the raw key bytes
     * @throws IOException
     * @throws KeyException
     */
    public static Key unwrapKey(Configuration conf, String subject, byte[] value) throws IOException, KeyException {
        EncryptionProtos.WrappedKey wrappedKey = EncryptionProtos.WrappedKey.PARSER
                .parseDelimitedFrom(new ByteArrayInputStream(value));
        String algorithm = conf.get(HConstants.CRYPTO_KEY_ALGORITHM_CONF_KEY, HConstants.CIPHER_AES);
        Cipher cipher = Encryption.getCipher(conf, algorithm);
        if (cipher == null) {
            throw new RuntimeException("Cipher '" + algorithm + "' not available");
        }
        return getUnwrapKey(conf, subject, wrappedKey, cipher);
    }

    private static Key getUnwrapKey(Configuration conf, String subject, EncryptionProtos.WrappedKey wrappedKey,
            Cipher cipher) throws IOException, KeyException {
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        byte[] iv = wrappedKey.hasIv() ? wrappedKey.getIv().toByteArray() : null;
        Encryption.decryptWithSubjectKey(out, wrappedKey.getData().newInput(), wrappedKey.getLength(), subject,
                conf, cipher, iv);
        byte[] keyBytes = out.toByteArray();
        if (wrappedKey.hasHash()) {
            if (!Bytes.equals(wrappedKey.getHash().toByteArray(), Encryption.hash128(keyBytes))) {
                throw new KeyException("Key was not successfully unwrapped");
            }
        }
        return new SecretKeySpec(keyBytes, wrappedKey.getAlgorithm());
    }

    /**
     * Unwrap a wal key by decrypting it with the secret key of the given subject. The configuration
     * must be set up correctly for key alias resolution.
     * @param conf configuration
     * @param subject subject key alias
     * @param value the encrypted key bytes
     * @return the raw key bytes
     * @throws IOException if key is not found for the subject, or if some I/O error occurs
     * @throws KeyException if fail to unwrap the key
     */
    public static Key unwrapWALKey(Configuration conf, String subject, byte[] value)
            throws IOException, KeyException {
        EncryptionProtos.WrappedKey wrappedKey = EncryptionProtos.WrappedKey.PARSER
                .parseDelimitedFrom(new ByteArrayInputStream(value));
        String algorithm = conf.get(HConstants.CRYPTO_WAL_ALGORITHM_CONF_KEY, HConstants.CIPHER_AES);
        Cipher cipher = Encryption.getCipher(conf, algorithm);
        if (cipher == null) {
            throw new RuntimeException("Cipher '" + algorithm + "' not available");
        }
        return getUnwrapKey(conf, subject, wrappedKey, cipher);
    }

    /**
     * Helper to create an encyption context.
     *
     * @param conf The current configuration.
     * @param family The current column descriptor.
     * @return The created encryption context.
     * @throws IOException if an encryption key for the column cannot be unwrapped
     */
    public static Encryption.Context createEncryptionContext(Configuration conf, HColumnDescriptor family)
            throws IOException {
        Encryption.Context cryptoContext = Encryption.Context.NONE;
        String cipherName = family.getEncryptionType();
        if (cipherName != null) {
            Cipher cipher;
            Key key;
            byte[] keyBytes = family.getEncryptionKey();
            if (keyBytes != null) {
                // Family provides specific key material
                key = unwrapKey(conf, keyBytes);
                // Use the algorithm the key wants
                cipher = Encryption.getCipher(conf, key.getAlgorithm());
                if (cipher == null) {
                    throw new RuntimeException("Cipher '" + key.getAlgorithm() + "' is not available");
                }
                // Fail if misconfigured
                // We use the encryption type specified in the column schema as a sanity check on
                // what the wrapped key is telling us
                if (!cipher.getName().equalsIgnoreCase(cipherName)) {
                    throw new RuntimeException(
                            "Encryption for family '" + family.getNameAsString() + "' configured with type '"
                                    + cipherName + "' but key specifies algorithm '" + cipher.getName() + "'");
                }
            } else {
                // Family does not provide key material, create a random key
                cipher = Encryption.getCipher(conf, cipherName);
                if (cipher == null) {
                    throw new RuntimeException("Cipher '" + cipherName + "' is not available");
                }
                key = cipher.getRandomKey();
            }
            cryptoContext = Encryption.newContext(conf);
            cryptoContext.setCipher(cipher);
            cryptoContext.setKey(key);
        }
        return cryptoContext;
    }

    /**
     * Helper for {@link #unwrapKey(Configuration, String, byte[])} which automatically uses the
     * configured master and alternative keys, rather than having to specify a key type to unwrap
     * with.
     *
     * The configuration must be set up correctly for key alias resolution.
     *
     * @param conf the current configuration
     * @param keyBytes the key encrypted by master (or alternative) to unwrap
     * @return the key bytes, decrypted
     * @throws IOException if the key cannot be unwrapped
     */
    public static Key unwrapKey(Configuration conf, byte[] keyBytes) throws IOException {
        Key key;
        String masterKeyName = conf.get(HConstants.CRYPTO_MASTERKEY_NAME_CONF_KEY,
                User.getCurrent().getShortName());
        try {
            // First try the master key
            key = unwrapKey(conf, masterKeyName, keyBytes);
        } catch (KeyException e) {
            // If the current master key fails to unwrap, try the alternate, if
            // one is configured
            if (LOG.isDebugEnabled()) {
                LOG.debug("Unable to unwrap key with current master key '" + masterKeyName + "'");
            }
            String alternateKeyName = conf.get(HConstants.CRYPTO_MASTERKEY_ALTERNATE_NAME_CONF_KEY);
            if (alternateKeyName != null) {
                try {
                    key = unwrapKey(conf, alternateKeyName, keyBytes);
                } catch (KeyException ex) {
                    throw new IOException(ex);
                }
            } else {
                throw new IOException(e);
            }
        }
        return key;
    }
}