blob: 70a56ca39f060a48c3ce386d09b9fc62c2299617 [file] [log] [blame]
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001/*
2 * Copyright (C) 2016 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#ifndef KEYSTORE_KEYSTORE_SERVICE_H_
18#define KEYSTORE_KEYSTORE_SERVICE_H_
19
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -070020#include <android/security/BnKeystoreService.h>
Shawn Willden98c59162016-03-20 09:10:18 -060021
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070022#include "auth_token_table.h"
David Zeuthenc6eb7cd2017-11-27 11:33:55 -050023#include "confirmation_manager.h"
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -070024
Shawn Willdenfa5702f2017-12-03 15:14:58 -070025#include "KeyStore.h"
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070026#include "keystore_keymaster_enforcement.h"
27#include "operation.h"
28#include "permissions.h"
29
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010030namespace keystore {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070031
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -070032// Class provides implementation for generated BnKeystoreService.h based on
33// gen/aidl/android/security/BnKeystoreService.h generated from
34// java/android/security/IKeystoreService.aidl Note that all generated methods return binder::Status
35// and use last arguments to send actual result to the caller. Private methods don't need to handle
36// binder::Status. Input parameters cannot be null unless annotated with @nullable in .aidl file.
37class KeyStoreService : public android::security::BnKeystoreService,
38 android::IBinder::DeathRecipient {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070039 public:
David Zeuthenc6eb7cd2017-11-27 11:33:55 -050040 explicit KeyStoreService(KeyStore* keyStore)
41 : mKeyStore(keyStore), mOperationMap(this),
42 mConfirmationManager(new ConfirmationManager(this)) {}
Shawn Willdenc67a8aa2017-12-03 17:51:29 -070043 virtual ~KeyStoreService() = default;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070044
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010045 void binderDied(const android::wp<android::IBinder>& who);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070046
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -070047 ::android::binder::Status getState(int32_t userId, int32_t* _aidl_return) override;
48 ::android::binder::Status get(const ::android::String16& name, int32_t uid,
49 ::std::vector<uint8_t>* _aidl_return) override;
50 ::android::binder::Status insert(const ::android::String16& name,
51 const ::std::vector<uint8_t>& item, int32_t uid, int32_t flags,
52 int32_t* _aidl_return) override;
53 ::android::binder::Status del(const ::android::String16& name, int32_t uid,
54 int32_t* _aidl_return) override;
55 ::android::binder::Status exist(const ::android::String16& name, int32_t uid,
56 int32_t* _aidl_return) override;
57 ::android::binder::Status list(const ::android::String16& namePrefix, int32_t uid,
58 ::std::vector<::android::String16>* _aidl_return) override;
59 ::android::binder::Status reset(int32_t* _aidl_return) override;
60 ::android::binder::Status onUserPasswordChanged(int32_t userId,
61 const ::android::String16& newPassword,
62 int32_t* _aidl_return) override;
63 ::android::binder::Status lock(int32_t userId, int32_t* _aidl_return) override;
64 ::android::binder::Status unlock(int32_t userId, const ::android::String16& userPassword,
65 int32_t* _aidl_return) override;
66 ::android::binder::Status isEmpty(int32_t userId, int32_t* _aidl_return) override;
67 ::android::binder::Status generate(const ::android::String16& name, int32_t uid,
68 int32_t keyType, int32_t keySize, int32_t flags,
69 const ::android::security::KeystoreArguments& args,
70 int32_t* _aidl_return) override;
71 ::android::binder::Status import_key(const ::android::String16& name,
72 const ::std::vector<uint8_t>& data, int32_t uid,
73 int32_t flags, int32_t* _aidl_return) override;
74 ::android::binder::Status sign(const ::android::String16& name,
75 const ::std::vector<uint8_t>& data,
76 ::std::vector<uint8_t>* _aidl_return) override;
77 ::android::binder::Status verify(const ::android::String16& name,
78 const ::std::vector<uint8_t>& data,
79 const ::std::vector<uint8_t>& signature,
80 int32_t* _aidl_return) override;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070081 /*
82 * TODO: The abstraction between things stored in hardware and regular blobs
83 * of data stored on the filesystem should be moved down to keystore itself.
84 * Unfortunately the Java code that calls this has naming conventions that it
85 * knows about. Ideally keystore shouldn't be used to store random blobs of
86 * data.
87 *
88 * Until that happens, it's necessary to have a separate "get_pubkey" and
89 * "del_key" since the Java code doesn't really communicate what it's
90 * intentions are.
91 */
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -070092 ::android::binder::Status get_pubkey(const ::android::String16& name,
93 ::std::vector<uint8_t>* _aidl_return) override;
94 ::android::binder::Status grant(const ::android::String16& name, int32_t granteeUid,
95 ::android::String16* _aidl_return) override;
96 ::android::binder::Status ungrant(const ::android::String16& name, int32_t granteeUid,
97 int32_t* _aidl_return) override;
98 ::android::binder::Status getmtime(const ::android::String16& name, int32_t uid,
99 int64_t* _aidl_return) override;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700100 ::android::binder::Status is_hardware_backed(const ::android::String16& string,
101 int32_t* _aidl_return) override;
102 ::android::binder::Status clear_uid(int64_t uid, int32_t* _aidl_return) override;
Janis Danisevskisc1460142017-12-18 16:48:46 -0800103 ::android::binder::Status addRngEntropy(const ::std::vector<uint8_t>& data, int32_t flags,
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700104 int32_t* _aidl_return) override;
105 ::android::binder::Status
106 generateKey(const ::android::String16& alias,
107 const ::android::security::keymaster::KeymasterArguments& arguments,
108 const ::std::vector<uint8_t>& entropy, int32_t uid, int32_t flags,
109 ::android::security::keymaster::KeyCharacteristics* characteristics,
110 int32_t* _aidl_return) override;
111 ::android::binder::Status
112 getKeyCharacteristics(const ::android::String16& alias,
113 const ::android::security::keymaster::KeymasterBlob& clientId,
114 const ::android::security::keymaster::KeymasterBlob& appId, int32_t uid,
115 ::android::security::keymaster::KeyCharacteristics* characteristics,
116 int32_t* _aidl_return) override;
117 ::android::binder::Status
118 importKey(const ::android::String16& alias,
119 const ::android::security::keymaster::KeymasterArguments& arguments, int32_t format,
120 const ::std::vector<uint8_t>& keyData, int32_t uid, int32_t flags,
121 ::android::security::keymaster::KeyCharacteristics* characteristics,
122 int32_t* _aidl_return) override;
123 ::android::binder::Status
124 exportKey(const ::android::String16& alias, int32_t format,
125 const ::android::security::keymaster::KeymasterBlob& clientId,
126 const ::android::security::keymaster::KeymasterBlob& appId, int32_t uid,
127 ::android::security::keymaster::ExportResult* _aidl_return) override;
128 ::android::binder::Status
129 begin(const ::android::sp<::android::IBinder>& appToken, const ::android::String16& alias,
130 int32_t purpose, bool pruneable,
131 const ::android::security::keymaster::KeymasterArguments& params,
132 const ::std::vector<uint8_t>& entropy, int32_t uid,
133 ::android::security::keymaster::OperationResult* _aidl_return) override;
134 ::android::binder::Status
135 update(const ::android::sp<::android::IBinder>& token,
136 const ::android::security::keymaster::KeymasterArguments& params,
137 const ::std::vector<uint8_t>& input,
138 ::android::security::keymaster::OperationResult* _aidl_return) override;
139 ::android::binder::Status
140 finish(const ::android::sp<::android::IBinder>& token,
141 const ::android::security::keymaster::KeymasterArguments& params,
142 const ::std::vector<uint8_t>& signature, const ::std::vector<uint8_t>& entropy,
143 ::android::security::keymaster::OperationResult* _aidl_return) override;
144 ::android::binder::Status abort(const ::android::sp<::android::IBinder>& handle,
145 int32_t* _aidl_return) override;
146 ::android::binder::Status isOperationAuthorized(const ::android::sp<::android::IBinder>& token,
147 bool* _aidl_return) override;
Brian Youngccb492d2018-02-22 23:36:01 +0000148 ::android::binder::Status addAuthToken(const ::std::vector<uint8_t>& authToken,
Brian Young1b759292018-01-29 23:57:29 +0000149 int32_t* _aidl_return) override;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700150 ::android::binder::Status onUserAdded(int32_t userId, int32_t parentId,
151 int32_t* _aidl_return) override;
152 ::android::binder::Status onUserRemoved(int32_t userId, int32_t* _aidl_return) override;
153 ::android::binder::Status
154 attestKey(const ::android::String16& alias,
155 const ::android::security::keymaster::KeymasterArguments& params,
156 ::android::security::keymaster::KeymasterCertificateChain* chain,
157 int32_t* _aidl_return) override;
158 ::android::binder::Status
159 attestDeviceIds(const ::android::security::keymaster::KeymasterArguments& params,
160 ::android::security::keymaster::KeymasterCertificateChain* chain,
161 int32_t* _aidl_return) override;
162 ::android::binder::Status onDeviceOffBody(int32_t* _aidl_return) override;
David Zeuthenc6eb7cd2017-11-27 11:33:55 -0500163
Janis Danisevskiscb9267d2017-12-19 16:27:52 -0800164 ::android::binder::Status importWrappedKey(
165 const ::android::String16& wrappedKeyAlias, const ::std::vector<uint8_t>& wrappedKey,
166 const ::android::String16& wrappingKeyAlias, const ::std::vector<uint8_t>& maskingKey,
167 const ::android::security::keymaster::KeymasterArguments& params, int64_t rootSid,
168 int64_t fingerprintSid, ::android::security::keymaster::KeyCharacteristics* characteristics,
169 int32_t* _aidl_return) override;
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400170
David Zeuthenc6eb7cd2017-11-27 11:33:55 -0500171 ::android::binder::Status presentConfirmationPrompt(
172 const ::android::sp<::android::IBinder>& listener, const ::android::String16& promptText,
173 const ::std::vector<uint8_t>& extraData, const ::android::String16& locale,
174 int32_t uiOptionsAsFlags, int32_t* _aidl_return) override;
175 ::android::binder::Status
176 cancelConfirmationPrompt(const ::android::sp<::android::IBinder>& listener,
177 int32_t* _aidl_return) override;
David Zeuthen1a492312018-02-26 11:00:30 -0500178 ::android::binder::Status isConfirmationPromptSupported(bool* _aidl_return) override;
David Zeuthenc6eb7cd2017-11-27 11:33:55 -0500179
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700180 private:
181 static const int32_t UID_SELF = -1;
182
183 /**
184 * Prune the oldest pruneable operation.
185 */
186 bool pruneOperation();
187
188 /**
189 * Get the effective target uid for a binder operation that takes an
190 * optional uid as the target.
191 */
192 uid_t getEffectiveUid(int32_t targetUid);
193
194 /**
195 * Check if the caller of the current binder method has the required
196 * permission and if acting on other uids the grants to do so.
197 */
198 bool checkBinderPermission(perm_t permission, int32_t targetUid = UID_SELF);
199
200 /**
201 * Check if the caller of the current binder method has the required
202 * permission and the target uid is the caller or the caller is system.
203 */
204 bool checkBinderPermissionSelfOrSystem(perm_t permission, int32_t targetUid);
205
206 /**
207 * Check if the caller of the current binder method has the required
208 * permission or the target of the operation is the caller's uid. This is
209 * for operation where the permission is only for cross-uid activity and all
210 * uids are allowed to act on their own (ie: clearing all entries for a
211 * given uid).
212 */
213 bool checkBinderPermissionOrSelfTarget(perm_t permission, int32_t targetUid);
214
215 /**
216 * Helper method to check that the caller has the required permission as
217 * well as the keystore is in the unlocked state if checkUnlocked is true.
218 *
219 * Returns NO_ERROR on success, PERMISSION_DENIED on a permission error and
220 * otherwise the state of keystore when not unlocked and checkUnlocked is
221 * true.
222 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100223 KeyStoreServiceReturnCode checkBinderPermissionAndKeystoreState(perm_t permission,
224 int32_t targetUid = -1,
225 bool checkUnlocked = true);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700226
227 bool isKeystoreUnlocked(State state);
228
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700229 /**
230 * Check that all keymaster_key_param_t's provided by the application are
231 * allowed. Any parameter that keystore adds itself should be disallowed here.
232 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100233 bool checkAllowedOperationParams(const hidl_vec<KeyParameter>& params);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700234
Shawn Willdenc67a8aa2017-12-03 17:51:29 -0700235 ErrorCode getOperationCharacteristics(const hidl_vec<uint8_t>& key, sp<Keymaster>* dev,
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100236 const AuthorizationSet& params, KeyCharacteristics* out);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700237
238 /**
239 * Get the auth token for this operation from the auth token table.
240 *
Shawn Willden0329a822017-12-04 13:55:14 -0700241 * Returns NO_ERROR if the auth token was found or none was required. If not needed, the
242 * token will be empty (which keymaster interprets as no auth token).
243 * OP_AUTH_NEEDED if it is a per op authorization, no authorization token exists for
244 * that operation and failOnTokenMissing is false.
245 * KM_ERROR_KEY_USER_NOT_AUTHENTICATED if there is no valid auth token for the operation
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700246 */
Shawn Willden0329a822017-12-04 13:55:14 -0700247 std::pair<KeyStoreServiceReturnCode, HardwareAuthToken>
248 getAuthToken(const KeyCharacteristics& characteristics, uint64_t handle, KeyPurpose purpose,
249 bool failOnTokenMissing = true);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700250
251 /**
Shawn Willden0329a822017-12-04 13:55:14 -0700252 * Get the auth token for the operation if the operation requires authorization. Uses the cached
253 * result in the OperationMap if available otherwise gets the token from the AuthTokenTable and
254 * caches the result.
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700255 *
Shawn Willden0329a822017-12-04 13:55:14 -0700256 * Returns NO_ERROR if the auth token was found or not needed. If not needed, the token will
257 * be empty (which keymaster interprets as no auth token).
258 * KM_ERROR_KEY_USER_NOT_AUTHENTICATED if the operation is not authenticated.
259 * KM_ERROR_INVALID_OPERATION_HANDLE if token is not a valid operation token.
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700260 */
Shawn Willden0329a822017-12-04 13:55:14 -0700261 std::pair<KeyStoreServiceReturnCode, const HardwareAuthToken&>
262 getOperationAuthTokenIfNeeded(const sp<android::IBinder>& token);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700263
264 /**
265 * Translate a result value to a legacy return value. All keystore errors are
266 * preserved and keymaster errors become SYSTEM_ERRORs
267 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100268 KeyStoreServiceReturnCode translateResultToLegacyResult(int32_t result);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700269
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100270 void addLegacyBeginParams(const android::String16& name, AuthorizationSet* params);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700271
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100272 KeyStoreServiceReturnCode doLegacySignVerify(const android::String16& name,
273 const hidl_vec<uint8_t>& data,
274 hidl_vec<uint8_t>* out,
275 const hidl_vec<uint8_t>& signature,
276 KeyPurpose purpose);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700277
Shawn Willden98c59162016-03-20 09:10:18 -0600278 /**
279 * Upgrade a key blob under alias "name", returning the new blob in "blob". If "blob"
280 * previously contained data, it will be overwritten.
281 *
282 * Returns ::NO_ERROR if the key was upgraded successfully.
283 * KM_ERROR_VERSION_MISMATCH if called on a key whose patch level is greater than or
284 * equal to the current system patch level.
285 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100286 KeyStoreServiceReturnCode upgradeKeyBlob(const android::String16& name, uid_t targetUid,
287 const AuthorizationSet& params, Blob* blob);
Shawn Willden98c59162016-03-20 09:10:18 -0600288
David Zeuthenc6eb7cd2017-11-27 11:33:55 -0500289 /**
290 * Adds a Confirmation Token to the key parameters if needed.
291 */
292 void appendConfirmationTokenIfNeeded(const KeyCharacteristics& keyCharacteristics,
293 std::vector<KeyParameter>* params);
294
Shawn Willdenc67a8aa2017-12-03 17:51:29 -0700295 KeyStore* mKeyStore;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700296 OperationMap mOperationMap;
David Zeuthenc6eb7cd2017-11-27 11:33:55 -0500297 android::sp<ConfirmationManager> mConfirmationManager;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100298 keystore::AuthTokenTable mAuthTokenTable;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700299 KeystoreKeymasterEnforcement enforcement_policy;
300};
301
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100302}; // namespace keystore
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700303
304#endif // KEYSTORE_KEYSTORE_SERVICE_H_