blob: ce809f871171ffb0d25af93aeee4cda14886b4bd [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;
178
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700179 private:
180 static const int32_t UID_SELF = -1;
181
182 /**
183 * Prune the oldest pruneable operation.
184 */
185 bool pruneOperation();
186
187 /**
188 * Get the effective target uid for a binder operation that takes an
189 * optional uid as the target.
190 */
191 uid_t getEffectiveUid(int32_t targetUid);
192
193 /**
194 * Check if the caller of the current binder method has the required
195 * permission and if acting on other uids the grants to do so.
196 */
197 bool checkBinderPermission(perm_t permission, int32_t targetUid = UID_SELF);
198
199 /**
200 * Check if the caller of the current binder method has the required
201 * permission and the target uid is the caller or the caller is system.
202 */
203 bool checkBinderPermissionSelfOrSystem(perm_t permission, int32_t targetUid);
204
205 /**
206 * Check if the caller of the current binder method has the required
207 * permission or the target of the operation is the caller's uid. This is
208 * for operation where the permission is only for cross-uid activity and all
209 * uids are allowed to act on their own (ie: clearing all entries for a
210 * given uid).
211 */
212 bool checkBinderPermissionOrSelfTarget(perm_t permission, int32_t targetUid);
213
214 /**
215 * Helper method to check that the caller has the required permission as
216 * well as the keystore is in the unlocked state if checkUnlocked is true.
217 *
218 * Returns NO_ERROR on success, PERMISSION_DENIED on a permission error and
219 * otherwise the state of keystore when not unlocked and checkUnlocked is
220 * true.
221 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100222 KeyStoreServiceReturnCode checkBinderPermissionAndKeystoreState(perm_t permission,
223 int32_t targetUid = -1,
224 bool checkUnlocked = true);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700225
226 bool isKeystoreUnlocked(State state);
227
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700228 /**
229 * Check that all keymaster_key_param_t's provided by the application are
230 * allowed. Any parameter that keystore adds itself should be disallowed here.
231 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100232 bool checkAllowedOperationParams(const hidl_vec<KeyParameter>& params);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700233
Shawn Willdenc67a8aa2017-12-03 17:51:29 -0700234 ErrorCode getOperationCharacteristics(const hidl_vec<uint8_t>& key, sp<Keymaster>* dev,
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100235 const AuthorizationSet& params, KeyCharacteristics* out);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700236
237 /**
238 * Get the auth token for this operation from the auth token table.
239 *
Shawn Willden0329a822017-12-04 13:55:14 -0700240 * Returns NO_ERROR if the auth token was found or none was required. If not needed, the
241 * token will be empty (which keymaster interprets as no auth token).
242 * OP_AUTH_NEEDED if it is a per op authorization, no authorization token exists for
243 * that operation and failOnTokenMissing is false.
244 * KM_ERROR_KEY_USER_NOT_AUTHENTICATED if there is no valid auth token for the operation
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700245 */
Shawn Willden0329a822017-12-04 13:55:14 -0700246 std::pair<KeyStoreServiceReturnCode, HardwareAuthToken>
247 getAuthToken(const KeyCharacteristics& characteristics, uint64_t handle, KeyPurpose purpose,
248 bool failOnTokenMissing = true);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700249
250 /**
Shawn Willden0329a822017-12-04 13:55:14 -0700251 * Get the auth token for the operation if the operation requires authorization. Uses the cached
252 * result in the OperationMap if available otherwise gets the token from the AuthTokenTable and
253 * caches the result.
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700254 *
Shawn Willden0329a822017-12-04 13:55:14 -0700255 * Returns NO_ERROR if the auth token was found or not needed. If not needed, the token will
256 * be empty (which keymaster interprets as no auth token).
257 * KM_ERROR_KEY_USER_NOT_AUTHENTICATED if the operation is not authenticated.
258 * KM_ERROR_INVALID_OPERATION_HANDLE if token is not a valid operation token.
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700259 */
Shawn Willden0329a822017-12-04 13:55:14 -0700260 std::pair<KeyStoreServiceReturnCode, const HardwareAuthToken&>
261 getOperationAuthTokenIfNeeded(const sp<android::IBinder>& token);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700262
263 /**
264 * Translate a result value to a legacy return value. All keystore errors are
265 * preserved and keymaster errors become SYSTEM_ERRORs
266 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100267 KeyStoreServiceReturnCode translateResultToLegacyResult(int32_t result);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700268
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100269 void addLegacyBeginParams(const android::String16& name, AuthorizationSet* params);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700270
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100271 KeyStoreServiceReturnCode doLegacySignVerify(const android::String16& name,
272 const hidl_vec<uint8_t>& data,
273 hidl_vec<uint8_t>* out,
274 const hidl_vec<uint8_t>& signature,
275 KeyPurpose purpose);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700276
Shawn Willden98c59162016-03-20 09:10:18 -0600277 /**
278 * Upgrade a key blob under alias "name", returning the new blob in "blob". If "blob"
279 * previously contained data, it will be overwritten.
280 *
281 * Returns ::NO_ERROR if the key was upgraded successfully.
282 * KM_ERROR_VERSION_MISMATCH if called on a key whose patch level is greater than or
283 * equal to the current system patch level.
284 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100285 KeyStoreServiceReturnCode upgradeKeyBlob(const android::String16& name, uid_t targetUid,
286 const AuthorizationSet& params, Blob* blob);
Shawn Willden98c59162016-03-20 09:10:18 -0600287
David Zeuthenc6eb7cd2017-11-27 11:33:55 -0500288 /**
289 * Adds a Confirmation Token to the key parameters if needed.
290 */
291 void appendConfirmationTokenIfNeeded(const KeyCharacteristics& keyCharacteristics,
292 std::vector<KeyParameter>* params);
293
Shawn Willdenc67a8aa2017-12-03 17:51:29 -0700294 KeyStore* mKeyStore;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700295 OperationMap mOperationMap;
David Zeuthenc6eb7cd2017-11-27 11:33:55 -0500296 android::sp<ConfirmationManager> mConfirmationManager;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100297 keystore::AuthTokenTable mAuthTokenTable;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700298 KeystoreKeymasterEnforcement enforcement_policy;
299};
300
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100301}; // namespace keystore
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700302
303#endif // KEYSTORE_KEYSTORE_SERVICE_H_