blob: ba8484708d46eaa3d3908d5aaa1b178bc7f19dcb [file] [log] [blame]
Shawn Willden815e8962020-12-11 13:05:27 +00001/*
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 Willden763166c2021-01-10 19:45:01 -070018#include <android-base/logging.h>
Shawn Willden815e8962020-12-11 13:05:27 +000019
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
31namespace aidl::android::hardware::security::keymint {
32
33using namespace ::keymaster;
Shawn Willden96d4e8c2020-12-07 17:03:54 -070034using namespace km_utils;
Shawn Willden815e8962020-12-11 13:05:27 +000035
Shawn Willden763166c2021-01-10 19:45:01 -070036namespace {
37
38vector<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:
Qi Wu5218bba2021-01-15 02:36:26 +0800141 case KM_TAG_USAGE_COUNT_LIMIT:
Shawn Willden763166c2021-01-10 19:45:01 -0700142 case KM_TAG_USER_AUTH_TYPE:
143 case KM_TAG_USER_SECURE_ID:
144 case KM_TAG_VENDOR_PATCHLEVEL:
145 enforced.authorizations.push_back(kmParam2Aidl(entry));
146 }
147 }
148
149 return {std::move(enforced)};
150}
151
Shawn Willdend7d4f312020-12-21 08:31:01 -0700152Certificate convertCertificate(const keymaster_blob_t& cert) {
153 return {std::vector<uint8_t>(cert.data, cert.data + cert.data_length)};
154}
155
156vector<Certificate> convertCertificateChain(const CertificateChain& chain) {
157 vector<Certificate> retval;
158 retval.reserve(chain.entry_count);
159 std::transform(chain.begin(), chain.end(), std::back_inserter(retval), convertCertificate);
160 return retval;
161}
162
Shawn Willden763166c2021-01-10 19:45:01 -0700163} // namespace
164
Shawn Willden815e8962020-12-11 13:05:27 +0000165constexpr size_t kOperationTableSize = 16;
166
167AndroidKeyMintDevice::AndroidKeyMintDevice(SecurityLevel securityLevel)
168 : impl_(new ::keymaster::AndroidKeymaster(
169 [&]() -> auto {
170 auto context = new PureSoftKeymasterContext(
171 KmVersion::KEYMINT_1, static_cast<keymaster_security_level_t>(securityLevel));
172 context->SetSystemVersion(::keymaster::GetOsVersion(),
173 ::keymaster::GetOsPatchlevel());
174 return context;
175 }(),
176 kOperationTableSize)),
177 securityLevel_(securityLevel) {}
178
179AndroidKeyMintDevice::~AndroidKeyMintDevice() {}
180
181ScopedAStatus AndroidKeyMintDevice::getHardwareInfo(KeyMintHardwareInfo* info) {
182 info->versionNumber = 1;
183 info->securityLevel = securityLevel_;
184 info->keyMintName = "FakeKeyMintDevice";
185 info->keyMintAuthorName = "Google";
186
187 return ScopedAStatus::ok();
188}
189
Shawn Willden815e8962020-12-11 13:05:27 +0000190ScopedAStatus AndroidKeyMintDevice::addRngEntropy(const vector<uint8_t>& data) {
191 if (data.size() == 0) {
192 return ScopedAStatus::ok();
193 }
194
Shawn Willden950eb0b2021-01-06 19:15:29 +0000195 AddEntropyRequest request(impl_->message_version());
Shawn Willden815e8962020-12-11 13:05:27 +0000196 request.random_data.Reinitialize(data.data(), data.size());
197
Shawn Willden950eb0b2021-01-06 19:15:29 +0000198 AddEntropyResponse response(impl_->message_version());
Shawn Willden815e8962020-12-11 13:05:27 +0000199 impl_->AddRngEntropy(request, &response);
200
201 return kmError2ScopedAStatus(response.error);
202}
203
204ScopedAStatus AndroidKeyMintDevice::generateKey(const vector<KeyParameter>& keyParams,
Shawn Willden763166c2021-01-10 19:45:01 -0700205 KeyCreationResult* creationResult) {
Shawn Willden815e8962020-12-11 13:05:27 +0000206
Shawn Willden950eb0b2021-01-06 19:15:29 +0000207 GenerateKeyRequest request(impl_->message_version());
Shawn Willden815e8962020-12-11 13:05:27 +0000208 request.key_description.Reinitialize(KmParamSet(keyParams));
209
Shawn Willden950eb0b2021-01-06 19:15:29 +0000210 GenerateKeyResponse response(impl_->message_version());
Shawn Willden815e8962020-12-11 13:05:27 +0000211 impl_->GenerateKey(request, &response);
212
213 if (response.error != KM_ERROR_OK) {
214 // Note a key difference between this current aidl and previous hal, is
215 // that hal returns void where as aidl returns the error status. If
216 // aidl returns error, then aidl will not return any change you may make
217 // to the out parameters. This is quite different from hal where all
218 // output variable can be modified due to hal returning void.
219 //
220 // So the caller need to be aware not to expect aidl functions to clear
221 // the output variables for you in case of error. If you left some
222 // wrong data set in the out parameters, they will stay there.
223 return kmError2ScopedAStatus(response.error);
224 }
225
Shawn Willden763166c2021-01-10 19:45:01 -0700226 creationResult->keyBlob = kmBlob2vector(response.key_blob);
227 creationResult->keyCharacteristics =
228 convertKeyCharacteristics(securityLevel_, response.unenforced, response.enforced);
Shawn Willdend7d4f312020-12-21 08:31:01 -0700229 creationResult->certificateChain = convertCertificateChain(response.certificate_chain);
Shawn Willden815e8962020-12-11 13:05:27 +0000230 return ScopedAStatus::ok();
231}
232
233ScopedAStatus AndroidKeyMintDevice::importKey(const vector<KeyParameter>& keyParams,
234 KeyFormat keyFormat, const vector<uint8_t>& keyData,
Shawn Willden763166c2021-01-10 19:45:01 -0700235 KeyCreationResult* creationResult) {
Shawn Willden815e8962020-12-11 13:05:27 +0000236
Shawn Willden950eb0b2021-01-06 19:15:29 +0000237 ImportKeyRequest request(impl_->message_version());
Shawn Willden815e8962020-12-11 13:05:27 +0000238 request.key_description.Reinitialize(KmParamSet(keyParams));
239 request.key_format = legacy_enum_conversion(keyFormat);
240 request.SetKeyMaterial(keyData.data(), keyData.size());
241
Shawn Willden950eb0b2021-01-06 19:15:29 +0000242 ImportKeyResponse response(impl_->message_version());
Shawn Willden815e8962020-12-11 13:05:27 +0000243 impl_->ImportKey(request, &response);
244
245 if (response.error != KM_ERROR_OK) {
246 return kmError2ScopedAStatus(response.error);
247 }
248
Shawn Willden763166c2021-01-10 19:45:01 -0700249 creationResult->keyBlob = kmBlob2vector(response.key_blob);
250 creationResult->keyCharacteristics =
251 convertKeyCharacteristics(securityLevel_, response.unenforced, response.enforced);
Shawn Willdend7d4f312020-12-21 08:31:01 -0700252 creationResult->certificateChain = convertCertificateChain(response.certificate_chain);
Shawn Willden815e8962020-12-11 13:05:27 +0000253
254 return ScopedAStatus::ok();
255}
256
Shawn Willden763166c2021-01-10 19:45:01 -0700257ScopedAStatus AndroidKeyMintDevice::importWrappedKey(const vector<uint8_t>& wrappedKeyData,
258 const vector<uint8_t>& wrappingKeyBlob,
259 const vector<uint8_t>& maskingKey,
260 const vector<KeyParameter>& unwrappingParams,
261 int64_t passwordSid, int64_t biometricSid,
262 KeyCreationResult* creationResult) {
Shawn Willden815e8962020-12-11 13:05:27 +0000263
Shawn Willden950eb0b2021-01-06 19:15:29 +0000264 ImportWrappedKeyRequest request(impl_->message_version());
Shawn Willden815e8962020-12-11 13:05:27 +0000265 request.SetWrappedMaterial(wrappedKeyData.data(), wrappedKeyData.size());
266 request.SetWrappingMaterial(wrappingKeyBlob.data(), wrappingKeyBlob.size());
267 request.SetMaskingKeyMaterial(maskingKey.data(), maskingKey.size());
268 request.additional_params.Reinitialize(KmParamSet(unwrappingParams));
269 request.password_sid = static_cast<uint64_t>(passwordSid);
270 request.biometric_sid = static_cast<uint64_t>(biometricSid);
271
Shawn Willden950eb0b2021-01-06 19:15:29 +0000272 ImportWrappedKeyResponse response(impl_->message_version());
Shawn Willden815e8962020-12-11 13:05:27 +0000273 impl_->ImportWrappedKey(request, &response);
274
275 if (response.error != KM_ERROR_OK) {
276 return kmError2ScopedAStatus(response.error);
277 }
278
Shawn Willden763166c2021-01-10 19:45:01 -0700279 creationResult->keyBlob = kmBlob2vector(response.key_blob);
280 creationResult->keyCharacteristics =
281 convertKeyCharacteristics(securityLevel_, response.unenforced, response.enforced);
Shawn Willdend7d4f312020-12-21 08:31:01 -0700282 creationResult->certificateChain = convertCertificateChain(response.certificate_chain);
Shawn Willden815e8962020-12-11 13:05:27 +0000283
284 return ScopedAStatus::ok();
285}
286
287ScopedAStatus AndroidKeyMintDevice::upgradeKey(const vector<uint8_t>& keyBlobToUpgrade,
288 const vector<KeyParameter>& upgradeParams,
289 vector<uint8_t>* keyBlob) {
290
Shawn Willden950eb0b2021-01-06 19:15:29 +0000291 UpgradeKeyRequest request(impl_->message_version());
Shawn Willden815e8962020-12-11 13:05:27 +0000292 request.SetKeyMaterial(keyBlobToUpgrade.data(), keyBlobToUpgrade.size());
293 request.upgrade_params.Reinitialize(KmParamSet(upgradeParams));
294
Shawn Willden950eb0b2021-01-06 19:15:29 +0000295 UpgradeKeyResponse response(impl_->message_version());
Shawn Willden815e8962020-12-11 13:05:27 +0000296 impl_->UpgradeKey(request, &response);
297
298 if (response.error != KM_ERROR_OK) {
299 return kmError2ScopedAStatus(response.error);
300 }
301
302 *keyBlob = kmBlob2vector(response.upgraded_key);
303 return ScopedAStatus::ok();
304}
305
306ScopedAStatus AndroidKeyMintDevice::deleteKey(const vector<uint8_t>& keyBlob) {
Shawn Willden950eb0b2021-01-06 19:15:29 +0000307 DeleteKeyRequest request(impl_->message_version());
Shawn Willden815e8962020-12-11 13:05:27 +0000308 request.SetKeyMaterial(keyBlob.data(), keyBlob.size());
309
Shawn Willden950eb0b2021-01-06 19:15:29 +0000310 DeleteKeyResponse response(impl_->message_version());
Shawn Willden815e8962020-12-11 13:05:27 +0000311 impl_->DeleteKey(request, &response);
312
313 return kmError2ScopedAStatus(response.error);
314}
315
316ScopedAStatus AndroidKeyMintDevice::deleteAllKeys() {
317 // There's nothing to be done to delete software key blobs.
Shawn Willden950eb0b2021-01-06 19:15:29 +0000318 DeleteAllKeysRequest request(impl_->message_version());
319 DeleteAllKeysResponse response(impl_->message_version());
Shawn Willden815e8962020-12-11 13:05:27 +0000320 impl_->DeleteAllKeys(request, &response);
321
322 return kmError2ScopedAStatus(response.error);
323}
324
325ScopedAStatus AndroidKeyMintDevice::destroyAttestationIds() {
326 return kmError2ScopedAStatus(KM_ERROR_UNIMPLEMENTED);
327}
328
329ScopedAStatus AndroidKeyMintDevice::begin(KeyPurpose purpose, const vector<uint8_t>& keyBlob,
330 const vector<KeyParameter>& params,
331 const HardwareAuthToken& authToken, BeginResult* result) {
332
Shawn Willden950eb0b2021-01-06 19:15:29 +0000333 BeginOperationRequest request(impl_->message_version());
Shawn Willden815e8962020-12-11 13:05:27 +0000334 request.purpose = legacy_enum_conversion(purpose);
335 request.SetKeyMaterial(keyBlob.data(), keyBlob.size());
336 request.additional_params.Reinitialize(KmParamSet(params));
337
338 vector<uint8_t> vector_token = authToken2AidlVec(authToken);
339 request.additional_params.push_back(
340 TAG_AUTH_TOKEN, reinterpret_cast<uint8_t*>(vector_token.data()), vector_token.size());
341
Shawn Willden950eb0b2021-01-06 19:15:29 +0000342 BeginOperationResponse response(impl_->message_version());
Shawn Willden815e8962020-12-11 13:05:27 +0000343 impl_->BeginOperation(request, &response);
344
345 if (response.error != KM_ERROR_OK) {
346 return kmError2ScopedAStatus(response.error);
347 }
348
349 result->params = kmParamSet2Aidl(response.output_params);
350 result->challenge = response.op_handle;
351 result->operation =
352 ndk::SharedRefBase::make<AndroidKeyMintOperation>(impl_, response.op_handle);
353 return ScopedAStatus::ok();
354}
355
356IKeyMintDevice* CreateKeyMintDevice(SecurityLevel securityLevel) {
357
358 return ::new AndroidKeyMintDevice(securityLevel);
359}
360
361} // namespace aidl::android::hardware::security::keymint