blob: 2c72c801ab20bccdf4b4a03bbf0441b3f2bff3a5 [file] [log] [blame]
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001/*
2**
3** Copyright 2018, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18#ifndef KEYSTORE_KEYMASTER_WORKER_H_
19#define KEYSTORE_KEYMASTER_WORKER_H_
20
21#include <condition_variable>
22#include <functional>
23#include <keymasterV4_0/Keymaster.h>
24#include <memory>
25#include <mutex>
26#include <optional>
27#include <queue>
28#include <thread>
29#include <tuple>
30
31#include <keystore/ExportResult.h>
32#include <keystore/KeyCharacteristics.h>
33#include <keystore/KeymasterBlob.h>
34#include <keystore/OperationResult.h>
35#include <keystore/keystore_return_types.h>
36
37#include "blob.h"
38#include "operation.h"
39
40namespace keystore {
41
42using android::sp;
43using ::android::hardware::hidl_vec;
44using ::android::hardware::Return;
45using ::android::hardware::Void;
46using android::hardware::keymaster::V4_0::ErrorCode;
47using android::hardware::keymaster::V4_0::HardwareAuthToken;
48using android::hardware::keymaster::V4_0::HmacSharingParameters;
49using android::hardware::keymaster::V4_0::KeyCharacteristics;
50using android::hardware::keymaster::V4_0::KeyFormat;
51using android::hardware::keymaster::V4_0::KeyParameter;
52using android::hardware::keymaster::V4_0::KeyPurpose;
53using android::hardware::keymaster::V4_0::VerificationToken;
54using android::hardware::keymaster::V4_0::support::Keymaster;
55// using KeystoreCharacteristics = ::android::security::keymaster::KeyCharacteristics;
56using ::android::security::keymaster::KeymasterBlob;
57
58class KeyStore;
59
60class Worker {
61
62 /*
63 * NonCopyableFunction works similar to std::function in that it wraps callable objects and
64 * erases their type. The rationale for using a custom class instead of
65 * std::function is that std::function requires the wrapped object to be copy contructible.
66 * NonCopyableFunction is itself not copyable and never attempts to copy the wrapped object.
67 * TODO use similar optimization as std::function to remove the extra make_unique allocation.
68 */
69 template <typename Fn> class NonCopyableFunction;
70
71 template <typename Ret, typename... Args> class NonCopyableFunction<Ret(Args...)> {
72
73 class NonCopyableFunctionBase {
74 public:
75 NonCopyableFunctionBase() = default;
76 virtual ~NonCopyableFunctionBase() {}
77 virtual Ret operator()(Args... args) = 0;
78 NonCopyableFunctionBase(const NonCopyableFunctionBase&) = delete;
79 NonCopyableFunctionBase& operator=(const NonCopyableFunctionBase&) = delete;
80 };
81
82 template <typename Fn>
83 class NonCopyableFunctionTypeEraser : public NonCopyableFunctionBase {
84 private:
85 Fn f_;
86
87 public:
88 NonCopyableFunctionTypeEraser() = default;
89 explicit NonCopyableFunctionTypeEraser(Fn f) : f_(std::move(f)) {}
90 Ret operator()(Args... args) override { return f_(std::move(args)...); }
91 };
92
93 private:
94 std::unique_ptr<NonCopyableFunctionBase> f_;
95
96 public:
97 NonCopyableFunction() = default;
Chih-Hung Hsieh4fa39ef2019-01-04 13:34:17 -080098 // NOLINTNEXTLINE(google-explicit-constructor)
Janis Danisevskisff3d7f42018-10-08 07:15:09 -070099 template <typename F> NonCopyableFunction(F f) {
100 f_ = std::make_unique<NonCopyableFunctionTypeEraser<F>>(std::move(f));
101 }
102 NonCopyableFunction(NonCopyableFunction&& other) = default;
103 NonCopyableFunction& operator=(NonCopyableFunction&& other) = default;
104 NonCopyableFunction(const NonCopyableFunction& other) = delete;
105 NonCopyableFunction& operator=(const NonCopyableFunction& other) = delete;
106
107 Ret operator()(Args... args) {
108 if (f_) return (*f_)(std::move(args)...);
109 }
110 };
111
112 using WorkerTask = NonCopyableFunction<void()>;
113
114 std::queue<WorkerTask> pending_requests_;
115 std::mutex pending_requests_mutex_;
116 std::condition_variable pending_requests_cond_var_;
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700117 bool running_ = false;
118
119 public:
120 Worker();
121 ~Worker();
122 void addRequest(WorkerTask request);
123};
124
125template <typename... Args> struct MakeKeymasterWorkerCB;
126
127template <typename ErrorType, typename... Args>
128struct MakeKeymasterWorkerCB<ErrorType, std::function<void(Args...)>> {
129 using type = std::function<void(ErrorType, std::tuple<std::decay_t<Args>...>&&)>;
130};
131
132template <typename ErrorType> struct MakeKeymasterWorkerCB<ErrorType> {
133 using type = std::function<void(ErrorType)>;
134};
135
136template <typename... Args>
137using MakeKeymasterWorkerCB_t = typename MakeKeymasterWorkerCB<Args...>::type;
138
139class KeymasterWorker : protected Worker {
140 private:
141 sp<Keymaster> keymasterDevice_;
142 OperationMap operationMap_;
143 KeyStore* keyStore_;
144
145 template <typename KMFn, typename ErrorType, typename... Args, size_t... I>
146 void unwrap_tuple(KMFn kmfn, std::function<void(ErrorType)> cb,
147 const std::tuple<Args...>& tuple, std::index_sequence<I...>) {
148 cb(((*keymasterDevice_).*kmfn)(std::get<I>(tuple)...));
149 }
150
151 template <typename KMFn, typename ErrorType, typename... ReturnTypes, typename... Args,
152 size_t... I>
153 void unwrap_tuple(KMFn kmfn, std::function<void(ErrorType, std::tuple<ReturnTypes...>&&)> cb,
154 const std::tuple<Args...>& tuple, std::index_sequence<I...>) {
155 std::tuple<ReturnTypes...> returnValue;
156 auto result = ((*keymasterDevice_).*kmfn)(
157 std::get<I>(tuple)...,
158 [&returnValue](const ReturnTypes&... args) { returnValue = std::make_tuple(args...); });
159 cb(std::move(result), std::move(returnValue));
160 }
161
162 template <typename KMFn, typename ErrorType, typename... Args>
163 void addRequest(KMFn kmfn, std::function<void(ErrorType)> cb, Args&&... args) {
164 Worker::addRequest([this, kmfn, cb = std::move(cb),
165 tuple = std::make_tuple(std::forward<Args>(args)...)]() {
166 unwrap_tuple(kmfn, std::move(cb), tuple, std::index_sequence_for<Args...>{});
167 });
168 }
169
170 template <typename KMFn, typename ErrorType, typename... ReturnTypes, typename... Args>
171 void addRequest(KMFn kmfn, std::function<void(ErrorType, std::tuple<ReturnTypes...>&&)> cb,
172 Args&&... args) {
173 Worker::addRequest([this, kmfn, cb = std::move(cb),
174 tuple = std::make_tuple(std::forward<Args>(args)...)]() {
175 unwrap_tuple(kmfn, std::move(cb), tuple, std::index_sequence_for<Args...>{});
176 });
177 }
Janis Danisevskis6a0d9982019-04-30 15:43:59 -0700178
179 void deleteOldKeyOnUpgrade(const LockedKeyBlobEntry& blobfile, Blob keyBlob);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700180 std::tuple<KeyStoreServiceReturnCode, Blob>
181 upgradeKeyBlob(const LockedKeyBlobEntry& lockedEntry, const AuthorizationSet& params);
182 std::tuple<KeyStoreServiceReturnCode, KeyCharacteristics, Blob, Blob>
183 createKeyCharacteristicsCache(const LockedKeyBlobEntry& lockedEntry,
184 const hidl_vec<uint8_t>& clientId,
185 const hidl_vec<uint8_t>& appData, Blob keyBlob, Blob charBlob);
186
187 /**
188 * Get the auth token for this operation from the auth token table.
189 *
190 * Returns NO_ERROR if the auth token was found or none was required. If not needed, the
191 * token will be empty (which keymaster interprets as no auth token).
192 * OP_AUTH_NEEDED if it is a per op authorization, no authorization token exists for
193 * that operation and failOnTokenMissing is false.
194 * KM_ERROR_KEY_USER_NOT_AUTHENTICATED if there is no valid auth token for the operation
195 */
196 std::pair<KeyStoreServiceReturnCode, HardwareAuthToken>
197 getAuthToken(const KeyCharacteristics& characteristics, uint64_t handle, KeyPurpose purpose,
198 bool failOnTokenMissing = true);
199
200 KeyStoreServiceReturnCode abort(const sp<IBinder>& token);
201
202 bool pruneOperation();
203
204 KeyStoreServiceReturnCode getOperationAuthTokenIfNeeded(std::shared_ptr<Operation> op);
205
206 void appendConfirmationTokenIfNeeded(const KeyCharacteristics& keyCharacteristics,
207 hidl_vec<KeyParameter>* params);
208
209 public:
210 KeymasterWorker(sp<Keymaster> keymasterDevice, KeyStore* keyStore);
211
Janis Danisevskis37896102019-03-14 17:15:06 -0700212 void logIfKeymasterVendorError(ErrorCode ec) const;
213
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700214 using worker_begin_cb = std::function<void(::android::security::keymaster::OperationResult)>;
215 void begin(LockedKeyBlobEntry, sp<IBinder> appToken, Blob keyBlob, Blob charBlob,
216 bool pruneable, KeyPurpose purpose, AuthorizationSet opParams,
217 hidl_vec<uint8_t> entropy, worker_begin_cb worker_cb);
218
219 using update_cb = std::function<void(::android::security::keymaster::OperationResult)>;
220 void update(sp<IBinder> token, AuthorizationSet params, hidl_vec<uint8_t> data,
221 update_cb _hidl_cb);
222
223 using finish_cb = std::function<void(::android::security::keymaster::OperationResult)>;
224 void finish(sp<IBinder> token, AuthorizationSet params, hidl_vec<uint8_t> input,
225 hidl_vec<uint8_t> signature, hidl_vec<uint8_t> entorpy, finish_cb worker_cb);
226
227 using abort_cb = std::function<void(KeyStoreServiceReturnCode)>;
228 void abort(sp<IBinder> token, abort_cb _hidl_cb);
229
230 using getHardwareInfo_cb = MakeKeymasterWorkerCB_t<Return<void>, Keymaster::getHardwareInfo_cb>;
231 void getHardwareInfo(getHardwareInfo_cb _hidl_cb);
232
233 using getHmacSharingParameters_cb =
234 MakeKeymasterWorkerCB_t<Return<void>, Keymaster::getHmacSharingParameters_cb>;
235 void getHmacSharingParameters(getHmacSharingParameters_cb _hidl_cb);
236
237 using computeSharedHmac_cb =
238 MakeKeymasterWorkerCB_t<Return<void>, Keymaster::computeSharedHmac_cb>;
239 void computeSharedHmac(hidl_vec<HmacSharingParameters> params, computeSharedHmac_cb _hidl_cb);
240
241 using verifyAuthorization_cb =
242 std::function<void(KeyStoreServiceReturnCode ec, HardwareAuthToken, VerificationToken)>;
243 void verifyAuthorization(uint64_t challenge, hidl_vec<KeyParameter> params,
244 HardwareAuthToken token, verifyAuthorization_cb _hidl_cb);
245
246 using addRngEntropy_cb = MakeKeymasterWorkerCB_t<Return<ErrorCode>>;
247 void addRngEntropy(hidl_vec<uint8_t> data, addRngEntropy_cb _hidl_cb);
248
249 using generateKey_cb = std::function<void(
250 KeyStoreServiceReturnCode, ::android::hardware::keymaster::V4_0::KeyCharacteristics)>;
251 void generateKey(LockedKeyBlobEntry, hidl_vec<KeyParameter> keyParams,
252 hidl_vec<uint8_t> entropy, int flags, generateKey_cb _hidl_cb);
253
254 using generateKey2_cb = MakeKeymasterWorkerCB_t<Return<void>, Keymaster::generateKey_cb>;
255 void generateKey(hidl_vec<KeyParameter> keyParams, generateKey2_cb _hidl_cb);
256
257 using getKeyCharacteristics_cb = std::function<void(
258 KeyStoreServiceReturnCode, ::android::hardware::keymaster::V4_0::KeyCharacteristics)>;
259 void getKeyCharacteristics(LockedKeyBlobEntry lockedEntry, hidl_vec<uint8_t> clientId,
260 hidl_vec<uint8_t> appData, Blob keyBlob, Blob charBlob,
261 getKeyCharacteristics_cb _hidl_cb);
262
263 using importKey_cb = std::function<void(
264 KeyStoreServiceReturnCode, ::android::hardware::keymaster::V4_0::KeyCharacteristics)>;
265 void importKey(LockedKeyBlobEntry lockedEntry, hidl_vec<KeyParameter> params,
266 KeyFormat keyFormat, hidl_vec<uint8_t> keyData, int flags,
267 importKey_cb _hidl_cb);
268
269 using importWrappedKey_cb = std::function<void(
270 KeyStoreServiceReturnCode, ::android::hardware::keymaster::V4_0::KeyCharacteristics)>;
271 void importWrappedKey(LockedKeyBlobEntry wrappingLockedEntry,
272 LockedKeyBlobEntry wrapppedLockedEntry, hidl_vec<uint8_t> wrappedKeyData,
273 hidl_vec<uint8_t> maskingKey, hidl_vec<KeyParameter> unwrappingParams,
274 Blob wrappingBlob, Blob wrappingCharBlob, uint64_t passwordSid,
275 uint64_t biometricSid, importWrappedKey_cb worker_cb);
276
277 using exportKey_cb = std::function<void(::android::security::keymaster::ExportResult)>;
278 void exportKey(LockedKeyBlobEntry lockedEntry, KeyFormat exportFormat,
279 hidl_vec<uint8_t> clientId, hidl_vec<uint8_t> appData, Blob keyBlob,
280 Blob charBlob, exportKey_cb _hidl_cb);
281
282 using attestKey_cb = MakeKeymasterWorkerCB_t<Return<void>, Keymaster::attestKey_cb>;
283 void attestKey(hidl_vec<uint8_t> keyToAttest, hidl_vec<KeyParameter> attestParams,
284 attestKey_cb _hidl_cb);
285
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700286 using deleteKey_cb = MakeKeymasterWorkerCB_t<Return<ErrorCode>>;
287 void deleteKey(hidl_vec<uint8_t> keyBlob, deleteKey_cb _hidl_cb);
288
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700289 using begin_cb = MakeKeymasterWorkerCB_t<Return<void>, Keymaster::begin_cb>;
290 void begin(KeyPurpose purpose, hidl_vec<uint8_t> key, hidl_vec<KeyParameter> inParams,
291 HardwareAuthToken authToken, begin_cb _hidl_cb);
292
293 void binderDied(android::wp<IBinder> who);
294
295 const Keymaster::VersionResult& halVersion() { return keymasterDevice_->halVersion(); }
296};
297
298} // namespace keystore
299
300#endif // KEYSTORE_KEYMASTER_WORKER_H_