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 | |
| 17 | #include "Keymaster.h" |
| 18 | |
| 19 | #include <android-base/logging.h> |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 20 | |
| 21 | #include <aidl/android/hardware/security/keymint/SecurityLevel.h> |
| 22 | #include <aidl/android/security/maintenance/IKeystoreMaintenance.h> |
| 23 | #include <aidl/android/system/keystore2/Domain.h> |
| 24 | #include <aidl/android/system/keystore2/KeyDescriptor.h> |
| 25 | |
| 26 | // Keep these in sync with system/security/keystore2/src/keystore2_main.rs |
| 27 | static constexpr const char keystore2_service_name[] = |
| 28 | "android.system.keystore2.IKeystoreService/default"; |
| 29 | static constexpr const char maintenance_service_name[] = "android.security.maintenance"; |
| 30 | |
| 31 | /* |
| 32 | * Keep this in sync with the description for update() in |
| 33 | * system/hardware/interfaces/keystore2/aidl/android/system/keystore2/IKeystoreOperation.aidl |
| 34 | */ |
| 35 | static constexpr const size_t UPDATE_INPUT_MAX_SIZE = 32 * 1024; // 32 KiB |
| 36 | |
| 37 | // Keep this in sync with system/sepolicy/private/keystore2_key_contexts |
| 38 | static constexpr const int VOLD_NAMESPACE = 100; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 39 | |
| 40 | namespace android { |
| 41 | namespace vold { |
| 42 | |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 43 | namespace ks2_maint = ::aidl::android::security::maintenance; |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 44 | |
Paul Crowley | 0323afd | 2016-03-15 17:04:39 -0700 | [diff] [blame] | 45 | KeymasterOperation::~KeymasterOperation() { |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 46 | if (ks2Operation) ks2Operation->abort(); |
| 47 | } |
| 48 | |
| 49 | static void zeroize_vector(std::vector<uint8_t>& vec) { |
| 50 | memset_s(vec.data(), 0, vec.size()); |
| 51 | } |
| 52 | |
| 53 | static bool logKeystore2ExceptionIfPresent(::ndk::ScopedAStatus& rc, const std::string& func_name) { |
| 54 | if (rc.isOk()) return false; |
| 55 | |
| 56 | auto exception_code = rc.getExceptionCode(); |
| 57 | if (exception_code == EX_SERVICE_SPECIFIC) { |
| 58 | LOG(ERROR) << "keystore2 Keystore " << func_name |
| 59 | << " returned service specific error: " << rc.getServiceSpecificError(); |
| 60 | } else { |
| 61 | LOG(ERROR) << "keystore2 Communication with Keystore " << func_name |
| 62 | << " failed error: " << exception_code; |
| 63 | } |
| 64 | return true; |
Paul Crowley | 0323afd | 2016-03-15 17:04:39 -0700 | [diff] [blame] | 65 | } |
| 66 | |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 67 | bool KeymasterOperation::updateCompletely(const char* input, size_t inputLen, |
Shawn Willden | 785365b | 2018-01-20 09:37:36 -0700 | [diff] [blame] | 68 | const std::function<void(const char*, size_t)> consumer) { |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 69 | if (!ks2Operation) return false; |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 70 | |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 71 | while (inputLen != 0) { |
| 72 | size_t currLen = std::min(inputLen, UPDATE_INPUT_MAX_SIZE); |
| 73 | std::vector<uint8_t> input_vec(input, input + currLen); |
| 74 | inputLen -= currLen; |
| 75 | input += currLen; |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 76 | |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 77 | std::optional<std::vector<uint8_t>> output; |
| 78 | auto rc = ks2Operation->update(input_vec, &output); |
| 79 | zeroize_vector(input_vec); |
| 80 | if (logKeystore2ExceptionIfPresent(rc, "update")) { |
| 81 | ks2Operation = nullptr; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 82 | return false; |
| 83 | } |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 84 | |
| 85 | if (!output) { |
| 86 | LOG(ERROR) << "Keystore2 operation update didn't return output."; |
| 87 | ks2Operation = nullptr; |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 88 | return false; |
| 89 | } |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 90 | |
| 91 | consumer((const char*)output->data(), output->size()); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 92 | } |
| 93 | return true; |
| 94 | } |
| 95 | |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 96 | bool KeymasterOperation::finish(std::string* output) { |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 97 | std::optional<std::vector<uint8_t>> out_vec; |
| 98 | |
| 99 | if (!ks2Operation) return false; |
| 100 | |
| 101 | auto rc = ks2Operation->finish(std::nullopt, std::nullopt, &out_vec); |
| 102 | if (logKeystore2ExceptionIfPresent(rc, "finish")) { |
| 103 | ks2Operation = nullptr; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 104 | return false; |
| 105 | } |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 106 | |
| 107 | if (output) *output = std::string(out_vec->begin(), out_vec->end()); |
| 108 | |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 109 | return true; |
| 110 | } |
| 111 | |
| 112 | Keymaster::Keymaster() { |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 113 | ::ndk::SpAIBinder binder(AServiceManager_getService(keystore2_service_name)); |
| 114 | auto keystore2Service = ks2::IKeystoreService::fromBinder(binder); |
| 115 | |
| 116 | if (!keystore2Service) { |
| 117 | LOG(ERROR) << "Vold unable to connect to keystore2."; |
| 118 | return; |
Shawn Willden | 2807536 | 2018-05-09 08:12:10 -0600 | [diff] [blame] | 119 | } |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 120 | |
| 121 | /* |
| 122 | * There are only two options available to vold for the SecurityLevel: TRUSTED_ENVIRONMENT (TEE) |
| 123 | * and STRONGBOX. We don't use STRONGBOX because if a TEE is present it will have Weaver, which |
| 124 | * already strengthens CE, so there's no additional benefit from using StrongBox. |
| 125 | * |
| 126 | * The picture is slightly more complicated because Keystore2 reports a SOFTWARE instance as |
| 127 | * a TEE instance when there isn't a TEE instance available, but in that case, a STRONGBOX |
| 128 | * instance won't be available either, so we'll still be doing the best we can. |
| 129 | */ |
| 130 | auto rc = keystore2Service->getSecurityLevel(km::SecurityLevel::TRUSTED_ENVIRONMENT, |
| 131 | &securityLevel); |
| 132 | if (logKeystore2ExceptionIfPresent(rc, "getSecurityLevel")) |
| 133 | LOG(ERROR) << "Vold unable to get security level from keystore2."; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 134 | } |
| 135 | |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 136 | bool Keymaster::generateKey(const km::AuthorizationSet& inParams, std::string* key) { |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 137 | ks2::KeyDescriptor in_key = { |
| 138 | .domain = ks2::Domain::BLOB, |
| 139 | .alias = std::nullopt, |
| 140 | .nspace = VOLD_NAMESPACE, |
| 141 | .blob = std::nullopt, |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 142 | }; |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 143 | ks2::KeyMetadata keyMetadata; |
| 144 | auto rc = securityLevel->generateKey(in_key, std::nullopt, inParams.vector_data(), 0, {}, |
| 145 | &keyMetadata); |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 146 | |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 147 | if (logKeystore2ExceptionIfPresent(rc, "generateKey")) return false; |
| 148 | |
| 149 | if (keyMetadata.key.blob == std::nullopt) { |
| 150 | LOG(ERROR) << "keystore2 generated key blob was null"; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 151 | return false; |
| 152 | } |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 153 | if (key) *key = std::string(keyMetadata.key.blob->begin(), keyMetadata.key.blob->end()); |
| 154 | |
| 155 | zeroize_vector(keyMetadata.key.blob.value()); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 156 | return true; |
| 157 | } |
| 158 | |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 159 | bool Keymaster::exportKey(const KeyBuffer& kmKey, std::string* key) { |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 160 | bool ret = false; |
| 161 | ks2::KeyDescriptor storageKey = { |
| 162 | .domain = ks2::Domain::BLOB, |
| 163 | .alias = std::nullopt, |
| 164 | .nspace = VOLD_NAMESPACE, |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 165 | }; |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 166 | storageKey.blob = std::make_optional<std::vector<uint8_t>>(kmKey.begin(), kmKey.end()); |
| 167 | std::vector<uint8_t> ephemeral_key; |
| 168 | auto rc = securityLevel->convertStorageKeyToEphemeral(storageKey, &ephemeral_key); |
| 169 | |
| 170 | if (logKeystore2ExceptionIfPresent(rc, "exportKey")) goto out; |
| 171 | if (key) *key = std::string(ephemeral_key.begin(), ephemeral_key.end()); |
| 172 | |
| 173 | ret = true; |
| 174 | out: |
| 175 | zeroize_vector(ephemeral_key); |
| 176 | zeroize_vector(storageKey.blob.value()); |
| 177 | return ret; |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 178 | } |
| 179 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 180 | bool Keymaster::deleteKey(const std::string& key) { |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 181 | ks2::KeyDescriptor keyDesc = { |
| 182 | .domain = ks2::Domain::BLOB, |
| 183 | .alias = std::nullopt, |
| 184 | .nspace = VOLD_NAMESPACE, |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 185 | }; |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 186 | keyDesc.blob = |
| 187 | std::optional<std::vector<uint8_t>>(std::vector<uint8_t>(key.begin(), key.end())); |
| 188 | |
| 189 | auto rc = securityLevel->deleteKey(keyDesc); |
| 190 | return !logKeystore2ExceptionIfPresent(rc, "deleteKey"); |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 191 | } |
| 192 | |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 193 | KeymasterOperation Keymaster::begin(const std::string& key, const km::AuthorizationSet& inParams, |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 194 | km::AuthorizationSet* outParams) { |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 195 | ks2::KeyDescriptor keyDesc = { |
| 196 | .domain = ks2::Domain::BLOB, |
| 197 | .alias = std::nullopt, |
| 198 | .nspace = VOLD_NAMESPACE, |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 199 | }; |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 200 | keyDesc.blob = |
| 201 | std::optional<std::vector<uint8_t>>(std::vector<uint8_t>(key.begin(), key.end())); |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 202 | |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 203 | ks2::CreateOperationResponse cor; |
| 204 | auto rc = securityLevel->createOperation(keyDesc, inParams.vector_data(), true, &cor); |
| 205 | if (logKeystore2ExceptionIfPresent(rc, "createOperation")) { |
| 206 | if (rc.getExceptionCode() == EX_SERVICE_SPECIFIC) |
| 207 | return KeymasterOperation((km::ErrorCode)rc.getServiceSpecificError()); |
| 208 | else |
| 209 | return KeymasterOperation(); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 210 | } |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 211 | |
| 212 | if (!cor.iOperation) { |
| 213 | LOG(ERROR) << "keystore2 createOperation didn't return an operation"; |
| 214 | return KeymasterOperation(); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 215 | } |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 216 | |
| 217 | if (outParams && cor.parameters) *outParams = cor.parameters->keyParameter; |
| 218 | |
| 219 | return KeymasterOperation(cor.iOperation, cor.upgradedBlob); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 220 | } |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 221 | |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 222 | bool Keymaster::isSecure() { |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 223 | return true; |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 224 | } |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 225 | |
Shawn Willden | 2b1ff5a | 2020-01-16 14:08:36 -0700 | [diff] [blame] | 226 | void Keymaster::earlyBootEnded() { |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 227 | ::ndk::SpAIBinder binder(AServiceManager_getService(maintenance_service_name)); |
| 228 | auto maint_service = ks2_maint::IKeystoreMaintenance::fromBinder(binder); |
| 229 | |
| 230 | if (!maint_service) { |
| 231 | LOG(ERROR) << "Unable to connect to keystore2 maintenance service for earlyBootEnded"; |
| 232 | return; |
Shawn Willden | 2b1ff5a | 2020-01-16 14:08:36 -0700 | [diff] [blame] | 233 | } |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 234 | |
| 235 | auto rc = maint_service->earlyBootEnded(); |
| 236 | logKeystore2ExceptionIfPresent(rc, "earlyBootEnded"); |
Shawn Willden | 2b1ff5a | 2020-01-16 14:08:36 -0700 | [diff] [blame] | 237 | } |
| 238 | |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 239 | } // namespace vold |
| 240 | } // namespace android |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 241 | |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 242 | // TODO: This always returns true right now since we hardcode the security level. |
| 243 | // If it's alright to hardcode it, we should remove this function and simplify the callers. |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 244 | int keymaster_compatibility_cryptfs_scrypt() { |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame^] | 245 | android::vold::Keymaster dev; |
Janis Danisevskis | e7152c3 | 2017-03-08 11:02:30 -0800 | [diff] [blame] | 246 | if (!dev) { |
| 247 | LOG(ERROR) << "Failed to initiate keymaster session"; |
| 248 | return -1; |
| 249 | } |
| 250 | return dev.isSecure(); |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 251 | } |