blob: 8a9525720c934e481923200193dc7bdbeae85588 [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>
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070025#include <sstream>
26
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +010027#include <binder/IInterface.h>
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070028#include <binder/IPCThreadState.h>
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +010029#include <binder/IPermissionController.h>
30#include <binder/IServiceManager.h>
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070031
32#include <private/android_filesystem_config.h>
33
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010034#include <android/hardware/keymaster/3.0/IHwKeymasterDevice.h>
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070035
36#include "defaults.h"
Janis Danisevskis18f27ad2016-06-01 13:57:40 -070037#include "keystore_attestation_id.h"
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010038#include "keystore_keymaster_enforcement.h"
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070039#include "keystore_utils.h"
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010040#include <keystore/keystore_hidl_support.h>
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070041
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010042namespace keystore {
Shawn Willdend5a24e62017-02-28 13:53:24 -070043
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010044using namespace android;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070045
Shawn Willdene2a7b522017-04-11 09:27:40 -060046namespace {
47
48constexpr size_t kMaxOperations = 15;
49constexpr double kIdRotationPeriod = 30 * 24 * 60 * 60; /* Thirty days, in seconds */
50const char* kTimestampFilePath = "timestamp";
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070051
52struct BIGNUM_Delete {
53 void operator()(BIGNUM* p) const { BN_free(p); }
54};
Janis Danisevskisccfff102017-05-01 11:02:51 -070055typedef std::unique_ptr<BIGNUM, BIGNUM_Delete> Unique_BIGNUM;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070056
Shawn Willdene2a7b522017-04-11 09:27:40 -060057bool containsTag(const hidl_vec<KeyParameter>& params, Tag tag) {
58 return params.end() != std::find_if(params.begin(), params.end(),
59 [&](auto& param) { return param.tag == tag; });
60}
61
Shawn Willdend5a24e62017-02-28 13:53:24 -070062bool isAuthenticationBound(const hidl_vec<KeyParameter>& params) {
63 return !containsTag(params, Tag::NO_AUTH_REQUIRED);
64}
65
Shawn Willdene2a7b522017-04-11 09:27:40 -060066std::pair<KeyStoreServiceReturnCode, bool> hadFactoryResetSinceIdRotation() {
67 struct stat sbuf;
68 if (stat(kTimestampFilePath, &sbuf) == 0) {
69 double diff_secs = difftime(time(NULL), sbuf.st_ctime);
70 return {ResponseCode::NO_ERROR, diff_secs < kIdRotationPeriod};
71 }
72
73 if (errno != ENOENT) {
74 ALOGE("Failed to stat \"timestamp\" file, with error %d", errno);
75 return {ResponseCode::SYSTEM_ERROR, false /* don't care */};
76 }
77
78 int fd = creat(kTimestampFilePath, 0600);
79 if (fd < 0) {
80 ALOGE("Couldn't create \"timestamp\" file, with error %d", errno);
81 return {ResponseCode::SYSTEM_ERROR, false /* don't care */};
82 }
83
84 if (close(fd)) {
85 ALOGE("Couldn't close \"timestamp\" file, with error %d", errno);
86 return {ResponseCode::SYSTEM_ERROR, false /* don't care */};
87 }
88
89 return {ResponseCode::NO_ERROR, true};
90}
91
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +020092constexpr size_t KEY_ATTESTATION_APPLICATION_ID_MAX_SIZE = 1024;
93
94KeyStoreServiceReturnCode updateParamsForAttestation(uid_t callingUid, AuthorizationSet* params) {
95 KeyStoreServiceReturnCode responseCode;
96 bool factoryResetSinceIdRotation;
97 std::tie(responseCode, factoryResetSinceIdRotation) = hadFactoryResetSinceIdRotation();
98
99 if (!responseCode.isOk()) return responseCode;
100 if (factoryResetSinceIdRotation) params->push_back(TAG_RESET_SINCE_ID_ROTATION);
101
102 auto asn1_attestation_id_result = security::gather_attestation_application_id(callingUid);
103 if (!asn1_attestation_id_result.isOk()) {
104 ALOGE("failed to gather attestation_id");
105 return ErrorCode::ATTESTATION_APPLICATION_ID_MISSING;
106 }
107 std::vector<uint8_t>& asn1_attestation_id = asn1_attestation_id_result;
108
109 /*
110 * The attestation application ID cannot be longer than
111 * KEY_ATTESTATION_APPLICATION_ID_MAX_SIZE, so we truncate if too long.
112 */
113 if (asn1_attestation_id.size() > KEY_ATTESTATION_APPLICATION_ID_MAX_SIZE) {
114 asn1_attestation_id.resize(KEY_ATTESTATION_APPLICATION_ID_MAX_SIZE);
115 }
116
117 params->push_back(TAG_ATTESTATION_APPLICATION_ID, asn1_attestation_id);
118
119 return ResponseCode::NO_ERROR;
120}
121
Shawn Willdene2a7b522017-04-11 09:27:40 -0600122} // anonymous namespace
123
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700124void KeyStoreService::binderDied(const wp<IBinder>& who) {
125 auto operations = mOperationMap.getOperationsForToken(who.unsafe_get());
Chih-Hung Hsieh24b2a392016-07-28 10:35:24 -0700126 for (const auto& token : operations) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700127 abort(token);
128 }
129}
130
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100131KeyStoreServiceReturnCode KeyStoreService::getState(int32_t userId) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700132 if (!checkBinderPermission(P_GET_STATE)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100133 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700134 }
135
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100136 return ResponseCode(mKeyStore->getState(userId));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700137}
138
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100139KeyStoreServiceReturnCode KeyStoreService::get(const String16& name, int32_t uid,
140 hidl_vec<uint8_t>* item) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700141 uid_t targetUid = getEffectiveUid(uid);
142 if (!checkBinderPermission(P_GET, targetUid)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100143 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700144 }
145
146 String8 name8(name);
147 Blob keyBlob;
148
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100149 KeyStoreServiceReturnCode rc =
150 mKeyStore->getKeyForName(&keyBlob, name8, targetUid, TYPE_GENERIC);
151 if (!rc.isOk()) {
152 if (item) *item = hidl_vec<uint8_t>();
153 return rc;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700154 }
155
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100156 // Do not replace this with "if (item) *item = blob2hidlVec(keyBlob)"!
157 // blob2hidlVec creates a hidl_vec<uint8_t> that references, but not owns, the data in keyBlob
158 // the subsequent assignment (*item = resultBlob) makes a deep copy, so that *item will own the
159 // corresponding resources.
160 auto resultBlob = blob2hidlVec(keyBlob);
161 if (item) {
162 *item = resultBlob;
163 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700164
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100165 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700166}
167
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100168KeyStoreServiceReturnCode KeyStoreService::insert(const String16& name,
169 const hidl_vec<uint8_t>& item, int targetUid,
170 int32_t flags) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700171 targetUid = getEffectiveUid(targetUid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100172 auto result =
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700173 checkBinderPermissionAndKeystoreState(P_INSERT, targetUid, flags & KEYSTORE_FLAG_ENCRYPTED);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100174 if (!result.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700175 return result;
176 }
177
178 String8 name8(name);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400179 String8 filename(mKeyStore->getKeyNameForUidWithDir(name8, targetUid, ::TYPE_GENERIC));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700180
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100181 Blob keyBlob(&item[0], item.size(), NULL, 0, ::TYPE_GENERIC);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700182 keyBlob.setEncrypted(flags & KEYSTORE_FLAG_ENCRYPTED);
183
184 return mKeyStore->put(filename.string(), &keyBlob, get_user_id(targetUid));
185}
186
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100187KeyStoreServiceReturnCode KeyStoreService::del(const String16& name, int targetUid) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700188 targetUid = getEffectiveUid(targetUid);
189 if (!checkBinderPermission(P_DELETE, targetUid)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100190 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700191 }
192 String8 name8(name);
Rubin Xu7675c9f2017-03-15 19:26:52 +0000193 ALOGI("del %s %d", name8.string(), targetUid);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400194 String8 filename(mKeyStore->getKeyNameForUidWithDir(name8, targetUid, ::TYPE_ANY));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100195 ResponseCode result = mKeyStore->del(filename.string(), ::TYPE_ANY, get_user_id(targetUid));
196 if (result != ResponseCode::NO_ERROR) {
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400197 return result;
198 }
199
200 // Also delete any characteristics files
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100201 String8 chrFilename(
202 mKeyStore->getKeyNameForUidWithDir(name8, targetUid, ::TYPE_KEY_CHARACTERISTICS));
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400203 return mKeyStore->del(chrFilename.string(), ::TYPE_KEY_CHARACTERISTICS, get_user_id(targetUid));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700204}
205
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100206KeyStoreServiceReturnCode KeyStoreService::exist(const String16& name, int targetUid) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700207 targetUid = getEffectiveUid(targetUid);
208 if (!checkBinderPermission(P_EXIST, targetUid)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100209 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700210 }
211
212 String8 name8(name);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400213 String8 filename(mKeyStore->getKeyNameForUidWithDir(name8, targetUid, ::TYPE_ANY));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700214
215 if (access(filename.string(), R_OK) == -1) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100216 return (errno != ENOENT) ? ResponseCode::SYSTEM_ERROR : ResponseCode::KEY_NOT_FOUND;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700217 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100218 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700219}
220
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100221KeyStoreServiceReturnCode KeyStoreService::list(const String16& prefix, int targetUid,
222 Vector<String16>* matches) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700223 targetUid = getEffectiveUid(targetUid);
224 if (!checkBinderPermission(P_LIST, targetUid)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100225 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700226 }
227 const String8 prefix8(prefix);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400228 String8 filename(mKeyStore->getKeyNameForUid(prefix8, targetUid, TYPE_ANY));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700229
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100230 if (mKeyStore->list(filename, matches, get_user_id(targetUid)) != ResponseCode::NO_ERROR) {
231 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700232 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100233 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700234}
235
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100236KeyStoreServiceReturnCode KeyStoreService::reset() {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700237 if (!checkBinderPermission(P_RESET)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100238 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700239 }
240
241 uid_t callingUid = IPCThreadState::self()->getCallingUid();
242 mKeyStore->resetUser(get_user_id(callingUid), false);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100243 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700244}
245
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100246KeyStoreServiceReturnCode KeyStoreService::onUserPasswordChanged(int32_t userId,
247 const String16& password) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700248 if (!checkBinderPermission(P_PASSWORD)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100249 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700250 }
251
252 const String8 password8(password);
253 // Flush the auth token table to prevent stale tokens from sticking
254 // around.
255 mAuthTokenTable.Clear();
256
257 if (password.size() == 0) {
258 ALOGI("Secure lockscreen for user %d removed, deleting encrypted entries", userId);
259 mKeyStore->resetUser(userId, true);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100260 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700261 } else {
262 switch (mKeyStore->getState(userId)) {
263 case ::STATE_UNINITIALIZED: {
264 // generate master key, encrypt with password, write to file,
265 // initialize mMasterKey*.
266 return mKeyStore->initializeUser(password8, userId);
267 }
268 case ::STATE_NO_ERROR: {
269 // rewrite master key with new password.
270 return mKeyStore->writeMasterKey(password8, userId);
271 }
272 case ::STATE_LOCKED: {
273 ALOGE("Changing user %d's password while locked, clearing old encryption", userId);
274 mKeyStore->resetUser(userId, true);
275 return mKeyStore->initializeUser(password8, userId);
276 }
277 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100278 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700279 }
280}
281
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100282KeyStoreServiceReturnCode KeyStoreService::onUserAdded(int32_t userId, int32_t parentId) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700283 if (!checkBinderPermission(P_USER_CHANGED)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100284 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700285 }
286
287 // Sanity check that the new user has an empty keystore.
288 if (!mKeyStore->isEmpty(userId)) {
289 ALOGW("New user %d's keystore not empty. Clearing old entries.", userId);
290 }
291 // Unconditionally clear the keystore, just to be safe.
292 mKeyStore->resetUser(userId, false);
293 if (parentId != -1) {
294 // This profile must share the same master key password as the parent profile. Because the
295 // password of the parent profile is not known here, the best we can do is copy the parent's
296 // master key and master key file. This makes this profile use the same master key as the
297 // parent profile, forever.
298 return mKeyStore->copyMasterKey(parentId, userId);
299 } else {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100300 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700301 }
302}
303
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100304KeyStoreServiceReturnCode KeyStoreService::onUserRemoved(int32_t userId) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700305 if (!checkBinderPermission(P_USER_CHANGED)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100306 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700307 }
308
309 mKeyStore->resetUser(userId, false);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100310 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700311}
312
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100313KeyStoreServiceReturnCode KeyStoreService::lock(int32_t userId) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700314 if (!checkBinderPermission(P_LOCK)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100315 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700316 }
317
318 State state = mKeyStore->getState(userId);
319 if (state != ::STATE_NO_ERROR) {
320 ALOGD("calling lock in state: %d", state);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100321 return ResponseCode(state);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700322 }
323
324 mKeyStore->lock(userId);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100325 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700326}
327
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100328KeyStoreServiceReturnCode KeyStoreService::unlock(int32_t userId, const String16& pw) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700329 if (!checkBinderPermission(P_UNLOCK)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100330 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700331 }
332
333 State state = mKeyStore->getState(userId);
334 if (state != ::STATE_LOCKED) {
335 switch (state) {
336 case ::STATE_NO_ERROR:
337 ALOGI("calling unlock when already unlocked, ignoring.");
338 break;
339 case ::STATE_UNINITIALIZED:
340 ALOGE("unlock called on uninitialized keystore.");
341 break;
342 default:
343 ALOGE("unlock called on keystore in unknown state: %d", state);
344 break;
345 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100346 return ResponseCode(state);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700347 }
348
349 const String8 password8(pw);
350 // read master key, decrypt with password, initialize mMasterKey*.
351 return mKeyStore->readMasterKey(password8, userId);
352}
353
354bool KeyStoreService::isEmpty(int32_t userId) {
355 if (!checkBinderPermission(P_IS_EMPTY)) {
356 return false;
357 }
358
359 return mKeyStore->isEmpty(userId);
360}
361
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100362KeyStoreServiceReturnCode KeyStoreService::generate(const String16& name, int32_t targetUid,
363 int32_t keyType, int32_t keySize, int32_t flags,
364 Vector<sp<KeystoreArg>>* args) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700365 targetUid = getEffectiveUid(targetUid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100366 auto result =
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700367 checkBinderPermissionAndKeystoreState(P_INSERT, targetUid, flags & KEYSTORE_FLAG_ENCRYPTED);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100368 if (!result.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700369 return result;
370 }
371
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100372 keystore::AuthorizationSet params;
373 add_legacy_key_authorizations(keyType, &params);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700374
375 switch (keyType) {
376 case EVP_PKEY_EC: {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100377 params.push_back(TAG_ALGORITHM, Algorithm::EC);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700378 if (keySize == -1) {
379 keySize = EC_DEFAULT_KEY_SIZE;
380 } else if (keySize < EC_MIN_KEY_SIZE || keySize > EC_MAX_KEY_SIZE) {
381 ALOGI("invalid key size %d", keySize);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100382 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700383 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100384 params.push_back(TAG_KEY_SIZE, keySize);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700385 break;
386 }
387 case EVP_PKEY_RSA: {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100388 params.push_back(TAG_ALGORITHM, Algorithm::RSA);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700389 if (keySize == -1) {
390 keySize = RSA_DEFAULT_KEY_SIZE;
391 } else if (keySize < RSA_MIN_KEY_SIZE || keySize > RSA_MAX_KEY_SIZE) {
392 ALOGI("invalid key size %d", keySize);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100393 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700394 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100395 params.push_back(TAG_KEY_SIZE, keySize);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700396 unsigned long exponent = RSA_DEFAULT_EXPONENT;
397 if (args->size() > 1) {
398 ALOGI("invalid number of arguments: %zu", args->size());
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100399 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700400 } else if (args->size() == 1) {
Chih-Hung Hsieh24b2a392016-07-28 10:35:24 -0700401 const sp<KeystoreArg>& expArg = args->itemAt(0);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700402 if (expArg != NULL) {
403 Unique_BIGNUM pubExpBn(BN_bin2bn(
404 reinterpret_cast<const unsigned char*>(expArg->data()), expArg->size(), NULL));
405 if (pubExpBn.get() == NULL) {
406 ALOGI("Could not convert public exponent to BN");
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100407 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700408 }
409 exponent = BN_get_word(pubExpBn.get());
410 if (exponent == 0xFFFFFFFFL) {
411 ALOGW("cannot represent public exponent as a long value");
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100412 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700413 }
414 } else {
415 ALOGW("public exponent not read");
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100416 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700417 }
418 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100419 params.push_back(TAG_RSA_PUBLIC_EXPONENT, exponent);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700420 break;
421 }
422 default: {
423 ALOGW("Unsupported key type %d", keyType);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100424 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700425 }
426 }
427
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100428 auto rc = generateKey(name, params.hidl_data(), hidl_vec<uint8_t>(), targetUid, flags,
429 /*outCharacteristics*/ NULL);
430 if (!rc.isOk()) {
431 ALOGW("generate failed: %d", int32_t(rc));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700432 }
433 return translateResultToLegacyResult(rc);
434}
435
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100436KeyStoreServiceReturnCode KeyStoreService::import(const String16& name,
437 const hidl_vec<uint8_t>& data, int targetUid,
438 int32_t flags) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700439
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100440 const uint8_t* ptr = &data[0];
441
442 Unique_PKCS8_PRIV_KEY_INFO pkcs8(d2i_PKCS8_PRIV_KEY_INFO(NULL, &ptr, data.size()));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700443 if (!pkcs8.get()) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100444 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700445 }
446 Unique_EVP_PKEY pkey(EVP_PKCS82PKEY(pkcs8.get()));
447 if (!pkey.get()) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100448 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700449 }
450 int type = EVP_PKEY_type(pkey->type);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100451 AuthorizationSet params;
452 add_legacy_key_authorizations(type, &params);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700453 switch (type) {
454 case EVP_PKEY_RSA:
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100455 params.push_back(TAG_ALGORITHM, Algorithm::RSA);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700456 break;
457 case EVP_PKEY_EC:
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100458 params.push_back(TAG_ALGORITHM, Algorithm::EC);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700459 break;
460 default:
461 ALOGW("Unsupported key type %d", type);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100462 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700463 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100464
465 auto rc = importKey(name, params.hidl_data(), KeyFormat::PKCS8, data, targetUid, flags,
466 /*outCharacteristics*/ NULL);
467
468 if (!rc.isOk()) {
469 ALOGW("importKey failed: %d", int32_t(rc));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700470 }
471 return translateResultToLegacyResult(rc);
472}
473
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100474KeyStoreServiceReturnCode KeyStoreService::sign(const String16& name, const hidl_vec<uint8_t>& data,
475 hidl_vec<uint8_t>* out) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700476 if (!checkBinderPermission(P_SIGN)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100477 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700478 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100479 return doLegacySignVerify(name, data, out, hidl_vec<uint8_t>(), KeyPurpose::SIGN);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700480}
481
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100482KeyStoreServiceReturnCode KeyStoreService::verify(const String16& name,
483 const hidl_vec<uint8_t>& data,
484 const hidl_vec<uint8_t>& signature) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700485 if (!checkBinderPermission(P_VERIFY)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100486 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700487 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100488 return doLegacySignVerify(name, data, nullptr, signature, KeyPurpose::VERIFY);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700489}
490
491/*
492 * TODO: The abstraction between things stored in hardware and regular blobs
493 * of data stored on the filesystem should be moved down to keystore itself.
494 * Unfortunately the Java code that calls this has naming conventions that it
495 * knows about. Ideally keystore shouldn't be used to store random blobs of
496 * data.
497 *
498 * Until that happens, it's necessary to have a separate "get_pubkey" and
499 * "del_key" since the Java code doesn't really communicate what it's
500 * intentions are.
501 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100502KeyStoreServiceReturnCode KeyStoreService::get_pubkey(const String16& name,
503 hidl_vec<uint8_t>* pubKey) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700504 ExportResult result;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100505 exportKey(name, KeyFormat::X509, hidl_vec<uint8_t>(), hidl_vec<uint8_t>(), UID_SELF, &result);
506 if (!result.resultCode.isOk()) {
507 ALOGW("export failed: %d", int32_t(result.resultCode));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700508 return translateResultToLegacyResult(result.resultCode);
509 }
510
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100511 if (pubKey) *pubKey = std::move(result.exportData);
512 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700513}
514
Janis Danisevskis6d449e82017-06-07 18:03:31 -0700515String16 KeyStoreService::grant(const String16& name, int32_t granteeUid) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700516 uid_t callingUid = IPCThreadState::self()->getCallingUid();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100517 auto result = checkBinderPermissionAndKeystoreState(P_GRANT);
518 if (!result.isOk()) {
Janis Danisevskis6d449e82017-06-07 18:03:31 -0700519 return String16();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700520 }
521
522 String8 name8(name);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400523 String8 filename(mKeyStore->getKeyNameForUidWithDir(name8, callingUid, ::TYPE_ANY));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700524
525 if (access(filename.string(), R_OK) == -1) {
Janis Danisevskis6d449e82017-06-07 18:03:31 -0700526 return String16();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700527 }
528
Janis Danisevskis6d449e82017-06-07 18:03:31 -0700529 return String16(mKeyStore->addGrant(filename.string(), String8(name).string(), granteeUid).c_str());
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700530}
531
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100532KeyStoreServiceReturnCode KeyStoreService::ungrant(const String16& name, int32_t granteeUid) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700533 uid_t callingUid = IPCThreadState::self()->getCallingUid();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100534 auto result = checkBinderPermissionAndKeystoreState(P_GRANT);
535 if (!result.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700536 return result;
537 }
538
539 String8 name8(name);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400540 String8 filename(mKeyStore->getKeyNameForUidWithDir(name8, callingUid, ::TYPE_ANY));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700541
542 if (access(filename.string(), R_OK) == -1) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100543 return (errno != ENOENT) ? ResponseCode::SYSTEM_ERROR : ResponseCode::KEY_NOT_FOUND;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700544 }
545
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100546 return mKeyStore->removeGrant(filename.string(), granteeUid) ? ResponseCode::NO_ERROR
547 : ResponseCode::KEY_NOT_FOUND;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700548}
549
550int64_t KeyStoreService::getmtime(const String16& name, int32_t uid) {
551 uid_t targetUid = getEffectiveUid(uid);
552 if (!checkBinderPermission(P_GET, targetUid)) {
553 ALOGW("permission denied for %d: getmtime", targetUid);
554 return -1L;
555 }
556
557 String8 name8(name);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400558 String8 filename(mKeyStore->getKeyNameForUidWithDir(name8, targetUid, ::TYPE_ANY));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700559
560 if (access(filename.string(), R_OK) == -1) {
561 ALOGW("could not access %s for getmtime", filename.string());
562 return -1L;
563 }
564
565 int fd = TEMP_FAILURE_RETRY(open(filename.string(), O_NOFOLLOW, O_RDONLY));
566 if (fd < 0) {
567 ALOGW("could not open %s for getmtime", filename.string());
568 return -1L;
569 }
570
571 struct stat s;
572 int ret = fstat(fd, &s);
573 close(fd);
574 if (ret == -1) {
575 ALOGW("could not stat %s for getmtime", filename.string());
576 return -1L;
577 }
578
579 return static_cast<int64_t>(s.st_mtime);
580}
581
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400582// TODO(tuckeris): This is dead code, remove it. Don't bother copying over key characteristics here
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100583KeyStoreServiceReturnCode KeyStoreService::duplicate(const String16& srcKey, int32_t srcUid,
584 const String16& destKey, int32_t destUid) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700585 uid_t callingUid = IPCThreadState::self()->getCallingUid();
586 pid_t spid = IPCThreadState::self()->getCallingPid();
587 if (!has_permission(callingUid, P_DUPLICATE, spid)) {
588 ALOGW("permission denied for %d: duplicate", callingUid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100589 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700590 }
591
592 State state = mKeyStore->getState(get_user_id(callingUid));
593 if (!isKeystoreUnlocked(state)) {
594 ALOGD("calling duplicate in state: %d", state);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100595 return ResponseCode(state);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700596 }
597
598 if (srcUid == -1 || static_cast<uid_t>(srcUid) == callingUid) {
599 srcUid = callingUid;
600 } else if (!is_granted_to(callingUid, srcUid)) {
601 ALOGD("migrate not granted from source: %d -> %d", callingUid, srcUid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100602 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700603 }
604
605 if (destUid == -1) {
606 destUid = callingUid;
607 }
608
609 if (srcUid != destUid) {
610 if (static_cast<uid_t>(srcUid) != callingUid) {
611 ALOGD("can only duplicate from caller to other or to same uid: "
612 "calling=%d, srcUid=%d, destUid=%d",
613 callingUid, srcUid, destUid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100614 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700615 }
616
617 if (!is_granted_to(callingUid, destUid)) {
618 ALOGD("duplicate not granted to dest: %d -> %d", callingUid, destUid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100619 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700620 }
621 }
622
623 String8 source8(srcKey);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400624 String8 sourceFile(mKeyStore->getKeyNameForUidWithDir(source8, srcUid, ::TYPE_ANY));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700625
626 String8 target8(destKey);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400627 String8 targetFile(mKeyStore->getKeyNameForUidWithDir(target8, destUid, ::TYPE_ANY));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700628
629 if (access(targetFile.string(), W_OK) != -1 || errno != ENOENT) {
630 ALOGD("destination already exists: %s", targetFile.string());
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100631 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700632 }
633
634 Blob keyBlob;
635 ResponseCode responseCode =
636 mKeyStore->get(sourceFile.string(), &keyBlob, TYPE_ANY, get_user_id(srcUid));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100637 if (responseCode != ResponseCode::NO_ERROR) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700638 return responseCode;
639 }
640
641 return mKeyStore->put(targetFile.string(), &keyBlob, get_user_id(destUid));
642}
643
644int32_t KeyStoreService::is_hardware_backed(const String16& keyType) {
645 return mKeyStore->isHardwareBacked(keyType) ? 1 : 0;
646}
647
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100648KeyStoreServiceReturnCode KeyStoreService::clear_uid(int64_t targetUid64) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700649 uid_t targetUid = getEffectiveUid(targetUid64);
650 if (!checkBinderPermissionSelfOrSystem(P_CLEAR_UID, targetUid)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100651 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700652 }
Rubin Xu7675c9f2017-03-15 19:26:52 +0000653 ALOGI("clear_uid %" PRId64, targetUid64);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700654
655 String8 prefix = String8::format("%u_", targetUid);
656 Vector<String16> aliases;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100657 if (mKeyStore->list(prefix, &aliases, get_user_id(targetUid)) != ResponseCode::NO_ERROR) {
658 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700659 }
660
661 for (uint32_t i = 0; i < aliases.size(); i++) {
662 String8 name8(aliases[i]);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400663 String8 filename(mKeyStore->getKeyNameForUidWithDir(name8, targetUid, ::TYPE_ANY));
Rubin Xu85c85e92017-04-26 20:07:30 +0100664
665 if (get_app_id(targetUid) == AID_SYSTEM) {
666 Blob keyBlob;
667 ResponseCode responseCode =
668 mKeyStore->get(filename.string(), &keyBlob, ::TYPE_ANY, get_user_id(targetUid));
669 if (responseCode == ResponseCode::NO_ERROR && keyBlob.isCriticalToDeviceEncryption()) {
670 // Do not clear keys critical to device encryption under system uid.
671 continue;
672 }
673 }
674
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700675 mKeyStore->del(filename.string(), ::TYPE_ANY, get_user_id(targetUid));
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400676
677 // del() will fail silently if no cached characteristics are present for this alias.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100678 String8 chr_filename(
679 mKeyStore->getKeyNameForUidWithDir(name8, targetUid, ::TYPE_KEY_CHARACTERISTICS));
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400680 mKeyStore->del(chr_filename.string(), ::TYPE_KEY_CHARACTERISTICS, get_user_id(targetUid));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700681 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100682 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700683}
684
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100685KeyStoreServiceReturnCode KeyStoreService::addRngEntropy(const hidl_vec<uint8_t>& entropy) {
686 const auto& device = mKeyStore->getDevice();
687 return KS_HANDLE_HIDL_ERROR(device->addRngEntropy(entropy));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700688}
689
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100690KeyStoreServiceReturnCode KeyStoreService::generateKey(const String16& name,
691 const hidl_vec<KeyParameter>& params,
692 const hidl_vec<uint8_t>& entropy, int uid,
693 int flags,
694 KeyCharacteristics* outCharacteristics) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700695 uid = getEffectiveUid(uid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100696 KeyStoreServiceReturnCode rc =
697 checkBinderPermissionAndKeystoreState(P_INSERT, uid, flags & KEYSTORE_FLAG_ENCRYPTED);
698 if (!rc.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700699 return rc;
700 }
Rubin Xu67899de2017-04-21 19:15:13 +0100701 if ((flags & KEYSTORE_FLAG_CRITICAL_TO_DEVICE_ENCRYPTION) && get_app_id(uid) != AID_SYSTEM) {
702 ALOGE("Non-system uid %d cannot set FLAG_CRITICAL_TO_DEVICE_ENCRYPTION", uid);
703 return ResponseCode::PERMISSION_DENIED;
704 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700705
Shawn Willdene2a7b522017-04-11 09:27:40 -0600706 if (containsTag(params, Tag::INCLUDE_UNIQUE_ID)) {
707 if (!checkBinderPermission(P_GEN_UNIQUE_ID)) return ResponseCode::PERMISSION_DENIED;
708 }
709
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100710 bool usingFallback = false;
711 auto& dev = mKeyStore->getDevice();
712 AuthorizationSet keyCharacteristics = params;
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400713
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700714 // TODO: Seed from Linux RNG before this.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100715 rc = addRngEntropy(entropy);
716 if (!rc.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700717 return rc;
718 }
719
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100720 KeyStoreServiceReturnCode error;
721 auto hidl_cb = [&](ErrorCode ret, const hidl_vec<uint8_t>& hidlKeyBlob,
722 const KeyCharacteristics& keyCharacteristics) {
723 error = ret;
724 if (!error.isOk()) {
725 return;
726 }
727 if (outCharacteristics) *outCharacteristics = keyCharacteristics;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700728
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100729 // Write the key
730 String8 name8(name);
731 String8 filename(mKeyStore->getKeyNameForUidWithDir(name8, uid, ::TYPE_KEYMASTER_10));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700732
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100733 Blob keyBlob(&hidlKeyBlob[0], hidlKeyBlob.size(), NULL, 0, ::TYPE_KEYMASTER_10);
734 keyBlob.setFallback(usingFallback);
Rubin Xu67899de2017-04-21 19:15:13 +0100735 keyBlob.setCriticalToDeviceEncryption(flags & KEYSTORE_FLAG_CRITICAL_TO_DEVICE_ENCRYPTION);
736 if (isAuthenticationBound(params) && !keyBlob.isCriticalToDeviceEncryption()) {
Shawn Willdend5a24e62017-02-28 13:53:24 -0700737 keyBlob.setSuperEncrypted(true);
738 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100739 keyBlob.setEncrypted(flags & KEYSTORE_FLAG_ENCRYPTED);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700740
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100741 error = mKeyStore->put(filename.string(), &keyBlob, get_user_id(uid));
742 };
743
744 rc = KS_HANDLE_HIDL_ERROR(dev->generateKey(params, hidl_cb));
745 if (!rc.isOk()) {
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400746 return rc;
747 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100748 if (!error.isOk()) {
749 ALOGE("Failed to generate key -> falling back to software keymaster");
750 usingFallback = true;
Janis Danisevskise8ba1802017-01-30 10:49:51 +0000751 auto fallback = mKeyStore->getFallbackDevice();
752 if (!fallback.isOk()) {
753 return error;
754 }
755 rc = KS_HANDLE_HIDL_ERROR(fallback.value()->generateKey(params, hidl_cb));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100756 if (!rc.isOk()) {
757 return rc;
758 }
759 if (!error.isOk()) {
760 return error;
761 }
762 }
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400763
764 // Write the characteristics:
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100765 String8 name8(name);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400766 String8 cFilename(mKeyStore->getKeyNameForUidWithDir(name8, uid, ::TYPE_KEY_CHARACTERISTICS));
767
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100768 std::stringstream kc_stream;
769 keyCharacteristics.Serialize(&kc_stream);
770 if (kc_stream.bad()) {
771 return ResponseCode::SYSTEM_ERROR;
772 }
773 auto kc_buf = kc_stream.str();
774 Blob charBlob(reinterpret_cast<const uint8_t*>(kc_buf.data()), kc_buf.size(), NULL, 0,
775 ::TYPE_KEY_CHARACTERISTICS);
776 charBlob.setFallback(usingFallback);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400777 charBlob.setEncrypted(flags & KEYSTORE_FLAG_ENCRYPTED);
778
779 return mKeyStore->put(cFilename.string(), &charBlob, get_user_id(uid));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700780}
781
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100782KeyStoreServiceReturnCode
783KeyStoreService::getKeyCharacteristics(const String16& name, const hidl_vec<uint8_t>& clientId,
784 const hidl_vec<uint8_t>& appData, int32_t uid,
785 KeyCharacteristics* outCharacteristics) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700786 if (!outCharacteristics) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100787 return ErrorCode::UNEXPECTED_NULL_POINTER;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700788 }
789
790 uid_t targetUid = getEffectiveUid(uid);
791 uid_t callingUid = IPCThreadState::self()->getCallingUid();
792 if (!is_granted_to(callingUid, targetUid)) {
793 ALOGW("uid %d not permitted to act for uid %d in getKeyCharacteristics", callingUid,
794 targetUid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100795 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700796 }
797
798 Blob keyBlob;
799 String8 name8(name);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700800
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100801 KeyStoreServiceReturnCode rc =
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700802 mKeyStore->getKeyForName(&keyBlob, name8, targetUid, TYPE_KEYMASTER_10);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100803 if (!rc.isOk()) {
804 return rc;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700805 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100806
807 auto hidlKeyBlob = blob2hidlVec(keyBlob);
808 auto& dev = mKeyStore->getDevice(keyBlob);
809
810 KeyStoreServiceReturnCode error;
811
812 auto hidlCb = [&](ErrorCode ret, const KeyCharacteristics& keyCharacteristics) {
813 error = ret;
814 if (!error.isOk()) {
815 return;
Shawn Willden98c59162016-03-20 09:10:18 -0600816 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100817 *outCharacteristics = keyCharacteristics;
818 };
819
820 rc = KS_HANDLE_HIDL_ERROR(dev->getKeyCharacteristics(hidlKeyBlob, clientId, appData, hidlCb));
821 if (!rc.isOk()) {
822 return rc;
823 }
824
825 if (error == ErrorCode::KEY_REQUIRES_UPGRADE) {
826 AuthorizationSet upgradeParams;
827 if (clientId.size()) {
828 upgradeParams.push_back(TAG_APPLICATION_ID, clientId);
829 }
830 if (appData.size()) {
831 upgradeParams.push_back(TAG_APPLICATION_DATA, appData);
Shawn Willden98c59162016-03-20 09:10:18 -0600832 }
833 rc = upgradeKeyBlob(name, targetUid, upgradeParams, &keyBlob);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100834 if (!rc.isOk()) {
Shawn Willden98c59162016-03-20 09:10:18 -0600835 return rc;
836 }
Shawn Willden715d0232016-01-21 00:45:13 -0700837
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100838 auto upgradedHidlKeyBlob = blob2hidlVec(keyBlob);
839
840 rc = KS_HANDLE_HIDL_ERROR(
841 dev->getKeyCharacteristics(upgradedHidlKeyBlob, clientId, appData, hidlCb));
842 if (!rc.isOk()) {
843 return rc;
844 }
845 // Note that, on success, "error" will have been updated by the hidlCB callback.
846 // So it is fine to return "error" below.
847 }
848 return error;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700849}
850
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100851KeyStoreServiceReturnCode
852KeyStoreService::importKey(const String16& name, const hidl_vec<KeyParameter>& params,
853 KeyFormat format, const hidl_vec<uint8_t>& keyData, int uid, int flags,
854 KeyCharacteristics* outCharacteristics) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700855 uid = getEffectiveUid(uid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100856 KeyStoreServiceReturnCode rc =
857 checkBinderPermissionAndKeystoreState(P_INSERT, uid, flags & KEYSTORE_FLAG_ENCRYPTED);
858 if (!rc.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700859 return rc;
860 }
Rubin Xu67899de2017-04-21 19:15:13 +0100861 if ((flags & KEYSTORE_FLAG_CRITICAL_TO_DEVICE_ENCRYPTION) && get_app_id(uid) != AID_SYSTEM) {
862 ALOGE("Non-system uid %d cannot set FLAG_CRITICAL_TO_DEVICE_ENCRYPTION", uid);
863 return ResponseCode::PERMISSION_DENIED;
864 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700865
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100866 bool usingFallback = false;
867 auto& dev = mKeyStore->getDevice();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700868
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700869 String8 name8(name);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700870
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100871 KeyStoreServiceReturnCode error;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700872
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100873 auto hidlCb = [&](ErrorCode ret, const hidl_vec<uint8_t>& keyBlob,
874 const KeyCharacteristics& keyCharacteristics) {
875 error = ret;
876 if (!error.isOk()) {
877 return;
878 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700879
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100880 if (outCharacteristics) *outCharacteristics = keyCharacteristics;
881
882 // Write the key:
883 String8 filename(mKeyStore->getKeyNameForUidWithDir(name8, uid, ::TYPE_KEYMASTER_10));
884
885 Blob ksBlob(&keyBlob[0], keyBlob.size(), NULL, 0, ::TYPE_KEYMASTER_10);
886 ksBlob.setFallback(usingFallback);
Rubin Xu67899de2017-04-21 19:15:13 +0100887 ksBlob.setCriticalToDeviceEncryption(flags & KEYSTORE_FLAG_CRITICAL_TO_DEVICE_ENCRYPTION);
888 if (isAuthenticationBound(params) && !ksBlob.isCriticalToDeviceEncryption()) {
Shawn Willdend5a24e62017-02-28 13:53:24 -0700889 ksBlob.setSuperEncrypted(true);
890 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100891 ksBlob.setEncrypted(flags & KEYSTORE_FLAG_ENCRYPTED);
892
893 error = mKeyStore->put(filename.string(), &ksBlob, get_user_id(uid));
894 };
895
896 rc = KS_HANDLE_HIDL_ERROR(dev->importKey(params, format, keyData, hidlCb));
897 // possible hidl error
898 if (!rc.isOk()) {
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400899 return rc;
900 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100901 // now check error from callback
902 if (!error.isOk()) {
903 ALOGE("Failed to import key -> falling back to software keymaster");
904 usingFallback = true;
Janis Danisevskise8ba1802017-01-30 10:49:51 +0000905 auto fallback = mKeyStore->getFallbackDevice();
906 if (!fallback.isOk()) {
907 return error;
908 }
909 rc = KS_HANDLE_HIDL_ERROR(fallback.value()->importKey(params, format, keyData, hidlCb));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100910 // possible hidl error
911 if (!rc.isOk()) {
912 return rc;
913 }
914 // now check error from callback
915 if (!error.isOk()) {
916 return error;
917 }
918 }
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400919
920 // Write the characteristics:
921 String8 cFilename(mKeyStore->getKeyNameForUidWithDir(name8, uid, ::TYPE_KEY_CHARACTERISTICS));
922
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100923 AuthorizationSet opParams = params;
924 std::stringstream kcStream;
925 opParams.Serialize(&kcStream);
926 if (kcStream.bad()) return ResponseCode::SYSTEM_ERROR;
927 auto kcBuf = kcStream.str();
928
929 Blob charBlob(reinterpret_cast<const uint8_t*>(kcBuf.data()), kcBuf.size(), NULL, 0,
930 ::TYPE_KEY_CHARACTERISTICS);
931 charBlob.setFallback(usingFallback);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400932 charBlob.setEncrypted(flags & KEYSTORE_FLAG_ENCRYPTED);
933
934 return mKeyStore->put(cFilename.string(), &charBlob, get_user_id(uid));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700935}
936
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100937void KeyStoreService::exportKey(const String16& name, KeyFormat format,
938 const hidl_vec<uint8_t>& clientId, const hidl_vec<uint8_t>& appData,
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700939 int32_t uid, ExportResult* result) {
940
941 uid_t targetUid = getEffectiveUid(uid);
942 uid_t callingUid = IPCThreadState::self()->getCallingUid();
943 if (!is_granted_to(callingUid, targetUid)) {
944 ALOGW("uid %d not permitted to act for uid %d in exportKey", callingUid, targetUid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100945 result->resultCode = ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700946 return;
947 }
948
949 Blob keyBlob;
950 String8 name8(name);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700951
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100952 result->resultCode = mKeyStore->getKeyForName(&keyBlob, name8, targetUid, TYPE_KEYMASTER_10);
953 if (!result->resultCode.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700954 return;
955 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100956
957 auto key = blob2hidlVec(keyBlob);
958 auto& dev = mKeyStore->getDevice(keyBlob);
959
960 auto hidlCb = [&](ErrorCode ret, const ::android::hardware::hidl_vec<uint8_t>& keyMaterial) {
961 result->resultCode = ret;
962 if (!result->resultCode.isOk()) {
Ji Wang2c142312016-10-14 17:21:10 +0800963 return;
964 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100965 result->exportData = keyMaterial;
966 };
967 KeyStoreServiceReturnCode rc =
968 KS_HANDLE_HIDL_ERROR(dev->exportKey(format, key, clientId, appData, hidlCb));
969 // Overwrite result->resultCode only on HIDL error. Otherwise we want the result set in the
970 // callback hidlCb.
971 if (!rc.isOk()) {
972 result->resultCode = rc;
Ji Wang2c142312016-10-14 17:21:10 +0800973 }
974
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100975 if (result->resultCode == ErrorCode::KEY_REQUIRES_UPGRADE) {
976 AuthorizationSet upgradeParams;
977 if (clientId.size()) {
978 upgradeParams.push_back(TAG_APPLICATION_ID, clientId);
979 }
980 if (appData.size()) {
981 upgradeParams.push_back(TAG_APPLICATION_DATA, appData);
982 }
983 result->resultCode = upgradeKeyBlob(name, targetUid, upgradeParams, &keyBlob);
984 if (!result->resultCode.isOk()) {
985 return;
986 }
987
988 auto upgradedHidlKeyBlob = blob2hidlVec(keyBlob);
989
990 result->resultCode = KS_HANDLE_HIDL_ERROR(
991 dev->exportKey(format, upgradedHidlKeyBlob, clientId, appData, hidlCb));
992 if (!result->resultCode.isOk()) {
993 return;
994 }
995 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700996}
997
Shawn Willdend3ed3a22017-03-28 00:39:16 +0000998static inline void addAuthTokenToParams(AuthorizationSet* params, const HardwareAuthToken* token) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100999 if (token) {
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001000 params->push_back(TAG_AUTH_TOKEN, authToken2HidlVec(*token));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001001 }
1002}
1003
1004void KeyStoreService::begin(const sp<IBinder>& appToken, const String16& name, KeyPurpose purpose,
1005 bool pruneable, const hidl_vec<KeyParameter>& params,
1006 const hidl_vec<uint8_t>& entropy, int32_t uid,
1007 OperationResult* result) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001008 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1009 uid_t targetUid = getEffectiveUid(uid);
1010 if (!is_granted_to(callingUid, targetUid)) {
1011 ALOGW("uid %d not permitted to act for uid %d in begin", callingUid, targetUid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001012 result->resultCode = ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001013 return;
1014 }
1015 if (!pruneable && get_app_id(callingUid) != AID_SYSTEM) {
1016 ALOGE("Non-system uid %d trying to start non-pruneable operation", callingUid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001017 result->resultCode = ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001018 return;
1019 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001020 if (!checkAllowedOperationParams(params)) {
1021 result->resultCode = ErrorCode::INVALID_ARGUMENT;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001022 return;
1023 }
1024 Blob keyBlob;
1025 String8 name8(name);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001026 result->resultCode = mKeyStore->getKeyForName(&keyBlob, name8, targetUid, TYPE_KEYMASTER_10);
Shawn Willdend5a24e62017-02-28 13:53:24 -07001027 if (result->resultCode == ResponseCode::LOCKED && keyBlob.isSuperEncrypted()) {
1028 result->resultCode = ErrorCode::KEY_USER_NOT_AUTHENTICATED;
1029 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001030 if (!result->resultCode.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001031 return;
1032 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001033
1034 auto key = blob2hidlVec(keyBlob);
1035 auto& dev = mKeyStore->getDevice(keyBlob);
1036 AuthorizationSet opParams = params;
1037 KeyCharacteristics characteristics;
1038 result->resultCode = getOperationCharacteristics(key, &dev, opParams, &characteristics);
1039
1040 if (result->resultCode == ErrorCode::KEY_REQUIRES_UPGRADE) {
1041 result->resultCode = upgradeKeyBlob(name, targetUid, opParams, &keyBlob);
1042 if (!result->resultCode.isOk()) {
Shawn Willden98c59162016-03-20 09:10:18 -06001043 return;
1044 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001045 key = blob2hidlVec(keyBlob);
1046 result->resultCode = getOperationCharacteristics(key, &dev, opParams, &characteristics);
Shawn Willden98c59162016-03-20 09:10:18 -06001047 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001048 if (!result->resultCode.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001049 return;
1050 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001051
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001052 const HardwareAuthToken* authToken = NULL;
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001053
1054 // Merge these characteristics with the ones cached when the key was generated or imported
1055 Blob charBlob;
1056 AuthorizationSet persistedCharacteristics;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001057 result->resultCode =
1058 mKeyStore->getKeyForName(&charBlob, name8, targetUid, TYPE_KEY_CHARACTERISTICS);
1059 if (result->resultCode.isOk()) {
1060 // TODO write one shot stream buffer to avoid copying (twice here)
1061 std::string charBuffer(reinterpret_cast<const char*>(charBlob.getValue()),
1062 charBlob.getLength());
1063 std::stringstream charStream(charBuffer);
1064 persistedCharacteristics.Deserialize(&charStream);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001065 } else {
1066 ALOGD("Unable to read cached characteristics for key");
1067 }
1068
1069 // Replace the sw_enforced set with those persisted to disk, minus hw_enforced
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001070 AuthorizationSet softwareEnforced = characteristics.softwareEnforced;
1071 AuthorizationSet teeEnforced = characteristics.teeEnforced;
1072 persistedCharacteristics.Union(softwareEnforced);
1073 persistedCharacteristics.Subtract(teeEnforced);
1074 characteristics.softwareEnforced = persistedCharacteristics.hidl_data();
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001075
Shawn Willdenc5e8f362017-08-31 09:23:06 -06001076 auto authResult = getAuthToken(characteristics, 0, purpose, &authToken,
1077 /*failOnTokenMissing*/ false);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001078 // If per-operation auth is needed we need to begin the operation and
1079 // the client will need to authorize that operation before calling
1080 // update. Any other auth issues stop here.
Shawn Willdenc5e8f362017-08-31 09:23:06 -06001081 if (!authResult.isOk() && authResult != ResponseCode::OP_AUTH_NEEDED) return;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001082
1083 addAuthTokenToParams(&opParams, authToken);
1084
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001085 // Add entropy to the device first.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001086 if (entropy.size()) {
1087 result->resultCode = addRngEntropy(entropy);
1088 if (!result->resultCode.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001089 return;
1090 }
1091 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001092
1093 // Create a keyid for this key.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001094 km_id_t keyid;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001095 if (!enforcement_policy.CreateKeyId(key, &keyid)) {
1096 ALOGE("Failed to create a key ID for authorization checking.");
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001097 result->resultCode = ErrorCode::UNKNOWN_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001098 return;
1099 }
1100
1101 // Check that all key authorization policy requirements are met.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001102 AuthorizationSet key_auths = characteristics.teeEnforced;
1103 key_auths.append(&characteristics.softwareEnforced[0],
1104 &characteristics.softwareEnforced[characteristics.softwareEnforced.size()]);
1105
1106 result->resultCode = enforcement_policy.AuthorizeOperation(
1107 purpose, keyid, key_auths, opParams, 0 /* op_handle */, true /* is_begin_operation */);
1108 if (!result->resultCode.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001109 return;
1110 }
1111
Shawn Willdene2a7b522017-04-11 09:27:40 -06001112 // If there are more than kMaxOperations, abort the oldest operation that was started as
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001113 // pruneable.
Shawn Willdene2a7b522017-04-11 09:27:40 -06001114 while (mOperationMap.getOperationCount() >= kMaxOperations) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001115 ALOGD("Reached or exceeded concurrent operations limit");
1116 if (!pruneOperation()) {
1117 break;
1118 }
1119 }
1120
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001121 auto hidlCb = [&](ErrorCode ret, const hidl_vec<KeyParameter>& outParams,
1122 uint64_t operationHandle) {
1123 result->resultCode = ret;
1124 if (!result->resultCode.isOk()) {
1125 return;
1126 }
1127 result->handle = operationHandle;
1128 result->outParams = outParams;
1129 };
1130
1131 ErrorCode rc = KS_HANDLE_HIDL_ERROR(dev->begin(purpose, key, opParams.hidl_data(), hidlCb));
1132 if (rc != ErrorCode::OK) {
1133 ALOGW("Got error %d from begin()", rc);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001134 }
1135
1136 // If there are too many operations abort the oldest operation that was
1137 // started as pruneable and try again.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001138 while (rc == ErrorCode::TOO_MANY_OPERATIONS && mOperationMap.hasPruneableOperation()) {
1139 ALOGW("Ran out of operation handles");
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001140 if (!pruneOperation()) {
1141 break;
1142 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001143 rc = KS_HANDLE_HIDL_ERROR(dev->begin(purpose, key, opParams.hidl_data(), hidlCb));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001144 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001145 if (rc != ErrorCode::OK) {
1146 result->resultCode = rc;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001147 return;
1148 }
1149
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001150 // Note: The operation map takes possession of the contents of "characteristics".
1151 // It is safe to use characteristics after the following line but it will be empty.
1152 sp<IBinder> operationToken = mOperationMap.addOperation(
1153 result->handle, keyid, purpose, dev, appToken, std::move(characteristics), pruneable);
1154 assert(characteristics.teeEnforced.size() == 0);
1155 assert(characteristics.softwareEnforced.size() == 0);
Shawn Willdenc5e8f362017-08-31 09:23:06 -06001156 result->token = operationToken;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001157
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001158 if (authToken) {
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001159 mOperationMap.setOperationAuthToken(operationToken, authToken);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001160 }
1161 // Return the authentication lookup result. If this is a per operation
1162 // auth'd key then the resultCode will be ::OP_AUTH_NEEDED and the
1163 // application should get an auth token using the handle before the
1164 // first call to update, which will fail if keystore hasn't received the
1165 // auth token.
Shawn Willdenc5e8f362017-08-31 09:23:06 -06001166 result->resultCode = authResult;
1167
1168 // Other result fields were set in the begin operation's callback.
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001169}
1170
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001171void KeyStoreService::update(const sp<IBinder>& token, const hidl_vec<KeyParameter>& params,
1172 const hidl_vec<uint8_t>& data, OperationResult* result) {
1173 if (!checkAllowedOperationParams(params)) {
1174 result->resultCode = ErrorCode::INVALID_ARGUMENT;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001175 return;
1176 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001177 km_device_t dev;
1178 uint64_t handle;
1179 KeyPurpose purpose;
1180 km_id_t keyid;
1181 const KeyCharacteristics* characteristics;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001182 if (!mOperationMap.getOperation(token, &handle, &keyid, &purpose, &dev, &characteristics)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001183 result->resultCode = ErrorCode::INVALID_OPERATION_HANDLE;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001184 return;
1185 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001186 AuthorizationSet opParams = params;
1187 result->resultCode = addOperationAuthTokenIfNeeded(token, &opParams);
1188 if (!result->resultCode.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001189 return;
1190 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001191
1192 // Check that all key authorization policy requirements are met.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001193 AuthorizationSet key_auths(characteristics->teeEnforced);
1194 key_auths.append(&characteristics->softwareEnforced[0],
1195 &characteristics->softwareEnforced[characteristics->softwareEnforced.size()]);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001196 result->resultCode = enforcement_policy.AuthorizeOperation(
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001197 purpose, keyid, key_auths, opParams, handle, false /* is_begin_operation */);
1198 if (!result->resultCode.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001199 return;
1200 }
1201
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001202 auto hidlCb = [&](ErrorCode ret, uint32_t inputConsumed,
1203 const hidl_vec<KeyParameter>& outParams, const hidl_vec<uint8_t>& output) {
1204 result->resultCode = ret;
1205 if (!result->resultCode.isOk()) {
1206 return;
1207 }
1208 result->inputConsumed = inputConsumed;
1209 result->outParams = outParams;
1210 result->data = output;
1211 };
1212
Janis Danisevskisb0245ee2017-01-25 15:43:01 +00001213 KeyStoreServiceReturnCode rc = KS_HANDLE_HIDL_ERROR(dev->update(handle, opParams.hidl_data(),
1214 data, hidlCb));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001215 // just a reminder: on success result->resultCode was set in the callback. So we only overwrite
1216 // it if there was a communication error indicated by the ErrorCode.
1217 if (!rc.isOk()) {
1218 result->resultCode = rc;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001219 }
1220}
1221
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001222void KeyStoreService::finish(const sp<IBinder>& token, const hidl_vec<KeyParameter>& params,
1223 const hidl_vec<uint8_t>& signature, const hidl_vec<uint8_t>& entropy,
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001224 OperationResult* result) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001225 if (!checkAllowedOperationParams(params)) {
1226 result->resultCode = ErrorCode::INVALID_ARGUMENT;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001227 return;
1228 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001229 km_device_t dev;
1230 uint64_t handle;
1231 KeyPurpose purpose;
1232 km_id_t keyid;
1233 const KeyCharacteristics* characteristics;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001234 if (!mOperationMap.getOperation(token, &handle, &keyid, &purpose, &dev, &characteristics)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001235 result->resultCode = ErrorCode::INVALID_OPERATION_HANDLE;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001236 return;
1237 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001238 AuthorizationSet opParams = params;
1239 result->resultCode = addOperationAuthTokenIfNeeded(token, &opParams);
1240 if (!result->resultCode.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001241 return;
1242 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001243
1244 if (entropy.size()) {
1245 result->resultCode = addRngEntropy(entropy);
1246 if (!result->resultCode.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001247 return;
1248 }
1249 }
1250
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001251 // Check that all key authorization policy requirements are met.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001252 AuthorizationSet key_auths(characteristics->teeEnforced);
1253 key_auths.append(&characteristics->softwareEnforced[0],
1254 &characteristics->softwareEnforced[characteristics->softwareEnforced.size()]);
1255 result->resultCode = enforcement_policy.AuthorizeOperation(
1256 purpose, keyid, key_auths, opParams, handle, false /* is_begin_operation */);
1257 if (!result->resultCode.isOk()) return;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001258
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001259 auto hidlCb = [&](ErrorCode ret, const hidl_vec<KeyParameter>& outParams,
1260 const hidl_vec<uint8_t>& output) {
1261 result->resultCode = ret;
1262 if (!result->resultCode.isOk()) {
1263 return;
1264 }
1265 result->outParams = outParams;
1266 result->data = output;
1267 };
1268
1269 KeyStoreServiceReturnCode rc = KS_HANDLE_HIDL_ERROR(dev->finish(
1270 handle, opParams.hidl_data(),
1271 hidl_vec<uint8_t>() /* TODO(swillden): wire up input to finish() */, signature, hidlCb));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001272 // Remove the operation regardless of the result
1273 mOperationMap.removeOperation(token);
1274 mAuthTokenTable.MarkCompleted(handle);
1275
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001276 // just a reminder: on success result->resultCode was set in the callback. So we only overwrite
1277 // it if there was a communication error indicated by the ErrorCode.
1278 if (!rc.isOk()) {
1279 result->resultCode = rc;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001280 }
1281}
1282
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001283KeyStoreServiceReturnCode KeyStoreService::abort(const sp<IBinder>& token) {
1284 km_device_t dev;
1285 uint64_t handle;
1286 KeyPurpose purpose;
1287 km_id_t keyid;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001288 if (!mOperationMap.getOperation(token, &handle, &keyid, &purpose, &dev, NULL)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001289 return ErrorCode::INVALID_OPERATION_HANDLE;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001290 }
1291 mOperationMap.removeOperation(token);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001292
1293 ErrorCode rc = KS_HANDLE_HIDL_ERROR(dev->abort(handle));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001294 mAuthTokenTable.MarkCompleted(handle);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001295 return rc;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001296}
1297
1298bool KeyStoreService::isOperationAuthorized(const sp<IBinder>& token) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001299 km_device_t dev;
1300 uint64_t handle;
1301 const KeyCharacteristics* characteristics;
1302 KeyPurpose purpose;
1303 km_id_t keyid;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001304 if (!mOperationMap.getOperation(token, &handle, &keyid, &purpose, &dev, &characteristics)) {
1305 return false;
1306 }
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001307 const HardwareAuthToken* authToken = NULL;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001308 mOperationMap.getOperationAuthToken(token, &authToken);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001309 AuthorizationSet ignored;
1310 auto authResult = addOperationAuthTokenIfNeeded(token, &ignored);
1311 return authResult.isOk();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001312}
1313
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001314KeyStoreServiceReturnCode KeyStoreService::addAuthToken(const uint8_t* token, size_t length) {
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001315 // TODO(swillden): When gatekeeper and fingerprint are ready, this should be updated to
1316 // receive a HardwareAuthToken, rather than an opaque byte array.
1317
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001318 if (!checkBinderPermission(P_ADD_AUTH)) {
1319 ALOGW("addAuthToken: permission denied for %d", IPCThreadState::self()->getCallingUid());
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001320 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001321 }
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001322 if (length != sizeof(hw_auth_token_t)) {
1323 return ErrorCode::INVALID_ARGUMENT;
1324 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001325
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001326 hw_auth_token_t authToken;
1327 memcpy(reinterpret_cast<void*>(&authToken), token, sizeof(hw_auth_token_t));
1328 if (authToken.version != 0) {
1329 return ErrorCode::INVALID_ARGUMENT;
1330 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001331
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001332 std::unique_ptr<HardwareAuthToken> hidlAuthToken(new HardwareAuthToken);
1333 hidlAuthToken->challenge = authToken.challenge;
1334 hidlAuthToken->userId = authToken.user_id;
1335 hidlAuthToken->authenticatorId = authToken.authenticator_id;
1336 hidlAuthToken->authenticatorType = authToken.authenticator_type;
1337 hidlAuthToken->timestamp = authToken.timestamp;
1338 static_assert(
1339 std::is_same<decltype(hidlAuthToken->hmac),
1340 ::android::hardware::hidl_array<uint8_t, sizeof(authToken.hmac)>>::value,
1341 "This function assumes token HMAC is 32 bytes, but it might not be.");
1342 std::copy(authToken.hmac, authToken.hmac + sizeof(authToken.hmac), hidlAuthToken->hmac.data());
1343
1344 // The table takes ownership of authToken.
1345 mAuthTokenTable.AddAuthenticationToken(hidlAuthToken.release());
1346 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001347}
1348
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +01001349bool isDeviceIdAttestationRequested(const hidl_vec<KeyParameter>& params) {
1350 for (size_t i = 0; i < params.size(); ++i) {
1351 switch (params[i].tag) {
Shawn Willdene2a7b522017-04-11 09:27:40 -06001352 case Tag::ATTESTATION_ID_BRAND:
1353 case Tag::ATTESTATION_ID_DEVICE:
1354 case Tag::ATTESTATION_ID_IMEI:
1355 case Tag::ATTESTATION_ID_MANUFACTURER:
1356 case Tag::ATTESTATION_ID_MEID:
1357 case Tag::ATTESTATION_ID_MODEL:
1358 case Tag::ATTESTATION_ID_PRODUCT:
1359 case Tag::ATTESTATION_ID_SERIAL:
1360 return true;
1361 default:
1362 break;
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +01001363 }
1364 }
1365 return false;
1366}
1367
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001368KeyStoreServiceReturnCode KeyStoreService::attestKey(const String16& name,
1369 const hidl_vec<KeyParameter>& params,
1370 hidl_vec<hidl_vec<uint8_t>>* outChain) {
1371 if (!outChain) {
1372 return ErrorCode::OUTPUT_PARAMETER_NULL;
1373 }
Shawn Willden50eb1b22016-01-21 12:41:23 -07001374
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001375 if (!checkAllowedOperationParams(params)) {
1376 return ErrorCode::INVALID_ARGUMENT;
Shawn Willden50eb1b22016-01-21 12:41:23 -07001377 }
1378
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001379 if (isDeviceIdAttestationRequested(params)) {
1380 // There is a dedicated attestDeviceIds() method for device ID attestation.
1381 return ErrorCode::INVALID_ARGUMENT;
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +01001382 }
1383
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001384 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1385
Shawn Willdene2a7b522017-04-11 09:27:40 -06001386 AuthorizationSet mutableParams = params;
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001387 KeyStoreServiceReturnCode rc = updateParamsForAttestation(callingUid, &mutableParams);
1388 if (!rc.isOk()) {
1389 return rc;
1390 }
Shawn Willdene2a7b522017-04-11 09:27:40 -06001391
Shawn Willden50eb1b22016-01-21 12:41:23 -07001392 Blob keyBlob;
1393 String8 name8(name);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001394 rc = mKeyStore->getKeyForName(&keyBlob, name8, callingUid, TYPE_KEYMASTER_10);
1395 if (!rc.isOk()) {
1396 return rc;
Shawn Willden50eb1b22016-01-21 12:41:23 -07001397 }
1398
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001399 KeyStoreServiceReturnCode error;
1400 auto hidlCb = [&](ErrorCode ret, const hidl_vec<hidl_vec<uint8_t>>& certChain) {
1401 error = ret;
1402 if (!error.isOk()) {
1403 return;
1404 }
1405 if (outChain) *outChain = certChain;
1406 };
1407
1408 auto hidlKey = blob2hidlVec(keyBlob);
1409 auto& dev = mKeyStore->getDevice(keyBlob);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001410 rc = KS_HANDLE_HIDL_ERROR(dev->attestKey(hidlKey, mutableParams.hidl_data(), hidlCb));
1411 if (!rc.isOk()) {
1412 return rc;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001413 }
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001414 return error;
1415}
1416
1417KeyStoreServiceReturnCode KeyStoreService::attestDeviceIds(const hidl_vec<KeyParameter>& params,
1418 hidl_vec<hidl_vec<uint8_t>>* outChain) {
1419 if (!outChain) {
1420 return ErrorCode::OUTPUT_PARAMETER_NULL;
1421 }
1422
1423 if (!checkAllowedOperationParams(params)) {
1424 return ErrorCode::INVALID_ARGUMENT;
1425 }
1426
1427 if (!isDeviceIdAttestationRequested(params)) {
1428 // There is an attestKey() method for attesting keys without device ID attestation.
1429 return ErrorCode::INVALID_ARGUMENT;
1430 }
1431
1432 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1433 sp<IBinder> binder = defaultServiceManager()->getService(String16("permission"));
1434 if (binder == 0) {
1435 return ErrorCode::CANNOT_ATTEST_IDS;
1436 }
1437 if (!interface_cast<IPermissionController>(binder)->checkPermission(
1438 String16("android.permission.READ_PRIVILEGED_PHONE_STATE"),
1439 IPCThreadState::self()->getCallingPid(), callingUid)) {
1440 return ErrorCode::CANNOT_ATTEST_IDS;
1441 }
1442
1443 AuthorizationSet mutableParams = params;
1444 KeyStoreServiceReturnCode rc = updateParamsForAttestation(callingUid, &mutableParams);
1445 if (!rc.isOk()) {
1446 return rc;
1447 }
1448
1449 // Generate temporary key.
1450 auto& dev = mKeyStore->getDevice();
1451 KeyStoreServiceReturnCode error;
1452 hidl_vec<uint8_t> hidlKey;
1453
1454 AuthorizationSet keyCharacteristics;
1455 keyCharacteristics.push_back(TAG_PURPOSE, KeyPurpose::VERIFY);
1456 keyCharacteristics.push_back(TAG_ALGORITHM, Algorithm::EC);
1457 keyCharacteristics.push_back(TAG_DIGEST, Digest::SHA_2_256);
1458 keyCharacteristics.push_back(TAG_NO_AUTH_REQUIRED);
1459 keyCharacteristics.push_back(TAG_EC_CURVE, EcCurve::P_256);
1460 auto generateHidlCb = [&](ErrorCode ret, const hidl_vec<uint8_t>& hidlKeyBlob,
1461 const KeyCharacteristics&) {
1462 error = ret;
1463 if (!error.isOk()) {
1464 return;
1465 }
1466 hidlKey = hidlKeyBlob;
1467 };
1468
1469 rc = KS_HANDLE_HIDL_ERROR(dev->generateKey(keyCharacteristics.hidl_data(), generateHidlCb));
1470 if (!rc.isOk()) {
1471 return rc;
1472 }
1473 if (!error.isOk()) {
1474 return error;
1475 }
1476
1477 // Attest key and device IDs.
1478 auto attestHidlCb = [&](ErrorCode ret, const hidl_vec<hidl_vec<uint8_t>>& certChain) {
1479 error = ret;
1480 if (!error.isOk()) {
1481 return;
1482 }
1483 *outChain = certChain;
1484 };
1485 KeyStoreServiceReturnCode attestationRc =
1486 KS_HANDLE_HIDL_ERROR(dev->attestKey(hidlKey, mutableParams.hidl_data(), attestHidlCb));
1487
1488 // Delete temporary key.
1489 KeyStoreServiceReturnCode deletionRc = KS_HANDLE_HIDL_ERROR(dev->deleteKey(hidlKey));
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +01001490
1491 if (!attestationRc.isOk()) {
1492 return attestationRc;
1493 }
1494 if (!error.isOk()) {
1495 return error;
1496 }
1497 return deletionRc;
Shawn Willden50eb1b22016-01-21 12:41:23 -07001498}
1499
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001500KeyStoreServiceReturnCode KeyStoreService::onDeviceOffBody() {
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001501 // TODO(tuckeris): add permission check. This should be callable from ClockworkHome only.
1502 mAuthTokenTable.onDeviceOffBody();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001503 return ResponseCode::NO_ERROR;
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001504}
1505
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001506/**
1507 * Prune the oldest pruneable operation.
1508 */
1509bool KeyStoreService::pruneOperation() {
1510 sp<IBinder> oldest = mOperationMap.getOldestPruneableOperation();
1511 ALOGD("Trying to prune operation %p", oldest.get());
1512 size_t op_count_before_abort = mOperationMap.getOperationCount();
1513 // We mostly ignore errors from abort() because all we care about is whether at least
1514 // one operation has been removed.
1515 int abort_error = abort(oldest);
1516 if (mOperationMap.getOperationCount() >= op_count_before_abort) {
1517 ALOGE("Failed to abort pruneable operation %p, error: %d", oldest.get(), abort_error);
1518 return false;
1519 }
1520 return true;
1521}
1522
1523/**
1524 * Get the effective target uid for a binder operation that takes an
1525 * optional uid as the target.
1526 */
1527uid_t KeyStoreService::getEffectiveUid(int32_t targetUid) {
1528 if (targetUid == UID_SELF) {
1529 return IPCThreadState::self()->getCallingUid();
1530 }
1531 return static_cast<uid_t>(targetUid);
1532}
1533
1534/**
1535 * Check if the caller of the current binder method has the required
1536 * permission and if acting on other uids the grants to do so.
1537 */
1538bool KeyStoreService::checkBinderPermission(perm_t permission, int32_t targetUid) {
1539 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1540 pid_t spid = IPCThreadState::self()->getCallingPid();
1541 if (!has_permission(callingUid, permission, spid)) {
1542 ALOGW("permission %s denied for %d", get_perm_label(permission), callingUid);
1543 return false;
1544 }
1545 if (!is_granted_to(callingUid, getEffectiveUid(targetUid))) {
1546 ALOGW("uid %d not granted to act for %d", callingUid, targetUid);
1547 return false;
1548 }
1549 return true;
1550}
1551
1552/**
1553 * Check if the caller of the current binder method has the required
1554 * permission and the target uid is the caller or the caller is system.
1555 */
1556bool KeyStoreService::checkBinderPermissionSelfOrSystem(perm_t permission, int32_t targetUid) {
1557 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1558 pid_t spid = IPCThreadState::self()->getCallingPid();
1559 if (!has_permission(callingUid, permission, spid)) {
1560 ALOGW("permission %s denied for %d", get_perm_label(permission), callingUid);
1561 return false;
1562 }
1563 return getEffectiveUid(targetUid) == callingUid || callingUid == AID_SYSTEM;
1564}
1565
1566/**
1567 * Check if the caller of the current binder method has the required
1568 * permission or the target of the operation is the caller's uid. This is
1569 * for operation where the permission is only for cross-uid activity and all
1570 * uids are allowed to act on their own (ie: clearing all entries for a
1571 * given uid).
1572 */
1573bool KeyStoreService::checkBinderPermissionOrSelfTarget(perm_t permission, int32_t targetUid) {
1574 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1575 if (getEffectiveUid(targetUid) == callingUid) {
1576 return true;
1577 } else {
1578 return checkBinderPermission(permission, targetUid);
1579 }
1580}
1581
1582/**
1583 * Helper method to check that the caller has the required permission as
1584 * well as the keystore is in the unlocked state if checkUnlocked is true.
1585 *
1586 * Returns NO_ERROR on success, PERMISSION_DENIED on a permission error and
1587 * otherwise the state of keystore when not unlocked and checkUnlocked is
1588 * true.
1589 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001590KeyStoreServiceReturnCode
1591KeyStoreService::checkBinderPermissionAndKeystoreState(perm_t permission, int32_t targetUid,
1592 bool checkUnlocked) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001593 if (!checkBinderPermission(permission, targetUid)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001594 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001595 }
1596 State state = mKeyStore->getState(get_user_id(getEffectiveUid(targetUid)));
1597 if (checkUnlocked && !isKeystoreUnlocked(state)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001598 // All State values coincide with ResponseCodes
1599 return static_cast<ResponseCode>(state);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001600 }
1601
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001602 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001603}
1604
1605bool KeyStoreService::isKeystoreUnlocked(State state) {
1606 switch (state) {
1607 case ::STATE_NO_ERROR:
1608 return true;
1609 case ::STATE_UNINITIALIZED:
1610 case ::STATE_LOCKED:
1611 return false;
1612 }
1613 return false;
1614}
1615
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001616/**
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001617 * Check that all KeyParameter's provided by the application are
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001618 * allowed. Any parameter that keystore adds itself should be disallowed here.
1619 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001620bool KeyStoreService::checkAllowedOperationParams(const hidl_vec<KeyParameter>& params) {
1621 for (size_t i = 0; i < params.size(); ++i) {
1622 switch (params[i].tag) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001623 case Tag::ATTESTATION_APPLICATION_ID:
Shawn Willdene2a7b522017-04-11 09:27:40 -06001624 case Tag::AUTH_TOKEN:
1625 case Tag::RESET_SINCE_ID_ROTATION:
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001626 return false;
1627 default:
1628 break;
1629 }
1630 }
1631 return true;
1632}
1633
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001634ErrorCode KeyStoreService::getOperationCharacteristics(const hidl_vec<uint8_t>& key,
1635 km_device_t* dev,
1636 const AuthorizationSet& params,
1637 KeyCharacteristics* out) {
1638 hidl_vec<uint8_t> appId;
1639 hidl_vec<uint8_t> appData;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001640 for (auto param : params) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001641 if (param.tag == Tag::APPLICATION_ID) {
1642 appId = authorizationValue(TAG_APPLICATION_ID, param).value();
1643 } else if (param.tag == Tag::APPLICATION_DATA) {
1644 appData = authorizationValue(TAG_APPLICATION_DATA, param).value();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001645 }
1646 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001647 ErrorCode error = ErrorCode::OK;
1648
1649 auto hidlCb = [&](ErrorCode ret, const KeyCharacteristics& keyCharacteristics) {
1650 error = ret;
1651 if (error != ErrorCode::OK) {
1652 return;
1653 }
1654 if (out) *out = keyCharacteristics;
1655 };
1656
1657 ErrorCode rc = KS_HANDLE_HIDL_ERROR((*dev)->getKeyCharacteristics(key, appId, appData, hidlCb));
1658 if (rc != ErrorCode::OK) {
1659 return rc;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001660 }
1661 return error;
1662}
1663
1664/**
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001665 * Get the auth token for this operation from the auth token table.
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001666 *
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001667 * Returns ResponseCode::NO_ERROR if the auth token was set or none was required.
1668 * ::OP_AUTH_NEEDED if it is a per op authorization, no
1669 * authorization token exists for that operation and
1670 * failOnTokenMissing is false.
1671 * KM_ERROR_KEY_USER_NOT_AUTHENTICATED if there is no valid auth
1672 * token for the operation
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001673 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001674KeyStoreServiceReturnCode KeyStoreService::getAuthToken(const KeyCharacteristics& characteristics,
1675 uint64_t handle, KeyPurpose purpose,
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001676 const HardwareAuthToken** authToken,
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001677 bool failOnTokenMissing) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001678
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001679 AuthorizationSet allCharacteristics;
1680 for (size_t i = 0; i < characteristics.softwareEnforced.size(); i++) {
1681 allCharacteristics.push_back(characteristics.softwareEnforced[i]);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001682 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001683 for (size_t i = 0; i < characteristics.teeEnforced.size(); i++) {
1684 allCharacteristics.push_back(characteristics.teeEnforced[i]);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001685 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001686 AuthTokenTable::Error err =
1687 mAuthTokenTable.FindAuthorization(allCharacteristics, purpose, handle, authToken);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001688 switch (err) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001689 case AuthTokenTable::OK:
1690 case AuthTokenTable::AUTH_NOT_REQUIRED:
1691 return ResponseCode::NO_ERROR;
1692 case AuthTokenTable::AUTH_TOKEN_NOT_FOUND:
1693 case AuthTokenTable::AUTH_TOKEN_EXPIRED:
1694 case AuthTokenTable::AUTH_TOKEN_WRONG_SID:
1695 return ErrorCode::KEY_USER_NOT_AUTHENTICATED;
1696 case AuthTokenTable::OP_HANDLE_REQUIRED:
1697 return failOnTokenMissing ? KeyStoreServiceReturnCode(ErrorCode::KEY_USER_NOT_AUTHENTICATED)
1698 : KeyStoreServiceReturnCode(ResponseCode::OP_AUTH_NEEDED);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001699 default:
1700 ALOGE("Unexpected FindAuthorization return value %d", err);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001701 return ErrorCode::INVALID_ARGUMENT;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001702 }
1703}
1704
1705/**
1706 * Add the auth token for the operation to the param list if the operation
1707 * requires authorization. Uses the cached result in the OperationMap if available
1708 * otherwise gets the token from the AuthTokenTable and caches the result.
1709 *
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001710 * Returns ResponseCode::NO_ERROR if the auth token was added or not needed.
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001711 * KM_ERROR_KEY_USER_NOT_AUTHENTICATED if the operation is not
1712 * authenticated.
1713 * KM_ERROR_INVALID_OPERATION_HANDLE if token is not a valid
1714 * operation token.
1715 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001716KeyStoreServiceReturnCode KeyStoreService::addOperationAuthTokenIfNeeded(const sp<IBinder>& token,
1717 AuthorizationSet* params) {
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001718 const HardwareAuthToken* authToken = nullptr;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001719 mOperationMap.getOperationAuthToken(token, &authToken);
1720 if (!authToken) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001721 km_device_t dev;
1722 uint64_t handle;
1723 const KeyCharacteristics* characteristics = nullptr;
1724 KeyPurpose purpose;
1725 km_id_t keyid;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001726 if (!mOperationMap.getOperation(token, &handle, &keyid, &purpose, &dev, &characteristics)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001727 return ErrorCode::INVALID_OPERATION_HANDLE;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001728 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001729 auto result = getAuthToken(*characteristics, handle, purpose, &authToken);
1730 if (!result.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001731 return result;
1732 }
1733 if (authToken) {
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001734 mOperationMap.setOperationAuthToken(token, authToken);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001735 }
1736 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001737 addAuthTokenToParams(params, authToken);
1738 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001739}
1740
1741/**
1742 * Translate a result value to a legacy return value. All keystore errors are
1743 * preserved and keymaster errors become SYSTEM_ERRORs
1744 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001745KeyStoreServiceReturnCode KeyStoreService::translateResultToLegacyResult(int32_t result) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001746 if (result > 0) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001747 return static_cast<ResponseCode>(result);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001748 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001749 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001750}
1751
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001752static NullOr<const Algorithm&>
1753getKeyAlgoritmFromKeyCharacteristics(const KeyCharacteristics& characteristics) {
1754 for (size_t i = 0; i < characteristics.teeEnforced.size(); ++i) {
1755 auto algo = authorizationValue(TAG_ALGORITHM, characteristics.teeEnforced[i]);
1756 if (algo.isOk()) return algo.value();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001757 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001758 for (size_t i = 0; i < characteristics.softwareEnforced.size(); ++i) {
1759 auto algo = authorizationValue(TAG_ALGORITHM, characteristics.softwareEnforced[i]);
1760 if (algo.isOk()) return algo.value();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001761 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001762 return {};
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001763}
1764
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001765void KeyStoreService::addLegacyBeginParams(const String16& name, AuthorizationSet* params) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001766 // All legacy keys are DIGEST_NONE/PAD_NONE.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001767 params->push_back(TAG_DIGEST, Digest::NONE);
1768 params->push_back(TAG_PADDING, PaddingMode::NONE);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001769
1770 // Look up the algorithm of the key.
1771 KeyCharacteristics characteristics;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001772 auto rc = getKeyCharacteristics(name, hidl_vec<uint8_t>(), hidl_vec<uint8_t>(), UID_SELF,
1773 &characteristics);
1774 if (!rc.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001775 ALOGE("Failed to get key characteristics");
1776 return;
1777 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001778 auto algorithm = getKeyAlgoritmFromKeyCharacteristics(characteristics);
1779 if (!algorithm.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001780 ALOGE("getKeyCharacteristics did not include KM_TAG_ALGORITHM");
1781 return;
1782 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001783 params->push_back(TAG_ALGORITHM, algorithm.value());
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001784}
1785
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001786KeyStoreServiceReturnCode KeyStoreService::doLegacySignVerify(const String16& name,
1787 const hidl_vec<uint8_t>& data,
1788 hidl_vec<uint8_t>* out,
1789 const hidl_vec<uint8_t>& signature,
1790 KeyPurpose purpose) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001791
1792 std::basic_stringstream<uint8_t> outBuffer;
1793 OperationResult result;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001794 AuthorizationSet inArgs;
1795 addLegacyBeginParams(name, &inArgs);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001796 sp<IBinder> appToken(new BBinder);
1797 sp<IBinder> token;
1798
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001799 begin(appToken, name, purpose, true, inArgs.hidl_data(), hidl_vec<uint8_t>(), UID_SELF,
1800 &result);
1801 if (!result.resultCode.isOk()) {
1802 if (result.resultCode == ResponseCode::KEY_NOT_FOUND) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001803 ALOGW("Key not found");
1804 } else {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001805 ALOGW("Error in begin: %d", int32_t(result.resultCode));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001806 }
1807 return translateResultToLegacyResult(result.resultCode);
1808 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001809 inArgs.Clear();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001810 token = result.token;
1811 size_t consumed = 0;
1812 size_t lastConsumed = 0;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001813 hidl_vec<uint8_t> data_view;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001814 do {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001815 data_view.setToExternal(const_cast<uint8_t*>(&data[consumed]), data.size() - consumed);
1816 update(token, inArgs.hidl_data(), data_view, &result);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001817 if (result.resultCode != ResponseCode::NO_ERROR) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001818 ALOGW("Error in update: %d", int32_t(result.resultCode));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001819 return translateResultToLegacyResult(result.resultCode);
1820 }
1821 if (out) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001822 outBuffer.write(&result.data[0], result.data.size());
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001823 }
1824 lastConsumed = result.inputConsumed;
1825 consumed += lastConsumed;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001826 } while (consumed < data.size() && lastConsumed > 0);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001827
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001828 if (consumed != data.size()) {
1829 ALOGW("Not all data consumed. Consumed %zu of %zu", consumed, data.size());
1830 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001831 }
1832
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001833 finish(token, inArgs.hidl_data(), signature, hidl_vec<uint8_t>(), &result);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001834 if (result.resultCode != ResponseCode::NO_ERROR) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001835 ALOGW("Error in finish: %d", int32_t(result.resultCode));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001836 return translateResultToLegacyResult(result.resultCode);
1837 }
1838 if (out) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001839 outBuffer.write(&result.data[0], result.data.size());
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001840 }
1841
1842 if (out) {
1843 auto buf = outBuffer.str();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001844 out->resize(buf.size());
1845 memcpy(&(*out)[0], buf.data(), out->size());
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001846 }
1847
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001848 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001849}
1850
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001851KeyStoreServiceReturnCode KeyStoreService::upgradeKeyBlob(const String16& name, uid_t uid,
1852 const AuthorizationSet& params,
1853 Blob* blob) {
Shawn Willden98c59162016-03-20 09:10:18 -06001854 // Read the blob rather than assuming the caller provided the right name/uid/blob triplet.
1855 String8 name8(name);
1856 ResponseCode responseCode = mKeyStore->getKeyForName(blob, name8, uid, TYPE_KEYMASTER_10);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001857 if (responseCode != ResponseCode::NO_ERROR) {
Shawn Willden98c59162016-03-20 09:10:18 -06001858 return responseCode;
1859 }
Rubin Xu7675c9f2017-03-15 19:26:52 +00001860 ALOGI("upgradeKeyBlob %s %d", name8.string(), uid);
Shawn Willden98c59162016-03-20 09:10:18 -06001861
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001862 auto hidlKey = blob2hidlVec(*blob);
1863 auto& dev = mKeyStore->getDevice(*blob);
Shawn Willden98c59162016-03-20 09:10:18 -06001864
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001865 KeyStoreServiceReturnCode error;
1866 auto hidlCb = [&](ErrorCode ret, const hidl_vec<uint8_t>& upgradedKeyBlob) {
1867 error = ret;
1868 if (!error.isOk()) {
1869 return;
1870 }
1871
1872 String8 filename(mKeyStore->getKeyNameForUidWithDir(name8, uid, ::TYPE_KEYMASTER_10));
1873 error = mKeyStore->del(filename.string(), ::TYPE_ANY, get_user_id(uid));
1874 if (!error.isOk()) {
Rubin Xu7675c9f2017-03-15 19:26:52 +00001875 ALOGI("upgradeKeyBlob keystore->del failed %d", (int)error);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001876 return;
1877 }
1878
1879 Blob newBlob(&upgradedKeyBlob[0], upgradedKeyBlob.size(), nullptr /* info */,
1880 0 /* infoLength */, ::TYPE_KEYMASTER_10);
1881 newBlob.setFallback(blob->isFallback());
1882 newBlob.setEncrypted(blob->isEncrypted());
Rubin Xu67899de2017-04-21 19:15:13 +01001883 newBlob.setSuperEncrypted(blob->isSuperEncrypted());
1884 newBlob.setCriticalToDeviceEncryption(blob->isCriticalToDeviceEncryption());
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001885
1886 error = mKeyStore->put(filename.string(), &newBlob, get_user_id(uid));
1887 if (!error.isOk()) {
Rubin Xu7675c9f2017-03-15 19:26:52 +00001888 ALOGI("upgradeKeyBlob keystore->put failed %d", (int)error);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001889 return;
1890 }
1891
1892 // Re-read blob for caller. We can't use newBlob because writing it modified it.
1893 error = mKeyStore->getKeyForName(blob, name8, uid, TYPE_KEYMASTER_10);
1894 };
1895
1896 KeyStoreServiceReturnCode rc =
1897 KS_HANDLE_HIDL_ERROR(dev->upgradeKey(hidlKey, params.hidl_data(), hidlCb));
1898 if (!rc.isOk()) {
Shawn Willden98c59162016-03-20 09:10:18 -06001899 return rc;
1900 }
1901
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001902 return error;
Shawn Willden98c59162016-03-20 09:10:18 -06001903}
1904
Shawn Willdene2a7b522017-04-11 09:27:40 -06001905} // namespace keystore