123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286 |
- /*
- * Copyright (C) 2011-2017 Intel Corporation. All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in
- * the documentation and/or other materials provided with the
- * distribution.
- * * Neither the name of Intel Corporation nor the names of its
- * contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
- #include "protected_fs_file.h"
- #include <sgx_utils.h>
- #include <sgx_trts.h>
- #define MASTER_KEY_NAME "SGX-PROTECTED-FS-MASTER-KEY"
- #define RANDOM_KEY_NAME "SGX-PROTECTED-FS-RANDOM-KEY"
- #define METADATA_KEY_NAME "SGX-PROTECTED-FS-METADATA-KEY"
- #define MAX_LABEL_LEN 64
- typedef struct {
- uint32_t index;
- char label[MAX_LABEL_LEN];
- uint64_t node_number; // context 1
- union { // context 2
- sgx_cmac_128bit_tag_t nonce16;
- sgx_key_id_t nonce32;
- };
- uint32_t output_len; // in bits
- } kdf_input_t;
- #define MAX_MASTER_KEY_USAGES 65536
- bool protected_fs_file::generate_secure_blob(sgx_aes_gcm_128bit_key_t* key, const char* label, uint64_t physical_node_number, sgx_aes_gcm_128bit_tag_t* output)
- {
- kdf_input_t buf = {0, "", 0, "", 0};
- uint32_t len = (uint32_t)strnlen(label, MAX_LABEL_LEN + 1);
- if (len > MAX_LABEL_LEN)
- {
- last_error = EINVAL;
- return false;
- }
- // index
- // SP800-108:
- // i – A counter, a binary string of length r that is an input to each iteration of a PRF in counter mode [...].
- buf.index = 0x01;
- // label
- // SP800-108:
- // Label – A string that identifies the purpose for the derived keying material, which is encoded as a binary string.
- // The encoding method for the Label is defined in a larger context, for example, in the protocol that uses a KDF.
- strncpy(buf.label, label, len);
- // context and nonce
- // SP800-108:
- // Context – A binary string containing the information related to the derived keying material.
- // It may include identities of parties who are deriving and / or using the derived keying material and,
- // optionally, a nonce known by the parties who derive the keys.
- buf.node_number = physical_node_number;
- sgx_status_t status = sgx_read_rand((unsigned char*)&(buf.nonce16), sizeof(sgx_cmac_128bit_tag_t));
- if (status != SGX_SUCCESS)
- {
- last_error = status;
- return false;
- }
- // length of output (128 bits)
- buf.output_len = 0x80;
- status = sgx_rijndael128_cmac_msg(key, (const uint8_t*)&buf, sizeof(kdf_input_t), output);
- if (status != SGX_SUCCESS)
- {
- last_error = status;
- return false;
- }
- memset_s(&buf, sizeof(kdf_input_t), 0, sizeof(kdf_input_t));
- return true;
- }
- bool protected_fs_file::generate_secure_blob_from_user_kdk(bool restore)
- {
- kdf_input_t buf = {0, "", 0, "", 0};
- sgx_status_t status = SGX_SUCCESS;
- // index
- // SP800-108:
- // i – A counter, a binary string of length r that is an input to each iteration of a PRF in counter mode [...].
- buf.index = 0x01;
- // label
- // SP800-108:
- // Label – A string that identifies the purpose for the derived keying material, which is encoded as a binary string.
- // The encoding method for the Label is defined in a larger context, for example, in the protocol that uses a KDF.
- strncpy(buf.label, METADATA_KEY_NAME, strlen(METADATA_KEY_NAME));
- // context and nonce
- // SP800-108:
- // Context – A binary string containing the information related to the derived keying material.
- // It may include identities of parties who are deriving and / or using the derived keying material and,
- // optionally, a nonce known by the parties who derive the keys.
- buf.node_number = 0;
- // use 32 bytes here just for compatibility with the seal key API
- if (restore == false)
- {
- status = sgx_read_rand((unsigned char*)&(buf.nonce32), sizeof(sgx_key_id_t));
- if (status != SGX_SUCCESS)
- {
- last_error = status;
- return false;
- }
- }
- else
- {
- memcpy(&buf.nonce32, &file_meta_data.plain_part.meta_data_key_id, sizeof(sgx_key_id_t));
- }
-
- // length of output (128 bits)
- buf.output_len = 0x80;
- status = sgx_rijndael128_cmac_msg(&user_kdk_key, (const uint8_t*)&buf, sizeof(kdf_input_t), &cur_key);
- if (status != SGX_SUCCESS)
- {
- last_error = status;
- return false;
- }
- if (restore == false)
- {
- memcpy(&file_meta_data.plain_part.meta_data_key_id, &buf.nonce32, sizeof(sgx_key_id_t));
- }
- memset_s(&buf, sizeof(kdf_input_t), 0, sizeof(kdf_input_t));
- return true;
- }
- bool protected_fs_file::init_session_master_key()
- {
- sgx_aes_gcm_128bit_key_t empty_key = {0};
-
- if (generate_secure_blob(&empty_key, MASTER_KEY_NAME, 0, (sgx_aes_gcm_128bit_tag_t*)&session_master_key) == false)
- return false;
- master_key_count = 0;
- return true;
- }
- bool protected_fs_file::derive_random_node_key(uint64_t physical_node_number)
- {
- if (master_key_count++ > MAX_MASTER_KEY_USAGES)
- {
- if (init_session_master_key() == false)
- return false;
- }
- if (generate_secure_blob(&session_master_key, RANDOM_KEY_NAME, physical_node_number, (sgx_aes_gcm_128bit_tag_t*)&cur_key) == false)
- return false;
- return true;
- }
- bool protected_fs_file::generate_random_meta_data_key()
- {
- if (use_user_kdk_key == 1)
- {
- return generate_secure_blob_from_user_kdk(false);
- }
- // derive a random key from the enclave sealing key
- sgx_key_request_t key_request;
- memset(&key_request, 0, sizeof(sgx_key_request_t));
-
- key_request.key_name = SGX_KEYSELECT_SEAL;
- key_request.key_policy = SGX_KEYPOLICY_MRSIGNER;
- memcpy(&key_request.cpu_svn, &report.body.cpu_svn, sizeof(sgx_cpu_svn_t));
- memcpy(&key_request.isv_svn, &report.body.isv_svn, sizeof(sgx_isv_svn_t));
- key_request.attribute_mask.flags = SGX_FLAGS_RESERVED | SGX_FLAGS_INITTED | SGX_FLAGS_DEBUG;
- key_request.attribute_mask.xfrm = 0x0;
- key_request.misc_mask = TSEAL_DEFAULT_MISCMASK;
-
- sgx_status_t status = sgx_read_rand((unsigned char*)&key_request.key_id, sizeof(sgx_key_id_t));
- if (status != SGX_SUCCESS)
- {
- last_error = status;
- return false;
- }
-
- status = sgx_get_key(&key_request, &cur_key);
- if (status != SGX_SUCCESS)
- {
- last_error = status;
- return false;
- }
- // save the key_id and svn's so the key can be restored even if svn's are updated
- memcpy(&file_meta_data.plain_part.meta_data_key_id, &key_request.key_id, sizeof(sgx_key_id_t)); // save this value in the meta data
- memcpy(&file_meta_data.plain_part.cpu_svn, &key_request.cpu_svn, sizeof(sgx_cpu_svn_t));
- memcpy(&file_meta_data.plain_part.isv_svn, &key_request.isv_svn, sizeof(sgx_isv_svn_t));
- return true;
- }
- bool protected_fs_file::restore_current_meta_data_key(const sgx_aes_gcm_128bit_key_t* import_key)
- {
- if (import_key != NULL)
- {
- memcpy(&cur_key, import_key, sizeof(sgx_aes_gcm_128bit_key_t));
- return true;
- }
- if (use_user_kdk_key == 1)
- {
- return generate_secure_blob_from_user_kdk(true);
- }
- sgx_key_id_t empty_key_id = {0};
- if (consttime_memequal(&file_meta_data.plain_part.meta_data_key_id, &empty_key_id, sizeof(sgx_key_id_t)) == 1)
- {
- last_error = SGX_ERROR_FILE_NO_KEY_ID;
- return false;
- }
- sgx_key_request_t key_request;
- memset(&key_request, 0, sizeof(sgx_key_request_t));
- key_request.key_name = SGX_KEYSELECT_SEAL;
- key_request.key_policy = SGX_KEYPOLICY_MRSIGNER;
- key_request.attribute_mask.flags = SGX_FLAGS_RESERVED | SGX_FLAGS_INITTED | SGX_FLAGS_DEBUG;
- key_request.attribute_mask.xfrm = 0x0;
- key_request.misc_mask = TSEAL_DEFAULT_MISCMASK;
- memcpy(&key_request.cpu_svn, &file_meta_data.plain_part.cpu_svn, sizeof(sgx_cpu_svn_t));
- memcpy(&key_request.isv_svn, &file_meta_data.plain_part.isv_svn, sizeof(sgx_isv_svn_t));
- memcpy(&key_request.key_id, &file_meta_data.plain_part.meta_data_key_id, sizeof(sgx_key_id_t));
- sgx_status_t status = sgx_get_key(&key_request, &cur_key);
- if (status != SGX_SUCCESS)
- {
- last_error = status;
- return false;
- }
- return true;
- }
|