Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2020, 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 | #define LOG_TAG "android.hardware.security.keymint-impl" |
Shawn Willden | 763166c | 2021-01-10 19:45:01 -0700 | [diff] [blame] | 18 | #include <android-base/logging.h> |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 19 | |
| 20 | #include "AndroidKeyMintDevice.h" |
| 21 | |
| 22 | #include <aidl/android/hardware/security/keymint/ErrorCode.h> |
| 23 | |
| 24 | #include <keymaster/android_keymaster.h> |
| 25 | #include <keymaster/contexts/pure_soft_keymaster_context.h> |
| 26 | #include <keymaster/keymaster_configuration.h> |
| 27 | |
| 28 | #include "AndroidKeyMintOperation.h" |
| 29 | #include "KeyMintUtils.h" |
| 30 | |
| 31 | namespace aidl::android::hardware::security::keymint { |
| 32 | |
| 33 | using namespace ::keymaster; |
Shawn Willden | 96d4e8c | 2020-12-07 17:03:54 -0700 | [diff] [blame] | 34 | using namespace km_utils; |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 35 | |
Shawn Willden | 763166c | 2021-01-10 19:45:01 -0700 | [diff] [blame] | 36 | namespace { |
| 37 | |
| 38 | vector<KeyCharacteristics> convertKeyCharacteristics(SecurityLevel keyMintSecurityLevel, |
| 39 | const AuthorizationSet& sw_enforced, |
| 40 | const AuthorizationSet& hw_enforced) { |
| 41 | KeyCharacteristics enforced; |
| 42 | |
| 43 | enforced.securityLevel = keyMintSecurityLevel; |
| 44 | if (keyMintSecurityLevel != SecurityLevel::SOFTWARE) { |
| 45 | // We're pretending to be TRUSTED_ENVIRONMENT or STRONGBOX. Only the entries in hw_enforced |
| 46 | // should be returned. |
| 47 | enforced.authorizations = kmParamSet2Aidl(hw_enforced); |
| 48 | KeyCharacteristics enforced{keyMintSecurityLevel, kmParamSet2Aidl(hw_enforced)}; |
| 49 | return {std::move(enforced)}; |
| 50 | } |
| 51 | |
| 52 | CHECK(hw_enforced.empty()) << "Hardware-enforced list is non-empty for pure SW KeyMint"; |
| 53 | |
| 54 | // This is a pure software implementation, so all tags are in sw_enforced. We need to walk |
| 55 | // through the SW-enforced list and figure out which tags to return and which not. |
| 56 | |
| 57 | for (auto& entry : sw_enforced) { |
| 58 | switch (entry.tag) { |
| 59 | /* Invalid and unused */ |
| 60 | case KM_TAG_ECIES_SINGLE_HASH_MODE: |
| 61 | case KM_TAG_INVALID: |
| 62 | case KM_TAG_KDF: |
| 63 | CHECK(false) << "We shouldn't see tag " << entry.tag; |
| 64 | break; |
| 65 | |
| 66 | /* Unimplemented */ |
| 67 | case KM_TAG_ALLOW_WHILE_ON_BODY: |
| 68 | case KM_TAG_APPLICATION_ID: |
| 69 | case KM_TAG_BOOTLOADER_ONLY: |
| 70 | case KM_TAG_EARLY_BOOT_ONLY: |
| 71 | case KM_TAG_ROLLBACK_RESISTANCE: |
| 72 | case KM_TAG_ROLLBACK_RESISTANT: |
| 73 | case KM_TAG_STORAGE_KEY: |
| 74 | break; |
| 75 | |
| 76 | /* Unenforceable */ |
| 77 | case KM_TAG_ACTIVE_DATETIME: |
| 78 | case KM_TAG_ALL_APPLICATIONS: |
| 79 | case KM_TAG_ALL_USERS: |
| 80 | case KM_TAG_CREATION_DATETIME: |
| 81 | case KM_TAG_ORIGINATION_EXPIRE_DATETIME: |
| 82 | case KM_TAG_TRUSTED_CONFIRMATION_REQUIRED: |
| 83 | case KM_TAG_TRUSTED_USER_PRESENCE_REQUIRED: |
| 84 | case KM_TAG_USAGE_EXPIRE_DATETIME: |
| 85 | case KM_TAG_USER_ID: |
| 86 | break; |
| 87 | |
| 88 | /* Disallowed in KeyCharacteristics */ |
| 89 | case KM_TAG_APPLICATION_DATA: |
| 90 | break; |
| 91 | |
| 92 | /* Not key characteristics */ |
| 93 | case KM_TAG_ASSOCIATED_DATA: |
| 94 | case KM_TAG_ATTESTATION_APPLICATION_ID: |
| 95 | case KM_TAG_ATTESTATION_CHALLENGE: |
| 96 | case KM_TAG_ATTESTATION_ID_BRAND: |
| 97 | case KM_TAG_ATTESTATION_ID_DEVICE: |
| 98 | case KM_TAG_ATTESTATION_ID_IMEI: |
| 99 | case KM_TAG_ATTESTATION_ID_MANUFACTURER: |
| 100 | case KM_TAG_ATTESTATION_ID_MEID: |
| 101 | case KM_TAG_ATTESTATION_ID_MODEL: |
| 102 | case KM_TAG_ATTESTATION_ID_PRODUCT: |
| 103 | case KM_TAG_ATTESTATION_ID_SERIAL: |
| 104 | case KM_TAG_AUTH_TOKEN: |
| 105 | case KM_TAG_CERTIFICATE_SERIAL: |
| 106 | case KM_TAG_CERTIFICATE_SUBJECT: |
| 107 | case KM_TAG_CONFIRMATION_TOKEN: |
| 108 | case KM_TAG_DEVICE_UNIQUE_ATTESTATION: |
| 109 | case KM_TAG_IDENTITY_CREDENTIAL_KEY: |
| 110 | case KM_TAG_MAC_LENGTH: |
| 111 | case KM_TAG_NONCE: |
| 112 | case KM_TAG_RESET_SINCE_ID_ROTATION: |
| 113 | case KM_TAG_ROOT_OF_TRUST: |
| 114 | case KM_TAG_UNIQUE_ID: |
| 115 | break; |
| 116 | |
| 117 | /* Enforced */ |
| 118 | case KM_TAG_ALGORITHM: |
| 119 | case KM_TAG_AUTH_TIMEOUT: |
| 120 | case KM_TAG_BLOB_USAGE_REQUIREMENTS: |
| 121 | case KM_TAG_BLOCK_MODE: |
| 122 | case KM_TAG_BOOT_PATCHLEVEL: |
| 123 | case KM_TAG_CALLER_NONCE: |
| 124 | case KM_TAG_DIGEST: |
| 125 | case KM_TAG_EC_CURVE: |
| 126 | case KM_TAG_EXPORTABLE: |
| 127 | case KM_TAG_INCLUDE_UNIQUE_ID: |
| 128 | case KM_TAG_KEY_SIZE: |
| 129 | case KM_TAG_MAX_USES_PER_BOOT: |
| 130 | case KM_TAG_MIN_MAC_LENGTH: |
| 131 | case KM_TAG_MIN_SECONDS_BETWEEN_OPS: |
| 132 | case KM_TAG_NO_AUTH_REQUIRED: |
| 133 | case KM_TAG_ORIGIN: |
| 134 | case KM_TAG_OS_PATCHLEVEL: |
| 135 | case KM_TAG_OS_VERSION: |
| 136 | case KM_TAG_PADDING: |
| 137 | case KM_TAG_PURPOSE: |
| 138 | case KM_TAG_RSA_OAEP_MGF_DIGEST: |
| 139 | case KM_TAG_RSA_PUBLIC_EXPONENT: |
| 140 | case KM_TAG_UNLOCKED_DEVICE_REQUIRED: |
| 141 | case KM_TAG_USER_AUTH_TYPE: |
| 142 | case KM_TAG_USER_SECURE_ID: |
| 143 | case KM_TAG_VENDOR_PATCHLEVEL: |
| 144 | enforced.authorizations.push_back(kmParam2Aidl(entry)); |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | return {std::move(enforced)}; |
| 149 | } |
| 150 | |
| 151 | } // namespace |
| 152 | |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 153 | constexpr size_t kOperationTableSize = 16; |
| 154 | |
| 155 | AndroidKeyMintDevice::AndroidKeyMintDevice(SecurityLevel securityLevel) |
| 156 | : impl_(new ::keymaster::AndroidKeymaster( |
| 157 | [&]() -> auto { |
| 158 | auto context = new PureSoftKeymasterContext( |
| 159 | KmVersion::KEYMINT_1, static_cast<keymaster_security_level_t>(securityLevel)); |
| 160 | context->SetSystemVersion(::keymaster::GetOsVersion(), |
| 161 | ::keymaster::GetOsPatchlevel()); |
| 162 | return context; |
| 163 | }(), |
| 164 | kOperationTableSize)), |
| 165 | securityLevel_(securityLevel) {} |
| 166 | |
| 167 | AndroidKeyMintDevice::~AndroidKeyMintDevice() {} |
| 168 | |
| 169 | ScopedAStatus AndroidKeyMintDevice::getHardwareInfo(KeyMintHardwareInfo* info) { |
| 170 | info->versionNumber = 1; |
| 171 | info->securityLevel = securityLevel_; |
| 172 | info->keyMintName = "FakeKeyMintDevice"; |
| 173 | info->keyMintAuthorName = "Google"; |
| 174 | |
| 175 | return ScopedAStatus::ok(); |
| 176 | } |
| 177 | |
| 178 | ScopedAStatus AndroidKeyMintDevice::verifyAuthorization(int64_t challenge, // |
| 179 | const HardwareAuthToken& authToken, // |
| 180 | VerificationToken* verificationToken) { |
| 181 | |
Shawn Willden | 950eb0b | 2021-01-06 19:15:29 +0000 | [diff] [blame] | 182 | VerifyAuthorizationRequest request(impl_->message_version()); |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 183 | request.challenge = static_cast<uint64_t>(challenge); |
| 184 | request.auth_token.challenge = authToken.challenge; |
| 185 | request.auth_token.user_id = authToken.userId; |
| 186 | request.auth_token.authenticator_id = authToken.authenticatorId; |
| 187 | request.auth_token.authenticator_type = legacy_enum_conversion(authToken.authenticatorType); |
| 188 | |
| 189 | // TODO(seleneh) b/162481130 remove the casting once uint is supported in aidl |
| 190 | request.auth_token.timestamp = static_cast<uint64_t>(authToken.timestamp.milliSeconds); |
| 191 | KeymasterBlob mac(authToken.mac.data(), authToken.mac.size()); |
| 192 | request.auth_token.mac = KeymasterBlob(authToken.mac.data(), authToken.mac.size()); |
| 193 | |
| 194 | auto response = impl_->VerifyAuthorization(request); |
| 195 | |
| 196 | if (response.error != KM_ERROR_OK) { |
| 197 | return kmError2ScopedAStatus(response.error); |
| 198 | } |
| 199 | |
| 200 | verificationToken->challenge = response.token.challenge; |
| 201 | verificationToken->timestamp.milliSeconds = static_cast<int64_t>(response.token.timestamp); |
| 202 | verificationToken->securityLevel = legacy_enum_conversion(response.token.security_level); |
| 203 | verificationToken->mac = kmBlob2vector(response.token.mac); |
| 204 | |
| 205 | return ScopedAStatus::ok(); |
| 206 | } |
| 207 | |
| 208 | ScopedAStatus AndroidKeyMintDevice::addRngEntropy(const vector<uint8_t>& data) { |
| 209 | if (data.size() == 0) { |
| 210 | return ScopedAStatus::ok(); |
| 211 | } |
| 212 | |
Shawn Willden | 950eb0b | 2021-01-06 19:15:29 +0000 | [diff] [blame] | 213 | AddEntropyRequest request(impl_->message_version()); |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 214 | request.random_data.Reinitialize(data.data(), data.size()); |
| 215 | |
Shawn Willden | 950eb0b | 2021-01-06 19:15:29 +0000 | [diff] [blame] | 216 | AddEntropyResponse response(impl_->message_version()); |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 217 | impl_->AddRngEntropy(request, &response); |
| 218 | |
| 219 | return kmError2ScopedAStatus(response.error); |
| 220 | } |
| 221 | |
| 222 | ScopedAStatus AndroidKeyMintDevice::generateKey(const vector<KeyParameter>& keyParams, |
Shawn Willden | 763166c | 2021-01-10 19:45:01 -0700 | [diff] [blame] | 223 | KeyCreationResult* creationResult) { |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 224 | |
Shawn Willden | 950eb0b | 2021-01-06 19:15:29 +0000 | [diff] [blame] | 225 | GenerateKeyRequest request(impl_->message_version()); |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 226 | request.key_description.Reinitialize(KmParamSet(keyParams)); |
| 227 | |
Shawn Willden | 950eb0b | 2021-01-06 19:15:29 +0000 | [diff] [blame] | 228 | GenerateKeyResponse response(impl_->message_version()); |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 229 | impl_->GenerateKey(request, &response); |
| 230 | |
| 231 | if (response.error != KM_ERROR_OK) { |
| 232 | // Note a key difference between this current aidl and previous hal, is |
| 233 | // that hal returns void where as aidl returns the error status. If |
| 234 | // aidl returns error, then aidl will not return any change you may make |
| 235 | // to the out parameters. This is quite different from hal where all |
| 236 | // output variable can be modified due to hal returning void. |
| 237 | // |
| 238 | // So the caller need to be aware not to expect aidl functions to clear |
| 239 | // the output variables for you in case of error. If you left some |
| 240 | // wrong data set in the out parameters, they will stay there. |
| 241 | return kmError2ScopedAStatus(response.error); |
| 242 | } |
| 243 | |
Shawn Willden | 763166c | 2021-01-10 19:45:01 -0700 | [diff] [blame] | 244 | creationResult->keyBlob = kmBlob2vector(response.key_blob); |
| 245 | creationResult->keyCharacteristics = |
| 246 | convertKeyCharacteristics(securityLevel_, response.unenforced, response.enforced); |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 247 | return ScopedAStatus::ok(); |
| 248 | } |
| 249 | |
| 250 | ScopedAStatus AndroidKeyMintDevice::importKey(const vector<KeyParameter>& keyParams, |
| 251 | KeyFormat keyFormat, const vector<uint8_t>& keyData, |
Shawn Willden | 763166c | 2021-01-10 19:45:01 -0700 | [diff] [blame] | 252 | KeyCreationResult* creationResult) { |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 253 | |
Shawn Willden | 950eb0b | 2021-01-06 19:15:29 +0000 | [diff] [blame] | 254 | ImportKeyRequest request(impl_->message_version()); |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 255 | request.key_description.Reinitialize(KmParamSet(keyParams)); |
| 256 | request.key_format = legacy_enum_conversion(keyFormat); |
| 257 | request.SetKeyMaterial(keyData.data(), keyData.size()); |
| 258 | |
Shawn Willden | 950eb0b | 2021-01-06 19:15:29 +0000 | [diff] [blame] | 259 | ImportKeyResponse response(impl_->message_version()); |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 260 | impl_->ImportKey(request, &response); |
| 261 | |
| 262 | if (response.error != KM_ERROR_OK) { |
| 263 | return kmError2ScopedAStatus(response.error); |
| 264 | } |
| 265 | |
Shawn Willden | 763166c | 2021-01-10 19:45:01 -0700 | [diff] [blame] | 266 | creationResult->keyBlob = kmBlob2vector(response.key_blob); |
| 267 | creationResult->keyCharacteristics = |
| 268 | convertKeyCharacteristics(securityLevel_, response.unenforced, response.enforced); |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 269 | |
| 270 | return ScopedAStatus::ok(); |
| 271 | } |
| 272 | |
Shawn Willden | 763166c | 2021-01-10 19:45:01 -0700 | [diff] [blame] | 273 | ScopedAStatus AndroidKeyMintDevice::importWrappedKey(const vector<uint8_t>& wrappedKeyData, |
| 274 | const vector<uint8_t>& wrappingKeyBlob, |
| 275 | const vector<uint8_t>& maskingKey, |
| 276 | const vector<KeyParameter>& unwrappingParams, |
| 277 | int64_t passwordSid, int64_t biometricSid, |
| 278 | KeyCreationResult* creationResult) { |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 279 | |
Shawn Willden | 950eb0b | 2021-01-06 19:15:29 +0000 | [diff] [blame] | 280 | ImportWrappedKeyRequest request(impl_->message_version()); |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 281 | request.SetWrappedMaterial(wrappedKeyData.data(), wrappedKeyData.size()); |
| 282 | request.SetWrappingMaterial(wrappingKeyBlob.data(), wrappingKeyBlob.size()); |
| 283 | request.SetMaskingKeyMaterial(maskingKey.data(), maskingKey.size()); |
| 284 | request.additional_params.Reinitialize(KmParamSet(unwrappingParams)); |
| 285 | request.password_sid = static_cast<uint64_t>(passwordSid); |
| 286 | request.biometric_sid = static_cast<uint64_t>(biometricSid); |
| 287 | |
Shawn Willden | 950eb0b | 2021-01-06 19:15:29 +0000 | [diff] [blame] | 288 | ImportWrappedKeyResponse response(impl_->message_version()); |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 289 | impl_->ImportWrappedKey(request, &response); |
| 290 | |
| 291 | if (response.error != KM_ERROR_OK) { |
| 292 | return kmError2ScopedAStatus(response.error); |
| 293 | } |
| 294 | |
Shawn Willden | 763166c | 2021-01-10 19:45:01 -0700 | [diff] [blame] | 295 | creationResult->keyBlob = kmBlob2vector(response.key_blob); |
| 296 | creationResult->keyCharacteristics = |
| 297 | convertKeyCharacteristics(securityLevel_, response.unenforced, response.enforced); |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 298 | |
| 299 | return ScopedAStatus::ok(); |
| 300 | } |
| 301 | |
| 302 | ScopedAStatus AndroidKeyMintDevice::upgradeKey(const vector<uint8_t>& keyBlobToUpgrade, |
| 303 | const vector<KeyParameter>& upgradeParams, |
| 304 | vector<uint8_t>* keyBlob) { |
| 305 | |
Shawn Willden | 950eb0b | 2021-01-06 19:15:29 +0000 | [diff] [blame] | 306 | UpgradeKeyRequest request(impl_->message_version()); |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 307 | request.SetKeyMaterial(keyBlobToUpgrade.data(), keyBlobToUpgrade.size()); |
| 308 | request.upgrade_params.Reinitialize(KmParamSet(upgradeParams)); |
| 309 | |
Shawn Willden | 950eb0b | 2021-01-06 19:15:29 +0000 | [diff] [blame] | 310 | UpgradeKeyResponse response(impl_->message_version()); |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 311 | impl_->UpgradeKey(request, &response); |
| 312 | |
| 313 | if (response.error != KM_ERROR_OK) { |
| 314 | return kmError2ScopedAStatus(response.error); |
| 315 | } |
| 316 | |
| 317 | *keyBlob = kmBlob2vector(response.upgraded_key); |
| 318 | return ScopedAStatus::ok(); |
| 319 | } |
| 320 | |
| 321 | ScopedAStatus AndroidKeyMintDevice::deleteKey(const vector<uint8_t>& keyBlob) { |
Shawn Willden | 950eb0b | 2021-01-06 19:15:29 +0000 | [diff] [blame] | 322 | DeleteKeyRequest request(impl_->message_version()); |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 323 | request.SetKeyMaterial(keyBlob.data(), keyBlob.size()); |
| 324 | |
Shawn Willden | 950eb0b | 2021-01-06 19:15:29 +0000 | [diff] [blame] | 325 | DeleteKeyResponse response(impl_->message_version()); |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 326 | impl_->DeleteKey(request, &response); |
| 327 | |
| 328 | return kmError2ScopedAStatus(response.error); |
| 329 | } |
| 330 | |
| 331 | ScopedAStatus AndroidKeyMintDevice::deleteAllKeys() { |
| 332 | // There's nothing to be done to delete software key blobs. |
Shawn Willden | 950eb0b | 2021-01-06 19:15:29 +0000 | [diff] [blame] | 333 | DeleteAllKeysRequest request(impl_->message_version()); |
| 334 | DeleteAllKeysResponse response(impl_->message_version()); |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 335 | impl_->DeleteAllKeys(request, &response); |
| 336 | |
| 337 | return kmError2ScopedAStatus(response.error); |
| 338 | } |
| 339 | |
| 340 | ScopedAStatus AndroidKeyMintDevice::destroyAttestationIds() { |
| 341 | return kmError2ScopedAStatus(KM_ERROR_UNIMPLEMENTED); |
| 342 | } |
| 343 | |
| 344 | ScopedAStatus AndroidKeyMintDevice::begin(KeyPurpose purpose, const vector<uint8_t>& keyBlob, |
| 345 | const vector<KeyParameter>& params, |
| 346 | const HardwareAuthToken& authToken, BeginResult* result) { |
| 347 | |
Shawn Willden | 950eb0b | 2021-01-06 19:15:29 +0000 | [diff] [blame] | 348 | BeginOperationRequest request(impl_->message_version()); |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 349 | request.purpose = legacy_enum_conversion(purpose); |
| 350 | request.SetKeyMaterial(keyBlob.data(), keyBlob.size()); |
| 351 | request.additional_params.Reinitialize(KmParamSet(params)); |
| 352 | |
| 353 | vector<uint8_t> vector_token = authToken2AidlVec(authToken); |
| 354 | request.additional_params.push_back( |
| 355 | TAG_AUTH_TOKEN, reinterpret_cast<uint8_t*>(vector_token.data()), vector_token.size()); |
| 356 | |
Shawn Willden | 950eb0b | 2021-01-06 19:15:29 +0000 | [diff] [blame] | 357 | BeginOperationResponse response(impl_->message_version()); |
Shawn Willden | 815e896 | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 358 | impl_->BeginOperation(request, &response); |
| 359 | |
| 360 | if (response.error != KM_ERROR_OK) { |
| 361 | return kmError2ScopedAStatus(response.error); |
| 362 | } |
| 363 | |
| 364 | result->params = kmParamSet2Aidl(response.output_params); |
| 365 | result->challenge = response.op_handle; |
| 366 | result->operation = |
| 367 | ndk::SharedRefBase::make<AndroidKeyMintOperation>(impl_, response.op_handle); |
| 368 | return ScopedAStatus::ok(); |
| 369 | } |
| 370 | |
| 371 | IKeyMintDevice* CreateKeyMintDevice(SecurityLevel securityLevel) { |
| 372 | |
| 373 | return ::new AndroidKeyMintDevice(securityLevel); |
| 374 | } |
| 375 | |
| 376 | } // namespace aidl::android::hardware::security::keymint |