123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- /*
- **
- ** Copyright 2017, The Android Open Source Project
- **
- ** 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.
- */
- #include <keymaster/km_openssl/soft_keymaster_enforcement.h>
- #include <assert.h>
- #include <time.h>
- #include <openssl/cmac.h>
- #include <openssl/evp.h>
- #include <openssl/hmac.h>
- #include <openssl/rand.h>
- #include <keymaster/km_openssl/ckdf.h>
- #include <keymaster/km_openssl/openssl_err.h>
- #include <keymaster/km_openssl/openssl_utils.h>
- namespace keymaster {
- namespace {
- constexpr uint8_t kFakeKeyAgreementKey[32] = {};
- constexpr const char* kSharedHmacLabel = "KeymasterSharedMac";
- constexpr const char* kMacVerificationString = "Keymaster HMAC Verification";
- constexpr const char* kAuthVerificationLabel = "Auth Verification";
- class EvpMdCtx {
- public:
- EvpMdCtx() { EVP_MD_CTX_init(&ctx_); }
- ~EvpMdCtx() { EVP_MD_CTX_cleanup(&ctx_); }
- EVP_MD_CTX* get() { return &ctx_; }
- private:
- EVP_MD_CTX ctx_;
- };
- } // anonymous namespace
- uint64_t SoftKeymasterEnforcement::get_current_time_ms() const {
- struct timespec tp;
- int err = clock_gettime(CLOCK_BOOTTIME, &tp);
- if (err || tp.tv_sec < 0) return 0;
- return static_cast<uint64_t>(tp.tv_sec) * 1000 + static_cast<uint64_t>(tp.tv_nsec) / 1000000;
- }
- bool SoftKeymasterEnforcement::CreateKeyId(const keymaster_key_blob_t& key_blob,
- km_id_t* keyid) const {
- EvpMdCtx ctx;
- uint8_t hash[EVP_MAX_MD_SIZE];
- unsigned int hash_len;
- if (EVP_DigestInit_ex(ctx.get(), EVP_sha256(), nullptr /* ENGINE */) &&
- EVP_DigestUpdate(ctx.get(), key_blob.key_material, key_blob.key_material_size) &&
- EVP_DigestFinal_ex(ctx.get(), hash, &hash_len)) {
- assert(hash_len >= sizeof(*keyid));
- memcpy(keyid, hash, sizeof(*keyid));
- return true;
- }
- return false;
- }
- keymaster_error_t
- SoftKeymasterEnforcement::GetHmacSharingParameters(HmacSharingParameters* params) {
- if (!have_saved_params_) {
- saved_params_.seed = {};
- RAND_bytes(saved_params_.nonce, 32);
- have_saved_params_ = true;
- }
- params->seed = saved_params_.seed;
- memcpy(params->nonce, saved_params_.nonce, sizeof(params->nonce));
- return KM_ERROR_OK;
- }
- namespace {
- DEFINE_OPENSSL_OBJECT_POINTER(HMAC_CTX);
- keymaster_error_t hmacSha256(const keymaster_key_blob_t& key, const keymaster_blob_t data_chunks[],
- size_t data_chunk_count, KeymasterBlob* output) {
- if (!output) return KM_ERROR_UNEXPECTED_NULL_POINTER;
- unsigned digest_len = SHA256_DIGEST_LENGTH;
- if (!output->Reset(digest_len)) return KM_ERROR_MEMORY_ALLOCATION_FAILED;
- HMAC_CTX_Ptr ctx(HMAC_CTX_new());
- if (!HMAC_Init_ex(ctx.get(), key.key_material, key.key_material_size, EVP_sha256(),
- nullptr /* engine*/)) {
- return TranslateLastOpenSslError();
- }
- for (size_t i = 0; i < data_chunk_count; i++) {
- auto& chunk = data_chunks[i];
- if (!HMAC_Update(ctx.get(), chunk.data, chunk.data_length)) {
- return TranslateLastOpenSslError();
- }
- }
- if (!HMAC_Final(ctx.get(), output->writable_data(), &digest_len)) {
- return TranslateLastOpenSslError();
- }
- if (digest_len != output->data_length) return KM_ERROR_UNKNOWN_ERROR;
- return KM_ERROR_OK;
- }
- // Helpers for converting types to keymaster_blob_t, for easy feeding of hmacSha256.
- template <typename T> inline keymaster_blob_t toBlob(const T& t) {
- return {reinterpret_cast<const uint8_t*>(&t), sizeof(t)};
- }
- inline keymaster_blob_t toBlob(const char* str) {
- return {reinterpret_cast<const uint8_t*>(str), strlen(str)};
- }
- // Perhaps these shoud be in utils, but the impact of that needs to be considered carefully. For
- // now, just define it here.
- inline bool operator==(const keymaster_blob_t& a, const keymaster_blob_t& b) {
- if (!a.data_length && !b.data_length) return true;
- if (!(a.data && b.data)) return a.data == b.data;
- return (a.data_length == b.data_length && !memcmp(a.data, b.data, a.data_length));
- }
- bool operator==(const HmacSharingParameters& a, const HmacSharingParameters& b) {
- return a.seed == b.seed && !memcmp(a.nonce, b.nonce, sizeof(a.nonce));
- }
- } // namespace
- keymaster_error_t
- SoftKeymasterEnforcement::ComputeSharedHmac(const HmacSharingParametersArray& params_array,
- KeymasterBlob* sharingCheck) {
- size_t num_chunks = params_array.num_params * 2;
- UniquePtr<keymaster_blob_t[]> context_chunks(new (std::nothrow) keymaster_blob_t[num_chunks]);
- if (!context_chunks.get()) return KM_ERROR_MEMORY_ALLOCATION_FAILED;
- bool found_mine = false;
- auto context_chunks_pos = context_chunks.get();
- for (auto& params : array_range(params_array.params_array, params_array.num_params)) {
- *context_chunks_pos++ = params.seed;
- *context_chunks_pos++ = {params.nonce, sizeof(params.nonce)};
- found_mine = found_mine || params == saved_params_;
- }
- assert(context_chunks_pos - num_chunks == context_chunks.get());
- if (!found_mine) return KM_ERROR_INVALID_ARGUMENT;
- if (!hmac_key_.Reset(SHA256_DIGEST_LENGTH)) return KM_ERROR_MEMORY_ALLOCATION_FAILED;
- keymaster_error_t error = ckdf(
- KeymasterKeyBlob(kFakeKeyAgreementKey, sizeof(kFakeKeyAgreementKey)),
- KeymasterBlob(reinterpret_cast<const uint8_t*>(kSharedHmacLabel), strlen(kSharedHmacLabel)),
- context_chunks.get(), num_chunks, //
- &hmac_key_);
- if (error != KM_ERROR_OK) return error;
- keymaster_blob_t data = {reinterpret_cast<const uint8_t*>(kMacVerificationString),
- strlen(kMacVerificationString)};
- keymaster_blob_t data_chunks[] = {data};
- return hmacSha256(hmac_key_, data_chunks, 1, sharingCheck);
- }
- VerifyAuthorizationResponse
- SoftKeymasterEnforcement::VerifyAuthorization(const VerifyAuthorizationRequest& request) {
- // The only thing this implementation provides is timestamp and security level. Note that this
- // is an acceptable implementation strategy for production use as well. Additional verification
- // need only be provided by an implementation if it is interoperating with another
- // implementation that requires more.
- VerifyAuthorizationResponse response;
- response.token.challenge = request.challenge;
- response.token.timestamp = get_current_time_ms();
- response.token.security_level = SecurityLevel();
- keymaster_blob_t data_chunks[] = {
- toBlob(kAuthVerificationLabel),
- toBlob(response.token.challenge),
- toBlob(response.token.timestamp),
- toBlob(response.token.security_level),
- {}, // parametersVerified
- };
- response.error = hmacSha256(hmac_key_, data_chunks, 5, &response.token.mac);
- return response;
- }
- } // namespace keymaster
|