blob: 5adc199dbc7e1e186a703229694ec26ab72d81ba [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::onUserPasswordChanged(int32_t userId, const String16& password,
343 int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700344 if (!checkBinderPermission(P_PASSWORD)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700345 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
346 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700347 }
348
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700349 if (password.size() == 0) {
350 ALOGI("Secure lockscreen for user %d removed, deleting encrypted entries", userId);
351 mKeyStore->resetUser(userId, true);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700352 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
353 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700354 } else {
Pavel Grafovf9b53eb2019-02-06 17:16:21 +0000355 const String8 password8(password);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700356 switch (mKeyStore->getState(userId)) {
357 case ::STATE_UNINITIALIZED: {
358 // generate master key, encrypt with password, write to file,
359 // initialize mMasterKey*.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700360 *aidl_return = static_cast<int32_t>(mKeyStore->initializeUser(password8, userId));
361 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700362 }
363 case ::STATE_NO_ERROR: {
364 // rewrite master key with new password.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700365 *aidl_return = static_cast<int32_t>(mKeyStore->writeMasterKey(password8, userId));
366 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700367 }
368 case ::STATE_LOCKED: {
369 ALOGE("Changing user %d's password while locked, clearing old encryption", userId);
370 mKeyStore->resetUser(userId, true);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700371 *aidl_return = static_cast<int32_t>(mKeyStore->initializeUser(password8, userId));
372 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700373 }
374 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700375 *aidl_return = static_cast<int32_t>(ResponseCode::SYSTEM_ERROR);
376 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700377 }
378}
379
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700380Status KeyStoreService::onUserAdded(int32_t userId, int32_t parentId, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700381 if (!checkBinderPermission(P_USER_CHANGED)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700382 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
383 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700384 }
385
386 // Sanity check that the new user has an empty keystore.
387 if (!mKeyStore->isEmpty(userId)) {
388 ALOGW("New user %d's keystore not empty. Clearing old entries.", userId);
389 }
390 // Unconditionally clear the keystore, just to be safe.
391 mKeyStore->resetUser(userId, false);
392 if (parentId != -1) {
393 // This profile must share the same master key password as the parent profile. Because the
394 // password of the parent profile is not known here, the best we can do is copy the parent's
395 // master key and master key file. This makes this profile use the same master key as the
396 // parent profile, forever.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700397 *aidl_return = static_cast<int32_t>(mKeyStore->copyMasterKey(parentId, userId));
398 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700399 } else {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700400 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
401 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700402 }
403}
404
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700405Status KeyStoreService::onUserRemoved(int32_t userId, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700406 if (!checkBinderPermission(P_USER_CHANGED)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700407 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
408 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700409 }
410
411 mKeyStore->resetUser(userId, false);
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
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700416Status KeyStoreService::lock(int32_t userId, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700417 if (!checkBinderPermission(P_LOCK)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700418 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
419 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700420 }
421
422 State state = mKeyStore->getState(userId);
423 if (state != ::STATE_NO_ERROR) {
424 ALOGD("calling lock in state: %d", state);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700425 *aidl_return = static_cast<int32_t>(ResponseCode(state));
426 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700427 }
428
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700429 mKeyStore->getEnforcementPolicy().set_device_locked(true, userId);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700430 mKeyStore->lock(userId);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700431 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
432 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700433}
434
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700435Status KeyStoreService::unlock(int32_t userId, const String16& pw, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700436 if (!checkBinderPermission(P_UNLOCK)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700437 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
438 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700439 }
440
441 State state = mKeyStore->getState(userId);
442 if (state != ::STATE_LOCKED) {
443 switch (state) {
444 case ::STATE_NO_ERROR:
445 ALOGI("calling unlock when already unlocked, ignoring.");
446 break;
447 case ::STATE_UNINITIALIZED:
448 ALOGE("unlock called on uninitialized keystore.");
449 break;
450 default:
451 ALOGE("unlock called on keystore in unknown state: %d", state);
452 break;
453 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700454 *aidl_return = static_cast<int32_t>(ResponseCode(state));
455 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700456 }
457
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700458 mKeyStore->getEnforcementPolicy().set_device_locked(false, userId);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700459 const String8 password8(pw);
460 // read master key, decrypt with password, initialize mMasterKey*.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700461 *aidl_return = static_cast<int32_t>(mKeyStore->readMasterKey(password8, userId));
462 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700463}
464
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700465Status KeyStoreService::isEmpty(int32_t userId, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700466 if (!checkBinderPermission(P_IS_EMPTY)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700467 *aidl_return = static_cast<int32_t>(false);
468 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700469 }
470
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700471 *aidl_return = static_cast<int32_t>(mKeyStore->isEmpty(userId));
472 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700473}
474
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700475Status KeyStoreService::grant(const String16& name, int32_t granteeUid,
476 ::android::String16* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700477 uid_t callingUid = IPCThreadState::self()->getCallingUid();
Bo Zhu91de6db2018-03-20 12:52:13 -0700478 auto result =
479 checkBinderPermissionAndKeystoreState(P_GRANT, /*targetUid=*/-1, /*checkUnlocked=*/false);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100480 if (!result.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700481 *aidl_return = String16();
482 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700483 }
484
485 String8 name8(name);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700486 auto lockedEntry = mKeyStore->getLockedBlobEntryIfExists(name8.string(), callingUid);
487 if (!lockedEntry) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700488 *aidl_return = String16();
489 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700490 }
491
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700492 *aidl_return = String16(mKeyStore->addGrant(lockedEntry, granteeUid).c_str());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700493 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700494}
495
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700496Status KeyStoreService::ungrant(const String16& name, int32_t granteeUid, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700497 uid_t callingUid = IPCThreadState::self()->getCallingUid();
Bo Zhu91de6db2018-03-20 12:52:13 -0700498 KeyStoreServiceReturnCode result =
499 checkBinderPermissionAndKeystoreState(P_GRANT, /*targetUid=*/-1, /*checkUnlocked=*/false);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100500 if (!result.isOk()) {
Branden Archer70080742018-11-20 11:04:11 -0800501 *aidl_return = result.getErrorCode();
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700502 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700503 }
504
505 String8 name8(name);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700506
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700507 auto lockedEntry = mKeyStore->getLockedBlobEntryIfExists(name8.string(), callingUid);
508 if (!lockedEntry) {
509 *aidl_return = static_cast<int32_t>(ResponseCode::KEY_NOT_FOUND);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700510 }
511
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700512 *aidl_return = mKeyStore->removeGrant(lockedEntry, granteeUid);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700513 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700514}
515
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700516Status KeyStoreService::getmtime(const String16& name, int32_t uid, int64_t* time) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700517 uid_t targetUid = getEffectiveUid(uid);
518 if (!checkBinderPermission(P_GET, targetUid)) {
519 ALOGW("permission denied for %d: getmtime", targetUid);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700520 *time = -1L;
521 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700522 }
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700523 String8 name8(name);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700524
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700525 auto lockedEntry = mKeyStore->getLockedBlobEntryIfExists(name8.string(), targetUid);
526 if (!lockedEntry) {
527 ALOGW("could not access key with alias %s for getmtime", name8.string());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700528 *time = -1L;
529 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700530 }
531
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700532 std::string filename = lockedEntry->getKeyBlobPath();
533
534 int fd = TEMP_FAILURE_RETRY(open(filename.c_str(), O_NOFOLLOW, O_RDONLY));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700535 if (fd < 0) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700536 ALOGW("could not open %s for getmtime", filename.c_str());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700537 *time = -1L;
538 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700539 }
540
541 struct stat s;
542 int ret = fstat(fd, &s);
543 close(fd);
544 if (ret == -1) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700545 ALOGW("could not stat %s for getmtime", filename.c_str());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700546 *time = -1L;
547 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700548 }
549
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700550 *time = static_cast<int64_t>(s.st_mtime);
551 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700552}
553
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700554Status KeyStoreService::is_hardware_backed(const String16& keyType, int32_t* aidl_return) {
555 *aidl_return = static_cast<int32_t>(mKeyStore->isHardwareBacked(keyType) ? 1 : 0);
556 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700557}
558
Janis Danisevskis265435f2018-11-16 14:10:46 -0800559Status KeyStoreService::clear_uid(int64_t targetUid64, int32_t* _aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700560 uid_t targetUid = getEffectiveUid(targetUid64);
561 if (!checkBinderPermissionSelfOrSystem(P_CLEAR_UID, targetUid)) {
Janis Danisevskis265435f2018-11-16 14:10:46 -0800562 return AIDL_RETURN(ResponseCode::PERMISSION_DENIED);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700563 }
Rubin Xu7675c9f2017-03-15 19:26:52 +0000564 ALOGI("clear_uid %" PRId64, targetUid64);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700565
Janis Danisevskisaf7783f2017-09-21 11:29:47 -0700566 mKeyStore->removeAllGrantsToUid(targetUid);
567
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700568 ResponseCode rc;
569 std::list<LockedKeyBlobEntry> entries;
Janis Danisevskis265435f2018-11-16 14:10:46 -0800570 auto userDirName = mKeyStore->getUserStateDB().getUserStateByUid(targetUid)->getUserDirName();
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700571
572 // list has a fence making sure no workers are modifying blob files before iterating the
573 // data base. All returned entries are locked.
574 std::tie(rc, entries) = LockedKeyBlobEntry::list(
Janis Danisevskis265435f2018-11-16 14:10:46 -0800575 userDirName, [&](uid_t uid, const std::string&) -> bool { return uid == targetUid; });
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700576
577 if (rc != ResponseCode::NO_ERROR) {
Janis Danisevskis265435f2018-11-16 14:10:46 -0800578 return AIDL_RETURN(rc);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700579 }
580
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700581 for (LockedKeyBlobEntry& lockedEntry : entries) {
Rubin Xu85c85e92017-04-26 20:07:30 +0100582 if (get_app_id(targetUid) == AID_SYSTEM) {
583 Blob keyBlob;
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700584 Blob charBlob;
585 std::tie(rc, keyBlob, charBlob) = mKeyStore->get(lockedEntry);
586 if (rc == ResponseCode::NO_ERROR && keyBlob.isCriticalToDeviceEncryption()) {
Rubin Xu85c85e92017-04-26 20:07:30 +0100587 // Do not clear keys critical to device encryption under system uid.
588 continue;
589 }
590 }
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700591 mKeyStore->del(lockedEntry);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700592 }
Janis Danisevskis265435f2018-11-16 14:10:46 -0800593 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700594}
595
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600596Status KeyStoreService::addRngEntropy(
597 const ::android::sp<::android::security::keystore::IKeystoreResponseCallback>& cb,
598 const ::std::vector<uint8_t>& entropy, int32_t flags, int32_t* _aidl_return) {
Janis Danisevskisc1460142017-12-18 16:48:46 -0800599 auto device = mKeyStore->getDevice(flagsToSecurityLevel(flags));
600 if (!device) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600601 return AIDL_RETURN(ErrorCode::HARDWARE_TYPE_UNAVAILABLE);
Janis Danisevskisc1460142017-12-18 16:48:46 -0800602 }
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700603
Janis Danisevskisa359c672019-03-14 17:15:06 -0700604 device->addRngEntropy(entropy, [device, cb](Return<ErrorCode> rc) {
605 cb->onFinished(KeyStoreServiceReturnCode(KS_HANDLE_HIDL_ERROR(device, rc)));
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600606 });
607
608 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700609}
610
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600611Status KeyStoreService::generateKey(
612 const ::android::sp<::android::security::keystore::IKeystoreKeyCharacteristicsCallback>& cb,
613 const String16& name, const KeymasterArguments& params, const ::std::vector<uint8_t>& entropy,
614 int uid, int flags, int32_t* _aidl_return) {
Max Biresef4f0672017-11-29 14:38:48 -0800615 // TODO(jbires): remove this getCallingUid call upon implementation of b/25646100
616 uid_t originalUid = IPCThreadState::self()->getCallingUid();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700617 uid = getEffectiveUid(uid);
Pavel Grafovff311b42018-01-24 20:34:37 +0000618 auto logOnScopeExit = android::base::make_scope_guard([&] {
619 if (__android_log_security()) {
620 android_log_event_list(SEC_TAG_AUTH_KEY_GENERATED)
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600621 << int32_t(*_aidl_return == static_cast<int32_t>(ResponseCode::NO_ERROR))
Pavel Grafovff311b42018-01-24 20:34:37 +0000622 << String8(name) << int32_t(uid) << LOG_ID_SECURITY;
623 }
624 });
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100625 KeyStoreServiceReturnCode rc =
626 checkBinderPermissionAndKeystoreState(P_INSERT, uid, flags & KEYSTORE_FLAG_ENCRYPTED);
627 if (!rc.isOk()) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600628 return AIDL_RETURN(rc);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700629 }
Rubin Xu67899de2017-04-21 19:15:13 +0100630 if ((flags & KEYSTORE_FLAG_CRITICAL_TO_DEVICE_ENCRYPTION) && get_app_id(uid) != AID_SYSTEM) {
631 ALOGE("Non-system uid %d cannot set FLAG_CRITICAL_TO_DEVICE_ENCRYPTION", uid);
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600632 return AIDL_RETURN(ResponseCode::PERMISSION_DENIED);
Rubin Xu67899de2017-04-21 19:15:13 +0100633 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700634
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700635 if (containsTag(params.getParameters(), Tag::INCLUDE_UNIQUE_ID)) {
Shawn Willdenda6dcc32017-12-03 14:56:05 -0700636 // TODO(jbires): remove uid checking upon implementation of b/25646100
Max Bires670467d2017-12-12 11:16:43 -0800637 if (!checkBinderPermission(P_GEN_UNIQUE_ID) ||
Max Biresef4f0672017-11-29 14:38:48 -0800638 originalUid != IPCThreadState::self()->getCallingUid()) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600639 return AIDL_RETURN(ResponseCode::PERMISSION_DENIED);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700640 }
Shawn Willdene2a7b522017-04-11 09:27:40 -0600641 }
642
Janis Danisevskisc1460142017-12-18 16:48:46 -0800643 SecurityLevel securityLevel = flagsToSecurityLevel(flags);
644 auto dev = mKeyStore->getDevice(securityLevel);
645 if (!dev) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600646 return AIDL_RETURN(ErrorCode::HARDWARE_TYPE_UNAVAILABLE);
Janis Danisevskisc1460142017-12-18 16:48:46 -0800647 }
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400648
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100649 String8 name8(name);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700650 auto lockedEntry = mKeyStore->getLockedBlobEntryIfNotExists(name8.string(), uid);
651 if (!lockedEntry) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600652 return AIDL_RETURN(ResponseCode::KEY_ALREADY_EXISTS);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100653 }
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400654
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700655 logOnScopeExit.Disable();
656
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600657 dev->generateKey(
658 std::move(lockedEntry), params.getParameters(), entropy, flags,
659 [cb, uid, name](KeyStoreServiceReturnCode rc, KeyCharacteristics keyCharacteristics) {
660 if (__android_log_security()) {
661 android_log_event_list(SEC_TAG_AUTH_KEY_GENERATED)
662 << rc.isOk() << String8(name) << int32_t(uid) << LOG_ID_SECURITY;
663 }
664 cb->onFinished(rc,
665 android::security::keymaster::KeyCharacteristics(keyCharacteristics));
666 });
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700667
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600668 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700669}
670
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700671Status KeyStoreService::getKeyCharacteristics(
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600672 const ::android::sp<::android::security::keystore::IKeystoreKeyCharacteristicsCallback>& cb,
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700673 const String16& name, const ::android::security::keymaster::KeymasterBlob& clientId,
Janis Danisevskis64ec1fe2018-02-26 16:47:21 -0800674 const ::android::security::keymaster::KeymasterBlob& appData, int32_t uid,
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600675 int32_t* _aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700676
677 uid_t targetUid = getEffectiveUid(uid);
678 uid_t callingUid = IPCThreadState::self()->getCallingUid();
679 if (!is_granted_to(callingUid, targetUid)) {
680 ALOGW("uid %d not permitted to act for uid %d in getKeyCharacteristics", callingUid,
681 targetUid);
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600682 return AIDL_RETURN(ResponseCode::PERMISSION_DENIED);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700683 }
684
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700685 String8 name8(name);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700686
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700687 ResponseCode rc;
688 Blob keyBlob;
689 Blob charBlob;
690 LockedKeyBlobEntry lockedEntry;
Janis Danisevskisd714a672017-09-01 14:31:36 -0700691
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700692 std::tie(rc, keyBlob, charBlob, lockedEntry) =
693 mKeyStore->getKeyForName(name8, targetUid, TYPE_KEYMASTER_10);
694
695 if (rc != ResponseCode::NO_ERROR) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600696 return AIDL_RETURN(rc);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700697 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100698
Janis Danisevskisc1460142017-12-18 16:48:46 -0800699 auto dev = mKeyStore->getDevice(keyBlob);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700700 if (!dev) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600701 return AIDL_RETURN(ResponseCode::SYSTEM_ERROR);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100702 }
703
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700704 // If the charBlob is up to date, it simply moves the argument blobs to the returned blobs
705 // and extracts the characteristics on the way. Otherwise it updates the cache file with data
706 // from keymaster. It may also upgrade the key blob.
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700707 dev->getKeyCharacteristics(
708 std::move(lockedEntry), clientId.getData(), appData.getData(), std::move(keyBlob),
709 std::move(charBlob),
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600710 [cb](KeyStoreServiceReturnCode rc, KeyCharacteristics keyCharacteristics) {
711 cb->onFinished(rc,
712 android::security::keymaster::KeyCharacteristics(keyCharacteristics));
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700713 });
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100714
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600715 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700716}
717
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600718Status KeyStoreService::importKey(
719 const ::android::sp<::android::security::keystore::IKeystoreKeyCharacteristicsCallback>& cb,
720 const String16& name, const KeymasterArguments& params, int32_t format,
721 const ::std::vector<uint8_t>& keyData, int uid, int flags, int32_t* _aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700722 uid = getEffectiveUid(uid);
Pavel Grafovff311b42018-01-24 20:34:37 +0000723 auto logOnScopeExit = android::base::make_scope_guard([&] {
724 if (__android_log_security()) {
725 android_log_event_list(SEC_TAG_KEY_IMPORTED)
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600726 << int32_t(*_aidl_return == static_cast<int32_t>(ResponseCode::NO_ERROR))
Pavel Grafovff311b42018-01-24 20:34:37 +0000727 << String8(name) << int32_t(uid) << LOG_ID_SECURITY;
728 }
729 });
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100730 KeyStoreServiceReturnCode rc =
731 checkBinderPermissionAndKeystoreState(P_INSERT, uid, flags & KEYSTORE_FLAG_ENCRYPTED);
732 if (!rc.isOk()) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700733 LOG(ERROR) << "permissission denied";
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600734 return AIDL_RETURN(rc);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700735 }
Rubin Xu67899de2017-04-21 19:15:13 +0100736 if ((flags & KEYSTORE_FLAG_CRITICAL_TO_DEVICE_ENCRYPTION) && get_app_id(uid) != AID_SYSTEM) {
737 ALOGE("Non-system uid %d cannot set FLAG_CRITICAL_TO_DEVICE_ENCRYPTION", uid);
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600738 return AIDL_RETURN(ResponseCode::PERMISSION_DENIED);
Rubin Xu67899de2017-04-21 19:15:13 +0100739 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700740
Janis Danisevskisc1460142017-12-18 16:48:46 -0800741 SecurityLevel securityLevel = flagsToSecurityLevel(flags);
742 auto dev = mKeyStore->getDevice(securityLevel);
743 if (!dev) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700744 LOG(ERROR) << "importKey - cound not get keymaster device";
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600745 return AIDL_RETURN(ErrorCode::HARDWARE_TYPE_UNAVAILABLE);
Janis Danisevskisc1460142017-12-18 16:48:46 -0800746 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700747
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700748 String8 name8(name);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700749 auto lockedEntry = mKeyStore->getLockedBlobEntryIfNotExists(name8.string(), uid);
750 if (!lockedEntry) {
751 LOG(ERROR) << "importKey - key: " << name8.string() << " " << int(uid)
752 << " already exists.";
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600753 return AIDL_RETURN(ResponseCode::KEY_ALREADY_EXISTS);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400754 }
Janis Danisevskis4a1da2f2018-03-26 15:02:38 -0700755
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700756 logOnScopeExit.Disable();
Janis Danisevskis4a1da2f2018-03-26 15:02:38 -0700757
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600758 dev->importKey(
759 std::move(lockedEntry), params.getParameters(), KeyFormat(format), keyData, flags,
760 [cb, uid, name](KeyStoreServiceReturnCode rc, KeyCharacteristics keyCharacteristics) {
761 if (__android_log_security()) {
762 android_log_event_list(SEC_TAG_KEY_IMPORTED)
763 << rc.isOk() << String8(name) << int32_t(uid) << LOG_ID_SECURITY;
764 }
765 cb->onFinished(rc,
766 android::security::keymaster::KeyCharacteristics(keyCharacteristics));
767 });
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400768
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600769 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700770}
771
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600772Status KeyStoreService::exportKey(
773 const ::android::sp<::android::security::keystore::IKeystoreExportKeyCallback>& cb,
774 const String16& name, int32_t format,
775 const ::android::security::keymaster::KeymasterBlob& clientId,
776 const ::android::security::keymaster::KeymasterBlob& appData, int32_t uid,
777 int32_t* _aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700778
779 uid_t targetUid = getEffectiveUid(uid);
780 uid_t callingUid = IPCThreadState::self()->getCallingUid();
781 if (!is_granted_to(callingUid, targetUid)) {
782 ALOGW("uid %d not permitted to act for uid %d in exportKey", callingUid, targetUid);
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600783 return AIDL_RETURN(ResponseCode::PERMISSION_DENIED);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700784 }
785
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700786 String8 name8(name);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700787
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700788 KeyStoreServiceReturnCode rc;
789 Blob keyBlob;
790 Blob charBlob;
791 LockedKeyBlobEntry lockedEntry;
792
793 std::tie(rc, keyBlob, charBlob, lockedEntry) =
794 mKeyStore->getKeyForName(name8, targetUid, TYPE_KEYMASTER_10);
Janis Danisevskis3cf85322018-11-19 13:37:49 -0800795 if (!rc.isOk()) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600796 return AIDL_RETURN(rc);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700797 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100798
Janis Danisevskisc1460142017-12-18 16:48:46 -0800799 auto dev = mKeyStore->getDevice(keyBlob);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100800
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700801 dev->exportKey(std::move(lockedEntry), KeyFormat(format), clientId.getData(), appData.getData(),
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600802 std::move(keyBlob), std::move(charBlob),
803 [cb](ExportResult exportResult) { cb->onFinished(exportResult); });
Ji Wang2c142312016-10-14 17:21:10 +0800804
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600805 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700806}
807
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600808Status KeyStoreService::begin(const sp<IKeystoreOperationResultCallback>& cb,
809 const sp<IBinder>& appToken, const String16& name, int32_t purpose,
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700810 bool pruneable, const KeymasterArguments& params,
811 const ::std::vector<uint8_t>& entropy, int32_t uid,
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600812 int32_t* _aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700813 uid_t callingUid = IPCThreadState::self()->getCallingUid();
814 uid_t targetUid = getEffectiveUid(uid);
815 if (!is_granted_to(callingUid, targetUid)) {
816 ALOGW("uid %d not permitted to act for uid %d in begin", callingUid, targetUid);
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600817 return AIDL_RETURN(ResponseCode::PERMISSION_DENIED);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700818 }
819 if (!pruneable && get_app_id(callingUid) != AID_SYSTEM) {
820 ALOGE("Non-system uid %d trying to start non-pruneable operation", callingUid);
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600821 return AIDL_RETURN(ResponseCode::PERMISSION_DENIED);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700822 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700823 if (!checkAllowedOperationParams(params.getParameters())) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600824 return AIDL_RETURN(ErrorCode::INVALID_ARGUMENT);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700825 }
Shawn Willden0329a822017-12-04 13:55:14 -0700826
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700827 String8 name8(name);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700828 Blob keyBlob;
829 Blob charBlob;
830 LockedKeyBlobEntry lockedEntry;
831 ResponseCode rc;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100832
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700833 std::tie(rc, keyBlob, charBlob, lockedEntry) =
834 mKeyStore->getKeyForName(name8, targetUid, TYPE_KEYMASTER_10);
835
836 if (rc == ResponseCode::LOCKED && keyBlob.isSuperEncrypted()) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600837 return AIDL_RETURN(ErrorCode::KEY_USER_NOT_AUTHENTICATED);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700838 }
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600839 if (rc != ResponseCode::NO_ERROR) return AIDL_RETURN(rc);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700840
Janis Danisevskisc1460142017-12-18 16:48:46 -0800841 auto dev = mKeyStore->getDevice(keyBlob);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700842 AuthorizationSet opParams = params.getParameters();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100843
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700844 dev->begin(std::move(lockedEntry), appToken, std::move(keyBlob), std::move(charBlob), pruneable,
845 static_cast<KeyPurpose>(purpose), std::move(opParams), entropy,
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600846 [this, cb, dev](OperationResult result_) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700847 if (result_.resultCode.isOk() ||
848 result_.resultCode == ResponseCode::OP_AUTH_NEEDED) {
Janis Danisevskisbec89992019-08-14 13:42:19 -0700849 mKeyStore->addOperationDevice(result_.token, dev);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700850 }
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600851 cb->onFinished(result_);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700852 });
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400853
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600854 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700855}
856
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600857Status KeyStoreService::update(const ::android::sp<IKeystoreOperationResultCallback>& cb,
858 const ::android::sp<::android::IBinder>& token,
859 const ::android::security::keymaster::KeymasterArguments& params,
860 const ::std::vector<uint8_t>& input, int32_t* _aidl_return) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700861 if (!checkAllowedOperationParams(params.getParameters())) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600862 return AIDL_RETURN(ErrorCode::INVALID_ARGUMENT);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700863 }
Shawn Willdenda6dcc32017-12-03 14:56:05 -0700864
Janis Danisevskisbec89992019-08-14 13:42:19 -0700865 auto dev = mKeyStore->getOperationDevice(token);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700866 if (!dev) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600867 return AIDL_RETURN(ErrorCode::INVALID_OPERATION_HANDLE);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700868 }
Shawn Willdenda6dcc32017-12-03 14:56:05 -0700869
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600870 dev->update(token, params.getParameters(), input, [this, cb, token](OperationResult result_) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700871 if (!result_.resultCode.isOk()) {
Janis Danisevskisbec89992019-08-14 13:42:19 -0700872 mKeyStore->removeOperationDevice(token);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100873 }
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600874 cb->onFinished(result_);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700875 });
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100876
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600877 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700878}
879
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600880Status KeyStoreService::finish(const ::android::sp<IKeystoreOperationResultCallback>& cb,
881 const ::android::sp<::android::IBinder>& token,
882 const ::android::security::keymaster::KeymasterArguments& params,
Rob Barnes3af223f2019-11-14 14:50:30 -0700883 const ::std::vector<uint8_t>& input,
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700884 const ::std::vector<uint8_t>& signature,
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600885 const ::std::vector<uint8_t>& entropy, int32_t* _aidl_return) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700886 if (!checkAllowedOperationParams(params.getParameters())) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600887 return AIDL_RETURN(ErrorCode::INVALID_ARGUMENT);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700888 }
Shawn Willdenda6dcc32017-12-03 14:56:05 -0700889
Janis Danisevskisbec89992019-08-14 13:42:19 -0700890 auto dev = mKeyStore->getOperationDevice(token);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700891 if (!dev) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600892 return AIDL_RETURN(ErrorCode::INVALID_OPERATION_HANDLE);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700893 }
894
Rob Barnes3af223f2019-11-14 14:50:30 -0700895 dev->finish(token, params.getParameters(), input, signature, entropy,
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600896 [this, cb, token](OperationResult result_) {
Janis Danisevskis8c4c1d62019-10-04 11:01:54 -0700897 mKeyStore->removeOperationDevice(token);
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600898 cb->onFinished(result_);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700899 });
Shawn Willdenda6dcc32017-12-03 14:56:05 -0700900
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600901 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700902}
903
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600904Status KeyStoreService::abort(const ::android::sp<IKeystoreResponseCallback>& cb,
905 const ::android::sp<::android::IBinder>& token,
906 int32_t* _aidl_return) {
Janis Danisevskisbec89992019-08-14 13:42:19 -0700907 auto dev = mKeyStore->getOperationDevice(token);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700908 if (!dev) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600909 return AIDL_RETURN(ErrorCode::INVALID_OPERATION_HANDLE);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700910 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100911
Janis Danisevskisbec89992019-08-14 13:42:19 -0700912 dev->abort(token, [this, cb, token](KeyStoreServiceReturnCode rc) {
913 mKeyStore->removeOperationDevice(token);
914 cb->onFinished(rc);
915 });
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700916
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600917 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700918}
919
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700920Status KeyStoreService::addAuthToken(const ::std::vector<uint8_t>& authTokenAsVector,
Brian Youngccb492d2018-02-22 23:36:01 +0000921 int32_t* aidl_return) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700922
Shawn Willdend3ed3a22017-03-28 00:39:16 +0000923 // TODO(swillden): When gatekeeper and fingerprint are ready, this should be updated to
924 // receive a HardwareAuthToken, rather than an opaque byte array.
925
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700926 if (!checkBinderPermission(P_ADD_AUTH)) {
927 ALOGW("addAuthToken: permission denied for %d", IPCThreadState::self()->getCallingUid());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700928 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
929 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700930 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700931 if (authTokenAsVector.size() != sizeof(hw_auth_token_t)) {
Branden Archer70080742018-11-20 11:04:11 -0800932 *aidl_return = KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT).getErrorCode();
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700933 return Status::ok();
Shawn Willdend3ed3a22017-03-28 00:39:16 +0000934 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100935
Shawn Willdend3ed3a22017-03-28 00:39:16 +0000936 hw_auth_token_t authToken;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700937 memcpy(reinterpret_cast<void*>(&authToken), authTokenAsVector.data(), sizeof(hw_auth_token_t));
Shawn Willdend3ed3a22017-03-28 00:39:16 +0000938 if (authToken.version != 0) {
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
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700943 mKeyStore->getAuthTokenTable().AddAuthenticationToken(
944 hidlVec2AuthToken(hidl_vec<uint8_t>(authTokenAsVector)));
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700945 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
946 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700947}
948
Eran Messerid9f8ae52018-10-24 13:54:00 +0100949bool isDeviceIdAttestationRequested(const KeymasterArguments& params) {
Chih-Hung Hsiehb81e68b2018-07-13 11:37:45 -0700950 const hardware::hidl_vec<KeyParameter>& paramsVec = params.getParameters();
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700951 for (size_t i = 0; i < paramsVec.size(); ++i) {
952 switch (paramsVec[i].tag) {
Shawn Willdene2a7b522017-04-11 09:27:40 -0600953 case Tag::ATTESTATION_ID_BRAND:
954 case Tag::ATTESTATION_ID_DEVICE:
Shawn Willdene2a7b522017-04-11 09:27:40 -0600955 case Tag::ATTESTATION_ID_MANUFACTURER:
Shawn Willdene2a7b522017-04-11 09:27:40 -0600956 case Tag::ATTESTATION_ID_MODEL:
957 case Tag::ATTESTATION_ID_PRODUCT:
Rubin Xu1a203e32018-05-08 14:25:21 +0100958 case Tag::ATTESTATION_ID_IMEI:
959 case Tag::ATTESTATION_ID_MEID:
960 case Tag::ATTESTATION_ID_SERIAL:
Eran Messerid9f8ae52018-10-24 13:54:00 +0100961 return true;
Rubin Xu1a203e32018-05-08 14:25:21 +0100962 default:
963 continue;
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +0100964 }
965 }
Eran Messerid9f8ae52018-10-24 13:54:00 +0100966 return false;
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +0100967}
968
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600969Status KeyStoreService::attestKey(
970 const ::android::sp<::android::security::keystore::IKeystoreCertificateChainCallback>& cb,
971 const String16& name, const KeymasterArguments& params, int32_t* _aidl_return) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700972 // check null output if method signature is updated and return ErrorCode::OUTPUT_PARAMETER_NULL
973 if (!checkAllowedOperationParams(params.getParameters())) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600974 return AIDL_RETURN(ErrorCode::INVALID_ARGUMENT);
Shawn Willden50eb1b22016-01-21 12:41:23 -0700975 }
976
Eran Messerie2c34152017-12-21 21:01:22 +0000977 uid_t callingUid = IPCThreadState::self()->getCallingUid();
978
Eran Messerid9f8ae52018-10-24 13:54:00 +0100979 if (isDeviceIdAttestationRequested(params) && (get_app_id(callingUid) != AID_SYSTEM)) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600980 return AIDL_RETURN(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +0100981 }
982
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700983 AuthorizationSet mutableParams = params.getParameters();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +0200984 KeyStoreServiceReturnCode rc = updateParamsForAttestation(callingUid, &mutableParams);
985 if (!rc.isOk()) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -0600986 return AIDL_RETURN(rc);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +0200987 }
Shawn Willdene2a7b522017-04-11 09:27:40 -0600988
Shawn Willden50eb1b22016-01-21 12:41:23 -0700989 String8 name8(name);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700990 Blob keyBlob;
991 Blob charBlob;
992 LockedKeyBlobEntry lockedEntry;
Shawn Willden50eb1b22016-01-21 12:41:23 -0700993
Janis Danisevskisff3d7f42018-10-08 07:15:09 -0700994 std::tie(rc, keyBlob, charBlob, lockedEntry) =
995 mKeyStore->getKeyForName(name8, callingUid, TYPE_KEYMASTER_10);
996
Janis Danisevskis9dff56c2019-07-10 14:08:06 -0700997 if (!rc.isOk()) {
998 return AIDL_RETURN(rc);
999 }
1000
Janis Danisevskisc1460142017-12-18 16:48:46 -08001001 auto dev = mKeyStore->getDevice(keyBlob);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001002 auto hidlKey = blob2hidlVec(keyBlob);
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001003 dev->attestKey(
1004 std::move(hidlKey), mutableParams.hidl_data(),
Janis Danisevskisa359c672019-03-14 17:15:06 -07001005 [dev, cb](Return<void> rc,
1006 std::tuple<ErrorCode, hidl_vec<hidl_vec<uint8_t>>>&& hidlResult) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001007 auto& [ret, certChain] = hidlResult;
1008 if (!rc.isOk()) {
1009 cb->onFinished(KeyStoreServiceReturnCode(ResponseCode::SYSTEM_ERROR), {});
1010 } else if (ret != ErrorCode::OK) {
Janis Danisevskisa359c672019-03-14 17:15:06 -07001011 dev->logIfKeymasterVendorError(ret);
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001012 cb->onFinished(KeyStoreServiceReturnCode(ret), {});
1013 } else {
1014 cb->onFinished(KeyStoreServiceReturnCode(ret),
1015 KeymasterCertificateChain(std::move(certChain)));
1016 }
1017 });
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001018
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001019 return AIDL_RETURN(ResponseCode::NO_ERROR);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001020}
1021
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001022// My IDE defines "CAPTURE_MOVE(x) x" because it does not understand generalized lambda captures.
1023// It should never be redefined by a build system though.
1024#ifndef CAPTURE_MOVE
1025#define CAPTURE_MOVE(x) x = std::move(x)
1026#endif
1027
1028Status KeyStoreService::attestDeviceIds(
1029 const ::android::sp<::android::security::keystore::IKeystoreCertificateChainCallback>& cb,
1030 const KeymasterArguments& params, int32_t* _aidl_return) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001031 // check null output if method signature is updated and return ErrorCode::OUTPUT_PARAMETER_NULL
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001032
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001033 if (!checkAllowedOperationParams(params.getParameters())) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001034 return AIDL_RETURN(ErrorCode::INVALID_ARGUMENT);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001035 }
1036
1037 if (!isDeviceIdAttestationRequested(params)) {
1038 // There is an attestKey() method for attesting keys without device ID attestation.
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001039 return AIDL_RETURN(ErrorCode::INVALID_ARGUMENT);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001040 }
1041
1042 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1043 sp<IBinder> binder = defaultServiceManager()->getService(String16("permission"));
Yi Konge353f252018-07-30 01:38:39 -07001044 if (binder == nullptr) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001045 return AIDL_RETURN(ErrorCode::CANNOT_ATTEST_IDS);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001046 }
1047 if (!interface_cast<IPermissionController>(binder)->checkPermission(
1048 String16("android.permission.READ_PRIVILEGED_PHONE_STATE"),
1049 IPCThreadState::self()->getCallingPid(), callingUid)) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001050 return AIDL_RETURN(ErrorCode::CANNOT_ATTEST_IDS);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001051 }
1052
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001053 AuthorizationSet mutableParams = params.getParameters();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001054 KeyStoreServiceReturnCode rc = updateParamsForAttestation(callingUid, &mutableParams);
1055 if (!rc.isOk()) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001056 return AIDL_RETURN(rc);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001057 }
1058
1059 // Generate temporary key.
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001060 auto dev = mKeyStore->getDevice(SecurityLevel::TRUSTED_ENVIRONMENT);
Janis Danisevskisc1460142017-12-18 16:48:46 -08001061
Shawn Willden70c1a782018-07-11 15:13:20 -06001062 if (!dev) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001063 return AIDL_RETURN(ResponseCode::SYSTEM_ERROR);
Janis Danisevskisc1460142017-12-18 16:48:46 -08001064 }
1065
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001066
1067 AuthorizationSet keyCharacteristics;
1068 keyCharacteristics.push_back(TAG_PURPOSE, KeyPurpose::VERIFY);
1069 keyCharacteristics.push_back(TAG_ALGORITHM, Algorithm::EC);
1070 keyCharacteristics.push_back(TAG_DIGEST, Digest::SHA_2_256);
1071 keyCharacteristics.push_back(TAG_NO_AUTH_REQUIRED);
1072 keyCharacteristics.push_back(TAG_EC_CURVE, EcCurve::P_256);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001073
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001074 std::promise<KeyStoreServiceReturnCode> resultPromise;
1075 auto resultFuture = resultPromise.get_future();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001076
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001077 dev->generateKey(
1078 keyCharacteristics.hidl_data(),
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001079 [cb, dev, CAPTURE_MOVE(mutableParams)](
1080 Return<void> rc,
1081 std::tuple<ErrorCode, ::std::vector<uint8_t>, KeyCharacteristics>&& hidlResult) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001082 auto& [ret, hidlKeyBlob_, dummyCharacteristics] = hidlResult;
1083 auto hidlKeyBlob = std::move(hidlKeyBlob_);
1084 if (!rc.isOk()) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001085 cb->onFinished(KeyStoreServiceReturnCode(ResponseCode::SYSTEM_ERROR), {});
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001086 return;
1087 }
1088 if (ret != ErrorCode::OK) {
Janis Danisevskisa359c672019-03-14 17:15:06 -07001089 dev->logIfKeymasterVendorError(ret);
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001090 cb->onFinished(KeyStoreServiceReturnCode(ret), {});
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001091 return;
1092 }
1093 dev->attestKey(
1094 hidlKeyBlob, mutableParams.hidl_data(),
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001095 [cb, dev,
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001096 hidlKeyBlob](Return<void> rc,
1097 std::tuple<ErrorCode, hidl_vec<hidl_vec<uint8_t>>>&& hidlResult) {
1098 auto& [ret, certChain] = hidlResult;
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001099 // schedule temp key for deletion
Janis Danisevskisa359c672019-03-14 17:15:06 -07001100 dev->deleteKey(std::move(hidlKeyBlob), [dev](Return<ErrorCode> rc) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001101 // log error but don't return an error
Janis Danisevskisa359c672019-03-14 17:15:06 -07001102 KS_HANDLE_HIDL_ERROR(dev, rc);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001103 });
1104 if (!rc.isOk()) {
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001105 cb->onFinished(KeyStoreServiceReturnCode(ResponseCode::SYSTEM_ERROR), {});
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001106 return;
1107 }
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001108 if (ret == ErrorCode::OK) {
1109 cb->onFinished(
1110 KeyStoreServiceReturnCode(ret),
1111 ::android::security::keymaster::KeymasterCertificateChain(certChain));
1112 } else {
Janis Danisevskisa359c672019-03-14 17:15:06 -07001113 dev->logIfKeymasterVendorError(ret);
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001114 cb->onFinished(KeyStoreServiceReturnCode(ret), {});
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001115 }
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001116 });
1117 });
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001118
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001119 return AIDL_RETURN(ResponseCode::NO_ERROR);
Shawn Willden50eb1b22016-01-21 12:41:23 -07001120}
1121
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001122Status KeyStoreService::onDeviceOffBody(int32_t* aidl_return) {
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001123 // TODO(tuckeris): add permission check. This should be callable from ClockworkHome only.
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001124 mKeyStore->getAuthTokenTable().onDeviceOffBody();
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001125 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
1126 return Status::ok();
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001127}
1128
Janis Danisevskiscb9267d2017-12-19 16:27:52 -08001129Status KeyStoreService::importWrappedKey(
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001130 const ::android::sp<::android::security::keystore::IKeystoreKeyCharacteristicsCallback>& cb,
Janis Danisevskiscb9267d2017-12-19 16:27:52 -08001131 const ::android::String16& wrappedKeyAlias, const ::std::vector<uint8_t>& wrappedKey,
1132 const ::android::String16& wrappingKeyAlias, const ::std::vector<uint8_t>& maskingKey,
1133 const KeymasterArguments& params, int64_t rootSid, int64_t fingerprintSid,
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001134 int32_t* _aidl_return) {
Janis Danisevskiscb9267d2017-12-19 16:27:52 -08001135
1136 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1137
1138 if (!checkBinderPermission(P_INSERT, callingUid)) {
1139 return AIDL_RETURN(ResponseCode::PERMISSION_DENIED);
1140 }
1141
Janis Danisevskiscb9267d2017-12-19 16:27:52 -08001142 String8 wrappingKeyName8(wrappingKeyAlias);
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001143
1144 KeyStoreServiceReturnCode rc;
1145 Blob wrappingKeyBlob;
1146 Blob wrappingCharBlob;
1147 LockedKeyBlobEntry wrappingLockedEntry;
1148
1149 std::tie(rc, wrappingKeyBlob, wrappingCharBlob, wrappingLockedEntry) =
1150 mKeyStore->getKeyForName(wrappingKeyName8, callingUid, TYPE_KEYMASTER_10);
Branden Archerd166a882018-11-20 10:56:48 -08001151 if (!rc.isOk()) {
Janis Danisevskiscb9267d2017-12-19 16:27:52 -08001152 return AIDL_RETURN(rc);
1153 }
1154
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001155 String8 wrappedKeyName8(wrappedKeyAlias);
1156 auto wrappedLockedEntry =
1157 mKeyStore->getLockedBlobEntryIfNotExists(wrappedKeyName8.string(), callingUid);
1158 if (!wrappedLockedEntry) {
1159 return AIDL_RETURN(ResponseCode::KEY_ALREADY_EXISTS);
1160 }
1161
Janis Danisevskiscb9267d2017-12-19 16:27:52 -08001162 SecurityLevel securityLevel = wrappingKeyBlob.getSecurityLevel();
1163 auto dev = mKeyStore->getDevice(securityLevel);
1164 if (!dev) {
1165 return AIDL_RETURN(ErrorCode::HARDWARE_TYPE_UNAVAILABLE);
1166 }
1167
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001168 dev->importWrappedKey(
1169 std::move(wrappingLockedEntry), std::move(wrappedLockedEntry), wrappedKey, maskingKey,
1170 params.getParameters(), std::move(wrappingKeyBlob), std::move(wrappingCharBlob), rootSid,
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001171 fingerprintSid, [cb](KeyStoreServiceReturnCode rc, KeyCharacteristics keyCharacteristics) {
1172 cb->onFinished(rc,
1173 ::android::security::keymaster::KeyCharacteristics(keyCharacteristics));
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001174 });
Janis Danisevskiscb9267d2017-12-19 16:27:52 -08001175
Rob Barnesbb6cabd2018-10-04 17:10:37 -06001176 return AIDL_RETURN(ResponseCode::NO_ERROR);
Janis Danisevskiscb9267d2017-12-19 16:27:52 -08001177}
1178
David Zeuthenc6eb7cd2017-11-27 11:33:55 -05001179Status KeyStoreService::presentConfirmationPrompt(const sp<IBinder>& listener,
1180 const String16& promptText,
1181 const ::std::vector<uint8_t>& extraData,
1182 const String16& locale, int32_t uiOptionsAsFlags,
1183 int32_t* aidl_return) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001184 return mKeyStore->getConfirmationManager().presentConfirmationPrompt(
1185 listener, promptText, extraData, locale, uiOptionsAsFlags, aidl_return);
David Zeuthenc6eb7cd2017-11-27 11:33:55 -05001186}
1187
1188Status KeyStoreService::cancelConfirmationPrompt(const sp<IBinder>& listener,
1189 int32_t* aidl_return) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001190 return mKeyStore->getConfirmationManager().cancelConfirmationPrompt(listener, aidl_return);
David Zeuthenc6eb7cd2017-11-27 11:33:55 -05001191}
1192
David Zeuthen1a492312018-02-26 11:00:30 -05001193Status KeyStoreService::isConfirmationPromptSupported(bool* aidl_return) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001194 return mKeyStore->getConfirmationManager().isConfirmationPromptSupported(aidl_return);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001195}
1196
1197/**
1198 * Get the effective target uid for a binder operation that takes an
1199 * optional uid as the target.
1200 */
1201uid_t KeyStoreService::getEffectiveUid(int32_t targetUid) {
1202 if (targetUid == UID_SELF) {
1203 return IPCThreadState::self()->getCallingUid();
1204 }
1205 return static_cast<uid_t>(targetUid);
1206}
1207
1208/**
1209 * Check if the caller of the current binder method has the required
1210 * permission and if acting on other uids the grants to do so.
1211 */
1212bool KeyStoreService::checkBinderPermission(perm_t permission, int32_t targetUid) {
1213 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1214 pid_t spid = IPCThreadState::self()->getCallingPid();
Steven Moreland23115b02019-01-10 16:20:20 -08001215 const char* ssid = IPCThreadState::self()->getCallingSid();
1216 if (!has_permission(callingUid, permission, spid, ssid)) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001217 ALOGW("permission %s denied for %d", get_perm_label(permission), callingUid);
1218 return false;
1219 }
1220 if (!is_granted_to(callingUid, getEffectiveUid(targetUid))) {
1221 ALOGW("uid %d not granted to act for %d", callingUid, targetUid);
1222 return false;
1223 }
1224 return true;
1225}
1226
1227/**
1228 * Check if the caller of the current binder method has the required
1229 * permission and the target uid is the caller or the caller is system.
1230 */
1231bool KeyStoreService::checkBinderPermissionSelfOrSystem(perm_t permission, int32_t targetUid) {
1232 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1233 pid_t spid = IPCThreadState::self()->getCallingPid();
Steven Moreland23115b02019-01-10 16:20:20 -08001234 const char* ssid = IPCThreadState::self()->getCallingSid();
1235 if (!has_permission(callingUid, permission, spid, ssid)) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001236 ALOGW("permission %s denied for %d", get_perm_label(permission), callingUid);
1237 return false;
1238 }
1239 return getEffectiveUid(targetUid) == callingUid || callingUid == AID_SYSTEM;
1240}
1241
1242/**
1243 * Check if the caller of the current binder method has the required
1244 * permission or the target of the operation is the caller's uid. This is
1245 * for operation where the permission is only for cross-uid activity and all
1246 * uids are allowed to act on their own (ie: clearing all entries for a
1247 * given uid).
1248 */
1249bool KeyStoreService::checkBinderPermissionOrSelfTarget(perm_t permission, int32_t targetUid) {
1250 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1251 if (getEffectiveUid(targetUid) == callingUid) {
1252 return true;
1253 } else {
1254 return checkBinderPermission(permission, targetUid);
1255 }
1256}
1257
1258/**
1259 * Helper method to check that the caller has the required permission as
1260 * well as the keystore is in the unlocked state if checkUnlocked is true.
1261 *
1262 * Returns NO_ERROR on success, PERMISSION_DENIED on a permission error and
1263 * otherwise the state of keystore when not unlocked and checkUnlocked is
1264 * true.
1265 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001266KeyStoreServiceReturnCode
1267KeyStoreService::checkBinderPermissionAndKeystoreState(perm_t permission, int32_t targetUid,
1268 bool checkUnlocked) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001269 if (!checkBinderPermission(permission, targetUid)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001270 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001271 }
1272 State state = mKeyStore->getState(get_user_id(getEffectiveUid(targetUid)));
1273 if (checkUnlocked && !isKeystoreUnlocked(state)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001274 // All State values coincide with ResponseCodes
1275 return static_cast<ResponseCode>(state);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001276 }
1277
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001278 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001279}
1280
1281bool KeyStoreService::isKeystoreUnlocked(State state) {
1282 switch (state) {
1283 case ::STATE_NO_ERROR:
1284 return true;
1285 case ::STATE_UNINITIALIZED:
1286 case ::STATE_LOCKED:
1287 return false;
1288 }
1289 return false;
1290}
1291
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001292/**
Shawn Willden0329a822017-12-04 13:55:14 -07001293 * Check that all KeyParameters provided by the application are allowed. Any parameter that keystore
1294 * adds itself should be disallowed here.
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001295 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001296bool KeyStoreService::checkAllowedOperationParams(const hidl_vec<KeyParameter>& params) {
1297 for (size_t i = 0; i < params.size(); ++i) {
1298 switch (params[i].tag) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001299 case Tag::ATTESTATION_APPLICATION_ID:
Shawn Willdene2a7b522017-04-11 09:27:40 -06001300 case Tag::RESET_SINCE_ID_ROTATION:
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001301 return false;
1302 default:
1303 break;
1304 }
1305 }
1306 return true;
1307}
1308
Brian Young9a947d52018-02-23 18:03:14 +00001309Status KeyStoreService::onKeyguardVisibilityChanged(bool isShowing, int32_t userId,
1310 int32_t* aidl_return) {
Janis Danisevskisff3d7f42018-10-08 07:15:09 -07001311 mKeyStore->getEnforcementPolicy().set_device_locked(isShowing, userId);
Brian Young9a947d52018-02-23 18:03:14 +00001312 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
Brian Young9371e952018-02-23 18:03:14 +00001313
1314 return Status::ok();
1315}
1316
Shawn Willdene2a7b522017-04-11 09:27:40 -06001317} // namespace keystore