Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2016 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Paul Crowley | 0323afd | 2016-03-15 17:04:39 -0700 | [diff] [blame] | 17 | #ifndef ANDROID_VOLD_KEYMASTER_H |
| 18 | #define ANDROID_VOLD_KEYMASTER_H |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 19 | |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 20 | #include "KeyBuffer.h" |
| 21 | |
Paul Crowley | 0323afd | 2016-03-15 17:04:39 -0700 | [diff] [blame] | 22 | #include <memory> |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 23 | #include <string> |
Paul Crowley | 0323afd | 2016-03-15 17:04:39 -0700 | [diff] [blame] | 24 | #include <utility> |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 25 | |
Steven Moreland | 25e8b4b | 2017-05-01 12:45:32 -0700 | [diff] [blame] | 26 | #include <android-base/macros.h> |
Shawn Willden | ae8f06f | 2020-01-16 13:21:42 -0700 | [diff] [blame] | 27 | #include <keymasterV4_1/Keymaster.h> |
| 28 | #include <keymasterV4_1/authorization_set.h> |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 29 | |
| 30 | namespace android { |
| 31 | namespace vold { |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 32 | |
Shawn Willden | ae8f06f | 2020-01-16 13:21:42 -0700 | [diff] [blame] | 33 | namespace km { |
| 34 | |
| 35 | using namespace ::android::hardware::keymaster::V4_1; |
| 36 | |
| 37 | // Surprisingly -- to me, at least -- this is totally fine. You can re-define symbols that were |
| 38 | // brought in via a using directive (the "using namespace") above. In general this seems like a |
| 39 | // dangerous thing to rely on, but in this case its implications are simple and straightforward: |
| 40 | // km::ErrorCode refers to the 4.0 ErrorCode, though we pull everything else from 4.1. |
| 41 | using ErrorCode = ::android::hardware::keymaster::V4_0::ErrorCode; |
Shawn Willden | 2b1ff5a | 2020-01-16 14:08:36 -0700 | [diff] [blame] | 42 | using V4_1_ErrorCode = ::android::hardware::keymaster::V4_1::ErrorCode; |
Shawn Willden | ae8f06f | 2020-01-16 13:21:42 -0700 | [diff] [blame] | 43 | |
| 44 | } // namespace km |
| 45 | |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 46 | using KmDevice = km::support::Keymaster; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 47 | |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 48 | // C++ wrappers to the Keymaster hidl interface. |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 49 | // This is tailored to the needs of KeyStorage, but could be extended to be |
| 50 | // a more general interface. |
| 51 | |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 52 | // Wrapper for a Keymaster operation handle representing an |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 53 | // ongoing Keymaster operation. Aborts the operation |
| 54 | // in the destructor if it is unfinished. Methods log failures |
| 55 | // to LOG(ERROR). |
| 56 | class KeymasterOperation { |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 57 | public: |
Paul Crowley | 0323afd | 2016-03-15 17:04:39 -0700 | [diff] [blame] | 58 | ~KeymasterOperation(); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 59 | // Is this instance valid? This is false if creation fails, and becomes |
| 60 | // false on finish or if an update fails. |
Greg Kaiser | 2bc201e | 2018-12-18 08:42:08 -0800 | [diff] [blame] | 61 | explicit operator bool() const { return mError == km::ErrorCode::OK; } |
| 62 | km::ErrorCode errorCode() const { return mError; } |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 63 | // Call "update" repeatedly until all of the input is consumed, and |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 64 | // concatenate the output. Return true on success. |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 65 | template <class TI, class TO> |
| 66 | bool updateCompletely(TI& input, TO* output) { |
| 67 | if (output) output->clear(); |
| 68 | return updateCompletely(input.data(), input.size(), [&](const char* b, size_t n) { |
Shawn Willden | 785365b | 2018-01-20 09:37:36 -0700 | [diff] [blame] | 69 | if (output) std::copy(b, b + n, std::back_inserter(*output)); |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 70 | }); |
| 71 | } |
| 72 | |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 73 | // Finish and write the output to this string, unless pointer is null. |
| 74 | bool finish(std::string* output); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 75 | // Move constructor |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 76 | KeymasterOperation(KeymasterOperation&& rhs) { *this = std::move(rhs); } |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 77 | // Construct an object in an error state for error returns |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 78 | KeymasterOperation() : mDevice{nullptr}, mOpHandle{0}, mError{km::ErrorCode::UNKNOWN_ERROR} {} |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 79 | // Move Assignment |
Shawn Willden | 785365b | 2018-01-20 09:37:36 -0700 | [diff] [blame] | 80 | KeymasterOperation& operator=(KeymasterOperation&& rhs) { |
Shawn Willden | 3e02df8 | 2018-02-07 15:06:06 -0700 | [diff] [blame] | 81 | mDevice = rhs.mDevice; |
| 82 | rhs.mDevice = nullptr; |
| 83 | |
| 84 | mOpHandle = rhs.mOpHandle; |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 85 | rhs.mOpHandle = 0; |
Shawn Willden | 3e02df8 | 2018-02-07 15:06:06 -0700 | [diff] [blame] | 86 | |
| 87 | mError = rhs.mError; |
| 88 | rhs.mError = km::ErrorCode::UNKNOWN_ERROR; |
| 89 | |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 90 | return *this; |
| 91 | } |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 92 | |
| 93 | private: |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 94 | KeymasterOperation(KmDevice* d, uint64_t h) |
| 95 | : mDevice{d}, mOpHandle{h}, mError{km::ErrorCode::OK} {} |
| 96 | KeymasterOperation(km::ErrorCode error) : mDevice{nullptr}, mOpHandle{0}, mError{error} {} |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 97 | |
| 98 | bool updateCompletely(const char* input, size_t inputLen, |
| 99 | const std::function<void(const char*, size_t)> consumer); |
| 100 | |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 101 | KmDevice* mDevice; |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 102 | uint64_t mOpHandle; |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 103 | km::ErrorCode mError; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 104 | DISALLOW_COPY_AND_ASSIGN(KeymasterOperation); |
| 105 | friend class Keymaster; |
| 106 | }; |
| 107 | |
Paul Crowley | 0323afd | 2016-03-15 17:04:39 -0700 | [diff] [blame] | 108 | // Wrapper for a Keymaster device for methods that start a KeymasterOperation or are not |
| 109 | // part of one. |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 110 | class Keymaster { |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 111 | public: |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 112 | Keymaster(); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 113 | // false if we failed to open the keymaster device. |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 114 | explicit operator bool() { return mDevice.get() != nullptr; } |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 115 | // Generate a key in the keymaster from the given params. |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 116 | bool generateKey(const km::AuthorizationSet& inParams, std::string* key); |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 117 | // Exports a keymaster key with STORAGE_KEY tag wrapped with a per-boot ephemeral key |
| 118 | bool exportKey(const KeyBuffer& kmKey, std::string* key); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 119 | // If the keymaster supports it, permanently delete a key. |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 120 | bool deleteKey(const std::string& key); |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 121 | // Replace stored key blob in response to KM_ERROR_KEY_REQUIRES_UPGRADE. |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 122 | bool upgradeKey(const std::string& oldKey, const km::AuthorizationSet& inParams, |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 123 | std::string* newKey); |
| 124 | // Begin a new cryptographic operation, collecting output parameters if pointer is non-null |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 125 | KeymasterOperation begin(km::KeyPurpose purpose, const std::string& key, |
| 126 | const km::AuthorizationSet& inParams, |
| 127 | const km::HardwareAuthToken& authToken, |
| 128 | km::AuthorizationSet* outParams); |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 129 | bool isSecure(); |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 130 | |
Shawn Willden | 50397a7 | 2020-04-01 10:02:16 -0600 | [diff] [blame^] | 131 | // Tell all Keymaster instances that early boot has ended and early boot-only keys can no longer |
| 132 | // be created or used. |
| 133 | static void earlyBootEnded(); |
Shawn Willden | 2b1ff5a | 2020-01-16 14:08:36 -0700 | [diff] [blame] | 134 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 135 | private: |
Janis Danisevskis | 1e782f0 | 2019-06-12 13:27:20 -0700 | [diff] [blame] | 136 | sp<KmDevice> mDevice; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 137 | DISALLOW_COPY_AND_ASSIGN(Keymaster); |
Shawn Willden | 2807536 | 2018-05-09 08:12:10 -0600 | [diff] [blame] | 138 | static bool hmacKeyGenerated; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 139 | }; |
| 140 | |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 141 | } // namespace vold |
| 142 | } // namespace android |
| 143 | |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 144 | // FIXME no longer needed now cryptfs is in C++. |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 145 | |
| 146 | /* |
| 147 | * The following functions provide C bindings to keymaster services |
| 148 | * needed by cryptfs scrypt. The compatibility check checks whether |
| 149 | * the keymaster implementation is considered secure, i.e., TEE backed. |
| 150 | * The create_key function generates an RSA key for signing. |
| 151 | * The sign_object function signes an object with the given keymaster |
| 152 | * key. |
| 153 | */ |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 154 | |
Paul Crowley | 7347333 | 2017-11-21 15:43:51 -0800 | [diff] [blame] | 155 | /* Return values for keymaster_sign_object_for_cryptfs_scrypt */ |
| 156 | |
| 157 | enum class KeymasterSignResult { |
| 158 | ok = 0, |
| 159 | error = -1, |
| 160 | upgrade = -2, |
| 161 | }; |
| 162 | |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 163 | int keymaster_compatibility_cryptfs_scrypt(); |
Shawn Willden | 785365b | 2018-01-20 09:37:36 -0700 | [diff] [blame] | 164 | int keymaster_create_key_for_cryptfs_scrypt(uint32_t rsa_key_size, uint64_t rsa_exponent, |
| 165 | uint32_t ratelimit, uint8_t* key_buffer, |
| 166 | uint32_t key_buffer_size, uint32_t* key_out_size); |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 167 | |
Paul Crowley | 7347333 | 2017-11-21 15:43:51 -0800 | [diff] [blame] | 168 | int keymaster_upgrade_key_for_cryptfs_scrypt(uint32_t rsa_key_size, uint64_t rsa_exponent, |
| 169 | uint32_t ratelimit, const uint8_t* key_blob, |
| 170 | size_t key_blob_size, uint8_t* key_buffer, |
| 171 | uint32_t key_buffer_size, uint32_t* key_out_size); |
| 172 | |
| 173 | KeymasterSignResult keymaster_sign_object_for_cryptfs_scrypt( |
| 174 | const uint8_t* key_blob, size_t key_blob_size, uint32_t ratelimit, const uint8_t* object, |
| 175 | const size_t object_size, uint8_t** signature_buffer, size_t* signature_buffer_size); |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 176 | |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 177 | #endif |