blob: 5c03dcf1b8e45a7dddcd5dc5b0967a9fe4f1846b [file] [log] [blame]
Andres Moralesae242922015-05-18 09:26:19 -07001/*
2 * Copyright 2015 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
18#ifndef SOFT_GATEKEEPER_H_
19#define SOFT_GATEKEEPER_H_
20
21extern "C" {
22#include <openssl/rand.h>
Andres Moralesc7ab1e82015-06-22 08:24:45 -070023#include <openssl/sha.h>
24
Andres Moralesae242922015-05-18 09:26:19 -070025#include <crypto_scrypt.h>
26}
27
Elliott Hughes4f713192015-12-04 22:00:26 -080028#include <android-base/memory.h>
Andres Moralesae242922015-05-18 09:26:19 -070029#include <gatekeeper/gatekeeper.h>
Andres Morales70309ff2015-07-09 16:01:24 -070030
Andres Moralesae242922015-05-18 09:26:19 -070031#include <iostream>
32#include <unordered_map>
Justin Yun68b0ec62017-08-16 18:54:20 +090033#include <memory>
Andres Moralesae242922015-05-18 09:26:19 -070034
35namespace gatekeeper {
36
Andres Moralesc7ab1e82015-06-22 08:24:45 -070037struct fast_hash_t {
38 uint64_t salt;
39 uint8_t digest[SHA256_DIGEST_LENGTH];
40};
Andres Moralesae242922015-05-18 09:26:19 -070041
42class SoftGateKeeper : public GateKeeper {
43public:
44 static const uint32_t SIGNATURE_LENGTH_BYTES = 32;
45
46 // scrypt params
47 static const uint64_t N = 16384;
48 static const uint32_t r = 8;
49 static const uint32_t p = 1;
50
51 static const int MAX_UINT_32_CHARS = 11;
52
53 SoftGateKeeper() {
54 key_.reset(new uint8_t[SIGNATURE_LENGTH_BYTES]);
55 memset(key_.get(), 0, SIGNATURE_LENGTH_BYTES);
56 }
57
58 virtual ~SoftGateKeeper() {
59 }
60
Janis Danisevskis81a2f392019-06-05 16:42:12 -070061 virtual bool GetAuthTokenKey(const uint8_t** auth_token_key, uint32_t* length) const {
Andres Moralesae242922015-05-18 09:26:19 -070062 if (auth_token_key == NULL || length == NULL) return false;
Janis Danisevskis81a2f392019-06-05 16:42:12 -070063 *auth_token_key = key_.get();
Andres Moralesae242922015-05-18 09:26:19 -070064 *length = SIGNATURE_LENGTH_BYTES;
65 return true;
66 }
67
Janis Danisevskis81a2f392019-06-05 16:42:12 -070068 virtual void GetPasswordKey(const uint8_t** password_key, uint32_t* length) {
Andres Moralesae242922015-05-18 09:26:19 -070069 if (password_key == NULL || length == NULL) return;
Janis Danisevskis81a2f392019-06-05 16:42:12 -070070 *password_key = key_.get();
Andres Moralesae242922015-05-18 09:26:19 -070071 *length = SIGNATURE_LENGTH_BYTES;
72 }
73
74 virtual void ComputePasswordSignature(uint8_t *signature, uint32_t signature_length,
75 const uint8_t *, uint32_t, const uint8_t *password,
76 uint32_t password_length, salt_t salt) const {
77 if (signature == NULL) return;
78 crypto_scrypt(password, password_length, reinterpret_cast<uint8_t *>(&salt),
79 sizeof(salt), N, r, p, signature, signature_length);
80 }
81
82 virtual void GetRandom(void *random, uint32_t requested_length) const {
83 if (random == NULL) return;
84 RAND_pseudo_bytes((uint8_t *) random, requested_length);
85 }
86
87 virtual void ComputeSignature(uint8_t *signature, uint32_t signature_length,
88 const uint8_t *, uint32_t, const uint8_t *, const uint32_t) const {
89 if (signature == NULL) return;
90 memset(signature, 0, signature_length);
91 }
92
93 virtual uint64_t GetMillisecondsSinceBoot() const {
94 struct timespec time;
95 int res = clock_gettime(CLOCK_BOOTTIME, &time);
96 if (res < 0) return 0;
97 return (time.tv_sec * 1000) + (time.tv_nsec / 1000 / 1000);
98 }
99
100 virtual bool IsHardwareBacked() const {
101 return false;
102 }
103
Andres Moralese1f827f2015-06-01 09:59:05 -0700104 virtual bool GetFailureRecord(uint32_t uid, secure_id_t user_id, failure_record_t *record,
105 bool /* secure */) {
Andres Moralesae242922015-05-18 09:26:19 -0700106 failure_record_t *stored = &failure_map_[uid];
107 if (user_id != stored->secure_user_id) {
108 stored->secure_user_id = user_id;
109 stored->last_checked_timestamp = 0;
110 stored->failure_counter = 0;
111 }
112 memcpy(record, stored, sizeof(*record));
113 return true;
114 }
115
Andres Moralese1f827f2015-06-01 09:59:05 -0700116 virtual bool ClearFailureRecord(uint32_t uid, secure_id_t user_id, bool /* secure */) {
Andres Moralesae242922015-05-18 09:26:19 -0700117 failure_record_t *stored = &failure_map_[uid];
118 stored->secure_user_id = user_id;
119 stored->last_checked_timestamp = 0;
120 stored->failure_counter = 0;
Andres Moralese1f827f2015-06-01 09:59:05 -0700121 return true;
Andres Moralesae242922015-05-18 09:26:19 -0700122 }
123
Andres Moralese1f827f2015-06-01 09:59:05 -0700124 virtual bool WriteFailureRecord(uint32_t uid, failure_record_t *record, bool /* secure */) {
Andres Moralesae242922015-05-18 09:26:19 -0700125 failure_map_[uid] = *record;
126 return true;
127 }
128
Andres Moralesc7ab1e82015-06-22 08:24:45 -0700129 fast_hash_t ComputeFastHash(const SizedBuffer &password, uint64_t salt) {
130 fast_hash_t fast_hash;
131 size_t digest_size = password.length + sizeof(salt);
132 std::unique_ptr<uint8_t[]> digest(new uint8_t[digest_size]);
133 memcpy(digest.get(), &salt, sizeof(salt));
134 memcpy(digest.get() + sizeof(salt), password.buffer.get(), password.length);
135
136 SHA256(digest.get(), digest_size, (uint8_t *) &fast_hash.digest);
137
138 fast_hash.salt = salt;
139 return fast_hash;
140 }
141
142 bool VerifyFast(const fast_hash_t &fast_hash, const SizedBuffer &password) {
143 fast_hash_t computed = ComputeFastHash(password, fast_hash.salt);
144 return memcmp(computed.digest, fast_hash.digest, SHA256_DIGEST_LENGTH) == 0;
145 }
146
147 bool DoVerify(const password_handle_t *expected_handle, const SizedBuffer &password) {
Stephen Hinesb0775ca2016-12-07 03:46:10 -0800148 uint64_t user_id = android::base::get_unaligned<secure_id_t>(&expected_handle->user_id);
Andres Morales70309ff2015-07-09 16:01:24 -0700149 FastHashMap::const_iterator it = fast_hash_map_.find(user_id);
Andres Morales9ea9a062015-06-23 11:27:09 -0700150 if (it != fast_hash_map_.end() && VerifyFast(it->second, password)) {
151 return true;
Andres Moralesc7ab1e82015-06-22 08:24:45 -0700152 } else {
153 if (GateKeeper::DoVerify(expected_handle, password)) {
154 uint64_t salt;
155 GetRandom(&salt, sizeof(salt));
Andres Morales70309ff2015-07-09 16:01:24 -0700156 fast_hash_map_[user_id] = ComputeFastHash(password, salt);
Andres Moralesc7ab1e82015-06-22 08:24:45 -0700157 return true;
158 }
159 }
160
161 return false;
162 }
163
Andres Moralesae242922015-05-18 09:26:19 -0700164private:
Andres Moralesc7ab1e82015-06-22 08:24:45 -0700165
166 typedef std::unordered_map<uint32_t, failure_record_t> FailureRecordMap;
167 typedef std::unordered_map<uint64_t, fast_hash_t> FastHashMap;
168
Justin Yun68b0ec62017-08-16 18:54:20 +0900169 std::unique_ptr<uint8_t[]> key_;
Andres Moralesc7ab1e82015-06-22 08:24:45 -0700170 FailureRecordMap failure_map_;
171 FastHashMap fast_hash_map_;
Andres Moralesae242922015-05-18 09:26:19 -0700172};
173}
174
175#endif // SOFT_GATEKEEPER_H_