blob: 58b58342055ddcc51c1a9b2f3e4c8c9322df2fb3 [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
Janis Danisevskis011675d2016-09-01 11:41:29 +010017#define LOG_TAG "keystore"
18
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070019#include "key_store_service.h"
20
21#include <fcntl.h>
22#include <sys/stat.h>
23
Janis Danisevskis7612fd42016-09-01 11:50:02 +010024#include <algorithm>
Janis Danisevskisff3d7f42018-10-08 07:15:09 -070025#include <atomic>
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070026#include <sstream>
27
Pavel Grafovff311b42018-01-24 20:34:37 +000028#include <android-base/scopeguard.h>
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +010029#include <binder/IInterface.h>
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070030#include <binder/IPCThreadState.h>
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +010031#include <binder/IPermissionController.h>
32#include <binder/IServiceManager.h>
Brian Claire Young3133c452018-08-31 13:56:49 -070033#include <cutils/multiuser.h>
Pavel Grafovff311b42018-01-24 20:34:37 +000034#include <log/log_event_list.h>
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070035
36#include <private/android_filesystem_config.h>
Pavel Grafovff311b42018-01-24 20:34:37 +000037#include <private/android_logger.h>
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070038
Janis Danisevskisff3d7f42018-10-08 07:15:09 -070039#include <android/hardware/confirmationui/1.0/IConfirmationUI.h>
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010040#include <android/hardware/keymaster/3.0/IHwKeymasterDevice.h>
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070041
42#include "defaults.h"
Max Bires33aac2d2018-02-23 10:53:10 -080043#include "key_proto_handler.h"
Janis Danisevskis18f27ad2016-06-01 13:57:40 -070044#include "keystore_attestation_id.h"
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010045#include "keystore_keymaster_enforcement.h"
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070046#include "keystore_utils.h"
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010047#include <keystore/keystore_hidl_support.h>
Janis Danisevskisff3d7f42018-10-08 07:15:09 -070048#include <keystore/keystore_return_types.h>
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070049
Janis Danisevskis8f737ad2017-11-21 12:30:15 -080050#include <hardware/hw_auth_token.h>
51
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010052namespace keystore {
Shawn Willdend5a24e62017-02-28 13:53:24 -070053
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010054using namespace android;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070055
Shawn Willdene2a7b522017-04-11 09:27:40 -060056namespace {
57
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -070058using ::android::binder::Status;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -070059using android::security::keymaster::ExportResult;
60using android::security::keymaster::KeymasterArguments;
61using android::security::keymaster::KeymasterBlob;
62using android::security::keymaster::KeymasterCertificateChain;
Janis Danisevskisff3d7f42018-10-08 07:15:09 -070063using android::security::keymaster::operationFailed;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -070064using android::security::keymaster::OperationResult;
David Zeuthenc6eb7cd2017-11-27 11:33:55 -050065using ConfirmationResponseCode = android::hardware::confirmationui::V1_0::ResponseCode;
Rob Barnesbb6cabd2018-10-04 17:10:37 -060066using ::android::security::keystore::IKeystoreOperationResultCallback;
67using ::android::security::keystore::IKeystoreResponseCallback;
68using ::android::security::keystore::KeystoreResponse;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -070069
Shawn Willdene2a7b522017-04-11 09:27:40 -060070constexpr double kIdRotationPeriod = 30 * 24 * 60 * 60; /* Thirty days, in seconds */
71const char* kTimestampFilePath = "timestamp";
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070072
Shawn Willdene2a7b522017-04-11 09:27:40 -060073bool containsTag(const hidl_vec<KeyParameter>& params, Tag tag) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -070074 return params.end() !=
75 std::find_if(params.begin(), params.end(),
76 [&](const KeyParameter& param) { return param.tag == tag; });
Shawn Willdend5a24e62017-02-28 13:53:24 -070077}
78
Branden Archer70080742018-11-20 11:04:11 -080079#define AIDL_RETURN(rc) (*_aidl_return = KeyStoreServiceReturnCode(rc).getErrorCode(), Status::ok())
Rob Barnesbb6cabd2018-10-04 17:10:37 -060080
Shawn Willdene2a7b522017-04-11 09:27:40 -060081std::pair<KeyStoreServiceReturnCode, bool> hadFactoryResetSinceIdRotation() {
82 struct stat sbuf;
83 if (stat(kTimestampFilePath, &sbuf) == 0) {
Yi Konge353f252018-07-30 01:38:39 -070084 double diff_secs = difftime(time(nullptr), sbuf.st_ctime);
Shawn Willdene2a7b522017-04-11 09:27:40 -060085 return {ResponseCode::NO_ERROR, diff_secs < kIdRotationPeriod};
86 }
87
88 if (errno != ENOENT) {
89 ALOGE("Failed to stat \"timestamp\" file, with error %d", errno);
90 return {ResponseCode::SYSTEM_ERROR, false /* don't care */};
91 }
92
93 int fd = creat(kTimestampFilePath, 0600);
94 if (fd < 0) {
95 ALOGE("Couldn't create \"timestamp\" file, with error %d", errno);
96 return {ResponseCode::SYSTEM_ERROR, false /* don't care */};
97 }
98
99 if (close(fd)) {
100 ALOGE("Couldn't close \"timestamp\" file, with error %d", errno);
101 return {ResponseCode::SYSTEM_ERROR, false /* don't care */};
102 }
103
104 return {ResponseCode::NO_ERROR, true};
105}
106
Eran Messeri03fc4c82018-08-16 18:53:15 +0100107using ::android::security::KEY_ATTESTATION_APPLICATION_ID_MAX_SIZE;
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +0200108
109KeyStoreServiceReturnCode updateParamsForAttestation(uid_t callingUid, AuthorizationSet* params) {
110 KeyStoreServiceReturnCode responseCode;
111 bool factoryResetSinceIdRotation;
112 std::tie(responseCode, factoryResetSinceIdRotation) = hadFactoryResetSinceIdRotation();
113
114 if (!responseCode.isOk()) return responseCode;
115 if (factoryResetSinceIdRotation) params->push_back(TAG_RESET_SINCE_ID_ROTATION);
116
117 auto asn1_attestation_id_result = security::gather_attestation_application_id(callingUid);
118 if (!asn1_attestation_id_result.isOk()) {
119 ALOGE("failed to gather attestation_id");
Shawn Willden6f7d27c2019-09-11 22:51:46 -0600120 // Couldn't get attestation ID; just use an empty one rather than failing.
121 asn1_attestation_id_result = std::vector<uint8_t>();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +0200122 }
123 std::vector<uint8_t>& asn1_attestation_id = asn1_attestation_id_result;
124
125 /*
Eran Messeri03fc4c82018-08-16 18:53:15 +0100126 * The attestation application ID must not be longer than
127 * KEY_ATTESTATION_APPLICATION_ID_MAX_SIZE, error out if gather_attestation_application_id
128 * returned such an invalid vector.
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +0200129 */
130 if (asn1_attestation_id.size() > KEY_ATTESTATION_APPLICATION_ID_MAX_SIZE) {
Eran Messeri03fc4c82018-08-16 18:53:15 +0100131 ALOGE("BUG: Gathered Attestation Application ID is too big (%d)",
132 static_cast<int32_t>(asn1_attestation_id.size()));
133 return ErrorCode::CANNOT_ATTEST_IDS;
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +0200134 }
135
136 params->push_back(TAG_ATTESTATION_APPLICATION_ID, asn1_attestation_id);
137
138 return ResponseCode::NO_ERROR;
139}
140
Shawn Willdene2a7b522017-04-11 09:27:40 -0600141} // anonymous namespace
142
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700143Status KeyStoreService::getState(int32_t userId, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700144 if (!checkBinderPermission(P_GET_STATE)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700145 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
146 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700147 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700148 *aidl_return = mKeyStore->getState(userId);
149 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700150}
151
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700152Status KeyStoreService::get(const String16& name, int32_t uid, ::std::vector<uint8_t>* item) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700153 uid_t targetUid = getEffectiveUid(uid);
154 if (!checkBinderPermission(P_GET, targetUid)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700155 // see keystore/keystore.h
156 return Status::fromServiceSpecificError(
157 static_cast<int32_t>(ResponseCode::PERMISSION_DENIED));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700158 }
159
160 String8 name8(name);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700161 ResponseCode rc;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700162 Blob keyBlob;
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700163 Blob charBlob;
164 LockedKeyBlobEntry lockedEntry;
165
166 std::tie(rc, keyBlob, charBlob, lockedEntry) =
167 mKeyStore->getKeyForName(name8, targetUid, TYPE_GENERIC);
168 if (rc != ResponseCode::NO_ERROR) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700169 *item = ::std::vector<uint8_t>();
170 // Return empty array if key is not found
171 // TODO: consider having returned value nullable or parse exception on the client.
172 return Status::fromServiceSpecificError(static_cast<int32_t>(rc));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700173 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100174 auto resultBlob = blob2hidlVec(keyBlob);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700175 // The static_cast here is needed to prevent a move, forcing a deep copy.
176 if (item) *item = static_cast<const hidl_vec<uint8_t>&>(blob2hidlVec(keyBlob));
177 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700178}
179
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700180Status KeyStoreService::insert(const String16& name, const ::std::vector<uint8_t>& item,
181 int targetUid, int32_t flags, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700182 targetUid = getEffectiveUid(targetUid);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700183 KeyStoreServiceReturnCode result =
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700184 checkBinderPermissionAndKeystoreState(P_INSERT, targetUid, flags & KEYSTORE_FLAG_ENCRYPTED);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100185 if (!result.isOk()) {
Branden Archer70080742018-11-20 11:04:11 -0800186 *aidl_return = result.getErrorCode();
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700187 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700188 }
189
190 String8 name8(name);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700191 auto lockedEntry = mKeyStore->getLockedBlobEntryIfNotExists(name8.string(), targetUid);
192
193 if (!lockedEntry) {
194 ALOGE("failed to grab lock on blob entry %u_%s", targetUid, name8.string());
195 *aidl_return = static_cast<int32_t>(ResponseCode::KEY_ALREADY_EXISTS);
196 return Status::ok();
197 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700198
Yi Konge353f252018-07-30 01:38:39 -0700199 Blob keyBlob(&item[0], item.size(), nullptr, 0, ::TYPE_GENERIC);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700200 keyBlob.setEncrypted(flags & KEYSTORE_FLAG_ENCRYPTED);
201
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700202 *aidl_return = static_cast<int32_t>(mKeyStore->put(lockedEntry, keyBlob, {}));
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700203 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700204}
205
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700206Status KeyStoreService::del(const String16& name, int targetUid, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700207 targetUid = getEffectiveUid(targetUid);
208 if (!checkBinderPermission(P_DELETE, targetUid)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700209 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
210 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700211 }
212 String8 name8(name);
Rubin Xu7675c9f2017-03-15 19:26:52 +0000213 ALOGI("del %s %d", name8.string(), targetUid);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700214 auto lockedEntry = mKeyStore->getLockedBlobEntryIfExists(name8.string(), targetUid);
215 if (!lockedEntry) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700216 *aidl_return = static_cast<int32_t>(ResponseCode::KEY_NOT_FOUND);
217 return Status::ok();
218 }
Janis Danisevskisaf7783f2017-09-21 11:29:47 -0700219
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700220 ResponseCode result = mKeyStore->del(lockedEntry);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400221
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700222 *aidl_return = static_cast<int32_t>(result);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700223 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700224}
225
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700226Status KeyStoreService::exist(const String16& name, int targetUid, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700227 targetUid = getEffectiveUid(targetUid);
228 if (!checkBinderPermission(P_EXIST, targetUid)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700229 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
230 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700231 }
232
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700233 LockedKeyBlobEntry lockedEntry =
234 mKeyStore->getLockedBlobEntryIfExists(String8(name).string(), targetUid);
235 *aidl_return =
236 static_cast<int32_t>(lockedEntry ? ResponseCode::NO_ERROR : ResponseCode::KEY_NOT_FOUND);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700237 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700238}
239
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700240Status KeyStoreService::list(const String16& prefix, int32_t targetUid,
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700241 ::std::vector<::android::String16>* matches) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700242 targetUid = getEffectiveUid(targetUid);
243 if (!checkBinderPermission(P_LIST, targetUid)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700244 return Status::fromServiceSpecificError(
245 static_cast<int32_t>(ResponseCode::PERMISSION_DENIED));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700246 }
247 const String8 prefix8(prefix);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700248 const std::string stdPrefix(prefix8.string());
249
250 ResponseCode rc;
251 std::list<LockedKeyBlobEntry> internal_matches;
Janis Danisevskis265435f2018-11-16 14:10:46 -0800252 auto userDirName = mKeyStore->getUserStateDB().getUserStateByUid(targetUid)->getUserDirName();
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700253
Janis Danisevskis265435f2018-11-16 14:10:46 -0800254 std::tie(rc, internal_matches) =
255 LockedKeyBlobEntry::list(userDirName, [&](uid_t uid, const std::string& alias) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700256 std::mismatch(stdPrefix.begin(), stdPrefix.end(), alias.begin(), alias.end());
257 return uid == static_cast<uid_t>(targetUid) &&
258 std::mismatch(stdPrefix.begin(), stdPrefix.end(), alias.begin(), alias.end())
259 .first == stdPrefix.end();
260 });
261
262 if (rc != ResponseCode::NO_ERROR) {
263 return Status::fromServiceSpecificError(static_cast<int32_t>(rc));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700264 }
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700265
266 for (LockedKeyBlobEntry& entry : internal_matches) {
267 matches->push_back(String16(entry->alias().substr(prefix8.size()).c_str()));
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700268 }
269 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700270}
271
Rob Barneseb7f79b2018-11-08 15:44:10 -0700272/*
273 * This method will return the uids of all auth bound keys for the calling user.
274 * This is intended to be used for alerting the user about which apps will be affected
275 * if the password/pin is removed. Only allowed to be called by system.
276 * The output is bound by the initial size of uidsOut to be compatible with Java.
277 */
Rob Barnes5d59e632018-12-07 16:09:02 -0700278Status KeyStoreService::listUidsOfAuthBoundKeys(std::vector<std::string>* uidsOut,
Rob Barneseb7f79b2018-11-08 15:44:10 -0700279 int32_t* aidl_return) {
280 const int32_t callingUid = IPCThreadState::self()->getCallingUid();
281 const int32_t userId = get_user_id(callingUid);
282 const int32_t appId = get_app_id(callingUid);
283 if (appId != AID_SYSTEM) {
284 ALOGE("Permission listUidsOfAuthBoundKeys denied for aid %d", appId);
285 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
286 return Status::ok();
287 }
288
289 const String8 prefix8("");
290 auto userState = mKeyStore->getUserStateDB().getUserState(userId);
291 const std::string userDirName = userState->getUserDirName();
292 auto encryptionKey = userState->getEncryptionKey();
293 auto state = userState->getState();
294 // unlock the user state
295 userState = {};
296
297 ResponseCode rc;
298 std::list<LockedKeyBlobEntry> internal_matches;
299 std::tie(rc, internal_matches) =
300 LockedKeyBlobEntry::list(userDirName, [&](uid_t, const std::string&) {
301 // Need to filter on auth bound state, so just return true.
302 return true;
303 });
304 if (rc != ResponseCode::NO_ERROR) {
305 ALOGE("Error listing blob entries for user %d", userId);
306 return Status::fromServiceSpecificError(static_cast<int32_t>(rc));
307 }
308
Rob Barneseb7f79b2018-11-08 15:44:10 -0700309 for (LockedKeyBlobEntry& entry : internal_matches) {
Rob Barnes5d59e632018-12-07 16:09:02 -0700310 // Need to store uids as a list of strings because integer list output
311 // parameters is not supported in aidl-cpp.
312 std::string entryUid = std::to_string(entry->uid());
313 if (std::find(uidsOut->begin(), uidsOut->end(), entryUid) != uidsOut->end()) {
Rob Barneseb7f79b2018-11-08 15:44:10 -0700314 // uid already in list, skip
315 continue;
316 }
317
318 auto [rc, blob, charBlob] = entry.readBlobs(encryptionKey, state);
319 if (rc != ResponseCode::NO_ERROR && rc != ResponseCode::LOCKED) {
320 ALOGE("Error reading blob for key %s", entry->alias().c_str());
321 continue;
322 }
323
324 if (blob && blob.isEncrypted()) {
Rob Barnes5d59e632018-12-07 16:09:02 -0700325 uidsOut->push_back(entryUid);
Rob Barneseb7f79b2018-11-08 15:44:10 -0700326 } else if (charBlob) {
327 auto [success, hwEnforced, swEnforced] = charBlob.getKeyCharacteristics();
328 if (!success) {
329 ALOGE("Error reading blob characteristics for key %s", entry->alias().c_str());
330 continue;
331 }
332 if (hwEnforced.Contains(TAG_USER_SECURE_ID) ||
333 swEnforced.Contains(TAG_USER_SECURE_ID)) {
Rob Barnes5d59e632018-12-07 16:09:02 -0700334 uidsOut->push_back(entryUid);
Rob Barneseb7f79b2018-11-08 15:44:10 -0700335 }
336 }
337 }
338 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
339 return Status::ok();
340}
341
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700342Status KeyStoreService::reset(int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700343 if (!checkBinderPermission(P_RESET)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700344 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
345 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700346 }
347
348 uid_t callingUid = IPCThreadState::self()->getCallingUid();
349 mKeyStore->resetUser(get_user_id(callingUid), false);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700350 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
351 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700352}
353
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700354Status KeyStoreService::onUserPasswordChanged(int32_t userId, const String16& password,
355 int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700356 if (!checkBinderPermission(P_PASSWORD)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700357 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
358 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700359 }
360
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700361 if (password.size() == 0) {
362 ALOGI("Secure lockscreen for user %d removed, deleting encrypted entries", userId);
363 mKeyStore->resetUser(userId, true);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700364 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
365 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700366 } else {
Pavel Grafovf9b53eb2019-02-06 17:16:21 +0000367 const String8 password8(password);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700368 switch (mKeyStore->getState(userId)) {
369 case ::STATE_UNINITIALIZED: {
370 // generate master key, encrypt with password, write to file,
371 // initialize mMasterKey*.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700372 *aidl_return = static_cast<int32_t>(mKeyStore->initializeUser(password8, userId));
373 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700374 }
375 case ::STATE_NO_ERROR: {
376 // rewrite master key with new password.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700377 *aidl_return = static_cast<int32_t>(mKeyStore->writeMasterKey(password8, userId));
378 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700379 }
380 case ::STATE_LOCKED: {
381 ALOGE("Changing user %d's password while locked, clearing old encryption", userId);
382 mKeyStore->resetUser(userId, true);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700383 *aidl_return = static_cast<int32_t>(mKeyStore->initializeUser(password8, userId));
384 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700385 }
386 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700387 *aidl_return = static_cast<int32_t>(ResponseCode::SYSTEM_ERROR);
388 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700389 }
390}
391
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700392Status KeyStoreService::onUserAdded(int32_t userId, int32_t parentId, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700393 if (!checkBinderPermission(P_USER_CHANGED)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700394 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
395 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700396 }
397
398 // Sanity check that the new user has an empty keystore.
399 if (!mKeyStore->isEmpty(userId)) {
400 ALOGW("New user %d's keystore not empty. Clearing old entries.", userId);
401 }
402 // Unconditionally clear the keystore, just to be safe.
403 mKeyStore->resetUser(userId, false);
404 if (parentId != -1) {
405 // This profile must share the same master key password as the parent profile. Because the
406 // password of the parent profile is not known here, the best we can do is copy the parent's
407 // master key and master key file. This makes this profile use the same master key as the
408 // parent profile, forever.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700409 *aidl_return = static_cast<int32_t>(mKeyStore->copyMasterKey(parentId, userId));
410 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700411 } else {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700412 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
413 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700414 }
415}
416
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700417Status KeyStoreService::onUserRemoved(int32_t userId, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700418 if (!checkBinderPermission(P_USER_CHANGED)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700419 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
420 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700421 }
422
423 mKeyStore->resetUser(userId, false);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700424 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
425 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700426}
427
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700428Status KeyStoreService::lock(int32_t userId, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700429 if (!checkBinderPermission(P_LOCK)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700430 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
431 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700432 }
433
434 State state = mKeyStore->getState(userId);
435 if (state != ::STATE_NO_ERROR) {
436 ALOGD("calling lock in state: %d", state);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700437 *aidl_return = static_cast<int32_t>(ResponseCode(state));
438 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700439 }
440
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700441 mKeyStore->getEnforcementPolicy().set_device_locked(true, userId);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700442 mKeyStore->lock(userId);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700443 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
444 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700445}
446
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700447Status KeyStoreService::unlock(int32_t userId, const String16& pw, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700448 if (!checkBinderPermission(P_UNLOCK)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700449 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
450 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700451 }
452
453 State state = mKeyStore->getState(userId);
454 if (state != ::STATE_LOCKED) {
455 switch (state) {
456 case ::STATE_NO_ERROR:
457 ALOGI("calling unlock when already unlocked, ignoring.");
458 break;
459 case ::STATE_UNINITIALIZED:
460 ALOGE("unlock called on uninitialized keystore.");
461 break;
462 default:
463 ALOGE("unlock called on keystore in unknown state: %d", state);
464 break;
465 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700466 *aidl_return = static_cast<int32_t>(ResponseCode(state));
467 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700468 }
469
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700470 mKeyStore->getEnforcementPolicy().set_device_locked(false, userId);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700471 const String8 password8(pw);
472 // read master key, decrypt with password, initialize mMasterKey*.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700473 *aidl_return = static_cast<int32_t>(mKeyStore->readMasterKey(password8, userId));
474 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700475}
476
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700477Status KeyStoreService::isEmpty(int32_t userId, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700478 if (!checkBinderPermission(P_IS_EMPTY)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700479 *aidl_return = static_cast<int32_t>(false);
480 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700481 }
482
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700483 *aidl_return = static_cast<int32_t>(mKeyStore->isEmpty(userId));
484 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700485}
486
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700487Status KeyStoreService::grant(const String16& name, int32_t granteeUid,
488 ::android::String16* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700489 uid_t callingUid = IPCThreadState::self()->getCallingUid();
Bo Zhu91de6db2018-03-20 12:52:13 -0700490 auto result =
491 checkBinderPermissionAndKeystoreState(P_GRANT, /*targetUid=*/-1, /*checkUnlocked=*/false);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100492 if (!result.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700493 *aidl_return = String16();
494 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700495 }
496
497 String8 name8(name);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700498 auto lockedEntry = mKeyStore->getLockedBlobEntryIfExists(name8.string(), callingUid);
499 if (!lockedEntry) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700500 *aidl_return = String16();
501 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700502 }
503
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700504 *aidl_return = String16(mKeyStore->addGrant(lockedEntry, granteeUid).c_str());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700505 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700506}
507
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700508Status KeyStoreService::ungrant(const String16& name, int32_t granteeUid, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700509 uid_t callingUid = IPCThreadState::self()->getCallingUid();
Bo Zhu91de6db2018-03-20 12:52:13 -0700510 KeyStoreServiceReturnCode result =
511 checkBinderPermissionAndKeystoreState(P_GRANT, /*targetUid=*/-1, /*checkUnlocked=*/false);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100512 if (!result.isOk()) {
Branden Archer70080742018-11-20 11:04:11 -0800513 *aidl_return = result.getErrorCode();
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700514 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700515 }
516
517 String8 name8(name);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700518
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700519 auto lockedEntry = mKeyStore->getLockedBlobEntryIfExists(name8.string(), callingUid);
520 if (!lockedEntry) {
521 *aidl_return = static_cast<int32_t>(ResponseCode::KEY_NOT_FOUND);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700522 }
523
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700524 *aidl_return = mKeyStore->removeGrant(lockedEntry, granteeUid);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700525 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700526}
527
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700528Status KeyStoreService::getmtime(const String16& name, int32_t uid, int64_t* time) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700529 uid_t targetUid = getEffectiveUid(uid);
530 if (!checkBinderPermission(P_GET, targetUid)) {
531 ALOGW("permission denied for %d: getmtime", targetUid);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700532 *time = -1L;
533 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700534 }
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700535 String8 name8(name);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700536
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700537 auto lockedEntry = mKeyStore->getLockedBlobEntryIfExists(name8.string(), targetUid);
538 if (!lockedEntry) {
539 ALOGW("could not access key with alias %s for getmtime", name8.string());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700540 *time = -1L;
541 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700542 }
543
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700544 std::string filename = lockedEntry->getKeyBlobPath();
545
546 int fd = TEMP_FAILURE_RETRY(open(filename.c_str(), O_NOFOLLOW, O_RDONLY));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700547 if (fd < 0) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700548 ALOGW("could not open %s for getmtime", filename.c_str());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700549 *time = -1L;
550 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700551 }
552
553 struct stat s;
554 int ret = fstat(fd, &s);
555 close(fd);
556 if (ret == -1) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700557 ALOGW("could not stat %s for getmtime", filename.c_str());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700558 *time = -1L;
559 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700560 }
561
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700562 *time = static_cast<int64_t>(s.st_mtime);
563 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700564}
565
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700566Status KeyStoreService::is_hardware_backed(const String16& keyType, int32_t* aidl_return) {
567 *aidl_return = static_cast<int32_t>(mKeyStore->isHardwareBacked(keyType) ? 1 : 0);
568 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700569}
570
Janis Danisevskis265435f2018-11-16 14:10:46 -0800571Status KeyStoreService::clear_uid(int64_t targetUid64, int32_t* _aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700572 uid_t targetUid = getEffectiveUid(targetUid64);
573 if (!checkBinderPermissionSelfOrSystem(P_CLEAR_UID, targetUid)) {
Janis Danisevskis265435f2018-11-16 14:10:46 -0800574 return AIDL_RETURN(ResponseCode::PERMISSION_DENIED);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700575 }
Rubin Xu7675c9f2017-03-15 19:26:52 +0000576 ALOGI("clear_uid %" PRId64, targetUid64);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700577
Janis Danisevskisaf7783f2017-09-21 11:29:47 -0700578 mKeyStore->removeAllGrantsToUid(targetUid);
579
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700580 ResponseCode rc;
581 std::list<LockedKeyBlobEntry> entries;
Janis Danisevskis265435f2018-11-16 14:10:46 -0800582 auto userDirName = mKeyStore->getUserStateDB().getUserStateByUid(targetUid)->getUserDirName();
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700583
584 // list has a fence making sure no workers are modifying blob files before iterating the
585 // data base. All returned entries are locked.
586 std::tie(rc, entries) = LockedKeyBlobEntry::list(
Janis Danisevskis265435f2018-11-16 14:10:46 -0800587 userDirName, [&](uid_t uid, const std::string&) -> bool { return uid == targetUid; });
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700588
589 if (rc != ResponseCode::NO_ERROR) {
Janis Danisevskis265435f2018-11-16 14:10:46 -0800590 return AIDL_RETURN(rc);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700591 }
592
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700593 for (LockedKeyBlobEntry& lockedEntry : entries) {
Rubin Xu85c85e92017-04-26 20:07:30 +0100594 if (get_app_id(targetUid) == AID_SYSTEM) {
595 Blob keyBlob;
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700596 Blob charBlob;
597 std::tie(rc, keyBlob, charBlob) = mKeyStore->get(lockedEntry);
598 if (rc == ResponseCode::NO_ERROR && keyBlob.isCriticalToDeviceEncryption()) {
Rubin Xu85c85e92017-04-26 20:07:30 +0100599 // Do not clear keys critical to device encryption under system uid.
600 continue;
601 }
602 }
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700603 mKeyStore->del(lockedEntry);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700604 }
Janis Danisevskis265435f2018-11-16 14:10:46 -0800605 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700606}
607
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600608Status KeyStoreService::addRngEntropy(
609 const ::android::sp<::android::security::keystore::IKeystoreResponseCallback>& cb,
610 const ::std::vector<uint8_t>& entropy, int32_t flags, int32_t* _aidl_return) {
Janis Danisevskisc1460142017-12-18 16:48:46 -0800611 auto device = mKeyStore->getDevice(flagsToSecurityLevel(flags));
612 if (!device) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600613 return AIDL_RETURN(ErrorCode::HARDWARE_TYPE_UNAVAILABLE);
Janis Danisevskisc1460142017-12-18 16:48:46 -0800614 }
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700615
Janis Danisevskisa359c672019-03-14 17:15:06 -0700616 device->addRngEntropy(entropy, [device, cb](Return<ErrorCode> rc) {
617 cb->onFinished(KeyStoreServiceReturnCode(KS_HANDLE_HIDL_ERROR(device, rc)));
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600618 });
619
620 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700621}
622
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600623Status KeyStoreService::generateKey(
624 const ::android::sp<::android::security::keystore::IKeystoreKeyCharacteristicsCallback>& cb,
625 const String16& name, const KeymasterArguments& params, const ::std::vector<uint8_t>& entropy,
626 int uid, int flags, int32_t* _aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700627 uid = getEffectiveUid(uid);
Pavel Grafovff311b42018-01-24 20:34:37 +0000628 auto logOnScopeExit = android::base::make_scope_guard([&] {
629 if (__android_log_security()) {
630 android_log_event_list(SEC_TAG_AUTH_KEY_GENERATED)
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600631 << int32_t(*_aidl_return == static_cast<int32_t>(ResponseCode::NO_ERROR))
Pavel Grafovff311b42018-01-24 20:34:37 +0000632 << String8(name) << int32_t(uid) << LOG_ID_SECURITY;
633 }
634 });
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100635 KeyStoreServiceReturnCode rc =
636 checkBinderPermissionAndKeystoreState(P_INSERT, uid, flags & KEYSTORE_FLAG_ENCRYPTED);
637 if (!rc.isOk()) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600638 return AIDL_RETURN(rc);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700639 }
Rubin Xu67899de2017-04-21 19:15:13 +0100640 if ((flags & KEYSTORE_FLAG_CRITICAL_TO_DEVICE_ENCRYPTION) && get_app_id(uid) != AID_SYSTEM) {
641 ALOGE("Non-system uid %d cannot set FLAG_CRITICAL_TO_DEVICE_ENCRYPTION", uid);
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600642 return AIDL_RETURN(ResponseCode::PERMISSION_DENIED);
Rubin Xu67899de2017-04-21 19:15:13 +0100643 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700644
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700645 if (containsTag(params.getParameters(), Tag::INCLUDE_UNIQUE_ID)) {
Max Bires36ae17f2019-11-12 21:34:24 +0000646 if (!checkBinderPermission(P_GEN_UNIQUE_ID)) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600647 return AIDL_RETURN(ResponseCode::PERMISSION_DENIED);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700648 }
Shawn Willdene2a7b522017-04-11 09:27:40 -0600649 }
650
Janis Danisevskisc1460142017-12-18 16:48:46 -0800651 SecurityLevel securityLevel = flagsToSecurityLevel(flags);
652 auto dev = mKeyStore->getDevice(securityLevel);
653 if (!dev) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600654 return AIDL_RETURN(ErrorCode::HARDWARE_TYPE_UNAVAILABLE);
Janis Danisevskisc1460142017-12-18 16:48:46 -0800655 }
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400656
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100657 String8 name8(name);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700658 auto lockedEntry = mKeyStore->getLockedBlobEntryIfNotExists(name8.string(), uid);
659 if (!lockedEntry) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600660 return AIDL_RETURN(ResponseCode::KEY_ALREADY_EXISTS);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100661 }
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400662
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700663 logOnScopeExit.Disable();
664
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600665 dev->generateKey(
666 std::move(lockedEntry), params.getParameters(), entropy, flags,
667 [cb, uid, name](KeyStoreServiceReturnCode rc, KeyCharacteristics keyCharacteristics) {
668 if (__android_log_security()) {
669 android_log_event_list(SEC_TAG_AUTH_KEY_GENERATED)
670 << rc.isOk() << String8(name) << int32_t(uid) << LOG_ID_SECURITY;
671 }
672 cb->onFinished(rc,
673 android::security::keymaster::KeyCharacteristics(keyCharacteristics));
674 });
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700675
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600676 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700677}
678
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700679Status KeyStoreService::getKeyCharacteristics(
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600680 const ::android::sp<::android::security::keystore::IKeystoreKeyCharacteristicsCallback>& cb,
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700681 const String16& name, const ::android::security::keymaster::KeymasterBlob& clientId,
Janis Danisevskis64ec1fe2018-02-26 16:47:21 -0800682 const ::android::security::keymaster::KeymasterBlob& appData, int32_t uid,
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600683 int32_t* _aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700684
685 uid_t targetUid = getEffectiveUid(uid);
686 uid_t callingUid = IPCThreadState::self()->getCallingUid();
687 if (!is_granted_to(callingUid, targetUid)) {
688 ALOGW("uid %d not permitted to act for uid %d in getKeyCharacteristics", callingUid,
689 targetUid);
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600690 return AIDL_RETURN(ResponseCode::PERMISSION_DENIED);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700691 }
692
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700693 String8 name8(name);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700694
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700695 ResponseCode rc;
696 Blob keyBlob;
697 Blob charBlob;
698 LockedKeyBlobEntry lockedEntry;
Janis Danisevskisd714a672017-09-01 14:31:36 -0700699
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700700 std::tie(rc, keyBlob, charBlob, lockedEntry) =
701 mKeyStore->getKeyForName(name8, targetUid, TYPE_KEYMASTER_10);
702
703 if (rc != ResponseCode::NO_ERROR) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600704 return AIDL_RETURN(rc);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700705 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100706
Janis Danisevskisc1460142017-12-18 16:48:46 -0800707 auto dev = mKeyStore->getDevice(keyBlob);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700708 if (!dev) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600709 return AIDL_RETURN(ResponseCode::SYSTEM_ERROR);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100710 }
711
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700712 // If the charBlob is up to date, it simply moves the argument blobs to the returned blobs
713 // and extracts the characteristics on the way. Otherwise it updates the cache file with data
714 // from keymaster. It may also upgrade the key blob.
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700715 dev->getKeyCharacteristics(
716 std::move(lockedEntry), clientId.getData(), appData.getData(), std::move(keyBlob),
717 std::move(charBlob),
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600718 [cb](KeyStoreServiceReturnCode rc, KeyCharacteristics keyCharacteristics) {
719 cb->onFinished(rc,
720 android::security::keymaster::KeyCharacteristics(keyCharacteristics));
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700721 });
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100722
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600723 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700724}
725
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600726Status KeyStoreService::importKey(
727 const ::android::sp<::android::security::keystore::IKeystoreKeyCharacteristicsCallback>& cb,
728 const String16& name, const KeymasterArguments& params, int32_t format,
729 const ::std::vector<uint8_t>& keyData, int uid, int flags, int32_t* _aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700730 uid = getEffectiveUid(uid);
Pavel Grafovff311b42018-01-24 20:34:37 +0000731 auto logOnScopeExit = android::base::make_scope_guard([&] {
732 if (__android_log_security()) {
733 android_log_event_list(SEC_TAG_KEY_IMPORTED)
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600734 << int32_t(*_aidl_return == static_cast<int32_t>(ResponseCode::NO_ERROR))
Pavel Grafovff311b42018-01-24 20:34:37 +0000735 << String8(name) << int32_t(uid) << LOG_ID_SECURITY;
736 }
737 });
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100738 KeyStoreServiceReturnCode rc =
739 checkBinderPermissionAndKeystoreState(P_INSERT, uid, flags & KEYSTORE_FLAG_ENCRYPTED);
740 if (!rc.isOk()) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700741 LOG(ERROR) << "permissission denied";
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600742 return AIDL_RETURN(rc);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700743 }
Rubin Xu67899de2017-04-21 19:15:13 +0100744 if ((flags & KEYSTORE_FLAG_CRITICAL_TO_DEVICE_ENCRYPTION) && get_app_id(uid) != AID_SYSTEM) {
745 ALOGE("Non-system uid %d cannot set FLAG_CRITICAL_TO_DEVICE_ENCRYPTION", uid);
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600746 return AIDL_RETURN(ResponseCode::PERMISSION_DENIED);
Rubin Xu67899de2017-04-21 19:15:13 +0100747 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700748
Janis Danisevskisc1460142017-12-18 16:48:46 -0800749 SecurityLevel securityLevel = flagsToSecurityLevel(flags);
750 auto dev = mKeyStore->getDevice(securityLevel);
751 if (!dev) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700752 LOG(ERROR) << "importKey - cound not get keymaster device";
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600753 return AIDL_RETURN(ErrorCode::HARDWARE_TYPE_UNAVAILABLE);
Janis Danisevskisc1460142017-12-18 16:48:46 -0800754 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700755
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700756 String8 name8(name);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700757 auto lockedEntry = mKeyStore->getLockedBlobEntryIfNotExists(name8.string(), uid);
758 if (!lockedEntry) {
759 LOG(ERROR) << "importKey - key: " << name8.string() << " " << int(uid)
760 << " already exists.";
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600761 return AIDL_RETURN(ResponseCode::KEY_ALREADY_EXISTS);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400762 }
Janis Danisevskis4a1da2f2018-03-26 15:02:38 -0700763
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700764 logOnScopeExit.Disable();
Janis Danisevskis4a1da2f2018-03-26 15:02:38 -0700765
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600766 dev->importKey(
767 std::move(lockedEntry), params.getParameters(), KeyFormat(format), keyData, flags,
768 [cb, uid, name](KeyStoreServiceReturnCode rc, KeyCharacteristics keyCharacteristics) {
769 if (__android_log_security()) {
770 android_log_event_list(SEC_TAG_KEY_IMPORTED)
771 << rc.isOk() << String8(name) << int32_t(uid) << LOG_ID_SECURITY;
772 }
773 cb->onFinished(rc,
774 android::security::keymaster::KeyCharacteristics(keyCharacteristics));
775 });
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400776
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600777 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700778}
779
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600780Status KeyStoreService::exportKey(
781 const ::android::sp<::android::security::keystore::IKeystoreExportKeyCallback>& cb,
782 const String16& name, int32_t format,
783 const ::android::security::keymaster::KeymasterBlob& clientId,
784 const ::android::security::keymaster::KeymasterBlob& appData, int32_t uid,
785 int32_t* _aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700786
787 uid_t targetUid = getEffectiveUid(uid);
788 uid_t callingUid = IPCThreadState::self()->getCallingUid();
789 if (!is_granted_to(callingUid, targetUid)) {
790 ALOGW("uid %d not permitted to act for uid %d in exportKey", callingUid, targetUid);
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600791 return AIDL_RETURN(ResponseCode::PERMISSION_DENIED);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700792 }
793
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700794 String8 name8(name);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700795
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700796 KeyStoreServiceReturnCode rc;
797 Blob keyBlob;
798 Blob charBlob;
799 LockedKeyBlobEntry lockedEntry;
800
801 std::tie(rc, keyBlob, charBlob, lockedEntry) =
802 mKeyStore->getKeyForName(name8, targetUid, TYPE_KEYMASTER_10);
Janis Danisevskis3cf85322018-11-19 13:37:49 -0800803 if (!rc.isOk()) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600804 return AIDL_RETURN(rc);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700805 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100806
Janis Danisevskisc1460142017-12-18 16:48:46 -0800807 auto dev = mKeyStore->getDevice(keyBlob);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100808
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700809 dev->exportKey(std::move(lockedEntry), KeyFormat(format), clientId.getData(), appData.getData(),
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600810 std::move(keyBlob), std::move(charBlob),
811 [cb](ExportResult exportResult) { cb->onFinished(exportResult); });
Ji Wang2c142312016-10-14 17:21:10 +0800812
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600813 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700814}
815
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600816Status KeyStoreService::begin(const sp<IKeystoreOperationResultCallback>& cb,
817 const sp<IBinder>& appToken, const String16& name, int32_t purpose,
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700818 bool pruneable, const KeymasterArguments& params,
819 const ::std::vector<uint8_t>& entropy, int32_t uid,
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600820 int32_t* _aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700821 uid_t callingUid = IPCThreadState::self()->getCallingUid();
822 uid_t targetUid = getEffectiveUid(uid);
823 if (!is_granted_to(callingUid, targetUid)) {
824 ALOGW("uid %d not permitted to act for uid %d in begin", callingUid, targetUid);
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600825 return AIDL_RETURN(ResponseCode::PERMISSION_DENIED);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700826 }
827 if (!pruneable && get_app_id(callingUid) != AID_SYSTEM) {
828 ALOGE("Non-system uid %d trying to start non-pruneable operation", callingUid);
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600829 return AIDL_RETURN(ResponseCode::PERMISSION_DENIED);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700830 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700831 if (!checkAllowedOperationParams(params.getParameters())) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600832 return AIDL_RETURN(ErrorCode::INVALID_ARGUMENT);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700833 }
Shawn Willden0329a822017-12-04 13:55:14 -0700834
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700835 String8 name8(name);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700836 Blob keyBlob;
837 Blob charBlob;
838 LockedKeyBlobEntry lockedEntry;
839 ResponseCode rc;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100840
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700841 std::tie(rc, keyBlob, charBlob, lockedEntry) =
842 mKeyStore->getKeyForName(name8, targetUid, TYPE_KEYMASTER_10);
843
844 if (rc == ResponseCode::LOCKED && keyBlob.isSuperEncrypted()) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600845 return AIDL_RETURN(ErrorCode::KEY_USER_NOT_AUTHENTICATED);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700846 }
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600847 if (rc != ResponseCode::NO_ERROR) return AIDL_RETURN(rc);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700848
Janis Danisevskisc1460142017-12-18 16:48:46 -0800849 auto dev = mKeyStore->getDevice(keyBlob);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700850 AuthorizationSet opParams = params.getParameters();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100851
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700852 dev->begin(std::move(lockedEntry), appToken, std::move(keyBlob), std::move(charBlob), pruneable,
853 static_cast<KeyPurpose>(purpose), std::move(opParams), entropy,
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600854 [this, cb, dev](OperationResult result_) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700855 if (result_.resultCode.isOk() ||
856 result_.resultCode == ResponseCode::OP_AUTH_NEEDED) {
Janis Danisevskisbec89992019-08-14 13:42:19 -0700857 mKeyStore->addOperationDevice(result_.token, dev);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700858 }
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600859 cb->onFinished(result_);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700860 });
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400861
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600862 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700863}
864
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600865Status KeyStoreService::update(const ::android::sp<IKeystoreOperationResultCallback>& cb,
866 const ::android::sp<::android::IBinder>& token,
867 const ::android::security::keymaster::KeymasterArguments& params,
868 const ::std::vector<uint8_t>& input, int32_t* _aidl_return) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700869 if (!checkAllowedOperationParams(params.getParameters())) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600870 return AIDL_RETURN(ErrorCode::INVALID_ARGUMENT);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700871 }
Shawn Willdenda6dcc32017-12-03 14:56:05 -0700872
Janis Danisevskisbec89992019-08-14 13:42:19 -0700873 auto dev = mKeyStore->getOperationDevice(token);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700874 if (!dev) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600875 return AIDL_RETURN(ErrorCode::INVALID_OPERATION_HANDLE);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700876 }
Shawn Willdenda6dcc32017-12-03 14:56:05 -0700877
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600878 dev->update(token, params.getParameters(), input, [this, cb, token](OperationResult result_) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700879 if (!result_.resultCode.isOk()) {
Janis Danisevskisbec89992019-08-14 13:42:19 -0700880 mKeyStore->removeOperationDevice(token);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100881 }
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600882 cb->onFinished(result_);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700883 });
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100884
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600885 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700886}
887
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600888Status KeyStoreService::finish(const ::android::sp<IKeystoreOperationResultCallback>& cb,
889 const ::android::sp<::android::IBinder>& token,
890 const ::android::security::keymaster::KeymasterArguments& params,
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700891 const ::std::vector<uint8_t>& signature,
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600892 const ::std::vector<uint8_t>& entropy, int32_t* _aidl_return) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700893 if (!checkAllowedOperationParams(params.getParameters())) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600894 return AIDL_RETURN(ErrorCode::INVALID_ARGUMENT);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700895 }
Shawn Willdenda6dcc32017-12-03 14:56:05 -0700896
Janis Danisevskisbec89992019-08-14 13:42:19 -0700897 auto dev = mKeyStore->getOperationDevice(token);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700898 if (!dev) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600899 return AIDL_RETURN(ErrorCode::INVALID_OPERATION_HANDLE);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700900 }
901
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700902 dev->finish(token, params.getParameters(), {}, signature, entropy,
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600903 [this, cb, token](OperationResult result_) {
Janis Danisevskis8c4c1d62019-10-04 11:01:54 -0700904 mKeyStore->removeOperationDevice(token);
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600905 cb->onFinished(result_);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700906 });
Shawn Willdenda6dcc32017-12-03 14:56:05 -0700907
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600908 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700909}
910
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600911Status KeyStoreService::abort(const ::android::sp<IKeystoreResponseCallback>& cb,
912 const ::android::sp<::android::IBinder>& token,
913 int32_t* _aidl_return) {
Janis Danisevskisbec89992019-08-14 13:42:19 -0700914 auto dev = mKeyStore->getOperationDevice(token);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700915 if (!dev) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600916 return AIDL_RETURN(ErrorCode::INVALID_OPERATION_HANDLE);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700917 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100918
Janis Danisevskisbec89992019-08-14 13:42:19 -0700919 dev->abort(token, [this, cb, token](KeyStoreServiceReturnCode rc) {
920 mKeyStore->removeOperationDevice(token);
921 cb->onFinished(rc);
922 });
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700923
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600924 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700925}
926
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700927Status KeyStoreService::addAuthToken(const ::std::vector<uint8_t>& authTokenAsVector,
Brian Youngccb492d2018-02-22 23:36:01 +0000928 int32_t* aidl_return) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700929
Shawn Willdend3ed3a22017-03-28 00:39:16 +0000930 // TODO(swillden): When gatekeeper and fingerprint are ready, this should be updated to
931 // receive a HardwareAuthToken, rather than an opaque byte array.
932
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700933 if (!checkBinderPermission(P_ADD_AUTH)) {
934 ALOGW("addAuthToken: permission denied for %d", IPCThreadState::self()->getCallingUid());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700935 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
936 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700937 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700938 if (authTokenAsVector.size() != sizeof(hw_auth_token_t)) {
Branden Archer70080742018-11-20 11:04:11 -0800939 *aidl_return = KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT).getErrorCode();
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700940 return Status::ok();
Shawn Willdend3ed3a22017-03-28 00:39:16 +0000941 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100942
Shawn Willdend3ed3a22017-03-28 00:39:16 +0000943 hw_auth_token_t authToken;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700944 memcpy(reinterpret_cast<void*>(&authToken), authTokenAsVector.data(), sizeof(hw_auth_token_t));
Shawn Willdend3ed3a22017-03-28 00:39:16 +0000945 if (authToken.version != 0) {
Branden Archer70080742018-11-20 11:04:11 -0800946 *aidl_return = KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT).getErrorCode();
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700947 return Status::ok();
Shawn Willdend3ed3a22017-03-28 00:39:16 +0000948 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100949
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700950 mKeyStore->getAuthTokenTable().AddAuthenticationToken(
951 hidlVec2AuthToken(hidl_vec<uint8_t>(authTokenAsVector)));
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700952 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
953 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700954}
955
Eran Messerid9f8ae52018-10-24 13:54:00 +0100956bool isDeviceIdAttestationRequested(const KeymasterArguments& params) {
Chih-Hung Hsiehb81e68b2018-07-13 11:37:45 -0700957 const hardware::hidl_vec<KeyParameter>& paramsVec = params.getParameters();
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700958 for (size_t i = 0; i < paramsVec.size(); ++i) {
959 switch (paramsVec[i].tag) {
Shawn Willdene2a7b522017-04-11 09:27:40 -0600960 case Tag::ATTESTATION_ID_BRAND:
961 case Tag::ATTESTATION_ID_DEVICE:
Shawn Willdene2a7b522017-04-11 09:27:40 -0600962 case Tag::ATTESTATION_ID_MANUFACTURER:
Shawn Willdene2a7b522017-04-11 09:27:40 -0600963 case Tag::ATTESTATION_ID_MODEL:
964 case Tag::ATTESTATION_ID_PRODUCT:
Rubin Xu1a203e32018-05-08 14:25:21 +0100965 case Tag::ATTESTATION_ID_IMEI:
966 case Tag::ATTESTATION_ID_MEID:
967 case Tag::ATTESTATION_ID_SERIAL:
Eran Messerid9f8ae52018-10-24 13:54:00 +0100968 return true;
Rubin Xu1a203e32018-05-08 14:25:21 +0100969 default:
970 continue;
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +0100971 }
972 }
Eran Messerid9f8ae52018-10-24 13:54:00 +0100973 return false;
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +0100974}
975
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600976Status KeyStoreService::attestKey(
977 const ::android::sp<::android::security::keystore::IKeystoreCertificateChainCallback>& cb,
978 const String16& name, const KeymasterArguments& params, int32_t* _aidl_return) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700979 // check null output if method signature is updated and return ErrorCode::OUTPUT_PARAMETER_NULL
980 if (!checkAllowedOperationParams(params.getParameters())) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600981 return AIDL_RETURN(ErrorCode::INVALID_ARGUMENT);
Shawn Willden50eb1b22016-01-21 12:41:23 -0700982 }
983
Eran Messerie2c34152017-12-21 21:01:22 +0000984 uid_t callingUid = IPCThreadState::self()->getCallingUid();
985
Eran Messerid9f8ae52018-10-24 13:54:00 +0100986 if (isDeviceIdAttestationRequested(params) && (get_app_id(callingUid) != AID_SYSTEM)) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600987 return AIDL_RETURN(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +0100988 }
989
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700990 AuthorizationSet mutableParams = params.getParameters();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +0200991 KeyStoreServiceReturnCode rc = updateParamsForAttestation(callingUid, &mutableParams);
992 if (!rc.isOk()) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600993 return AIDL_RETURN(rc);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +0200994 }
Shawn Willdene2a7b522017-04-11 09:27:40 -0600995
Shawn Willden50eb1b22016-01-21 12:41:23 -0700996 String8 name8(name);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700997 Blob keyBlob;
998 Blob charBlob;
999 LockedKeyBlobEntry lockedEntry;
Shawn Willden50eb1b22016-01-21 12:41:23 -07001000
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001001 std::tie(rc, keyBlob, charBlob, lockedEntry) =
1002 mKeyStore->getKeyForName(name8, callingUid, TYPE_KEYMASTER_10);
1003
Janis Danisevskis9dff56c2019-07-10 14:08:06 -07001004 if (!rc.isOk()) {
1005 return AIDL_RETURN(rc);
1006 }
1007
Janis Danisevskisc1460142017-12-18 16:48:46 -08001008 auto dev = mKeyStore->getDevice(keyBlob);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001009 auto hidlKey = blob2hidlVec(keyBlob);
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001010 dev->attestKey(
1011 std::move(hidlKey), mutableParams.hidl_data(),
Janis Danisevskisa359c672019-03-14 17:15:06 -07001012 [dev, cb](Return<void> rc,
1013 std::tuple<ErrorCode, hidl_vec<hidl_vec<uint8_t>>>&& hidlResult) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001014 auto& [ret, certChain] = hidlResult;
1015 if (!rc.isOk()) {
1016 cb->onFinished(KeyStoreServiceReturnCode(ResponseCode::SYSTEM_ERROR), {});
1017 } else if (ret != ErrorCode::OK) {
Janis Danisevskisa359c672019-03-14 17:15:06 -07001018 dev->logIfKeymasterVendorError(ret);
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001019 cb->onFinished(KeyStoreServiceReturnCode(ret), {});
1020 } else {
1021 cb->onFinished(KeyStoreServiceReturnCode(ret),
1022 KeymasterCertificateChain(std::move(certChain)));
1023 }
1024 });
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001025
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001026 return AIDL_RETURN(ResponseCode::NO_ERROR);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001027}
1028
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001029// My IDE defines "CAPTURE_MOVE(x) x" because it does not understand generalized lambda captures.
1030// It should never be redefined by a build system though.
1031#ifndef CAPTURE_MOVE
1032#define CAPTURE_MOVE(x) x = std::move(x)
1033#endif
1034
1035Status KeyStoreService::attestDeviceIds(
1036 const ::android::sp<::android::security::keystore::IKeystoreCertificateChainCallback>& cb,
1037 const KeymasterArguments& params, int32_t* _aidl_return) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001038 // check null output if method signature is updated and return ErrorCode::OUTPUT_PARAMETER_NULL
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001039
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001040 if (!checkAllowedOperationParams(params.getParameters())) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001041 return AIDL_RETURN(ErrorCode::INVALID_ARGUMENT);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001042 }
1043
1044 if (!isDeviceIdAttestationRequested(params)) {
1045 // There is an attestKey() method for attesting keys without device ID attestation.
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001046 return AIDL_RETURN(ErrorCode::INVALID_ARGUMENT);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001047 }
1048
1049 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1050 sp<IBinder> binder = defaultServiceManager()->getService(String16("permission"));
Yi Konge353f252018-07-30 01:38:39 -07001051 if (binder == nullptr) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001052 return AIDL_RETURN(ErrorCode::CANNOT_ATTEST_IDS);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001053 }
1054 if (!interface_cast<IPermissionController>(binder)->checkPermission(
1055 String16("android.permission.READ_PRIVILEGED_PHONE_STATE"),
1056 IPCThreadState::self()->getCallingPid(), callingUid)) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001057 return AIDL_RETURN(ErrorCode::CANNOT_ATTEST_IDS);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001058 }
1059
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001060 AuthorizationSet mutableParams = params.getParameters();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001061 KeyStoreServiceReturnCode rc = updateParamsForAttestation(callingUid, &mutableParams);
1062 if (!rc.isOk()) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001063 return AIDL_RETURN(rc);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001064 }
1065
1066 // Generate temporary key.
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001067 auto dev = mKeyStore->getDevice(SecurityLevel::TRUSTED_ENVIRONMENT);
Janis Danisevskisc1460142017-12-18 16:48:46 -08001068
Shawn Willden70c1a782018-07-11 15:13:20 -06001069 if (!dev) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001070 return AIDL_RETURN(ResponseCode::SYSTEM_ERROR);
Janis Danisevskisc1460142017-12-18 16:48:46 -08001071 }
1072
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001073
1074 AuthorizationSet keyCharacteristics;
1075 keyCharacteristics.push_back(TAG_PURPOSE, KeyPurpose::VERIFY);
1076 keyCharacteristics.push_back(TAG_ALGORITHM, Algorithm::EC);
1077 keyCharacteristics.push_back(TAG_DIGEST, Digest::SHA_2_256);
1078 keyCharacteristics.push_back(TAG_NO_AUTH_REQUIRED);
1079 keyCharacteristics.push_back(TAG_EC_CURVE, EcCurve::P_256);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001080
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001081 std::promise<KeyStoreServiceReturnCode> resultPromise;
1082 auto resultFuture = resultPromise.get_future();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001083
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001084 dev->generateKey(
1085 keyCharacteristics.hidl_data(),
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001086 [cb, dev, CAPTURE_MOVE(mutableParams)](
1087 Return<void> rc,
1088 std::tuple<ErrorCode, ::std::vector<uint8_t>, KeyCharacteristics>&& hidlResult) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001089 auto& [ret, hidlKeyBlob_, dummyCharacteristics] = hidlResult;
1090 auto hidlKeyBlob = std::move(hidlKeyBlob_);
1091 if (!rc.isOk()) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001092 cb->onFinished(KeyStoreServiceReturnCode(ResponseCode::SYSTEM_ERROR), {});
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001093 return;
1094 }
1095 if (ret != ErrorCode::OK) {
Janis Danisevskisa359c672019-03-14 17:15:06 -07001096 dev->logIfKeymasterVendorError(ret);
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001097 cb->onFinished(KeyStoreServiceReturnCode(ret), {});
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001098 return;
1099 }
1100 dev->attestKey(
1101 hidlKeyBlob, mutableParams.hidl_data(),
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001102 [cb, dev,
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001103 hidlKeyBlob](Return<void> rc,
1104 std::tuple<ErrorCode, hidl_vec<hidl_vec<uint8_t>>>&& hidlResult) {
1105 auto& [ret, certChain] = hidlResult;
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001106 // schedule temp key for deletion
Janis Danisevskisa359c672019-03-14 17:15:06 -07001107 dev->deleteKey(std::move(hidlKeyBlob), [dev](Return<ErrorCode> rc) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001108 // log error but don't return an error
Janis Danisevskisa359c672019-03-14 17:15:06 -07001109 KS_HANDLE_HIDL_ERROR(dev, rc);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001110 });
1111 if (!rc.isOk()) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001112 cb->onFinished(KeyStoreServiceReturnCode(ResponseCode::SYSTEM_ERROR), {});
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001113 return;
1114 }
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001115 if (ret == ErrorCode::OK) {
1116 cb->onFinished(
1117 KeyStoreServiceReturnCode(ret),
1118 ::android::security::keymaster::KeymasterCertificateChain(certChain));
1119 } else {
Janis Danisevskisa359c672019-03-14 17:15:06 -07001120 dev->logIfKeymasterVendorError(ret);
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001121 cb->onFinished(KeyStoreServiceReturnCode(ret), {});
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001122 }
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001123 });
1124 });
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001125
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001126 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willden50eb1b22016-01-21 12:41:23 -07001127}
1128
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001129Status KeyStoreService::onDeviceOffBody(int32_t* aidl_return) {
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001130 // TODO(tuckeris): add permission check. This should be callable from ClockworkHome only.
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001131 mKeyStore->getAuthTokenTable().onDeviceOffBody();
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001132 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
1133 return Status::ok();
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001134}
1135
Janis Danisevskiscb9267d2017-12-19 16:27:52 -08001136Status KeyStoreService::importWrappedKey(
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001137 const ::android::sp<::android::security::keystore::IKeystoreKeyCharacteristicsCallback>& cb,
Janis Danisevskiscb9267d2017-12-19 16:27:52 -08001138 const ::android::String16& wrappedKeyAlias, const ::std::vector<uint8_t>& wrappedKey,
1139 const ::android::String16& wrappingKeyAlias, const ::std::vector<uint8_t>& maskingKey,
1140 const KeymasterArguments& params, int64_t rootSid, int64_t fingerprintSid,
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001141 int32_t* _aidl_return) {
Janis Danisevskiscb9267d2017-12-19 16:27:52 -08001142
1143 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1144
1145 if (!checkBinderPermission(P_INSERT, callingUid)) {
1146 return AIDL_RETURN(ResponseCode::PERMISSION_DENIED);
1147 }
1148
Janis Danisevskiscb9267d2017-12-19 16:27:52 -08001149 String8 wrappingKeyName8(wrappingKeyAlias);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001150
1151 KeyStoreServiceReturnCode rc;
1152 Blob wrappingKeyBlob;
1153 Blob wrappingCharBlob;
1154 LockedKeyBlobEntry wrappingLockedEntry;
1155
1156 std::tie(rc, wrappingKeyBlob, wrappingCharBlob, wrappingLockedEntry) =
1157 mKeyStore->getKeyForName(wrappingKeyName8, callingUid, TYPE_KEYMASTER_10);
Branden Archerd166a882018-11-20 10:56:48 -08001158 if (!rc.isOk()) {
Janis Danisevskiscb9267d2017-12-19 16:27:52 -08001159 return AIDL_RETURN(rc);
1160 }
1161
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001162 String8 wrappedKeyName8(wrappedKeyAlias);
1163 auto wrappedLockedEntry =
1164 mKeyStore->getLockedBlobEntryIfNotExists(wrappedKeyName8.string(), callingUid);
1165 if (!wrappedLockedEntry) {
1166 return AIDL_RETURN(ResponseCode::KEY_ALREADY_EXISTS);
1167 }
1168
Janis Danisevskiscb9267d2017-12-19 16:27:52 -08001169 SecurityLevel securityLevel = wrappingKeyBlob.getSecurityLevel();
1170 auto dev = mKeyStore->getDevice(securityLevel);
1171 if (!dev) {
1172 return AIDL_RETURN(ErrorCode::HARDWARE_TYPE_UNAVAILABLE);
1173 }
1174
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001175 dev->importWrappedKey(
1176 std::move(wrappingLockedEntry), std::move(wrappedLockedEntry), wrappedKey, maskingKey,
1177 params.getParameters(), std::move(wrappingKeyBlob), std::move(wrappingCharBlob), rootSid,
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001178 fingerprintSid, [cb](KeyStoreServiceReturnCode rc, KeyCharacteristics keyCharacteristics) {
1179 cb->onFinished(rc,
1180 ::android::security::keymaster::KeyCharacteristics(keyCharacteristics));
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001181 });
Janis Danisevskiscb9267d2017-12-19 16:27:52 -08001182
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001183 return AIDL_RETURN(ResponseCode::NO_ERROR);
Janis Danisevskiscb9267d2017-12-19 16:27:52 -08001184}
1185
David Zeuthenc6eb7cd2017-11-27 11:33:55 -05001186Status KeyStoreService::presentConfirmationPrompt(const sp<IBinder>& listener,
1187 const String16& promptText,
1188 const ::std::vector<uint8_t>& extraData,
1189 const String16& locale, int32_t uiOptionsAsFlags,
1190 int32_t* aidl_return) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001191 return mKeyStore->getConfirmationManager().presentConfirmationPrompt(
1192 listener, promptText, extraData, locale, uiOptionsAsFlags, aidl_return);
David Zeuthenc6eb7cd2017-11-27 11:33:55 -05001193}
1194
1195Status KeyStoreService::cancelConfirmationPrompt(const sp<IBinder>& listener,
1196 int32_t* aidl_return) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001197 return mKeyStore->getConfirmationManager().cancelConfirmationPrompt(listener, aidl_return);
David Zeuthenc6eb7cd2017-11-27 11:33:55 -05001198}
1199
David Zeuthen1a492312018-02-26 11:00:30 -05001200Status KeyStoreService::isConfirmationPromptSupported(bool* aidl_return) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001201 return mKeyStore->getConfirmationManager().isConfirmationPromptSupported(aidl_return);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001202}
1203
1204/**
1205 * Get the effective target uid for a binder operation that takes an
1206 * optional uid as the target.
1207 */
1208uid_t KeyStoreService::getEffectiveUid(int32_t targetUid) {
1209 if (targetUid == UID_SELF) {
1210 return IPCThreadState::self()->getCallingUid();
1211 }
1212 return static_cast<uid_t>(targetUid);
1213}
1214
1215/**
1216 * Check if the caller of the current binder method has the required
1217 * permission and if acting on other uids the grants to do so.
1218 */
1219bool KeyStoreService::checkBinderPermission(perm_t permission, int32_t targetUid) {
1220 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1221 pid_t spid = IPCThreadState::self()->getCallingPid();
Steven Moreland23115b02019-01-10 16:20:20 -08001222 const char* ssid = IPCThreadState::self()->getCallingSid();
1223 if (!has_permission(callingUid, permission, spid, ssid)) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001224 ALOGW("permission %s denied for %d", get_perm_label(permission), callingUid);
1225 return false;
1226 }
1227 if (!is_granted_to(callingUid, getEffectiveUid(targetUid))) {
1228 ALOGW("uid %d not granted to act for %d", callingUid, targetUid);
1229 return false;
1230 }
1231 return true;
1232}
1233
1234/**
1235 * Check if the caller of the current binder method has the required
1236 * permission and the target uid is the caller or the caller is system.
1237 */
1238bool KeyStoreService::checkBinderPermissionSelfOrSystem(perm_t permission, int32_t targetUid) {
1239 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1240 pid_t spid = IPCThreadState::self()->getCallingPid();
Steven Moreland23115b02019-01-10 16:20:20 -08001241 const char* ssid = IPCThreadState::self()->getCallingSid();
1242 if (!has_permission(callingUid, permission, spid, ssid)) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001243 ALOGW("permission %s denied for %d", get_perm_label(permission), callingUid);
1244 return false;
1245 }
1246 return getEffectiveUid(targetUid) == callingUid || callingUid == AID_SYSTEM;
1247}
1248
1249/**
1250 * Check if the caller of the current binder method has the required
1251 * permission or the target of the operation is the caller's uid. This is
1252 * for operation where the permission is only for cross-uid activity and all
1253 * uids are allowed to act on their own (ie: clearing all entries for a
1254 * given uid).
1255 */
1256bool KeyStoreService::checkBinderPermissionOrSelfTarget(perm_t permission, int32_t targetUid) {
1257 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1258 if (getEffectiveUid(targetUid) == callingUid) {
1259 return true;
1260 } else {
1261 return checkBinderPermission(permission, targetUid);
1262 }
1263}
1264
1265/**
1266 * Helper method to check that the caller has the required permission as
1267 * well as the keystore is in the unlocked state if checkUnlocked is true.
1268 *
1269 * Returns NO_ERROR on success, PERMISSION_DENIED on a permission error and
1270 * otherwise the state of keystore when not unlocked and checkUnlocked is
1271 * true.
1272 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001273KeyStoreServiceReturnCode
1274KeyStoreService::checkBinderPermissionAndKeystoreState(perm_t permission, int32_t targetUid,
1275 bool checkUnlocked) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001276 if (!checkBinderPermission(permission, targetUid)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001277 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001278 }
1279 State state = mKeyStore->getState(get_user_id(getEffectiveUid(targetUid)));
1280 if (checkUnlocked && !isKeystoreUnlocked(state)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001281 // All State values coincide with ResponseCodes
1282 return static_cast<ResponseCode>(state);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001283 }
1284
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001285 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001286}
1287
1288bool KeyStoreService::isKeystoreUnlocked(State state) {
1289 switch (state) {
1290 case ::STATE_NO_ERROR:
1291 return true;
1292 case ::STATE_UNINITIALIZED:
1293 case ::STATE_LOCKED:
1294 return false;
1295 }
1296 return false;
1297}
1298
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001299/**
Shawn Willden0329a822017-12-04 13:55:14 -07001300 * Check that all KeyParameters provided by the application are allowed. Any parameter that keystore
1301 * adds itself should be disallowed here.
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001302 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001303bool KeyStoreService::checkAllowedOperationParams(const hidl_vec<KeyParameter>& params) {
1304 for (size_t i = 0; i < params.size(); ++i) {
1305 switch (params[i].tag) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001306 case Tag::ATTESTATION_APPLICATION_ID:
Shawn Willdene2a7b522017-04-11 09:27:40 -06001307 case Tag::RESET_SINCE_ID_ROTATION:
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001308 return false;
1309 default:
1310 break;
1311 }
1312 }
1313 return true;
1314}
1315
Brian Young9a947d52018-02-23 18:03:14 +00001316Status KeyStoreService::onKeyguardVisibilityChanged(bool isShowing, int32_t userId,
1317 int32_t* aidl_return) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001318 mKeyStore->getEnforcementPolicy().set_device_locked(isShowing, userId);
Brian Young9a947d52018-02-23 18:03:14 +00001319 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
Brian Young9371e952018-02-23 18:03:14 +00001320
1321 return Status::ok();
1322}
1323
Shawn Willdene2a7b522017-04-11 09:27:40 -06001324} // namespace keystore