blob: d592d3686b93ef8a4da0998daf6d43946233b52b [file] [log] [blame]
Selene Huang31ab4042020-04-29 04:22:39 -07001/*
2 * Copyright (C) 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
Selene Huang31ab4042020-04-29 04:22:39 -070017#pragma once
18
David Drysdaleadfe6112021-05-27 12:00:53 +010019#include <functional>
David Drysdale300b5552021-05-20 12:05:26 +010020#include <string_view>
21
Selene Huang31ab4042020-04-29 04:22:39 -070022#include <aidl/Gtest.h>
23#include <aidl/Vintf.h>
David Drysdalea676c3b2021-06-14 14:46:02 +010024#include <android-base/properties.h>
Selene Huang31ab4042020-04-29 04:22:39 -070025#include <binder/IServiceManager.h>
26#include <binder/ProcessState.h>
27#include <gtest/gtest.h>
Shawn Willden7c130392020-12-21 09:58:22 -070028#include <openssl/x509.h>
Selene Huang31ab4042020-04-29 04:22:39 -070029
Janis Danisevskis24c04702020-12-16 18:28:39 -080030#include <aidl/android/hardware/security/keymint/ErrorCode.h>
31#include <aidl/android/hardware/security/keymint/IKeyMintDevice.h>
David Drysdale4dc01072021-04-01 12:17:35 +010032#include <aidl/android/hardware/security/keymint/MacedPublicKey.h>
Shawn Willden1d3f85e2020-12-09 14:18:44 -070033
Shawn Willden08a7e432020-12-11 13:05:27 +000034#include <keymint_support/authorization_set.h>
Shawn Willden7c130392020-12-21 09:58:22 -070035#include <keymint_support/openssl_utils.h>
Selene Huang31ab4042020-04-29 04:22:39 -070036
Shawn Willden0e80b5d2020-12-17 09:07:27 -070037namespace aidl::android::hardware::security::keymint {
38
39::std::ostream& operator<<(::std::ostream& os, const AuthorizationSet& set);
40
Shawn Willden7c130392020-12-21 09:58:22 -070041inline bool operator==(const keymint::AuthorizationSet& a, const keymint::AuthorizationSet& b) {
42 return a.size() == b.size() && std::equal(a.begin(), a.end(), b.begin());
43}
44
Shawn Willden0e80b5d2020-12-17 09:07:27 -070045namespace test {
Selene Huang31ab4042020-04-29 04:22:39 -070046
47using ::android::sp;
Janis Danisevskis24c04702020-12-16 18:28:39 -080048using Status = ::ndk::ScopedAStatus;
Shawn Willden7c130392020-12-21 09:58:22 -070049using ::std::optional;
Selene Huang31ab4042020-04-29 04:22:39 -070050using ::std::shared_ptr;
51using ::std::string;
52using ::std::vector;
53
54constexpr uint64_t kOpHandleSentinel = 0xFFFFFFFFFFFFFFFF;
55
Selene Huang31ab4042020-04-29 04:22:39 -070056class KeyMintAidlTestBase : public ::testing::TestWithParam<string> {
57 public:
Chirag Pathak9ea6a0a2021-02-01 23:54:27 +000058 struct KeyData {
59 vector<uint8_t> blob;
60 vector<KeyCharacteristics> characteristics;
61 };
62
Shawn Willden7c130392020-12-21 09:58:22 -070063 static bool arm_deleteAllKeys;
64 static bool dump_Attestations;
65
Selene Huang31ab4042020-04-29 04:22:39 -070066 void SetUp() override;
67 void TearDown() override {
68 if (key_blob_.size()) {
69 CheckedDeleteKey();
70 }
71 AbortIfNeeded();
72 }
73
Janis Danisevskis24c04702020-12-16 18:28:39 -080074 void InitializeKeyMint(std::shared_ptr<IKeyMintDevice> keyMint);
Selene Huang31ab4042020-04-29 04:22:39 -070075 IKeyMintDevice& keyMint() { return *keymint_; }
76 uint32_t os_version() { return os_version_; }
77 uint32_t os_patch_level() { return os_patch_level_; }
David Drysdalebb3d85e2021-04-13 11:15:51 +010078 uint32_t vendor_patch_level() { return vendor_patch_level_; }
David Drysdale37af4b32021-05-14 16:46:59 +010079 uint32_t boot_patch_level(const vector<KeyCharacteristics>& key_characteristics);
80 uint32_t boot_patch_level();
Selene Huang31ab4042020-04-29 04:22:39 -070081
Janis Danisevskis24c04702020-12-16 18:28:39 -080082 ErrorCode GetReturnErrorCode(const Status& result);
Selene Huang31ab4042020-04-29 04:22:39 -070083
Shawn Willden7c130392020-12-21 09:58:22 -070084 ErrorCode GenerateKey(const AuthorizationSet& key_desc, vector<uint8_t>* key_blob,
85 vector<KeyCharacteristics>* key_characteristics) {
86 return GenerateKey(key_desc, std::nullopt /* attest_key */, key_blob, key_characteristics,
87 &cert_chain_);
88 }
89 ErrorCode GenerateKey(const AuthorizationSet& key_desc,
90 const optional<AttestationKey>& attest_key, vector<uint8_t>* key_blob,
91 vector<KeyCharacteristics>* key_characteristics,
92 vector<Certificate>* cert_chain);
93 ErrorCode GenerateKey(const AuthorizationSet& key_desc,
94 const optional<AttestationKey>& attest_key = std::nullopt);
95
Selene Huang31ab4042020-04-29 04:22:39 -070096 ErrorCode ImportKey(const AuthorizationSet& key_desc, KeyFormat format,
97 const string& key_material, vector<uint8_t>* key_blob,
Shawn Willden7f424372021-01-10 18:06:50 -070098 vector<KeyCharacteristics>* key_characteristics);
Selene Huang31ab4042020-04-29 04:22:39 -070099 ErrorCode ImportKey(const AuthorizationSet& key_desc, KeyFormat format,
100 const string& key_material);
101
102 ErrorCode ImportWrappedKey(string wrapped_key, string wrapping_key,
103 const AuthorizationSet& wrapping_key_desc, string masking_key,
David Drysdaled2cc8c22021-04-15 13:29:45 +0100104 const AuthorizationSet& unwrapping_params, int64_t password_sid,
105 int64_t biometric_sid);
106 ErrorCode ImportWrappedKey(string wrapped_key, string wrapping_key,
107 const AuthorizationSet& wrapping_key_desc, string masking_key,
108 const AuthorizationSet& unwrapping_params) {
109 return ImportWrappedKey(wrapped_key, wrapping_key, wrapping_key_desc, masking_key,
110 unwrapping_params, 0 /* password_sid */, 0 /* biometric_sid */);
111 }
Selene Huang31ab4042020-04-29 04:22:39 -0700112
David Drysdale300b5552021-05-20 12:05:26 +0100113 ErrorCode GetCharacteristics(const vector<uint8_t>& key_blob, const vector<uint8_t>& app_id,
114 const vector<uint8_t>& app_data,
115 vector<KeyCharacteristics>* key_characteristics);
116 ErrorCode GetCharacteristics(const vector<uint8_t>& key_blob,
117 vector<KeyCharacteristics>* key_characteristics);
118
119 void CheckCharacteristics(const vector<uint8_t>& key_blob,
120 const vector<KeyCharacteristics>& generate_characteristics);
121 void CheckAppIdCharacteristics(const vector<uint8_t>& key_blob, std::string_view app_id_string,
122 std::string_view app_data_string,
123 const vector<KeyCharacteristics>& generate_characteristics);
124
Selene Huang31ab4042020-04-29 04:22:39 -0700125 ErrorCode DeleteKey(vector<uint8_t>* key_blob, bool keep_key_blob = false);
126 ErrorCode DeleteKey(bool keep_key_blob = false);
127
128 ErrorCode DeleteAllKeys();
129
David Drysdaled2cc8c22021-04-15 13:29:45 +0100130 ErrorCode DestroyAttestationIds();
131
Selene Huang31ab4042020-04-29 04:22:39 -0700132 void CheckedDeleteKey(vector<uint8_t>* key_blob, bool keep_key_blob = false);
133 void CheckedDeleteKey();
134
135 ErrorCode Begin(KeyPurpose purpose, const vector<uint8_t>& key_blob,
136 const AuthorizationSet& in_params, AuthorizationSet* out_params,
Janis Danisevskis24c04702020-12-16 18:28:39 -0800137 std::shared_ptr<IKeyMintOperation>& op);
Selene Huang31ab4042020-04-29 04:22:39 -0700138 ErrorCode Begin(KeyPurpose purpose, const vector<uint8_t>& key_blob,
139 const AuthorizationSet& in_params, AuthorizationSet* out_params);
140 ErrorCode Begin(KeyPurpose purpose, const AuthorizationSet& in_params,
141 AuthorizationSet* out_params);
142 ErrorCode Begin(KeyPurpose purpose, const AuthorizationSet& in_params);
143
Shawn Willden92d79c02021-02-19 07:31:55 -0700144 ErrorCode UpdateAad(const string& input);
145 ErrorCode Update(const string& input, string* output);
Selene Huang31ab4042020-04-29 04:22:39 -0700146
Selene Huang31ab4042020-04-29 04:22:39 -0700147 ErrorCode Finish(const string& message, const string& signature, string* output);
Shawn Willden92d79c02021-02-19 07:31:55 -0700148 ErrorCode Finish(const string& message, string* output) {
149 return Finish(message, {} /* signature */, output);
150 }
151 ErrorCode Finish(string* output) { return Finish({} /* message */, output); }
Selene Huang31ab4042020-04-29 04:22:39 -0700152
153 ErrorCode Abort();
Janis Danisevskis24c04702020-12-16 18:28:39 -0800154 ErrorCode Abort(const shared_ptr<IKeyMintOperation>& op);
Selene Huang31ab4042020-04-29 04:22:39 -0700155 void AbortIfNeeded();
156
157 string ProcessMessage(const vector<uint8_t>& key_blob, KeyPurpose operation,
158 const string& message, const AuthorizationSet& in_params,
159 AuthorizationSet* out_params);
Shawn Willden92d79c02021-02-19 07:31:55 -0700160 std::tuple<ErrorCode, std::string /* processedMessage */> ProcessMessage(
161 const vector<uint8_t>& key_blob, KeyPurpose operation, const std::string& message,
162 const AuthorizationSet& in_params);
Selene Huang31ab4042020-04-29 04:22:39 -0700163 string SignMessage(const vector<uint8_t>& key_blob, const string& message,
164 const AuthorizationSet& params);
165 string SignMessage(const string& message, const AuthorizationSet& params);
166
167 string MacMessage(const string& message, Digest digest, size_t mac_length);
168
169 void CheckHmacTestVector(const string& key, const string& message, Digest digest,
170 const string& expected_mac);
171
172 void CheckAesCtrTestVector(const string& key, const string& nonce, const string& message,
173 const string& expected_ciphertext);
174
175 void CheckTripleDesTestVector(KeyPurpose purpose, BlockMode block_mode,
176 PaddingMode padding_mode, const string& key, const string& iv,
177 const string& input, const string& expected_output);
178
179 void VerifyMessage(const vector<uint8_t>& key_blob, const string& message,
180 const string& signature, const AuthorizationSet& params);
181 void VerifyMessage(const string& message, const string& signature,
182 const AuthorizationSet& params);
David Drysdaledf8f52e2021-05-06 08:10:58 +0100183 void LocalVerifyMessage(const string& message, const string& signature,
184 const AuthorizationSet& params);
Selene Huang31ab4042020-04-29 04:22:39 -0700185
David Drysdale59cae642021-05-12 13:52:03 +0100186 string LocalRsaEncryptMessage(const string& message, const AuthorizationSet& params);
Selene Huang31ab4042020-04-29 04:22:39 -0700187 string EncryptMessage(const vector<uint8_t>& key_blob, const string& message,
188 const AuthorizationSet& in_params, AuthorizationSet* out_params);
189 string EncryptMessage(const string& message, const AuthorizationSet& params,
190 AuthorizationSet* out_params);
191 string EncryptMessage(const string& message, const AuthorizationSet& params);
192 string EncryptMessage(const string& message, BlockMode block_mode, PaddingMode padding);
193 string EncryptMessage(const string& message, BlockMode block_mode, PaddingMode padding,
194 vector<uint8_t>* iv_out);
195 string EncryptMessage(const string& message, BlockMode block_mode, PaddingMode padding,
196 const vector<uint8_t>& iv_in);
197 string EncryptMessage(const string& message, BlockMode block_mode, PaddingMode padding,
198 uint8_t mac_length_bits, const vector<uint8_t>& iv_in);
David Drysdaled2cc8c22021-04-15 13:29:45 +0100199 string EncryptMessage(const string& message, BlockMode block_mode, PaddingMode padding,
200 uint8_t mac_length_bits);
Selene Huang31ab4042020-04-29 04:22:39 -0700201
202 string DecryptMessage(const vector<uint8_t>& key_blob, const string& ciphertext,
203 const AuthorizationSet& params);
204 string DecryptMessage(const string& ciphertext, const AuthorizationSet& params);
205 string DecryptMessage(const string& ciphertext, BlockMode block_mode, PaddingMode padding_mode,
206 const vector<uint8_t>& iv);
207
208 std::pair<ErrorCode, vector<uint8_t>> UpgradeKey(const vector<uint8_t>& key_blob);
209
Chirag Pathak9ea6a0a2021-02-01 23:54:27 +0000210 template <typename TagType>
211 std::tuple<KeyData /* aesKey */, KeyData /* hmacKey */, KeyData /* rsaKey */,
212 KeyData /* ecdsaKey */>
David Drysdaleadfe6112021-05-27 12:00:53 +0100213 CreateTestKeys(
214 TagType tagToTest, ErrorCode expectedReturn,
215 std::function<void(AuthorizationSetBuilder*)> tagModifier =
216 [](AuthorizationSetBuilder*) {}) {
Chirag Pathak9ea6a0a2021-02-01 23:54:27 +0000217 /* AES */
218 KeyData aesKeyData;
David Drysdaleadfe6112021-05-27 12:00:53 +0100219 AuthorizationSetBuilder aesBuilder = AuthorizationSetBuilder()
220 .AesEncryptionKey(128)
221 .Authorization(tagToTest)
222 .BlockMode(BlockMode::ECB)
223 .Padding(PaddingMode::NONE)
224 .Authorization(TAG_NO_AUTH_REQUIRED);
225 tagModifier(&aesBuilder);
226 ErrorCode errorCode =
227 GenerateKey(aesBuilder, &aesKeyData.blob, &aesKeyData.characteristics);
Chirag Pathak9ea6a0a2021-02-01 23:54:27 +0000228 EXPECT_EQ(expectedReturn, errorCode);
229
230 /* HMAC */
231 KeyData hmacKeyData;
David Drysdaleadfe6112021-05-27 12:00:53 +0100232 AuthorizationSetBuilder hmacBuilder = AuthorizationSetBuilder()
233 .HmacKey(128)
234 .Authorization(tagToTest)
235 .Digest(Digest::SHA_2_256)
236 .Authorization(TAG_MIN_MAC_LENGTH, 128)
237 .Authorization(TAG_NO_AUTH_REQUIRED);
238 tagModifier(&hmacBuilder);
239 errorCode = GenerateKey(hmacBuilder, &hmacKeyData.blob, &hmacKeyData.characteristics);
Chirag Pathak9ea6a0a2021-02-01 23:54:27 +0000240 EXPECT_EQ(expectedReturn, errorCode);
241
242 /* RSA */
243 KeyData rsaKeyData;
David Drysdaleadfe6112021-05-27 12:00:53 +0100244 AuthorizationSetBuilder rsaBuilder = AuthorizationSetBuilder()
245 .RsaSigningKey(2048, 65537)
246 .Authorization(tagToTest)
247 .Digest(Digest::NONE)
248 .Padding(PaddingMode::NONE)
249 .Authorization(TAG_NO_AUTH_REQUIRED)
250 .SetDefaultValidity();
251 tagModifier(&rsaBuilder);
252 errorCode = GenerateKey(rsaBuilder, &rsaKeyData.blob, &rsaKeyData.characteristics);
Chirag Pathak9ea6a0a2021-02-01 23:54:27 +0000253 EXPECT_EQ(expectedReturn, errorCode);
254
255 /* ECDSA */
256 KeyData ecdsaKeyData;
David Drysdaleadfe6112021-05-27 12:00:53 +0100257 AuthorizationSetBuilder ecdsaBuilder = AuthorizationSetBuilder()
David Drysdaledf09e542021-06-08 15:46:11 +0100258 .EcdsaSigningKey(EcCurve::P_256)
David Drysdaleadfe6112021-05-27 12:00:53 +0100259 .Authorization(tagToTest)
260 .Digest(Digest::SHA_2_256)
261 .Authorization(TAG_NO_AUTH_REQUIRED)
262 .SetDefaultValidity();
263 tagModifier(&ecdsaBuilder);
264 errorCode = GenerateKey(ecdsaBuilder, &ecdsaKeyData.blob, &ecdsaKeyData.characteristics);
Chirag Pathak9ea6a0a2021-02-01 23:54:27 +0000265 EXPECT_EQ(expectedReturn, errorCode);
266 return {aesKeyData, hmacKeyData, rsaKeyData, ecdsaKeyData};
267 }
Shawn Willden7f424372021-01-10 18:06:50 -0700268 bool IsSecure() const { return securityLevel_ != SecurityLevel::SOFTWARE; }
269 SecurityLevel SecLevel() const { return securityLevel_; }
Selene Huang31ab4042020-04-29 04:22:39 -0700270
271 vector<uint32_t> ValidKeySizes(Algorithm algorithm);
272 vector<uint32_t> InvalidKeySizes(Algorithm algorithm);
273
David Drysdale7de9feb2021-03-05 14:56:19 +0000274 vector<BlockMode> ValidBlockModes(Algorithm algorithm);
275 vector<PaddingMode> ValidPaddingModes(Algorithm algorithm, BlockMode blockMode);
276 vector<PaddingMode> InvalidPaddingModes(Algorithm algorithm, BlockMode blockMode);
277
Selene Huang31ab4042020-04-29 04:22:39 -0700278 vector<EcCurve> ValidCurves();
279 vector<EcCurve> InvalidCurves();
280
281 vector<Digest> ValidDigests(bool withNone, bool withMD5);
282
283 static vector<string> build_params() {
Janis Danisevskis24c04702020-12-16 18:28:39 -0800284 auto params = ::android::getAidlHalInstanceNames(IKeyMintDevice::descriptor);
Selene Huang31ab4042020-04-29 04:22:39 -0700285 return params;
286 }
287
Janis Danisevskis24c04702020-12-16 18:28:39 -0800288 std::shared_ptr<IKeyMintOperation> op_;
Shawn Willden7f424372021-01-10 18:06:50 -0700289 vector<Certificate> cert_chain_;
Selene Huang31ab4042020-04-29 04:22:39 -0700290 vector<uint8_t> key_blob_;
Shawn Willden7f424372021-01-10 18:06:50 -0700291 vector<KeyCharacteristics> key_characteristics_;
292
293 const vector<KeyParameter>& SecLevelAuthorizations(
294 const vector<KeyCharacteristics>& key_characteristics);
295 inline const vector<KeyParameter>& SecLevelAuthorizations() {
296 return SecLevelAuthorizations(key_characteristics_);
297 }
Qi Wubeefae42021-01-28 23:16:37 +0800298 const vector<KeyParameter>& SecLevelAuthorizations(
299 const vector<KeyCharacteristics>& key_characteristics, SecurityLevel securityLevel);
300
Chirag Pathak9ea6a0a2021-02-01 23:54:27 +0000301 ErrorCode UseAesKey(const vector<uint8_t>& aesKeyBlob);
302 ErrorCode UseHmacKey(const vector<uint8_t>& hmacKeyBlob);
303 ErrorCode UseRsaKey(const vector<uint8_t>& rsaKeyBlob);
304 ErrorCode UseEcdsaKey(const vector<uint8_t>& ecdsaKeyBlob);
Selene Huang31ab4042020-04-29 04:22:39 -0700305
Shawn Willdend659c7c2021-02-19 14:51:51 -0700306 protected:
Janis Danisevskis24c04702020-12-16 18:28:39 -0800307 std::shared_ptr<IKeyMintDevice> keymint_;
Selene Huang31ab4042020-04-29 04:22:39 -0700308 uint32_t os_version_;
309 uint32_t os_patch_level_;
David Drysdalebb3d85e2021-04-13 11:15:51 +0100310 uint32_t vendor_patch_level_;
David Drysdaled2cc8c22021-04-15 13:29:45 +0100311 bool timestamp_token_required_;
Selene Huang31ab4042020-04-29 04:22:39 -0700312
313 SecurityLevel securityLevel_;
314 string name_;
315 string author_;
316 long challenge_;
317};
318
David Drysdalea676c3b2021-06-14 14:46:02 +0100319// If the given property is available, add it to the tag set under the given tag ID.
320template <Tag tag>
321void add_tag_from_prop(AuthorizationSetBuilder* tags, TypedTag<TagType::BYTES, tag> ttag,
322 const char* prop) {
323 std::string prop_value = ::android::base::GetProperty(prop, /* default= */ "");
324 if (!prop_value.empty()) {
325 tags->Authorization(ttag, prop_value.data(), prop_value.size());
326 }
327}
328
Selene Huang6e46f142021-04-20 19:20:11 -0700329vector<uint8_t> build_serial_blob(const uint64_t serial_int);
330void verify_subject(const X509* cert, const string& subject, bool self_signed);
331void verify_serial(X509* cert, const uint64_t expected_serial);
332void verify_subject_and_serial(const Certificate& certificate, //
333 const uint64_t expected_serial, //
334 const string& subject, bool self_signed);
335
Shawn Willden7c130392020-12-21 09:58:22 -0700336bool verify_attestation_record(const string& challenge, //
337 const string& app_id, //
338 AuthorizationSet expected_sw_enforced, //
339 AuthorizationSet expected_hw_enforced, //
340 SecurityLevel security_level,
341 const vector<uint8_t>& attestation_cert);
Selene Huang6e46f142021-04-20 19:20:11 -0700342
Shawn Willden7c130392020-12-21 09:58:22 -0700343string bin2hex(const vector<uint8_t>& data);
344X509_Ptr parse_cert_blob(const vector<uint8_t>& blob);
David Drysdalef0d516d2021-03-22 07:51:43 +0000345vector<uint8_t> make_name_from_str(const string& name);
David Drysdale4dc01072021-04-01 12:17:35 +0100346void check_maced_pubkey(const MacedPublicKey& macedPubKey, bool testMode,
347 vector<uint8_t>* payload_value);
348void p256_pub_key(const vector<uint8_t>& coseKeyData, EVP_PKEY_Ptr* signingKey);
349
David Drysdalef0d516d2021-03-22 07:51:43 +0000350AuthorizationSet HwEnforcedAuthorizations(const vector<KeyCharacteristics>& key_characteristics);
351AuthorizationSet SwEnforcedAuthorizations(const vector<KeyCharacteristics>& key_characteristics);
Shawn Willden7c130392020-12-21 09:58:22 -0700352::testing::AssertionResult ChainSignaturesAreValid(const vector<Certificate>& chain);
353
Selene Huang31ab4042020-04-29 04:22:39 -0700354#define INSTANTIATE_KEYMINT_AIDL_TEST(name) \
355 INSTANTIATE_TEST_SUITE_P(PerInstance, name, \
356 testing::ValuesIn(KeyMintAidlTestBase::build_params()), \
Shawn Willden7e71f1e2021-04-01 16:44:22 -0600357 ::android::PrintInstanceNameToString); \
358 GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(name);
Selene Huang31ab4042020-04-29 04:22:39 -0700359
Shawn Willden0e80b5d2020-12-17 09:07:27 -0700360} // namespace test
361
362} // namespace aidl::android::hardware::security::keymint