blob: 690927c562494fb9918807ec2a0d4ce3783e504e [file] [log] [blame]
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001/*
2 * Copyright (C) 2014 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 "keystore"
18
19#include "keymaster_enforcement.h"
20
21#include <assert.h>
22#include <inttypes.h>
23#include <limits.h>
24#include <string.h>
25
26#include <openssl/evp.h>
27
28#include <cutils/log.h>
29#include <hardware/hw_auth_token.h>
30#include <list>
31
Janis Danisevskis8f737ad2017-11-21 12:30:15 -080032#include <keystore/keystore_hidl_support.h>
33
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010034namespace keystore {
35
36class AccessTimeMap {
37 public:
38 explicit AccessTimeMap(uint32_t max_size) : max_size_(max_size) {}
39
40 /* If the key is found, returns true and fills \p last_access_time. If not found returns
41 * false. */
42 bool LastKeyAccessTime(km_id_t keyid, uint32_t* last_access_time) const;
43
44 /* Updates the last key access time with the currentTime parameter. Adds the key if
45 * needed, returning false if key cannot be added because list is full. */
46 bool UpdateKeyAccessTime(km_id_t keyid, uint32_t current_time, uint32_t timeout);
47
48 private:
49 struct AccessTime {
50 km_id_t keyid;
51 uint32_t access_time;
52 uint32_t timeout;
53 };
54 std::list<AccessTime> last_access_list_;
55 const uint32_t max_size_;
56};
57
58class AccessCountMap {
59 public:
60 explicit AccessCountMap(uint32_t max_size) : max_size_(max_size) {}
61
62 /* If the key is found, returns true and fills \p count. If not found returns
63 * false. */
64 bool KeyAccessCount(km_id_t keyid, uint32_t* count) const;
65
66 /* Increments key access count, adding an entry if the key has never been used. Returns
67 * false if the list has reached maximum size. */
68 bool IncrementKeyAccessCount(km_id_t keyid);
69
70 private:
71 struct AccessCount {
72 km_id_t keyid;
73 uint64_t access_count;
74 };
75 std::list<AccessCount> access_count_list_;
76 const uint32_t max_size_;
77};
78
79bool is_public_key_algorithm(const AuthorizationSet& auth_set) {
80 auto algorithm = auth_set.GetTagValue(TAG_ALGORITHM);
81 return algorithm.isOk() &&
82 (algorithm.value() == Algorithm::RSA || algorithm.value() == Algorithm::EC);
83}
84
85static ErrorCode authorized_purpose(const KeyPurpose purpose, const AuthorizationSet& auth_set) {
86 switch (purpose) {
87 case KeyPurpose::VERIFY:
88 case KeyPurpose::ENCRYPT:
89 case KeyPurpose::SIGN:
90 case KeyPurpose::DECRYPT:
91 if (auth_set.Contains(TAG_PURPOSE, purpose)) return ErrorCode::OK;
92 return ErrorCode::INCOMPATIBLE_PURPOSE;
93
94 default:
95 return ErrorCode::UNSUPPORTED_PURPOSE;
96 }
97}
98
99inline bool is_origination_purpose(KeyPurpose purpose) {
100 return purpose == KeyPurpose::ENCRYPT || purpose == KeyPurpose::SIGN;
101}
102
103inline bool is_usage_purpose(KeyPurpose purpose) {
104 return purpose == KeyPurpose::DECRYPT || purpose == KeyPurpose::VERIFY;
105}
106
107KeymasterEnforcement::KeymasterEnforcement(uint32_t max_access_time_map_size,
108 uint32_t max_access_count_map_size)
109 : access_time_map_(new (std::nothrow) AccessTimeMap(max_access_time_map_size)),
110 access_count_map_(new (std::nothrow) AccessCountMap(max_access_count_map_size)) {}
111
112KeymasterEnforcement::~KeymasterEnforcement() {
113 delete access_time_map_;
114 delete access_count_map_;
115}
116
117ErrorCode KeymasterEnforcement::AuthorizeOperation(const KeyPurpose purpose, const km_id_t keyid,
118 const AuthorizationSet& auth_set,
119 const AuthorizationSet& operation_params,
Shawn Willden0329a822017-12-04 13:55:14 -0700120 const HardwareAuthToken& auth_token,
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100121 uint64_t op_handle, bool is_begin_operation) {
122 if (is_public_key_algorithm(auth_set)) {
123 switch (purpose) {
124 case KeyPurpose::ENCRYPT:
125 case KeyPurpose::VERIFY:
126 /* Public key operations are always authorized. */
127 return ErrorCode::OK;
128
129 case KeyPurpose::DECRYPT:
130 case KeyPurpose::SIGN:
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100131 break;
Shawn Willden0329a822017-12-04 13:55:14 -0700132
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100133 case KeyPurpose::WRAP_KEY:
134 return ErrorCode::INCOMPATIBLE_PURPOSE;
135 };
136 };
137
138 if (is_begin_operation)
Shawn Willden0329a822017-12-04 13:55:14 -0700139 return AuthorizeBegin(purpose, keyid, auth_set, operation_params, auth_token);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100140 else
Shawn Willden0329a822017-12-04 13:55:14 -0700141 return AuthorizeUpdateOrFinish(auth_set, auth_token, op_handle);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100142}
143
144// For update and finish the only thing to check is user authentication, and then only if it's not
145// timeout-based.
146ErrorCode KeymasterEnforcement::AuthorizeUpdateOrFinish(const AuthorizationSet& auth_set,
Shawn Willden0329a822017-12-04 13:55:14 -0700147 const HardwareAuthToken& auth_token,
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100148 uint64_t op_handle) {
149 int auth_type_index = -1;
150 for (size_t pos = 0; pos < auth_set.size(); ++pos) {
151 switch (auth_set[pos].tag) {
152 case Tag::NO_AUTH_REQUIRED:
153 case Tag::AUTH_TIMEOUT:
154 // If no auth is required or if auth is timeout-based, we have nothing to check.
155 return ErrorCode::OK;
156
157 case Tag::USER_AUTH_TYPE:
158 auth_type_index = pos;
159 break;
160
161 default:
162 break;
163 }
164 }
165
166 // Note that at this point we should be able to assume that authentication is required, because
167 // authentication is required if KM_TAG_NO_AUTH_REQUIRED is absent. However, there are legacy
168 // keys which have no authentication-related tags, so we assume that absence is equivalent to
169 // presence of KM_TAG_NO_AUTH_REQUIRED.
170 //
171 // So, if we found KM_TAG_USER_AUTH_TYPE or if we find KM_TAG_USER_SECURE_ID then authentication
172 // is required. If we find neither, then we assume authentication is not required and return
173 // success.
174 bool authentication_required = (auth_type_index != -1);
175 for (auto& param : auth_set) {
176 auto user_secure_id = authorizationValue(TAG_USER_SECURE_ID, param);
177 if (user_secure_id.isOk()) {
178 authentication_required = true;
179 int auth_timeout_index = -1;
Shawn Willden0329a822017-12-04 13:55:14 -0700180 if (auth_token.mac.size() &&
181 AuthTokenMatches(auth_set, auth_token, user_secure_id.value(), auth_type_index,
182 auth_timeout_index, op_handle, false /* is_begin_operation */))
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100183 return ErrorCode::OK;
184 }
185 }
186
187 if (authentication_required) return ErrorCode::KEY_USER_NOT_AUTHENTICATED;
188
189 return ErrorCode::OK;
190}
191
192ErrorCode KeymasterEnforcement::AuthorizeBegin(const KeyPurpose purpose, const km_id_t keyid,
193 const AuthorizationSet& auth_set,
Shawn Willden0329a822017-12-04 13:55:14 -0700194 const AuthorizationSet& operation_params,
195 NullOr<const HardwareAuthToken&> auth_token) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100196 // Find some entries that may be needed to handle KM_TAG_USER_SECURE_ID
197 int auth_timeout_index = -1;
198 int auth_type_index = -1;
199 int no_auth_required_index = -1;
200 for (size_t pos = 0; pos < auth_set.size(); ++pos) {
201 switch (auth_set[pos].tag) {
202 case Tag::AUTH_TIMEOUT:
203 auth_timeout_index = pos;
204 break;
205 case Tag::USER_AUTH_TYPE:
206 auth_type_index = pos;
207 break;
208 case Tag::NO_AUTH_REQUIRED:
209 no_auth_required_index = pos;
210 break;
211 default:
212 break;
213 }
214 }
215
216 ErrorCode error = authorized_purpose(purpose, auth_set);
217 if (error != ErrorCode::OK) return error;
218
219 // If successful, and if key has a min time between ops, this will be set to the time limit
220 uint32_t min_ops_timeout = UINT32_MAX;
221
222 bool update_access_count = false;
223 bool caller_nonce_authorized_by_key = false;
224 bool authentication_required = false;
225 bool auth_token_matched = false;
Brian C. Young5407bf12017-12-08 13:29:09 -0800226 bool unlocked_device_required = false;
227 int32_t user_id = -1;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100228
229 for (auto& param : auth_set) {
230
231 // KM_TAG_PADDING_OLD and KM_TAG_DIGEST_OLD aren't actually members of the enum, so we can't
232 // switch on them. There's nothing to validate for them, though, so just ignore them.
233 if (int32_t(param.tag) == KM_TAG_PADDING_OLD || int32_t(param.tag) == KM_TAG_DIGEST_OLD)
234 continue;
235
236 switch (param.tag) {
237
238 case Tag::ACTIVE_DATETIME: {
239 auto date = authorizationValue(TAG_ACTIVE_DATETIME, param);
240 if (date.isOk() && !activation_date_valid(date.value()))
241 return ErrorCode::KEY_NOT_YET_VALID;
242 break;
243 }
244 case Tag::ORIGINATION_EXPIRE_DATETIME: {
245 auto date = authorizationValue(TAG_ORIGINATION_EXPIRE_DATETIME, param);
246 if (is_origination_purpose(purpose) && date.isOk() &&
247 expiration_date_passed(date.value()))
248 return ErrorCode::KEY_EXPIRED;
249 break;
250 }
251 case Tag::USAGE_EXPIRE_DATETIME: {
252 auto date = authorizationValue(TAG_USAGE_EXPIRE_DATETIME, param);
253 if (is_usage_purpose(purpose) && date.isOk() && expiration_date_passed(date.value()))
254 return ErrorCode::KEY_EXPIRED;
255 break;
256 }
257 case Tag::MIN_SECONDS_BETWEEN_OPS: {
258 auto min_ops_timeout = authorizationValue(TAG_MIN_SECONDS_BETWEEN_OPS, param);
259 if (min_ops_timeout.isOk() && !MinTimeBetweenOpsPassed(min_ops_timeout.value(), keyid))
260 return ErrorCode::KEY_RATE_LIMIT_EXCEEDED;
261 break;
262 }
263 case Tag::MAX_USES_PER_BOOT: {
264 auto max_users = authorizationValue(TAG_MAX_USES_PER_BOOT, param);
265 update_access_count = true;
266 if (max_users.isOk() && !MaxUsesPerBootNotExceeded(keyid, max_users.value()))
267 return ErrorCode::KEY_MAX_OPS_EXCEEDED;
268 break;
269 }
270 case Tag::USER_SECURE_ID:
271 if (no_auth_required_index != -1) {
272 // Key has both KM_TAG_USER_SECURE_ID and KM_TAG_NO_AUTH_REQUIRED
273 return ErrorCode::INVALID_KEY_BLOB;
274 }
275
276 if (auth_timeout_index != -1) {
277 auto secure_id = authorizationValue(TAG_USER_SECURE_ID, param);
278 authentication_required = true;
Shawn Willden0329a822017-12-04 13:55:14 -0700279 if (secure_id.isOk() && auth_token.isOk() &&
280 AuthTokenMatches(auth_set, auth_token.value(), secure_id.value(),
281 auth_type_index, auth_timeout_index, 0 /* op_handle */,
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100282 true /* is_begin_operation */))
283 auth_token_matched = true;
284 }
285 break;
286
Brian C. Young5407bf12017-12-08 13:29:09 -0800287 case Tag::USER_ID:
288 user_id = authorizationValue(TAG_USER_ID, param).value();
289 break;
290
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100291 case Tag::CALLER_NONCE:
292 caller_nonce_authorized_by_key = true;
293 break;
294
Brian C. Young5407bf12017-12-08 13:29:09 -0800295 case Tag::UNLOCKED_DEVICE_REQUIRED:
296 unlocked_device_required = true;
297 break;
298
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100299 /* Tags should never be in key auths. */
300 case Tag::INVALID:
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100301 case Tag::ROOT_OF_TRUST:
302 case Tag::APPLICATION_DATA:
303 case Tag::ATTESTATION_CHALLENGE:
304 case Tag::ATTESTATION_APPLICATION_ID:
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +0100305 case Tag::ATTESTATION_ID_BRAND:
306 case Tag::ATTESTATION_ID_DEVICE:
307 case Tag::ATTESTATION_ID_PRODUCT:
308 case Tag::ATTESTATION_ID_SERIAL:
309 case Tag::ATTESTATION_ID_IMEI:
310 case Tag::ATTESTATION_ID_MEID:
Bartosz Fabianowski634a1aa2017-03-20 14:02:32 +0100311 case Tag::ATTESTATION_ID_MANUFACTURER:
312 case Tag::ATTESTATION_ID_MODEL:
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100313 return ErrorCode::INVALID_KEY_BLOB;
314
315 /* Tags used for cryptographic parameters in keygen. Nothing to enforce. */
316 case Tag::PURPOSE:
317 case Tag::ALGORITHM:
318 case Tag::KEY_SIZE:
319 case Tag::BLOCK_MODE:
320 case Tag::DIGEST:
321 case Tag::MAC_LENGTH:
322 case Tag::PADDING:
323 case Tag::NONCE:
324 case Tag::MIN_MAC_LENGTH:
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100325 case Tag::EC_CURVE:
326
327 /* Tags not used for operations. */
328 case Tag::BLOB_USAGE_REQUIREMENTS:
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100329
330 /* Algorithm specific parameters not used for access control. */
331 case Tag::RSA_PUBLIC_EXPONENT:
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100332
333 /* Informational tags. */
334 case Tag::CREATION_DATETIME:
335 case Tag::ORIGIN:
Shawn Willden0329a822017-12-04 13:55:14 -0700336 case Tag::ROLLBACK_RESISTANCE:
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100337
338 /* Tags handled when KM_TAG_USER_SECURE_ID is handled */
339 case Tag::NO_AUTH_REQUIRED:
340 case Tag::USER_AUTH_TYPE:
341 case Tag::AUTH_TIMEOUT:
342
343 /* Tag to provide data to operations. */
344 case Tag::ASSOCIATED_DATA:
345
346 /* Tags that are implicitly verified by secure side */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100347 case Tag::APPLICATION_ID:
Shawn Willden30adb492018-01-18 18:48:29 -0700348 case Tag::BOOT_PATCHLEVEL:
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100349 case Tag::OS_PATCHLEVEL:
Shawn Willden30adb492018-01-18 18:48:29 -0700350 case Tag::OS_VERSION:
Shawn Willden35b6e6c2018-01-10 09:30:12 -0700351 case Tag::TRUSTED_USER_PRESENCE_REQUIRED:
Shawn Willden30adb492018-01-18 18:48:29 -0700352 case Tag::VENDOR_PATCHLEVEL:
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100353
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100354 /* TODO(swillden): Handle these */
355 case Tag::INCLUDE_UNIQUE_ID:
356 case Tag::UNIQUE_ID:
357 case Tag::RESET_SINCE_ID_ROTATION:
358 case Tag::ALLOW_WHILE_ON_BODY:
Shawn Willden0329a822017-12-04 13:55:14 -0700359 case Tag::HARDWARE_TYPE:
David Zeuthenc6eb7cd2017-11-27 11:33:55 -0500360 case Tag::TRUSTED_CONFIRMATION_REQUIRED:
361 case Tag::CONFIRMATION_TOKEN:
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100362 break;
363
364 case Tag::BOOTLOADER_ONLY:
365 return ErrorCode::INVALID_KEY_BLOB;
366 }
367 }
368
Brian C. Young5407bf12017-12-08 13:29:09 -0800369 if (unlocked_device_required && is_device_locked(user_id)) {
370 return ErrorCode::DEVICE_LOCKED;
371 }
372
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100373 if (authentication_required && !auth_token_matched) {
374 ALOGE("Auth required but no matching auth token found");
375 return ErrorCode::KEY_USER_NOT_AUTHENTICATED;
376 }
377
378 if (!caller_nonce_authorized_by_key && is_origination_purpose(purpose) &&
379 operation_params.Contains(Tag::NONCE))
380 return ErrorCode::CALLER_NONCE_PROHIBITED;
381
382 if (min_ops_timeout != UINT32_MAX) {
383 if (!access_time_map_) {
384 ALOGE("Rate-limited keys table not allocated. Rate-limited keys disabled");
385 return ErrorCode::MEMORY_ALLOCATION_FAILED;
386 }
387
388 if (!access_time_map_->UpdateKeyAccessTime(keyid, get_current_time(), min_ops_timeout)) {
389 ALOGE("Rate-limited keys table full. Entries will time out.");
390 return ErrorCode::TOO_MANY_OPERATIONS;
391 }
392 }
393
394 if (update_access_count) {
395 if (!access_count_map_) {
396 ALOGE("Usage-count limited keys tabel not allocated. Count-limited keys disabled");
397 return ErrorCode::MEMORY_ALLOCATION_FAILED;
398 }
399
400 if (!access_count_map_->IncrementKeyAccessCount(keyid)) {
401 ALOGE("Usage count-limited keys table full, until reboot.");
402 return ErrorCode::TOO_MANY_OPERATIONS;
403 }
404 }
405
406 return ErrorCode::OK;
407}
408
409class EvpMdCtx {
410 public:
411 EvpMdCtx() { EVP_MD_CTX_init(&ctx_); }
412 ~EvpMdCtx() { EVP_MD_CTX_cleanup(&ctx_); }
413
414 EVP_MD_CTX* get() { return &ctx_; }
415
416 private:
417 EVP_MD_CTX ctx_;
418};
419
420/* static */
421bool KeymasterEnforcement::CreateKeyId(const hidl_vec<uint8_t>& key_blob, km_id_t* keyid) {
422 EvpMdCtx ctx;
423
424 uint8_t hash[EVP_MAX_MD_SIZE];
425 unsigned int hash_len;
426 if (EVP_DigestInit_ex(ctx.get(), EVP_sha256(), nullptr /* ENGINE */) &&
427 EVP_DigestUpdate(ctx.get(), &key_blob[0], key_blob.size()) &&
428 EVP_DigestFinal_ex(ctx.get(), hash, &hash_len)) {
429 assert(hash_len >= sizeof(*keyid));
430 memcpy(keyid, hash, sizeof(*keyid));
431 return true;
432 }
433
434 return false;
435}
436
437bool KeymasterEnforcement::MinTimeBetweenOpsPassed(uint32_t min_time_between, const km_id_t keyid) {
438 if (!access_time_map_) return false;
439
440 uint32_t last_access_time;
441 if (!access_time_map_->LastKeyAccessTime(keyid, &last_access_time)) return true;
442 return min_time_between <= static_cast<int64_t>(get_current_time()) - last_access_time;
443}
444
445bool KeymasterEnforcement::MaxUsesPerBootNotExceeded(const km_id_t keyid, uint32_t max_uses) {
446 if (!access_count_map_) return false;
447
448 uint32_t key_access_count;
449 if (!access_count_map_->KeyAccessCount(keyid, &key_access_count)) return true;
450 return key_access_count < max_uses;
451}
452
453template <typename IntType, uint32_t byteOrder> struct choose_hton;
454
455template <typename IntType> struct choose_hton<IntType, __ORDER_LITTLE_ENDIAN__> {
456 inline static IntType hton(const IntType& value) {
457 IntType result = 0;
458 const unsigned char* inbytes = reinterpret_cast<const unsigned char*>(&value);
459 unsigned char* outbytes = reinterpret_cast<unsigned char*>(&result);
460 for (int i = sizeof(IntType) - 1; i >= 0; --i) {
461 *(outbytes++) = inbytes[i];
462 }
463 return result;
464 }
465};
466
467template <typename IntType> struct choose_hton<IntType, __ORDER_BIG_ENDIAN__> {
468 inline static IntType hton(const IntType& value) { return value; }
469};
470
471template <typename IntType> inline IntType hton(const IntType& value) {
472 return choose_hton<IntType, __BYTE_ORDER__>::hton(value);
473}
474
475template <typename IntType> inline IntType ntoh(const IntType& value) {
476 // same operation and hton
477 return choose_hton<IntType, __BYTE_ORDER__>::hton(value);
478}
479
480bool KeymasterEnforcement::AuthTokenMatches(const AuthorizationSet& auth_set,
Shawn Willden0329a822017-12-04 13:55:14 -0700481 const HardwareAuthToken& auth_token,
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100482 const uint64_t user_secure_id,
483 const int auth_type_index, const int auth_timeout_index,
484 const uint64_t op_handle,
485 bool is_begin_operation) const {
486 assert(auth_type_index < static_cast<int>(auth_set.size()));
487 assert(auth_timeout_index < static_cast<int>(auth_set.size()));
488
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100489 if (!ValidateTokenSignature(auth_token)) {
490 ALOGE("Auth token signature invalid");
491 return false;
492 }
493
494 if (auth_timeout_index == -1 && op_handle && op_handle != auth_token.challenge) {
495 ALOGE("Auth token has the challenge %" PRIu64 ", need %" PRIu64, auth_token.challenge,
496 op_handle);
497 return false;
498 }
499
Janis Danisevskis8f737ad2017-11-21 12:30:15 -0800500 if (user_secure_id != auth_token.userId && user_secure_id != auth_token.authenticatorId) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100501 ALOGI("Auth token SIDs %" PRIu64 " and %" PRIu64 " do not match key SID %" PRIu64,
Janis Danisevskis8f737ad2017-11-21 12:30:15 -0800502 auth_token.userId, auth_token.authenticatorId, user_secure_id);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100503 return false;
504 }
505
506 if (auth_type_index < 0 || auth_type_index > static_cast<int>(auth_set.size())) {
507 ALOGE("Auth required but no auth type found");
508 return false;
509 }
510
Janis Danisevskis8f737ad2017-11-21 12:30:15 -0800511 assert(auth_set[auth_type_index].tag == TAG_USER_AUTH_TYPE);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100512 auto key_auth_type_mask = authorizationValue(TAG_USER_AUTH_TYPE, auth_set[auth_type_index]);
513 if (!key_auth_type_mask.isOk()) return false;
514
Shawn Willden0329a822017-12-04 13:55:14 -0700515 if ((uint32_t(key_auth_type_mask.value()) & auth_token.authenticatorType) == 0) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100516 ALOGE("Key requires match of auth type mask 0%uo, but token contained 0%uo",
Shawn Willden0329a822017-12-04 13:55:14 -0700517 key_auth_type_mask.value(), auth_token.authenticatorType);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100518 return false;
519 }
520
521 if (auth_timeout_index != -1 && is_begin_operation) {
Janis Danisevskis8f737ad2017-11-21 12:30:15 -0800522 assert(auth_set[auth_timeout_index].tag == TAG_AUTH_TIMEOUT);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100523 auto auth_token_timeout =
524 authorizationValue(TAG_AUTH_TIMEOUT, auth_set[auth_timeout_index]);
525 if (!auth_token_timeout.isOk()) return false;
526
527 if (auth_token_timed_out(auth_token, auth_token_timeout.value())) {
528 ALOGE("Auth token has timed out");
529 return false;
530 }
531 }
532
533 // Survived the whole gauntlet. We have authentage!
534 return true;
535}
536
537bool AccessTimeMap::LastKeyAccessTime(km_id_t keyid, uint32_t* last_access_time) const {
538 for (auto& entry : last_access_list_)
539 if (entry.keyid == keyid) {
540 *last_access_time = entry.access_time;
541 return true;
542 }
543 return false;
544}
545
546bool AccessTimeMap::UpdateKeyAccessTime(km_id_t keyid, uint32_t current_time, uint32_t timeout) {
547 for (auto iter = last_access_list_.begin(); iter != last_access_list_.end();) {
548 if (iter->keyid == keyid) {
549 iter->access_time = current_time;
550 return true;
551 }
552
553 // Expire entry if possible.
554 assert(current_time >= iter->access_time);
555 if (current_time - iter->access_time >= iter->timeout)
556 iter = last_access_list_.erase(iter);
557 else
558 ++iter;
559 }
560
561 if (last_access_list_.size() >= max_size_) return false;
562
563 AccessTime new_entry;
564 new_entry.keyid = keyid;
565 new_entry.access_time = current_time;
566 new_entry.timeout = timeout;
567 last_access_list_.push_front(new_entry);
568 return true;
569}
570
571bool AccessCountMap::KeyAccessCount(km_id_t keyid, uint32_t* count) const {
572 for (auto& entry : access_count_list_)
573 if (entry.keyid == keyid) {
574 *count = entry.access_count;
575 return true;
576 }
577 return false;
578}
579
580bool AccessCountMap::IncrementKeyAccessCount(km_id_t keyid) {
581 for (auto& entry : access_count_list_)
582 if (entry.keyid == keyid) {
583 // Note that the 'if' below will always be true because KM_TAG_MAX_USES_PER_BOOT is a
584 // uint32_t, and as soon as entry.access_count reaches the specified maximum value
585 // operation requests will be rejected and access_count won't be incremented any more.
586 // And, besides, UINT64_MAX is huge. But we ensure that it doesn't wrap anyway, out of
587 // an abundance of caution.
588 if (entry.access_count < UINT64_MAX) ++entry.access_count;
589 return true;
590 }
591
592 if (access_count_list_.size() >= max_size_) return false;
593
594 AccessCount new_entry;
595 new_entry.keyid = keyid;
596 new_entry.access_count = 1;
597 access_count_list_.push_front(new_entry);
598 return true;
599}
600}; /* namespace keystore */