blob: ac10921e5aa9d814f8e6cbef784df3e12fe467fe [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"
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -070020#include "include/keystore/KeystoreArg.h"
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070021
22#include <fcntl.h>
23#include <sys/stat.h>
24
Janis Danisevskis7612fd42016-09-01 11:50:02 +010025#include <algorithm>
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070026#include <sstream>
27
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +010028#include <binder/IInterface.h>
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070029#include <binder/IPCThreadState.h>
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +010030#include <binder/IPermissionController.h>
31#include <binder/IServiceManager.h>
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070032
33#include <private/android_filesystem_config.h>
34
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010035#include <android/hardware/keymaster/3.0/IHwKeymasterDevice.h>
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070036
37#include "defaults.h"
Janis Danisevskis18f27ad2016-06-01 13:57:40 -070038#include "keystore_attestation_id.h"
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010039#include "keystore_keymaster_enforcement.h"
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070040#include "keystore_utils.h"
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010041#include <keystore/keystore_hidl_support.h>
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070042
Janis Danisevskis8f737ad2017-11-21 12:30:15 -080043#include <hardware/hw_auth_token.h>
44
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010045namespace keystore {
Shawn Willdend5a24e62017-02-28 13:53:24 -070046
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +010047using namespace android;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070048
Shawn Willdene2a7b522017-04-11 09:27:40 -060049namespace {
50
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -070051using ::android::binder::Status;
52using ::android::hardware::keymaster::V3_0::KeyFormat;
53using android::security::KeystoreArg;
54using android::security::keymaster::ExportResult;
55using android::security::keymaster::KeymasterArguments;
56using android::security::keymaster::KeymasterBlob;
57using android::security::keymaster::KeymasterCertificateChain;
58using android::security::keymaster::OperationResult;
59
Shawn Willdene2a7b522017-04-11 09:27:40 -060060constexpr size_t kMaxOperations = 15;
61constexpr double kIdRotationPeriod = 30 * 24 * 60 * 60; /* Thirty days, in seconds */
62const char* kTimestampFilePath = "timestamp";
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070063
64struct BIGNUM_Delete {
65 void operator()(BIGNUM* p) const { BN_free(p); }
66};
Janis Danisevskisccfff102017-05-01 11:02:51 -070067typedef std::unique_ptr<BIGNUM, BIGNUM_Delete> Unique_BIGNUM;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -070068
Shawn Willdene2a7b522017-04-11 09:27:40 -060069bool containsTag(const hidl_vec<KeyParameter>& params, Tag tag) {
70 return params.end() != std::find_if(params.begin(), params.end(),
71 [&](auto& param) { return param.tag == tag; });
72}
73
Shawn Willdend5a24e62017-02-28 13:53:24 -070074bool isAuthenticationBound(const hidl_vec<KeyParameter>& params) {
75 return !containsTag(params, Tag::NO_AUTH_REQUIRED);
76}
77
Shawn Willdene2a7b522017-04-11 09:27:40 -060078std::pair<KeyStoreServiceReturnCode, bool> hadFactoryResetSinceIdRotation() {
79 struct stat sbuf;
80 if (stat(kTimestampFilePath, &sbuf) == 0) {
81 double diff_secs = difftime(time(NULL), sbuf.st_ctime);
82 return {ResponseCode::NO_ERROR, diff_secs < kIdRotationPeriod};
83 }
84
85 if (errno != ENOENT) {
86 ALOGE("Failed to stat \"timestamp\" file, with error %d", errno);
87 return {ResponseCode::SYSTEM_ERROR, false /* don't care */};
88 }
89
90 int fd = creat(kTimestampFilePath, 0600);
91 if (fd < 0) {
92 ALOGE("Couldn't create \"timestamp\" file, with error %d", errno);
93 return {ResponseCode::SYSTEM_ERROR, false /* don't care */};
94 }
95
96 if (close(fd)) {
97 ALOGE("Couldn't close \"timestamp\" file, with error %d", errno);
98 return {ResponseCode::SYSTEM_ERROR, false /* don't care */};
99 }
100
101 return {ResponseCode::NO_ERROR, true};
102}
103
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +0200104constexpr size_t KEY_ATTESTATION_APPLICATION_ID_MAX_SIZE = 1024;
105
106KeyStoreServiceReturnCode updateParamsForAttestation(uid_t callingUid, AuthorizationSet* params) {
107 KeyStoreServiceReturnCode responseCode;
108 bool factoryResetSinceIdRotation;
109 std::tie(responseCode, factoryResetSinceIdRotation) = hadFactoryResetSinceIdRotation();
110
111 if (!responseCode.isOk()) return responseCode;
112 if (factoryResetSinceIdRotation) params->push_back(TAG_RESET_SINCE_ID_ROTATION);
113
114 auto asn1_attestation_id_result = security::gather_attestation_application_id(callingUid);
115 if (!asn1_attestation_id_result.isOk()) {
116 ALOGE("failed to gather attestation_id");
117 return ErrorCode::ATTESTATION_APPLICATION_ID_MISSING;
118 }
119 std::vector<uint8_t>& asn1_attestation_id = asn1_attestation_id_result;
120
121 /*
122 * The attestation application ID cannot be longer than
123 * KEY_ATTESTATION_APPLICATION_ID_MAX_SIZE, so we truncate if too long.
124 */
125 if (asn1_attestation_id.size() > KEY_ATTESTATION_APPLICATION_ID_MAX_SIZE) {
126 asn1_attestation_id.resize(KEY_ATTESTATION_APPLICATION_ID_MAX_SIZE);
127 }
128
129 params->push_back(TAG_ATTESTATION_APPLICATION_ID, asn1_attestation_id);
130
131 return ResponseCode::NO_ERROR;
132}
133
Shawn Willdene2a7b522017-04-11 09:27:40 -0600134} // anonymous namespace
135
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700136void KeyStoreService::binderDied(const wp<IBinder>& who) {
137 auto operations = mOperationMap.getOperationsForToken(who.unsafe_get());
Chih-Hung Hsieh24b2a392016-07-28 10:35:24 -0700138 for (const auto& token : operations) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700139 int32_t unused_result;
140 abort(token, &unused_result);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700141 }
142}
143
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700144Status KeyStoreService::getState(int32_t userId, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700145 if (!checkBinderPermission(P_GET_STATE)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700146 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
147 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700148 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700149 *aidl_return = mKeyStore->getState(userId);
150 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700151}
152
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700153Status KeyStoreService::get(const String16& name, int32_t uid, ::std::vector<uint8_t>* item) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700154 uid_t targetUid = getEffectiveUid(uid);
155 if (!checkBinderPermission(P_GET, targetUid)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700156 // see keystore/keystore.h
157 return Status::fromServiceSpecificError(
158 static_cast<int32_t>(ResponseCode::PERMISSION_DENIED));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700159 }
160
161 String8 name8(name);
162 Blob keyBlob;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100163 KeyStoreServiceReturnCode rc =
164 mKeyStore->getKeyForName(&keyBlob, name8, targetUid, TYPE_GENERIC);
165 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700166 *item = ::std::vector<uint8_t>();
167 // Return empty array if key is not found
168 // TODO: consider having returned value nullable or parse exception on the client.
169 return Status::fromServiceSpecificError(static_cast<int32_t>(rc));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700170 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100171 auto resultBlob = blob2hidlVec(keyBlob);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700172 // The static_cast here is needed to prevent a move, forcing a deep copy.
173 if (item) *item = static_cast<const hidl_vec<uint8_t>&>(blob2hidlVec(keyBlob));
174 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700175}
176
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700177Status KeyStoreService::insert(const String16& name, const ::std::vector<uint8_t>& item,
178 int targetUid, int32_t flags, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700179 targetUid = getEffectiveUid(targetUid);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700180 KeyStoreServiceReturnCode result =
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700181 checkBinderPermissionAndKeystoreState(P_INSERT, targetUid, flags & KEYSTORE_FLAG_ENCRYPTED);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100182 if (!result.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700183 *aidl_return = static_cast<int32_t>(result);
184 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700185 }
186
187 String8 name8(name);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400188 String8 filename(mKeyStore->getKeyNameForUidWithDir(name8, targetUid, ::TYPE_GENERIC));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700189
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100190 Blob keyBlob(&item[0], item.size(), NULL, 0, ::TYPE_GENERIC);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700191 keyBlob.setEncrypted(flags & KEYSTORE_FLAG_ENCRYPTED);
192
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700193 *aidl_return =
194 static_cast<int32_t>(mKeyStore->put(filename.string(), &keyBlob, get_user_id(targetUid)));
195 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700196}
197
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700198Status KeyStoreService::del(const String16& name, int targetUid, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700199 targetUid = getEffectiveUid(targetUid);
200 if (!checkBinderPermission(P_DELETE, targetUid)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700201 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
202 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700203 }
204 String8 name8(name);
Rubin Xu7675c9f2017-03-15 19:26:52 +0000205 ALOGI("del %s %d", name8.string(), targetUid);
Janis Danisevskisaf7783f2017-09-21 11:29:47 -0700206 auto filename = mKeyStore->getBlobFileNameIfExists(name8, targetUid, ::TYPE_ANY);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700207 if (!filename.isOk()) {
208 *aidl_return = static_cast<int32_t>(ResponseCode::KEY_NOT_FOUND);
209 return Status::ok();
210 }
Janis Danisevskisaf7783f2017-09-21 11:29:47 -0700211
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700212 ResponseCode result =
213 mKeyStore->del(filename.value().string(), ::TYPE_ANY, get_user_id(targetUid));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100214 if (result != ResponseCode::NO_ERROR) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700215 *aidl_return = static_cast<int32_t>(result);
216 return Status::ok();
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400217 }
218
Janis Danisevskisaf7783f2017-09-21 11:29:47 -0700219 filename = mKeyStore->getBlobFileNameIfExists(name8, targetUid, ::TYPE_KEY_CHARACTERISTICS);
220 if (filename.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700221 *aidl_return = static_cast<int32_t>(mKeyStore->del(
222 filename.value().string(), ::TYPE_KEY_CHARACTERISTICS, get_user_id(targetUid)));
223 return Status::ok();
Janis Danisevskisaf7783f2017-09-21 11:29:47 -0700224 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700225 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
226 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700227}
228
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700229Status KeyStoreService::exist(const String16& name, int targetUid, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700230 targetUid = getEffectiveUid(targetUid);
231 if (!checkBinderPermission(P_EXIST, targetUid)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700232 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
233 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700234 }
235
Janis Danisevskisaf7783f2017-09-21 11:29:47 -0700236 auto filename = mKeyStore->getBlobFileNameIfExists(String8(name), targetUid, ::TYPE_ANY);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700237 *aidl_return = static_cast<int32_t>(filename.isOk() ? ResponseCode::NO_ERROR
238 : ResponseCode::KEY_NOT_FOUND);
239 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700240}
241
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700242Status KeyStoreService::list(const String16& prefix, int targetUid,
243 ::std::vector<::android::String16>* matches) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700244 targetUid = getEffectiveUid(targetUid);
245 if (!checkBinderPermission(P_LIST, targetUid)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700246 return Status::fromServiceSpecificError(
247 static_cast<int32_t>(ResponseCode::PERMISSION_DENIED));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700248 }
249 const String8 prefix8(prefix);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400250 String8 filename(mKeyStore->getKeyNameForUid(prefix8, targetUid, TYPE_ANY));
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700251 android::Vector<android::String16> matches_internal;
252 if (mKeyStore->list(filename, &matches_internal, get_user_id(targetUid)) !=
253 ResponseCode::NO_ERROR) {
254 return Status::fromServiceSpecificError(static_cast<int32_t>(ResponseCode::SYSTEM_ERROR));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700255 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700256 matches->clear();
257 for (size_t i = 0; i < matches_internal.size(); ++i) {
258 matches->push_back(matches_internal[i]);
259 }
260 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700261}
262
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700263Status KeyStoreService::reset(int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700264 if (!checkBinderPermission(P_RESET)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700265 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
266 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700267 }
268
269 uid_t callingUid = IPCThreadState::self()->getCallingUid();
270 mKeyStore->resetUser(get_user_id(callingUid), false);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700271 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
272 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700273}
274
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700275Status KeyStoreService::onUserPasswordChanged(int32_t userId, const String16& password,
276 int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700277 if (!checkBinderPermission(P_PASSWORD)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700278 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
279 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700280 }
281
282 const String8 password8(password);
283 // Flush the auth token table to prevent stale tokens from sticking
284 // around.
285 mAuthTokenTable.Clear();
286
287 if (password.size() == 0) {
288 ALOGI("Secure lockscreen for user %d removed, deleting encrypted entries", userId);
289 mKeyStore->resetUser(userId, true);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700290 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
291 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700292 } else {
293 switch (mKeyStore->getState(userId)) {
294 case ::STATE_UNINITIALIZED: {
295 // generate master key, encrypt with password, write to file,
296 // initialize mMasterKey*.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700297 *aidl_return = static_cast<int32_t>(mKeyStore->initializeUser(password8, userId));
298 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700299 }
300 case ::STATE_NO_ERROR: {
301 // rewrite master key with new password.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700302 *aidl_return = static_cast<int32_t>(mKeyStore->writeMasterKey(password8, userId));
303 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700304 }
305 case ::STATE_LOCKED: {
306 ALOGE("Changing user %d's password while locked, clearing old encryption", userId);
307 mKeyStore->resetUser(userId, true);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700308 *aidl_return = static_cast<int32_t>(mKeyStore->initializeUser(password8, userId));
309 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700310 }
311 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700312 *aidl_return = static_cast<int32_t>(ResponseCode::SYSTEM_ERROR);
313 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700314 }
315}
316
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700317Status KeyStoreService::onUserAdded(int32_t userId, int32_t parentId, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700318 if (!checkBinderPermission(P_USER_CHANGED)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700319 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
320 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700321 }
322
323 // Sanity check that the new user has an empty keystore.
324 if (!mKeyStore->isEmpty(userId)) {
325 ALOGW("New user %d's keystore not empty. Clearing old entries.", userId);
326 }
327 // Unconditionally clear the keystore, just to be safe.
328 mKeyStore->resetUser(userId, false);
329 if (parentId != -1) {
330 // This profile must share the same master key password as the parent profile. Because the
331 // password of the parent profile is not known here, the best we can do is copy the parent's
332 // master key and master key file. This makes this profile use the same master key as the
333 // parent profile, forever.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700334 *aidl_return = static_cast<int32_t>(mKeyStore->copyMasterKey(parentId, userId));
335 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700336 } else {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700337 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
338 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700339 }
340}
341
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700342Status KeyStoreService::onUserRemoved(int32_t userId, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700343 if (!checkBinderPermission(P_USER_CHANGED)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700344 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
345 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700346 }
347
348 mKeyStore->resetUser(userId, false);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700349 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
350 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700351}
352
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700353Status KeyStoreService::lock(int32_t userId, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700354 if (!checkBinderPermission(P_LOCK)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700355 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
356 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700357 }
358
359 State state = mKeyStore->getState(userId);
360 if (state != ::STATE_NO_ERROR) {
361 ALOGD("calling lock in state: %d", state);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700362 *aidl_return = static_cast<int32_t>(ResponseCode(state));
363 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700364 }
365
366 mKeyStore->lock(userId);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700367 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
368 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700369}
370
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700371Status KeyStoreService::unlock(int32_t userId, const String16& pw, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700372 if (!checkBinderPermission(P_UNLOCK)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700373 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
374 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700375 }
376
377 State state = mKeyStore->getState(userId);
378 if (state != ::STATE_LOCKED) {
379 switch (state) {
380 case ::STATE_NO_ERROR:
381 ALOGI("calling unlock when already unlocked, ignoring.");
382 break;
383 case ::STATE_UNINITIALIZED:
384 ALOGE("unlock called on uninitialized keystore.");
385 break;
386 default:
387 ALOGE("unlock called on keystore in unknown state: %d", state);
388 break;
389 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700390 *aidl_return = static_cast<int32_t>(ResponseCode(state));
391 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700392 }
393
394 const String8 password8(pw);
395 // read master key, decrypt with password, initialize mMasterKey*.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700396 *aidl_return = static_cast<int32_t>(mKeyStore->readMasterKey(password8, userId));
397 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700398}
399
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700400Status KeyStoreService::isEmpty(int32_t userId, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700401 if (!checkBinderPermission(P_IS_EMPTY)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700402 *aidl_return = static_cast<int32_t>(false);
403 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700404 }
405
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700406 *aidl_return = static_cast<int32_t>(mKeyStore->isEmpty(userId));
407 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700408}
409
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700410Status KeyStoreService::generate(const String16& name, int32_t targetUid, int32_t keyType,
411 int32_t keySize, int32_t flags,
412 const ::android::security::KeystoreArguments& keystoreArgs,
413 int32_t* aidl_return) {
414 const Vector<sp<KeystoreArg>>* args = &(keystoreArgs.getArguments());
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700415 targetUid = getEffectiveUid(targetUid);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700416 KeyStoreServiceReturnCode result =
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700417 checkBinderPermissionAndKeystoreState(P_INSERT, targetUid, flags & KEYSTORE_FLAG_ENCRYPTED);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100418 if (!result.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700419 *aidl_return = static_cast<int32_t>(result);
420 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700421 }
422
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100423 keystore::AuthorizationSet params;
424 add_legacy_key_authorizations(keyType, &params);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700425
426 switch (keyType) {
427 case EVP_PKEY_EC: {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100428 params.push_back(TAG_ALGORITHM, Algorithm::EC);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700429 if (keySize == -1) {
430 keySize = EC_DEFAULT_KEY_SIZE;
431 } else if (keySize < EC_MIN_KEY_SIZE || keySize > EC_MAX_KEY_SIZE) {
432 ALOGI("invalid key size %d", keySize);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700433 *aidl_return = static_cast<int32_t>(ResponseCode::SYSTEM_ERROR);
434 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700435 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100436 params.push_back(TAG_KEY_SIZE, keySize);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700437 break;
438 }
439 case EVP_PKEY_RSA: {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100440 params.push_back(TAG_ALGORITHM, Algorithm::RSA);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700441 if (keySize == -1) {
442 keySize = RSA_DEFAULT_KEY_SIZE;
443 } else if (keySize < RSA_MIN_KEY_SIZE || keySize > RSA_MAX_KEY_SIZE) {
444 ALOGI("invalid key size %d", keySize);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700445 *aidl_return = static_cast<int32_t>(ResponseCode::SYSTEM_ERROR);
446 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700447 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100448 params.push_back(TAG_KEY_SIZE, keySize);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700449 unsigned long exponent = RSA_DEFAULT_EXPONENT;
450 if (args->size() > 1) {
451 ALOGI("invalid number of arguments: %zu", args->size());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700452 *aidl_return = static_cast<int32_t>(ResponseCode::SYSTEM_ERROR);
453 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700454 } else if (args->size() == 1) {
Chih-Hung Hsieh24b2a392016-07-28 10:35:24 -0700455 const sp<KeystoreArg>& expArg = args->itemAt(0);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700456 if (expArg != NULL) {
457 Unique_BIGNUM pubExpBn(BN_bin2bn(
458 reinterpret_cast<const unsigned char*>(expArg->data()), expArg->size(), NULL));
459 if (pubExpBn.get() == NULL) {
460 ALOGI("Could not convert public exponent to BN");
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700461 *aidl_return = static_cast<int32_t>(ResponseCode::SYSTEM_ERROR);
462 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700463 }
464 exponent = BN_get_word(pubExpBn.get());
465 if (exponent == 0xFFFFFFFFL) {
466 ALOGW("cannot represent public exponent as a long value");
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700467 *aidl_return = static_cast<int32_t>(ResponseCode::SYSTEM_ERROR);
468 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700469 }
470 } else {
471 ALOGW("public exponent not read");
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700472 *aidl_return = static_cast<int32_t>(ResponseCode::SYSTEM_ERROR);
473 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700474 }
475 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100476 params.push_back(TAG_RSA_PUBLIC_EXPONENT, exponent);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700477 break;
478 }
479 default: {
480 ALOGW("Unsupported key type %d", keyType);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700481 *aidl_return = static_cast<int32_t>(ResponseCode::SYSTEM_ERROR);
482 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700483 }
484 }
485
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700486 int32_t aidl_result;
487 android::security::keymaster::KeyCharacteristics unused_characteristics;
488 auto rc = generateKey(name, KeymasterArguments(params.hidl_data()), ::std::vector<uint8_t>(),
489 targetUid, flags, &unused_characteristics, &aidl_result);
490 if (!KeyStoreServiceReturnCode(aidl_result).isOk()) {
491 ALOGW("generate failed: %d", int32_t(aidl_result));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700492 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700493 *aidl_return = aidl_result;
494 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700495}
496
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700497Status KeyStoreService::import_key(const String16& name, const ::std::vector<uint8_t>& data,
498 int targetUid, int32_t flags, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700499
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100500 const uint8_t* ptr = &data[0];
501
502 Unique_PKCS8_PRIV_KEY_INFO pkcs8(d2i_PKCS8_PRIV_KEY_INFO(NULL, &ptr, data.size()));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700503 if (!pkcs8.get()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700504 *aidl_return = static_cast<int32_t>(ResponseCode::SYSTEM_ERROR);
505 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700506 }
507 Unique_EVP_PKEY pkey(EVP_PKCS82PKEY(pkcs8.get()));
508 if (!pkey.get()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700509 *aidl_return = static_cast<int32_t>(ResponseCode::SYSTEM_ERROR);
510 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700511 }
512 int type = EVP_PKEY_type(pkey->type);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100513 AuthorizationSet params;
514 add_legacy_key_authorizations(type, &params);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700515 switch (type) {
516 case EVP_PKEY_RSA:
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100517 params.push_back(TAG_ALGORITHM, Algorithm::RSA);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700518 break;
519 case EVP_PKEY_EC:
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100520 params.push_back(TAG_ALGORITHM, Algorithm::EC);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700521 break;
522 default:
523 ALOGW("Unsupported key type %d", type);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700524 *aidl_return = static_cast<int32_t>(ResponseCode::SYSTEM_ERROR);
525 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700526 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100527
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700528 int import_result;
529 auto rc = importKey(name, KeymasterArguments(params.hidl_data()),
530 static_cast<int32_t>(KeyFormat::PKCS8), data, targetUid, flags,
531 /*outCharacteristics*/ NULL, &import_result);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100532
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700533 if (!KeyStoreServiceReturnCode(import_result).isOk()) {
534 ALOGW("importKey failed: %d", int32_t(import_result));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700535 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700536 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
537 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700538}
539
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700540Status KeyStoreService::sign(const String16& name, const ::std::vector<uint8_t>& data,
541 ::std::vector<uint8_t>* out) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700542 if (!checkBinderPermission(P_SIGN)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700543 return Status::fromServiceSpecificError(
544 static_cast<int32_t>(ResponseCode::PERMISSION_DENIED));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700545 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700546 hidl_vec<uint8_t> legacy_out;
547 KeyStoreServiceReturnCode res =
548 doLegacySignVerify(name, data, &legacy_out, hidl_vec<uint8_t>(), KeyPurpose::SIGN);
549 *out = legacy_out;
550 return Status::fromServiceSpecificError((res));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700551}
552
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700553Status KeyStoreService::verify(const String16& name, const ::std::vector<uint8_t>& data,
554 const ::std::vector<uint8_t>& signature, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700555 if (!checkBinderPermission(P_VERIFY)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700556 return Status::fromServiceSpecificError(
557 static_cast<int32_t>(ResponseCode::PERMISSION_DENIED));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700558 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700559 *aidl_return = static_cast<int32_t>(
560 doLegacySignVerify(name, data, nullptr, signature, KeyPurpose::VERIFY));
561 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700562}
563
564/*
565 * TODO: The abstraction between things stored in hardware and regular blobs
566 * of data stored on the filesystem should be moved down to keystore itself.
567 * Unfortunately the Java code that calls this has naming conventions that it
568 * knows about. Ideally keystore shouldn't be used to store random blobs of
569 * data.
570 *
571 * Until that happens, it's necessary to have a separate "get_pubkey" and
572 * "del_key" since the Java code doesn't really communicate what it's
573 * intentions are.
574 */
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700575Status KeyStoreService::get_pubkey(const String16& name, ::std::vector<uint8_t>* pubKey) {
576 android::security::keymaster::ExportResult result;
577 KeymasterBlob clientId;
578 KeymasterBlob appId;
579 exportKey(name, static_cast<int32_t>(KeyFormat::X509), clientId, appId, UID_SELF, &result);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100580 if (!result.resultCode.isOk()) {
581 ALOGW("export failed: %d", int32_t(result.resultCode));
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700582 return Status::fromServiceSpecificError(static_cast<int32_t>(result.resultCode));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700583 }
584
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100585 if (pubKey) *pubKey = std::move(result.exportData);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700586 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700587}
588
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700589Status KeyStoreService::grant(const String16& name, int32_t granteeUid,
590 ::android::String16* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700591 uid_t callingUid = IPCThreadState::self()->getCallingUid();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100592 auto result = checkBinderPermissionAndKeystoreState(P_GRANT);
593 if (!result.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700594 *aidl_return = String16();
595 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700596 }
597
598 String8 name8(name);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400599 String8 filename(mKeyStore->getKeyNameForUidWithDir(name8, callingUid, ::TYPE_ANY));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700600
601 if (access(filename.string(), R_OK) == -1) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700602 *aidl_return = String16();
603 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700604 }
605
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700606 *aidl_return =
607 String16(mKeyStore->addGrant(String8(name).string(), callingUid, granteeUid).c_str());
608 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700609}
610
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700611Status KeyStoreService::ungrant(const String16& name, int32_t granteeUid, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700612 uid_t callingUid = IPCThreadState::self()->getCallingUid();
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700613 KeyStoreServiceReturnCode result = checkBinderPermissionAndKeystoreState(P_GRANT);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100614 if (!result.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700615 *aidl_return = static_cast<int32_t>(result);
616 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700617 }
618
619 String8 name8(name);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400620 String8 filename(mKeyStore->getKeyNameForUidWithDir(name8, callingUid, ::TYPE_ANY));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700621
622 if (access(filename.string(), R_OK) == -1) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700623 *aidl_return = static_cast<int32_t>((errno != ENOENT) ? ResponseCode::SYSTEM_ERROR
624 : ResponseCode::KEY_NOT_FOUND);
625 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700626 }
627
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700628 *aidl_return = static_cast<int32_t>(mKeyStore->removeGrant(name8, callingUid, granteeUid)
629 ? ResponseCode::NO_ERROR
630 : ResponseCode::KEY_NOT_FOUND);
631 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700632}
633
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700634Status KeyStoreService::getmtime(const String16& name, int32_t uid, int64_t* time) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700635 uid_t targetUid = getEffectiveUid(uid);
636 if (!checkBinderPermission(P_GET, targetUid)) {
637 ALOGW("permission denied for %d: getmtime", targetUid);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700638 *time = -1L;
639 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700640 }
641
Janis Danisevskisaf7783f2017-09-21 11:29:47 -0700642 auto filename = mKeyStore->getBlobFileNameIfExists(String8(name), targetUid, ::TYPE_ANY);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700643
Janis Danisevskisaf7783f2017-09-21 11:29:47 -0700644 if (!filename.isOk()) {
645 ALOGW("could not access %s for getmtime", filename.value().string());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700646 *time = -1L;
647 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700648 }
649
Janis Danisevskisaf7783f2017-09-21 11:29:47 -0700650 int fd = TEMP_FAILURE_RETRY(open(filename.value().string(), O_NOFOLLOW, O_RDONLY));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700651 if (fd < 0) {
Janis Danisevskisaf7783f2017-09-21 11:29:47 -0700652 ALOGW("could not open %s for getmtime", filename.value().string());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700653 *time = -1L;
654 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700655 }
656
657 struct stat s;
658 int ret = fstat(fd, &s);
659 close(fd);
660 if (ret == -1) {
Janis Danisevskisaf7783f2017-09-21 11:29:47 -0700661 ALOGW("could not stat %s for getmtime", filename.value().string());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700662 *time = -1L;
663 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700664 }
665
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700666 *time = static_cast<int64_t>(s.st_mtime);
667 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700668}
669
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400670// TODO(tuckeris): This is dead code, remove it. Don't bother copying over key characteristics here
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700671Status KeyStoreService::duplicate(const String16& srcKey, int32_t srcUid, const String16& destKey,
672 int32_t destUid, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700673 uid_t callingUid = IPCThreadState::self()->getCallingUid();
674 pid_t spid = IPCThreadState::self()->getCallingPid();
675 if (!has_permission(callingUid, P_DUPLICATE, spid)) {
676 ALOGW("permission denied for %d: duplicate", callingUid);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700677 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
678 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700679 }
680
681 State state = mKeyStore->getState(get_user_id(callingUid));
682 if (!isKeystoreUnlocked(state)) {
683 ALOGD("calling duplicate in state: %d", state);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700684 *aidl_return = static_cast<int32_t>(ResponseCode(state));
685 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700686 }
687
688 if (srcUid == -1 || static_cast<uid_t>(srcUid) == callingUid) {
689 srcUid = callingUid;
690 } else if (!is_granted_to(callingUid, srcUid)) {
691 ALOGD("migrate not granted from source: %d -> %d", callingUid, srcUid);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700692 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
693 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700694 }
695
696 if (destUid == -1) {
697 destUid = callingUid;
698 }
699
700 if (srcUid != destUid) {
701 if (static_cast<uid_t>(srcUid) != callingUid) {
702 ALOGD("can only duplicate from caller to other or to same uid: "
703 "calling=%d, srcUid=%d, destUid=%d",
704 callingUid, srcUid, destUid);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700705 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
706 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700707 }
708
709 if (!is_granted_to(callingUid, destUid)) {
710 ALOGD("duplicate not granted to dest: %d -> %d", callingUid, destUid);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700711 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
712 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700713 }
714 }
715
716 String8 source8(srcKey);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400717 String8 sourceFile(mKeyStore->getKeyNameForUidWithDir(source8, srcUid, ::TYPE_ANY));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700718
719 String8 target8(destKey);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400720 String8 targetFile(mKeyStore->getKeyNameForUidWithDir(target8, destUid, ::TYPE_ANY));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700721
722 if (access(targetFile.string(), W_OK) != -1 || errno != ENOENT) {
723 ALOGD("destination already exists: %s", targetFile.string());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700724 *aidl_return = static_cast<int32_t>(ResponseCode::SYSTEM_ERROR);
725 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700726 }
727
728 Blob keyBlob;
729 ResponseCode responseCode =
730 mKeyStore->get(sourceFile.string(), &keyBlob, TYPE_ANY, get_user_id(srcUid));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100731 if (responseCode != ResponseCode::NO_ERROR) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700732 *aidl_return = static_cast<int32_t>(responseCode);
733 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700734 }
735
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700736 *aidl_return =
737 static_cast<int32_t>(mKeyStore->put(targetFile.string(), &keyBlob, get_user_id(destUid)));
738 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700739}
740
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700741Status KeyStoreService::is_hardware_backed(const String16& keyType, int32_t* aidl_return) {
742 *aidl_return = static_cast<int32_t>(mKeyStore->isHardwareBacked(keyType) ? 1 : 0);
743 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700744}
745
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700746Status KeyStoreService::clear_uid(int64_t targetUid64, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700747 uid_t targetUid = getEffectiveUid(targetUid64);
748 if (!checkBinderPermissionSelfOrSystem(P_CLEAR_UID, targetUid)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700749 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
750 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700751 }
Rubin Xu7675c9f2017-03-15 19:26:52 +0000752 ALOGI("clear_uid %" PRId64, targetUid64);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700753
Janis Danisevskisaf7783f2017-09-21 11:29:47 -0700754 mKeyStore->removeAllGrantsToUid(targetUid);
755
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700756 String8 prefix = String8::format("%u_", targetUid);
757 Vector<String16> aliases;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100758 if (mKeyStore->list(prefix, &aliases, get_user_id(targetUid)) != ResponseCode::NO_ERROR) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700759 *aidl_return = static_cast<int32_t>(ResponseCode::SYSTEM_ERROR);
760 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700761 }
762
763 for (uint32_t i = 0; i < aliases.size(); i++) {
764 String8 name8(aliases[i]);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400765 String8 filename(mKeyStore->getKeyNameForUidWithDir(name8, targetUid, ::TYPE_ANY));
Rubin Xu85c85e92017-04-26 20:07:30 +0100766
767 if (get_app_id(targetUid) == AID_SYSTEM) {
768 Blob keyBlob;
769 ResponseCode responseCode =
770 mKeyStore->get(filename.string(), &keyBlob, ::TYPE_ANY, get_user_id(targetUid));
771 if (responseCode == ResponseCode::NO_ERROR && keyBlob.isCriticalToDeviceEncryption()) {
772 // Do not clear keys critical to device encryption under system uid.
773 continue;
774 }
775 }
776
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700777 mKeyStore->del(filename.string(), ::TYPE_ANY, get_user_id(targetUid));
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400778
779 // del() will fail silently if no cached characteristics are present for this alias.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100780 String8 chr_filename(
781 mKeyStore->getKeyNameForUidWithDir(name8, targetUid, ::TYPE_KEY_CHARACTERISTICS));
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400782 mKeyStore->del(chr_filename.string(), ::TYPE_KEY_CHARACTERISTICS, get_user_id(targetUid));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700783 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700784 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
785 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700786}
787
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700788Status KeyStoreService::addRngEntropy(const ::std::vector<uint8_t>& entropy, int32_t* aidl_return) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100789 const auto& device = mKeyStore->getDevice();
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700790 *aidl_return = static_cast<int32_t>(
791 KeyStoreServiceReturnCode(KS_HANDLE_HIDL_ERROR(device->addRngEntropy(entropy))));
792 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700793}
794
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700795Status
796KeyStoreService::generateKey(const String16& name, const KeymasterArguments& params,
797 const ::std::vector<uint8_t>& entropy, int uid, int flags,
798 android::security::keymaster::KeyCharacteristics* outCharacteristics,
799 int32_t* aidl_return) {
Max Biresef4f0672017-11-29 14:38:48 -0800800 // TODO(jbires): remove this getCallingUid call upon implementation of b/25646100
801 uid_t originalUid = IPCThreadState::self()->getCallingUid();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700802 uid = getEffectiveUid(uid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100803 KeyStoreServiceReturnCode rc =
804 checkBinderPermissionAndKeystoreState(P_INSERT, uid, flags & KEYSTORE_FLAG_ENCRYPTED);
805 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700806 *aidl_return = static_cast<int32_t>(rc);
807 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700808 }
Rubin Xu67899de2017-04-21 19:15:13 +0100809 if ((flags & KEYSTORE_FLAG_CRITICAL_TO_DEVICE_ENCRYPTION) && get_app_id(uid) != AID_SYSTEM) {
810 ALOGE("Non-system uid %d cannot set FLAG_CRITICAL_TO_DEVICE_ENCRYPTION", uid);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700811 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
812 return Status::ok();
Rubin Xu67899de2017-04-21 19:15:13 +0100813 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700814
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700815 if (containsTag(params.getParameters(), Tag::INCLUDE_UNIQUE_ID)) {
Max Biresef4f0672017-11-29 14:38:48 -0800816 //TODO(jbires): remove uid checking upon implementation of b/25646100
817 if (!checkBinderPermission(P_GEN_UNIQUE_ID) &&
818 originalUid != IPCThreadState::self()->getCallingUid()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700819 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
820 return Status::ok();
821 }
Shawn Willdene2a7b522017-04-11 09:27:40 -0600822 }
823
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100824 bool usingFallback = false;
825 auto& dev = mKeyStore->getDevice();
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700826 AuthorizationSet keyCharacteristics = params.getParameters();
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400827
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700828 // TODO: Seed from Linux RNG before this.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700829 int32_t result;
830 addRngEntropy(entropy, &result); // binder error is not possible.
831 if (!KeyStoreServiceReturnCode(result).isOk()) {
832 *aidl_return = static_cast<int32_t>(result);
833 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700834 }
835
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100836 KeyStoreServiceReturnCode error;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700837 auto hidl_cb = [&](ErrorCode ret, const ::std::vector<uint8_t>& hidlKeyBlob,
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100838 const KeyCharacteristics& keyCharacteristics) {
839 error = ret;
840 if (!error.isOk()) {
841 return;
842 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700843 if (outCharacteristics)
844 *outCharacteristics =
845 ::android::security::keymaster::KeyCharacteristics(keyCharacteristics);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700846
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100847 // Write the key
848 String8 name8(name);
849 String8 filename(mKeyStore->getKeyNameForUidWithDir(name8, uid, ::TYPE_KEYMASTER_10));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700850
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100851 Blob keyBlob(&hidlKeyBlob[0], hidlKeyBlob.size(), NULL, 0, ::TYPE_KEYMASTER_10);
852 keyBlob.setFallback(usingFallback);
Rubin Xu67899de2017-04-21 19:15:13 +0100853 keyBlob.setCriticalToDeviceEncryption(flags & KEYSTORE_FLAG_CRITICAL_TO_DEVICE_ENCRYPTION);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700854 if (isAuthenticationBound(params.getParameters()) &&
855 !keyBlob.isCriticalToDeviceEncryption()) {
Shawn Willdend5a24e62017-02-28 13:53:24 -0700856 keyBlob.setSuperEncrypted(true);
857 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100858 keyBlob.setEncrypted(flags & KEYSTORE_FLAG_ENCRYPTED);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700859
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100860 error = mKeyStore->put(filename.string(), &keyBlob, get_user_id(uid));
861 };
862
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700863 rc = KS_HANDLE_HIDL_ERROR(dev->generateKey(params.getParameters(), hidl_cb));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100864 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700865 *aidl_return = static_cast<int32_t>(rc);
866 return Status::ok();
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400867 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100868 if (!error.isOk()) {
869 ALOGE("Failed to generate key -> falling back to software keymaster");
870 usingFallback = true;
Janis Danisevskise8ba1802017-01-30 10:49:51 +0000871 auto fallback = mKeyStore->getFallbackDevice();
872 if (!fallback.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700873 *aidl_return = static_cast<int32_t>(error);
874 return Status::ok();
Janis Danisevskise8ba1802017-01-30 10:49:51 +0000875 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700876 rc = KS_HANDLE_HIDL_ERROR(fallback.value()->generateKey(params.getParameters(), hidl_cb));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100877 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700878 *aidl_return = static_cast<int32_t>(rc);
879 return Status::ok();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100880 }
881 if (!error.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700882 *aidl_return = static_cast<int32_t>(error);
883 return Status::ok();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100884 }
885 }
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400886
887 // Write the characteristics:
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100888 String8 name8(name);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400889 String8 cFilename(mKeyStore->getKeyNameForUidWithDir(name8, uid, ::TYPE_KEY_CHARACTERISTICS));
890
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100891 std::stringstream kc_stream;
892 keyCharacteristics.Serialize(&kc_stream);
893 if (kc_stream.bad()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700894 *aidl_return = static_cast<int32_t>(ResponseCode::SYSTEM_ERROR);
895 return Status::ok();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100896 }
897 auto kc_buf = kc_stream.str();
898 Blob charBlob(reinterpret_cast<const uint8_t*>(kc_buf.data()), kc_buf.size(), NULL, 0,
899 ::TYPE_KEY_CHARACTERISTICS);
900 charBlob.setFallback(usingFallback);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -0400901 charBlob.setEncrypted(flags & KEYSTORE_FLAG_ENCRYPTED);
902
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700903 *aidl_return =
904 static_cast<int32_t>(mKeyStore->put(cFilename.string(), &charBlob, get_user_id(uid)));
905 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700906}
907
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700908Status KeyStoreService::getKeyCharacteristics(
909 const String16& name, const ::android::security::keymaster::KeymasterBlob& clientId,
910 const ::android::security::keymaster::KeymasterBlob& appId, int32_t uid,
911 ::android::security::keymaster::KeyCharacteristics* outCharacteristics, int32_t* aidl_return) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700912 if (!outCharacteristics) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700913 *aidl_return =
914 static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::UNEXPECTED_NULL_POINTER));
915 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700916 }
917
918 uid_t targetUid = getEffectiveUid(uid);
919 uid_t callingUid = IPCThreadState::self()->getCallingUid();
920 if (!is_granted_to(callingUid, targetUid)) {
921 ALOGW("uid %d not permitted to act for uid %d in getKeyCharacteristics", callingUid,
922 targetUid);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700923 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
924 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700925 }
926
927 Blob keyBlob;
928 String8 name8(name);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700929
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100930 KeyStoreServiceReturnCode rc =
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700931 mKeyStore->getKeyForName(&keyBlob, name8, targetUid, TYPE_KEYMASTER_10);
Janis Danisevskisd714a672017-09-01 14:31:36 -0700932 if (rc == ResponseCode::UNINITIALIZED) {
933 /*
934 * If we fail reading the blob because the master key is missing we try to retrieve the
935 * key characteristics from the characteristics file. This happens when auth-bound
936 * keys are used after a screen lock has been removed by the user.
937 */
938 rc = mKeyStore->getKeyForName(&keyBlob, name8, targetUid, TYPE_KEY_CHARACTERISTICS);
939 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700940 *aidl_return = static_cast<int32_t>(rc);
941 return Status::ok();
Janis Danisevskisd714a672017-09-01 14:31:36 -0700942 }
943 AuthorizationSet keyCharacteristics;
944 // TODO write one shot stream buffer to avoid copying (twice here)
945 std::string charBuffer(reinterpret_cast<const char*>(keyBlob.getValue()),
946 keyBlob.getLength());
947 std::stringstream charStream(charBuffer);
948 keyCharacteristics.Deserialize(&charStream);
949
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700950 outCharacteristics->softwareEnforced = KeymasterArguments(keyCharacteristics.hidl_data());
951 *aidl_return = static_cast<int32_t>(rc);
952 return Status::ok();
Janis Danisevskisd714a672017-09-01 14:31:36 -0700953 } else if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700954 *aidl_return = static_cast<int32_t>(rc);
955 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -0700956 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100957
958 auto hidlKeyBlob = blob2hidlVec(keyBlob);
959 auto& dev = mKeyStore->getDevice(keyBlob);
960
961 KeyStoreServiceReturnCode error;
962
963 auto hidlCb = [&](ErrorCode ret, const KeyCharacteristics& keyCharacteristics) {
964 error = ret;
965 if (!error.isOk()) {
966 return;
Shawn Willden98c59162016-03-20 09:10:18 -0600967 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700968 *outCharacteristics =
969 ::android::security::keymaster::KeyCharacteristics(keyCharacteristics);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100970 };
971
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700972 rc = KS_HANDLE_HIDL_ERROR(
973 dev->getKeyCharacteristics(hidlKeyBlob, clientId.getData(), appId.getData(), hidlCb));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100974 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700975 *aidl_return = static_cast<int32_t>(rc);
976 return Status::ok();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100977 }
978
979 if (error == ErrorCode::KEY_REQUIRES_UPGRADE) {
980 AuthorizationSet upgradeParams;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700981 if (clientId.getData().size()) {
982 upgradeParams.push_back(TAG_APPLICATION_ID, clientId.getData());
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100983 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700984 if (appId.getData().size()) {
985 upgradeParams.push_back(TAG_APPLICATION_DATA, appId.getData());
Shawn Willden98c59162016-03-20 09:10:18 -0600986 }
987 rc = upgradeKeyBlob(name, targetUid, upgradeParams, &keyBlob);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100988 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700989 *aidl_return = static_cast<int32_t>(rc);
990 return Status::ok();
Shawn Willden98c59162016-03-20 09:10:18 -0600991 }
Shawn Willden715d0232016-01-21 00:45:13 -0700992
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100993 auto upgradedHidlKeyBlob = blob2hidlVec(keyBlob);
994
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700995 rc = KS_HANDLE_HIDL_ERROR(dev->getKeyCharacteristics(
996 upgradedHidlKeyBlob, clientId.getData(), appId.getData(), hidlCb));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +0100997 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -0700998 *aidl_return = static_cast<int32_t>(rc);
999 return Status::ok();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001000 }
1001 // Note that, on success, "error" will have been updated by the hidlCB callback.
1002 // So it is fine to return "error" below.
1003 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001004 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(error));
1005 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001006}
1007
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001008Status
1009KeyStoreService::importKey(const String16& name, const KeymasterArguments& params, int32_t format,
1010 const ::std::vector<uint8_t>& keyData, int uid, int flags,
1011 ::android::security::keymaster::KeyCharacteristics* outCharacteristics,
1012 int32_t* aidl_return) {
1013
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001014 uid = getEffectiveUid(uid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001015 KeyStoreServiceReturnCode rc =
1016 checkBinderPermissionAndKeystoreState(P_INSERT, uid, flags & KEYSTORE_FLAG_ENCRYPTED);
1017 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001018 *aidl_return = static_cast<int32_t>(rc);
1019 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001020 }
Rubin Xu67899de2017-04-21 19:15:13 +01001021 if ((flags & KEYSTORE_FLAG_CRITICAL_TO_DEVICE_ENCRYPTION) && get_app_id(uid) != AID_SYSTEM) {
1022 ALOGE("Non-system uid %d cannot set FLAG_CRITICAL_TO_DEVICE_ENCRYPTION", uid);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001023 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
1024 return Status::ok();
Rubin Xu67899de2017-04-21 19:15:13 +01001025 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001026
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001027 bool usingFallback = false;
1028 auto& dev = mKeyStore->getDevice();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001029
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001030 String8 name8(name);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001031
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001032 KeyStoreServiceReturnCode error;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001033
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001034 auto hidlCb = [&](ErrorCode ret, const ::std::vector<uint8_t>& keyBlob,
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001035 const KeyCharacteristics& keyCharacteristics) {
1036 error = ret;
1037 if (!error.isOk()) {
1038 return;
1039 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001040 if (outCharacteristics)
1041 *outCharacteristics =
1042 ::android::security::keymaster::KeyCharacteristics(keyCharacteristics);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001043
1044 // Write the key:
1045 String8 filename(mKeyStore->getKeyNameForUidWithDir(name8, uid, ::TYPE_KEYMASTER_10));
1046
1047 Blob ksBlob(&keyBlob[0], keyBlob.size(), NULL, 0, ::TYPE_KEYMASTER_10);
1048 ksBlob.setFallback(usingFallback);
Rubin Xu67899de2017-04-21 19:15:13 +01001049 ksBlob.setCriticalToDeviceEncryption(flags & KEYSTORE_FLAG_CRITICAL_TO_DEVICE_ENCRYPTION);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001050 if (isAuthenticationBound(params.getParameters()) &&
1051 !ksBlob.isCriticalToDeviceEncryption()) {
Shawn Willdend5a24e62017-02-28 13:53:24 -07001052 ksBlob.setSuperEncrypted(true);
1053 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001054 ksBlob.setEncrypted(flags & KEYSTORE_FLAG_ENCRYPTED);
1055
1056 error = mKeyStore->put(filename.string(), &ksBlob, get_user_id(uid));
1057 };
1058
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001059 rc = KS_HANDLE_HIDL_ERROR(
1060 dev->importKey(params.getParameters(), KeyFormat(format), keyData, hidlCb));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001061 // possible hidl error
1062 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001063 *aidl_return = static_cast<int32_t>(rc);
1064 return Status::ok();
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001065 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001066 // now check error from callback
1067 if (!error.isOk()) {
1068 ALOGE("Failed to import key -> falling back to software keymaster");
1069 usingFallback = true;
Janis Danisevskise8ba1802017-01-30 10:49:51 +00001070 auto fallback = mKeyStore->getFallbackDevice();
1071 if (!fallback.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001072 *aidl_return = static_cast<int32_t>(error);
1073 return Status::ok();
Janis Danisevskise8ba1802017-01-30 10:49:51 +00001074 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001075 rc = KS_HANDLE_HIDL_ERROR(fallback.value()->importKey(params.getParameters(),
1076 KeyFormat(format), keyData, hidlCb));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001077 // possible hidl error
1078 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001079 *aidl_return = static_cast<int32_t>(rc);
1080 return Status::ok();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001081 }
1082 // now check error from callback
1083 if (!error.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001084 *aidl_return = static_cast<int32_t>(error);
1085 return Status::ok();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001086 }
1087 }
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001088
1089 // Write the characteristics:
1090 String8 cFilename(mKeyStore->getKeyNameForUidWithDir(name8, uid, ::TYPE_KEY_CHARACTERISTICS));
1091
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001092 AuthorizationSet opParams = params.getParameters();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001093 std::stringstream kcStream;
1094 opParams.Serialize(&kcStream);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001095 if (kcStream.bad()) {
1096 *aidl_return = static_cast<int32_t>(ResponseCode::SYSTEM_ERROR);
1097 return Status::ok();
1098 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001099 auto kcBuf = kcStream.str();
1100
1101 Blob charBlob(reinterpret_cast<const uint8_t*>(kcBuf.data()), kcBuf.size(), NULL, 0,
1102 ::TYPE_KEY_CHARACTERISTICS);
1103 charBlob.setFallback(usingFallback);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001104 charBlob.setEncrypted(flags & KEYSTORE_FLAG_ENCRYPTED);
1105
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001106 *aidl_return =
1107 static_cast<int32_t>(mKeyStore->put(cFilename.string(), &charBlob, get_user_id(uid)));
1108
1109 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001110}
1111
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001112Status KeyStoreService::exportKey(const String16& name, int32_t format,
1113 const ::android::security::keymaster::KeymasterBlob& clientId,
1114 const ::android::security::keymaster::KeymasterBlob& appId,
1115 int32_t uid, ExportResult* result) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001116
1117 uid_t targetUid = getEffectiveUid(uid);
1118 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1119 if (!is_granted_to(callingUid, targetUid)) {
1120 ALOGW("uid %d not permitted to act for uid %d in exportKey", callingUid, targetUid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001121 result->resultCode = ResponseCode::PERMISSION_DENIED;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001122 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001123 }
1124
1125 Blob keyBlob;
1126 String8 name8(name);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001127
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001128 result->resultCode = mKeyStore->getKeyForName(&keyBlob, name8, targetUid, TYPE_KEYMASTER_10);
1129 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001130 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001131 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001132
1133 auto key = blob2hidlVec(keyBlob);
1134 auto& dev = mKeyStore->getDevice(keyBlob);
1135
1136 auto hidlCb = [&](ErrorCode ret, const ::android::hardware::hidl_vec<uint8_t>& keyMaterial) {
1137 result->resultCode = ret;
1138 if (!result->resultCode.isOk()) {
Ji Wang2c142312016-10-14 17:21:10 +08001139 return;
1140 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001141 result->exportData = keyMaterial;
1142 };
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001143 KeyStoreServiceReturnCode rc = KS_HANDLE_HIDL_ERROR(
1144 dev->exportKey(KeyFormat(format), key, clientId.getData(), appId.getData(), hidlCb));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001145 // Overwrite result->resultCode only on HIDL error. Otherwise we want the result set in the
1146 // callback hidlCb.
1147 if (!rc.isOk()) {
1148 result->resultCode = rc;
Ji Wang2c142312016-10-14 17:21:10 +08001149 }
1150
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001151 if (result->resultCode == ErrorCode::KEY_REQUIRES_UPGRADE) {
1152 AuthorizationSet upgradeParams;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001153 if (clientId.getData().size()) {
1154 upgradeParams.push_back(TAG_APPLICATION_ID, clientId.getData());
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001155 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001156 if (appId.getData().size()) {
1157 upgradeParams.push_back(TAG_APPLICATION_DATA, appId.getData());
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001158 }
1159 result->resultCode = upgradeKeyBlob(name, targetUid, upgradeParams, &keyBlob);
1160 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001161 return Status::ok();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001162 }
1163
1164 auto upgradedHidlKeyBlob = blob2hidlVec(keyBlob);
1165
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001166 result->resultCode = KS_HANDLE_HIDL_ERROR(dev->exportKey(
1167 KeyFormat(format), upgradedHidlKeyBlob, clientId.getData(), appId.getData(), hidlCb));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001168 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001169 return Status::ok();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001170 }
1171 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001172 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001173}
1174
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001175static inline void addAuthTokenToParams(AuthorizationSet* params, const HardwareAuthToken* token) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001176 if (token) {
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001177 params->push_back(TAG_AUTH_TOKEN, authToken2HidlVec(*token));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001178 }
1179}
1180
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001181Status KeyStoreService::begin(const sp<IBinder>& appToken, const String16& name, int32_t purpose,
1182 bool pruneable, const KeymasterArguments& params,
1183 const ::std::vector<uint8_t>& entropy, int32_t uid,
1184 OperationResult* result) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001185 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1186 uid_t targetUid = getEffectiveUid(uid);
1187 if (!is_granted_to(callingUid, targetUid)) {
1188 ALOGW("uid %d not permitted to act for uid %d in begin", callingUid, targetUid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001189 result->resultCode = ResponseCode::PERMISSION_DENIED;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001190 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001191 }
1192 if (!pruneable && get_app_id(callingUid) != AID_SYSTEM) {
1193 ALOGE("Non-system uid %d trying to start non-pruneable operation", callingUid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001194 result->resultCode = ResponseCode::PERMISSION_DENIED;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001195 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001196 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001197 if (!checkAllowedOperationParams(params.getParameters())) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001198 result->resultCode = ErrorCode::INVALID_ARGUMENT;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001199 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001200 }
1201 Blob keyBlob;
1202 String8 name8(name);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001203 result->resultCode = mKeyStore->getKeyForName(&keyBlob, name8, targetUid, TYPE_KEYMASTER_10);
Shawn Willdend5a24e62017-02-28 13:53:24 -07001204 if (result->resultCode == ResponseCode::LOCKED && keyBlob.isSuperEncrypted()) {
1205 result->resultCode = ErrorCode::KEY_USER_NOT_AUTHENTICATED;
1206 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001207 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001208 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001209 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001210
1211 auto key = blob2hidlVec(keyBlob);
1212 auto& dev = mKeyStore->getDevice(keyBlob);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001213 AuthorizationSet opParams = params.getParameters();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001214 KeyCharacteristics characteristics;
1215 result->resultCode = getOperationCharacteristics(key, &dev, opParams, &characteristics);
1216
1217 if (result->resultCode == ErrorCode::KEY_REQUIRES_UPGRADE) {
1218 result->resultCode = upgradeKeyBlob(name, targetUid, opParams, &keyBlob);
1219 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001220 return Status::ok();
Shawn Willden98c59162016-03-20 09:10:18 -06001221 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001222 key = blob2hidlVec(keyBlob);
1223 result->resultCode = getOperationCharacteristics(key, &dev, opParams, &characteristics);
Shawn Willden98c59162016-03-20 09:10:18 -06001224 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001225 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001226 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001227 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001228
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001229 const HardwareAuthToken* authToken = NULL;
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001230
1231 // Merge these characteristics with the ones cached when the key was generated or imported
1232 Blob charBlob;
1233 AuthorizationSet persistedCharacteristics;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001234 result->resultCode =
1235 mKeyStore->getKeyForName(&charBlob, name8, targetUid, TYPE_KEY_CHARACTERISTICS);
1236 if (result->resultCode.isOk()) {
1237 // TODO write one shot stream buffer to avoid copying (twice here)
1238 std::string charBuffer(reinterpret_cast<const char*>(charBlob.getValue()),
1239 charBlob.getLength());
1240 std::stringstream charStream(charBuffer);
1241 persistedCharacteristics.Deserialize(&charStream);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001242 } else {
1243 ALOGD("Unable to read cached characteristics for key");
1244 }
1245
1246 // Replace the sw_enforced set with those persisted to disk, minus hw_enforced
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001247 AuthorizationSet softwareEnforced = characteristics.softwareEnforced;
1248 AuthorizationSet teeEnforced = characteristics.teeEnforced;
1249 persistedCharacteristics.Union(softwareEnforced);
1250 persistedCharacteristics.Subtract(teeEnforced);
1251 characteristics.softwareEnforced = persistedCharacteristics.hidl_data();
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001252
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001253 auto authResult = getAuthToken(characteristics, 0, KeyPurpose(purpose), &authToken,
Shawn Willdenc5e8f362017-08-31 09:23:06 -06001254 /*failOnTokenMissing*/ false);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001255 // If per-operation auth is needed we need to begin the operation and
1256 // the client will need to authorize that operation before calling
1257 // update. Any other auth issues stop here.
Shawn Willden827243a2017-09-12 05:41:33 -06001258 if (!authResult.isOk() && authResult != ResponseCode::OP_AUTH_NEEDED) {
1259 result->resultCode = authResult;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001260 return Status::ok();
Shawn Willden827243a2017-09-12 05:41:33 -06001261 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001262
1263 addAuthTokenToParams(&opParams, authToken);
1264
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001265 // Add entropy to the device first.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001266 if (entropy.size()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001267 int32_t resultCode;
1268 addRngEntropy(entropy, &resultCode); // binder error is not possible
1269 result->resultCode = KeyStoreServiceReturnCode(resultCode);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001270 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001271 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001272 }
1273 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001274
1275 // Create a keyid for this key.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001276 km_id_t keyid;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001277 if (!enforcement_policy.CreateKeyId(key, &keyid)) {
1278 ALOGE("Failed to create a key ID for authorization checking.");
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001279 result->resultCode = ErrorCode::UNKNOWN_ERROR;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001280 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001281 }
1282
1283 // Check that all key authorization policy requirements are met.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001284 AuthorizationSet key_auths = characteristics.teeEnforced;
1285 key_auths.append(&characteristics.softwareEnforced[0],
1286 &characteristics.softwareEnforced[characteristics.softwareEnforced.size()]);
1287
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001288 result->resultCode =
1289 enforcement_policy.AuthorizeOperation(KeyPurpose(purpose), keyid, key_auths, opParams,
1290 0 /* op_handle */, true /* is_begin_operation */);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001291 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001292 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001293 }
1294
Shawn Willdene2a7b522017-04-11 09:27:40 -06001295 // If there are more than kMaxOperations, abort the oldest operation that was started as
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001296 // pruneable.
Shawn Willdene2a7b522017-04-11 09:27:40 -06001297 while (mOperationMap.getOperationCount() >= kMaxOperations) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001298 ALOGD("Reached or exceeded concurrent operations limit");
1299 if (!pruneOperation()) {
1300 break;
1301 }
1302 }
1303
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001304 auto hidlCb = [&](ErrorCode ret, const hidl_vec<KeyParameter>& outParams,
1305 uint64_t operationHandle) {
1306 result->resultCode = ret;
1307 if (!result->resultCode.isOk()) {
1308 return;
1309 }
1310 result->handle = operationHandle;
1311 result->outParams = outParams;
1312 };
1313
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001314 ErrorCode rc =
1315 KS_HANDLE_HIDL_ERROR(dev->begin(KeyPurpose(purpose), key, opParams.hidl_data(), hidlCb));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001316 if (rc != ErrorCode::OK) {
1317 ALOGW("Got error %d from begin()", rc);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001318 }
1319
1320 // If there are too many operations abort the oldest operation that was
1321 // started as pruneable and try again.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001322 while (rc == ErrorCode::TOO_MANY_OPERATIONS && mOperationMap.hasPruneableOperation()) {
1323 ALOGW("Ran out of operation handles");
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001324 if (!pruneOperation()) {
1325 break;
1326 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001327 rc = KS_HANDLE_HIDL_ERROR(
1328 dev->begin(KeyPurpose(purpose), key, opParams.hidl_data(), hidlCb));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001329 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001330 if (rc != ErrorCode::OK) {
1331 result->resultCode = rc;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001332 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001333 }
1334
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001335 // Note: The operation map takes possession of the contents of "characteristics".
1336 // It is safe to use characteristics after the following line but it will be empty.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001337 sp<IBinder> operationToken =
1338 mOperationMap.addOperation(result->handle, keyid, KeyPurpose(purpose), dev, appToken,
1339 std::move(characteristics), pruneable);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001340 assert(characteristics.teeEnforced.size() == 0);
1341 assert(characteristics.softwareEnforced.size() == 0);
Shawn Willdenc5e8f362017-08-31 09:23:06 -06001342 result->token = operationToken;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001343
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001344 if (authToken) {
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001345 mOperationMap.setOperationAuthToken(operationToken, authToken);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001346 }
1347 // Return the authentication lookup result. If this is a per operation
1348 // auth'd key then the resultCode will be ::OP_AUTH_NEEDED and the
1349 // application should get an auth token using the handle before the
1350 // first call to update, which will fail if keystore hasn't received the
1351 // auth token.
Shawn Willden2f96c792017-09-07 23:59:08 -06001352 if (result->resultCode == ErrorCode::OK) {
1353 result->resultCode = authResult;
1354 }
Shawn Willdenc5e8f362017-08-31 09:23:06 -06001355
1356 // Other result fields were set in the begin operation's callback.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001357 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001358}
1359
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001360Status KeyStoreService::update(const sp<IBinder>& token, const KeymasterArguments& params,
1361 const ::std::vector<uint8_t>& data, OperationResult* result) {
1362 if (!checkAllowedOperationParams(params.getParameters())) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001363 result->resultCode = ErrorCode::INVALID_ARGUMENT;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001364 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001365 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001366 km_device_t dev;
1367 uint64_t handle;
1368 KeyPurpose purpose;
1369 km_id_t keyid;
1370 const KeyCharacteristics* characteristics;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001371 if (!mOperationMap.getOperation(token, &handle, &keyid, &purpose, &dev, &characteristics)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001372 result->resultCode = ErrorCode::INVALID_OPERATION_HANDLE;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001373 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001374 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001375 AuthorizationSet opParams = params.getParameters();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001376 result->resultCode = addOperationAuthTokenIfNeeded(token, &opParams);
1377 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001378 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001379 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001380
1381 // Check that all key authorization policy requirements are met.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001382 AuthorizationSet key_auths(characteristics->teeEnforced);
1383 key_auths.append(&characteristics->softwareEnforced[0],
1384 &characteristics->softwareEnforced[characteristics->softwareEnforced.size()]);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001385 result->resultCode = enforcement_policy.AuthorizeOperation(
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001386 purpose, keyid, key_auths, opParams, handle, false /* is_begin_operation */);
1387 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001388 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001389 }
1390
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001391 auto hidlCb = [&](ErrorCode ret, uint32_t inputConsumed,
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001392 const hidl_vec<KeyParameter>& outParams,
1393 const ::std::vector<uint8_t>& output) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001394 result->resultCode = ret;
1395 if (!result->resultCode.isOk()) {
1396 return;
1397 }
1398 result->inputConsumed = inputConsumed;
1399 result->outParams = outParams;
1400 result->data = output;
1401 };
1402
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001403 KeyStoreServiceReturnCode rc =
1404 KS_HANDLE_HIDL_ERROR(dev->update(handle, opParams.hidl_data(), data, hidlCb));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001405 // just a reminder: on success result->resultCode was set in the callback. So we only overwrite
1406 // it if there was a communication error indicated by the ErrorCode.
1407 if (!rc.isOk()) {
1408 result->resultCode = rc;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001409 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001410 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001411}
1412
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001413Status KeyStoreService::finish(const sp<IBinder>& token, const KeymasterArguments& params,
1414 const ::std::vector<uint8_t>& signature,
1415 const ::std::vector<uint8_t>& entropy, OperationResult* result) {
1416 if (!checkAllowedOperationParams(params.getParameters())) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001417 result->resultCode = ErrorCode::INVALID_ARGUMENT;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001418 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001419 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001420 km_device_t dev;
1421 uint64_t handle;
1422 KeyPurpose purpose;
1423 km_id_t keyid;
1424 const KeyCharacteristics* characteristics;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001425 if (!mOperationMap.getOperation(token, &handle, &keyid, &purpose, &dev, &characteristics)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001426 result->resultCode = ErrorCode::INVALID_OPERATION_HANDLE;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001427 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001428 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001429 AuthorizationSet opParams = params.getParameters();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001430 result->resultCode = addOperationAuthTokenIfNeeded(token, &opParams);
1431 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001432 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001433 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001434
1435 if (entropy.size()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001436 int resultCode;
1437 addRngEntropy(entropy, &resultCode); // binder error is not possible
1438 result->resultCode = KeyStoreServiceReturnCode(resultCode);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001439 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001440 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001441 }
1442 }
1443
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001444 // Check that all key authorization policy requirements are met.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001445 AuthorizationSet key_auths(characteristics->teeEnforced);
1446 key_auths.append(&characteristics->softwareEnforced[0],
1447 &characteristics->softwareEnforced[characteristics->softwareEnforced.size()]);
1448 result->resultCode = enforcement_policy.AuthorizeOperation(
1449 purpose, keyid, key_auths, opParams, handle, false /* is_begin_operation */);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001450 if (!result->resultCode.isOk()) return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001451
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001452 auto hidlCb = [&](ErrorCode ret, const hidl_vec<KeyParameter>& outParams,
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001453 const ::std::vector<uint8_t>& output) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001454 result->resultCode = ret;
1455 if (!result->resultCode.isOk()) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001456 }
1457 result->outParams = outParams;
1458 result->data = output;
1459 };
1460
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001461 KeyStoreServiceReturnCode rc = KS_HANDLE_HIDL_ERROR(
1462 dev->finish(handle, opParams.hidl_data(),
1463 ::std::vector<uint8_t>() /* TODO(swillden): wire up input to finish() */,
1464 signature, hidlCb));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001465 // Remove the operation regardless of the result
1466 mOperationMap.removeOperation(token);
1467 mAuthTokenTable.MarkCompleted(handle);
1468
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001469 // just a reminder: on success result->resultCode was set in the callback. So we only overwrite
1470 // it if there was a communication error indicated by the ErrorCode.
1471 if (!rc.isOk()) {
1472 result->resultCode = rc;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001473 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001474 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001475}
1476
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001477Status KeyStoreService::abort(const sp<IBinder>& token, int32_t* aidl_return) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001478 km_device_t dev;
1479 uint64_t handle;
1480 KeyPurpose purpose;
1481 km_id_t keyid;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001482 if (!mOperationMap.getOperation(token, &handle, &keyid, &purpose, &dev, NULL)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001483 *aidl_return =
1484 static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::INVALID_OPERATION_HANDLE));
1485 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001486 }
1487 mOperationMap.removeOperation(token);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001488
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001489 ErrorCode error_code = KS_HANDLE_HIDL_ERROR(dev->abort(handle));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001490 mAuthTokenTable.MarkCompleted(handle);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001491 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(error_code));
1492 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001493}
1494
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001495Status KeyStoreService::isOperationAuthorized(const sp<IBinder>& token, bool* aidl_return) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001496 km_device_t dev;
1497 uint64_t handle;
1498 const KeyCharacteristics* characteristics;
1499 KeyPurpose purpose;
1500 km_id_t keyid;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001501 if (!mOperationMap.getOperation(token, &handle, &keyid, &purpose, &dev, &characteristics)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001502 *aidl_return = false;
1503 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001504 }
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001505 const HardwareAuthToken* authToken = NULL;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001506 mOperationMap.getOperationAuthToken(token, &authToken);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001507 AuthorizationSet ignored;
1508 auto authResult = addOperationAuthTokenIfNeeded(token, &ignored);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001509 *aidl_return = authResult.isOk();
1510 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001511}
1512
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001513Status KeyStoreService::addAuthToken(const ::std::vector<uint8_t>& authTokenAsVector,
1514 int32_t* aidl_return) {
1515
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001516 // TODO(swillden): When gatekeeper and fingerprint are ready, this should be updated to
1517 // receive a HardwareAuthToken, rather than an opaque byte array.
1518
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001519 if (!checkBinderPermission(P_ADD_AUTH)) {
1520 ALOGW("addAuthToken: permission denied for %d", IPCThreadState::self()->getCallingUid());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001521 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
1522 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001523 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001524 if (authTokenAsVector.size() != sizeof(hw_auth_token_t)) {
1525 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
1526 return Status::ok();
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001527 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001528
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001529 hw_auth_token_t authToken;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001530 memcpy(reinterpret_cast<void*>(&authToken), authTokenAsVector.data(), sizeof(hw_auth_token_t));
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001531 if (authToken.version != 0) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001532 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
1533 return Status::ok();
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001534 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001535
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001536 std::unique_ptr<HardwareAuthToken> hidlAuthToken(new HardwareAuthToken);
1537 hidlAuthToken->challenge = authToken.challenge;
1538 hidlAuthToken->userId = authToken.user_id;
1539 hidlAuthToken->authenticatorId = authToken.authenticator_id;
1540 hidlAuthToken->authenticatorType = authToken.authenticator_type;
1541 hidlAuthToken->timestamp = authToken.timestamp;
1542 static_assert(
1543 std::is_same<decltype(hidlAuthToken->hmac),
1544 ::android::hardware::hidl_array<uint8_t, sizeof(authToken.hmac)>>::value,
1545 "This function assumes token HMAC is 32 bytes, but it might not be.");
1546 std::copy(authToken.hmac, authToken.hmac + sizeof(authToken.hmac), hidlAuthToken->hmac.data());
1547
Janis Danisevskis8f737ad2017-11-21 12:30:15 -08001548 mAuthTokenTable.AddAuthenticationToken(std::move(hidlAuthToken));
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001549 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
1550 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001551}
1552
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001553bool isDeviceIdAttestationRequested(const KeymasterArguments& params) {
1554 const hardware::hidl_vec<KeyParameter> paramsVec = params.getParameters();
1555 for (size_t i = 0; i < paramsVec.size(); ++i) {
1556 switch (paramsVec[i].tag) {
Shawn Willdene2a7b522017-04-11 09:27:40 -06001557 case Tag::ATTESTATION_ID_BRAND:
1558 case Tag::ATTESTATION_ID_DEVICE:
1559 case Tag::ATTESTATION_ID_IMEI:
1560 case Tag::ATTESTATION_ID_MANUFACTURER:
1561 case Tag::ATTESTATION_ID_MEID:
1562 case Tag::ATTESTATION_ID_MODEL:
1563 case Tag::ATTESTATION_ID_PRODUCT:
1564 case Tag::ATTESTATION_ID_SERIAL:
1565 return true;
1566 default:
1567 break;
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +01001568 }
1569 }
1570 return false;
1571}
1572
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001573Status KeyStoreService::attestKey(const String16& name, const KeymasterArguments& params,
1574 ::android::security::keymaster::KeymasterCertificateChain* chain,
1575 int32_t* aidl_return) {
1576 // check null output if method signature is updated and return ErrorCode::OUTPUT_PARAMETER_NULL
1577 if (!checkAllowedOperationParams(params.getParameters())) {
1578 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
1579 return Status::ok();
Shawn Willden50eb1b22016-01-21 12:41:23 -07001580 }
1581
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001582 if (isDeviceIdAttestationRequested(params)) {
1583 // There is a dedicated attestDeviceIds() method for device ID attestation.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001584 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
1585 return Status::ok();
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +01001586 }
1587
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001588 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1589
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001590 AuthorizationSet mutableParams = params.getParameters();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001591 KeyStoreServiceReturnCode rc = updateParamsForAttestation(callingUid, &mutableParams);
1592 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001593 *aidl_return = static_cast<int32_t>(rc);
1594 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001595 }
Shawn Willdene2a7b522017-04-11 09:27:40 -06001596
Shawn Willden50eb1b22016-01-21 12:41:23 -07001597 Blob keyBlob;
1598 String8 name8(name);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001599 rc = mKeyStore->getKeyForName(&keyBlob, name8, callingUid, TYPE_KEYMASTER_10);
1600 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001601 *aidl_return = static_cast<int32_t>(rc);
1602 return Status::ok();
Shawn Willden50eb1b22016-01-21 12:41:23 -07001603 }
1604
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001605 KeyStoreServiceReturnCode error;
1606 auto hidlCb = [&](ErrorCode ret, const hidl_vec<hidl_vec<uint8_t>>& certChain) {
1607 error = ret;
1608 if (!error.isOk()) {
1609 return;
1610 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001611 if (chain) {
1612 *chain = KeymasterCertificateChain(certChain);
1613 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001614 };
1615
1616 auto hidlKey = blob2hidlVec(keyBlob);
1617 auto& dev = mKeyStore->getDevice(keyBlob);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001618 rc = KS_HANDLE_HIDL_ERROR(dev->attestKey(hidlKey, mutableParams.hidl_data(), hidlCb));
1619 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001620 *aidl_return = static_cast<int32_t>(rc);
1621 return Status::ok();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001622 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001623 *aidl_return = static_cast<int32_t>(error);
1624 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001625}
1626
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001627Status
1628KeyStoreService::attestDeviceIds(const KeymasterArguments& params,
1629 ::android::security::keymaster::KeymasterCertificateChain* chain,
1630 int32_t* aidl_return) {
1631 // check null output if method signature is updated and return ErrorCode::OUTPUT_PARAMETER_NULL
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001632
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001633 if (!checkAllowedOperationParams(params.getParameters())) {
1634 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
1635 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001636 }
1637
1638 if (!isDeviceIdAttestationRequested(params)) {
1639 // There is an attestKey() method for attesting keys without device ID attestation.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001640 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
1641 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001642 }
1643
1644 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1645 sp<IBinder> binder = defaultServiceManager()->getService(String16("permission"));
1646 if (binder == 0) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001647 *aidl_return =
1648 static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::CANNOT_ATTEST_IDS));
1649 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001650 }
1651 if (!interface_cast<IPermissionController>(binder)->checkPermission(
1652 String16("android.permission.READ_PRIVILEGED_PHONE_STATE"),
1653 IPCThreadState::self()->getCallingPid(), callingUid)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001654 *aidl_return =
1655 static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::CANNOT_ATTEST_IDS));
1656 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001657 }
1658
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001659 AuthorizationSet mutableParams = params.getParameters();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001660 KeyStoreServiceReturnCode rc = updateParamsForAttestation(callingUid, &mutableParams);
1661 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001662 *aidl_return = static_cast<int32_t>(rc);
1663 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001664 }
1665
1666 // Generate temporary key.
1667 auto& dev = mKeyStore->getDevice();
1668 KeyStoreServiceReturnCode error;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001669 ::std::vector<uint8_t> hidlKey;
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001670
1671 AuthorizationSet keyCharacteristics;
1672 keyCharacteristics.push_back(TAG_PURPOSE, KeyPurpose::VERIFY);
1673 keyCharacteristics.push_back(TAG_ALGORITHM, Algorithm::EC);
1674 keyCharacteristics.push_back(TAG_DIGEST, Digest::SHA_2_256);
1675 keyCharacteristics.push_back(TAG_NO_AUTH_REQUIRED);
1676 keyCharacteristics.push_back(TAG_EC_CURVE, EcCurve::P_256);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001677 auto generateHidlCb = [&](ErrorCode ret, const ::std::vector<uint8_t>& hidlKeyBlob,
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001678 const KeyCharacteristics&) {
1679 error = ret;
1680 if (!error.isOk()) {
1681 return;
1682 }
1683 hidlKey = hidlKeyBlob;
1684 };
1685
1686 rc = KS_HANDLE_HIDL_ERROR(dev->generateKey(keyCharacteristics.hidl_data(), generateHidlCb));
1687 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001688 *aidl_return = static_cast<int32_t>(rc);
1689 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001690 }
1691 if (!error.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001692 *aidl_return = static_cast<int32_t>(error);
1693 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001694 }
1695
1696 // Attest key and device IDs.
1697 auto attestHidlCb = [&](ErrorCode ret, const hidl_vec<hidl_vec<uint8_t>>& certChain) {
1698 error = ret;
1699 if (!error.isOk()) {
1700 return;
1701 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001702 *chain = ::android::security::keymaster::KeymasterCertificateChain(certChain);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001703 };
1704 KeyStoreServiceReturnCode attestationRc =
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001705 KS_HANDLE_HIDL_ERROR(dev->attestKey(hidlKey, mutableParams.hidl_data(), attestHidlCb));
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001706
1707 // Delete temporary key.
1708 KeyStoreServiceReturnCode deletionRc = KS_HANDLE_HIDL_ERROR(dev->deleteKey(hidlKey));
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +01001709
1710 if (!attestationRc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001711 *aidl_return = static_cast<int32_t>(attestationRc);
1712 return Status::ok();
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +01001713 }
1714 if (!error.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001715 *aidl_return = static_cast<int32_t>(error);
1716 return Status::ok();
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +01001717 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001718 *aidl_return = static_cast<int32_t>(deletionRc);
1719 return Status::ok();
Shawn Willden50eb1b22016-01-21 12:41:23 -07001720}
1721
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001722Status KeyStoreService::onDeviceOffBody(int32_t* aidl_return) {
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001723 // TODO(tuckeris): add permission check. This should be callable from ClockworkHome only.
1724 mAuthTokenTable.onDeviceOffBody();
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001725 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
1726 return Status::ok();
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001727}
1728
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001729/**
1730 * Prune the oldest pruneable operation.
1731 */
1732bool KeyStoreService::pruneOperation() {
1733 sp<IBinder> oldest = mOperationMap.getOldestPruneableOperation();
1734 ALOGD("Trying to prune operation %p", oldest.get());
1735 size_t op_count_before_abort = mOperationMap.getOperationCount();
1736 // We mostly ignore errors from abort() because all we care about is whether at least
1737 // one operation has been removed.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001738 int32_t abort_error;
1739 abort(oldest, &abort_error);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001740 if (mOperationMap.getOperationCount() >= op_count_before_abort) {
1741 ALOGE("Failed to abort pruneable operation %p, error: %d", oldest.get(), abort_error);
1742 return false;
1743 }
1744 return true;
1745}
1746
1747/**
1748 * Get the effective target uid for a binder operation that takes an
1749 * optional uid as the target.
1750 */
1751uid_t KeyStoreService::getEffectiveUid(int32_t targetUid) {
1752 if (targetUid == UID_SELF) {
1753 return IPCThreadState::self()->getCallingUid();
1754 }
1755 return static_cast<uid_t>(targetUid);
1756}
1757
1758/**
1759 * Check if the caller of the current binder method has the required
1760 * permission and if acting on other uids the grants to do so.
1761 */
1762bool KeyStoreService::checkBinderPermission(perm_t permission, int32_t targetUid) {
1763 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1764 pid_t spid = IPCThreadState::self()->getCallingPid();
1765 if (!has_permission(callingUid, permission, spid)) {
1766 ALOGW("permission %s denied for %d", get_perm_label(permission), callingUid);
1767 return false;
1768 }
1769 if (!is_granted_to(callingUid, getEffectiveUid(targetUid))) {
1770 ALOGW("uid %d not granted to act for %d", callingUid, targetUid);
1771 return false;
1772 }
1773 return true;
1774}
1775
1776/**
1777 * Check if the caller of the current binder method has the required
1778 * permission and the target uid is the caller or the caller is system.
1779 */
1780bool KeyStoreService::checkBinderPermissionSelfOrSystem(perm_t permission, int32_t targetUid) {
1781 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1782 pid_t spid = IPCThreadState::self()->getCallingPid();
1783 if (!has_permission(callingUid, permission, spid)) {
1784 ALOGW("permission %s denied for %d", get_perm_label(permission), callingUid);
1785 return false;
1786 }
1787 return getEffectiveUid(targetUid) == callingUid || callingUid == AID_SYSTEM;
1788}
1789
1790/**
1791 * Check if the caller of the current binder method has the required
1792 * permission or the target of the operation is the caller's uid. This is
1793 * for operation where the permission is only for cross-uid activity and all
1794 * uids are allowed to act on their own (ie: clearing all entries for a
1795 * given uid).
1796 */
1797bool KeyStoreService::checkBinderPermissionOrSelfTarget(perm_t permission, int32_t targetUid) {
1798 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1799 if (getEffectiveUid(targetUid) == callingUid) {
1800 return true;
1801 } else {
1802 return checkBinderPermission(permission, targetUid);
1803 }
1804}
1805
1806/**
1807 * Helper method to check that the caller has the required permission as
1808 * well as the keystore is in the unlocked state if checkUnlocked is true.
1809 *
1810 * Returns NO_ERROR on success, PERMISSION_DENIED on a permission error and
1811 * otherwise the state of keystore when not unlocked and checkUnlocked is
1812 * true.
1813 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001814KeyStoreServiceReturnCode
1815KeyStoreService::checkBinderPermissionAndKeystoreState(perm_t permission, int32_t targetUid,
1816 bool checkUnlocked) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001817 if (!checkBinderPermission(permission, targetUid)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001818 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001819 }
1820 State state = mKeyStore->getState(get_user_id(getEffectiveUid(targetUid)));
1821 if (checkUnlocked && !isKeystoreUnlocked(state)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001822 // All State values coincide with ResponseCodes
1823 return static_cast<ResponseCode>(state);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001824 }
1825
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001826 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001827}
1828
1829bool KeyStoreService::isKeystoreUnlocked(State state) {
1830 switch (state) {
1831 case ::STATE_NO_ERROR:
1832 return true;
1833 case ::STATE_UNINITIALIZED:
1834 case ::STATE_LOCKED:
1835 return false;
1836 }
1837 return false;
1838}
1839
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001840/**
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001841 * Check that all KeyParameter's provided by the application are
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001842 * allowed. Any parameter that keystore adds itself should be disallowed here.
1843 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001844bool KeyStoreService::checkAllowedOperationParams(const hidl_vec<KeyParameter>& params) {
1845 for (size_t i = 0; i < params.size(); ++i) {
1846 switch (params[i].tag) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001847 case Tag::ATTESTATION_APPLICATION_ID:
Shawn Willdene2a7b522017-04-11 09:27:40 -06001848 case Tag::AUTH_TOKEN:
1849 case Tag::RESET_SINCE_ID_ROTATION:
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001850 return false;
1851 default:
1852 break;
1853 }
1854 }
1855 return true;
1856}
1857
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001858ErrorCode KeyStoreService::getOperationCharacteristics(const hidl_vec<uint8_t>& key,
1859 km_device_t* dev,
1860 const AuthorizationSet& params,
1861 KeyCharacteristics* out) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001862 ::std::vector<uint8_t> appId;
1863 ::std::vector<uint8_t> appData;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001864 for (auto param : params) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001865 if (param.tag == Tag::APPLICATION_ID) {
1866 appId = authorizationValue(TAG_APPLICATION_ID, param).value();
1867 } else if (param.tag == Tag::APPLICATION_DATA) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001868 appId = authorizationValue(TAG_APPLICATION_DATA, param).value();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001869 }
1870 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001871 ErrorCode error = ErrorCode::OK;
1872
1873 auto hidlCb = [&](ErrorCode ret, const KeyCharacteristics& keyCharacteristics) {
1874 error = ret;
1875 if (error != ErrorCode::OK) {
1876 return;
1877 }
1878 if (out) *out = keyCharacteristics;
1879 };
1880
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001881 ErrorCode rc = KS_HANDLE_HIDL_ERROR((*dev)->getKeyCharacteristics(key, appId, appId, hidlCb));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001882 if (rc != ErrorCode::OK) {
1883 return rc;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001884 }
1885 return error;
1886}
1887
1888/**
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001889 * Get the auth token for this operation from the auth token table.
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001890 *
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001891 * Returns ResponseCode::NO_ERROR if the auth token was set or none was required.
1892 * ::OP_AUTH_NEEDED if it is a per op authorization, no
1893 * authorization token exists for that operation and
1894 * failOnTokenMissing is false.
1895 * KM_ERROR_KEY_USER_NOT_AUTHENTICATED if there is no valid auth
1896 * token for the operation
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001897 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001898KeyStoreServiceReturnCode KeyStoreService::getAuthToken(const KeyCharacteristics& characteristics,
1899 uint64_t handle, KeyPurpose purpose,
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001900 const HardwareAuthToken** authToken,
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001901 bool failOnTokenMissing) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001902
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001903 AuthorizationSet allCharacteristics;
1904 for (size_t i = 0; i < characteristics.softwareEnforced.size(); i++) {
1905 allCharacteristics.push_back(characteristics.softwareEnforced[i]);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001906 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001907 for (size_t i = 0; i < characteristics.teeEnforced.size(); i++) {
1908 allCharacteristics.push_back(characteristics.teeEnforced[i]);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001909 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001910 AuthTokenTable::Error err = mAuthTokenTable.FindAuthorization(
1911 allCharacteristics, KeyPurpose(purpose), handle, authToken);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001912 switch (err) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001913 case AuthTokenTable::OK:
1914 case AuthTokenTable::AUTH_NOT_REQUIRED:
1915 return ResponseCode::NO_ERROR;
1916 case AuthTokenTable::AUTH_TOKEN_NOT_FOUND:
1917 case AuthTokenTable::AUTH_TOKEN_EXPIRED:
1918 case AuthTokenTable::AUTH_TOKEN_WRONG_SID:
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001919 ALOGE("getAuthToken failed: %d", err); // STOPSHIP: debug only, to be removed
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001920 return ErrorCode::KEY_USER_NOT_AUTHENTICATED;
1921 case AuthTokenTable::OP_HANDLE_REQUIRED:
1922 return failOnTokenMissing ? KeyStoreServiceReturnCode(ErrorCode::KEY_USER_NOT_AUTHENTICATED)
1923 : KeyStoreServiceReturnCode(ResponseCode::OP_AUTH_NEEDED);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001924 default:
1925 ALOGE("Unexpected FindAuthorization return value %d", err);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001926 return ErrorCode::INVALID_ARGUMENT;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001927 }
1928}
1929
1930/**
1931 * Add the auth token for the operation to the param list if the operation
1932 * requires authorization. Uses the cached result in the OperationMap if available
1933 * otherwise gets the token from the AuthTokenTable and caches the result.
1934 *
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001935 * Returns ResponseCode::NO_ERROR if the auth token was added or not needed.
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001936 * KM_ERROR_KEY_USER_NOT_AUTHENTICATED if the operation is not
1937 * authenticated.
1938 * KM_ERROR_INVALID_OPERATION_HANDLE if token is not a valid
1939 * operation token.
1940 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001941KeyStoreServiceReturnCode KeyStoreService::addOperationAuthTokenIfNeeded(const sp<IBinder>& token,
1942 AuthorizationSet* params) {
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001943 const HardwareAuthToken* authToken = nullptr;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001944 mOperationMap.getOperationAuthToken(token, &authToken);
1945 if (!authToken) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001946 km_device_t dev;
1947 uint64_t handle;
1948 const KeyCharacteristics* characteristics = nullptr;
1949 KeyPurpose purpose;
1950 km_id_t keyid;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001951 if (!mOperationMap.getOperation(token, &handle, &keyid, &purpose, &dev, &characteristics)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001952 return ErrorCode::INVALID_OPERATION_HANDLE;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001953 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001954 auto result = getAuthToken(*characteristics, handle, purpose, &authToken);
1955 if (!result.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001956 return result;
1957 }
1958 if (authToken) {
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001959 mOperationMap.setOperationAuthToken(token, authToken);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001960 }
1961 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001962 addAuthTokenToParams(params, authToken);
1963 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001964}
1965
1966/**
1967 * Translate a result value to a legacy return value. All keystore errors are
1968 * preserved and keymaster errors become SYSTEM_ERRORs
1969 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001970KeyStoreServiceReturnCode KeyStoreService::translateResultToLegacyResult(int32_t result) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001971 if (result > 0) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001972 return static_cast<ResponseCode>(result);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001973 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001974 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001975}
1976
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001977static NullOr<const Algorithm&> getKeyAlgoritmFromKeyCharacteristics(
1978 const ::android::security::keymaster::KeyCharacteristics& characteristics) {
1979 for (size_t i = 0; i < characteristics.teeEnforced.getParameters().size(); ++i) {
1980 auto algo =
1981 authorizationValue(TAG_ALGORITHM, characteristics.teeEnforced.getParameters()[i]);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001982 if (algo.isOk()) return algo.value();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001983 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001984 for (size_t i = 0; i < characteristics.softwareEnforced.getParameters().size(); ++i) {
1985 auto algo =
1986 authorizationValue(TAG_ALGORITHM, characteristics.softwareEnforced.getParameters()[i]);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001987 if (algo.isOk()) return algo.value();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001988 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001989 return {};
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001990}
1991
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001992void KeyStoreService::addLegacyBeginParams(const String16& name, AuthorizationSet* params) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001993 // All legacy keys are DIGEST_NONE/PAD_NONE.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001994 params->push_back(TAG_DIGEST, Digest::NONE);
1995 params->push_back(TAG_PADDING, PaddingMode::NONE);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001996
1997 // Look up the algorithm of the key.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001998 ::android::security::keymaster::KeyCharacteristics characteristics;
1999 int32_t result;
2000 auto rc = getKeyCharacteristics(name, ::android::security::keymaster::KeymasterBlob(),
2001 ::android::security::keymaster::KeymasterBlob(), UID_SELF,
2002 &characteristics, &result);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002003 if (!rc.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002004 ALOGE("Failed to get key characteristics");
2005 return;
2006 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002007 auto algorithm = getKeyAlgoritmFromKeyCharacteristics(characteristics);
2008 if (!algorithm.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002009 ALOGE("getKeyCharacteristics did not include KM_TAG_ALGORITHM");
2010 return;
2011 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002012 params->push_back(TAG_ALGORITHM, algorithm.value());
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002013}
2014
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002015KeyStoreServiceReturnCode KeyStoreService::doLegacySignVerify(const String16& name,
2016 const hidl_vec<uint8_t>& data,
2017 hidl_vec<uint8_t>* out,
2018 const hidl_vec<uint8_t>& signature,
2019 KeyPurpose purpose) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002020
2021 std::basic_stringstream<uint8_t> outBuffer;
2022 OperationResult result;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002023 AuthorizationSet inArgs;
2024 addLegacyBeginParams(name, &inArgs);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002025 sp<IBinder> appToken(new BBinder);
2026 sp<IBinder> token;
2027
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07002028 begin(appToken, name, static_cast<int32_t>(purpose), true,
2029 KeymasterArguments(inArgs.hidl_data()), ::std::vector<uint8_t>(), UID_SELF, &result);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002030 if (!result.resultCode.isOk()) {
2031 if (result.resultCode == ResponseCode::KEY_NOT_FOUND) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002032 ALOGW("Key not found");
2033 } else {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002034 ALOGW("Error in begin: %d", int32_t(result.resultCode));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002035 }
2036 return translateResultToLegacyResult(result.resultCode);
2037 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002038 inArgs.Clear();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002039 token = result.token;
2040 size_t consumed = 0;
2041 size_t lastConsumed = 0;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002042 hidl_vec<uint8_t> data_view;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002043 do {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002044 data_view.setToExternal(const_cast<uint8_t*>(&data[consumed]), data.size() - consumed);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07002045 update(token, KeymasterArguments(inArgs.hidl_data()), data_view, &result);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002046 if (result.resultCode != ResponseCode::NO_ERROR) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002047 ALOGW("Error in update: %d", int32_t(result.resultCode));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002048 return translateResultToLegacyResult(result.resultCode);
2049 }
2050 if (out) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002051 outBuffer.write(&result.data[0], result.data.size());
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002052 }
2053 lastConsumed = result.inputConsumed;
2054 consumed += lastConsumed;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002055 } while (consumed < data.size() && lastConsumed > 0);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002056
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002057 if (consumed != data.size()) {
2058 ALOGW("Not all data consumed. Consumed %zu of %zu", consumed, data.size());
2059 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002060 }
2061
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07002062 finish(token, KeymasterArguments(inArgs.hidl_data()), signature, ::std::vector<uint8_t>(),
2063 &result);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002064 if (result.resultCode != ResponseCode::NO_ERROR) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002065 ALOGW("Error in finish: %d", int32_t(result.resultCode));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002066 return translateResultToLegacyResult(result.resultCode);
2067 }
2068 if (out) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002069 outBuffer.write(&result.data[0], result.data.size());
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002070 }
2071
2072 if (out) {
2073 auto buf = outBuffer.str();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002074 out->resize(buf.size());
2075 memcpy(&(*out)[0], buf.data(), out->size());
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002076 }
2077
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002078 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002079}
2080
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002081KeyStoreServiceReturnCode KeyStoreService::upgradeKeyBlob(const String16& name, uid_t uid,
2082 const AuthorizationSet& params,
2083 Blob* blob) {
Shawn Willden98c59162016-03-20 09:10:18 -06002084 // Read the blob rather than assuming the caller provided the right name/uid/blob triplet.
2085 String8 name8(name);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07002086 KeyStoreServiceReturnCode responseCode =
2087 mKeyStore->getKeyForName(blob, name8, uid, TYPE_KEYMASTER_10);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002088 if (responseCode != ResponseCode::NO_ERROR) {
Shawn Willden98c59162016-03-20 09:10:18 -06002089 return responseCode;
2090 }
Rubin Xu7675c9f2017-03-15 19:26:52 +00002091 ALOGI("upgradeKeyBlob %s %d", name8.string(), uid);
Shawn Willden98c59162016-03-20 09:10:18 -06002092
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002093 auto hidlKey = blob2hidlVec(*blob);
2094 auto& dev = mKeyStore->getDevice(*blob);
Shawn Willden98c59162016-03-20 09:10:18 -06002095
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002096 KeyStoreServiceReturnCode error;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07002097 auto hidlCb = [&](ErrorCode ret, const ::std::vector<uint8_t>& upgradedKeyBlob) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002098 error = ret;
2099 if (!error.isOk()) {
2100 return;
2101 }
2102
Janis Danisevskisaf7783f2017-09-21 11:29:47 -07002103 auto filename = mKeyStore->getBlobFileNameIfExists(name8, uid, ::TYPE_KEYMASTER_10);
2104 if (!filename.isOk()) {
2105 ALOGI("trying to upgrade a non existing blob");
2106 return;
2107 }
2108 error = mKeyStore->del(filename.value().string(), ::TYPE_ANY, get_user_id(uid));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002109 if (!error.isOk()) {
Rubin Xu7675c9f2017-03-15 19:26:52 +00002110 ALOGI("upgradeKeyBlob keystore->del failed %d", (int)error);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002111 return;
2112 }
2113
2114 Blob newBlob(&upgradedKeyBlob[0], upgradedKeyBlob.size(), nullptr /* info */,
2115 0 /* infoLength */, ::TYPE_KEYMASTER_10);
2116 newBlob.setFallback(blob->isFallback());
2117 newBlob.setEncrypted(blob->isEncrypted());
Rubin Xu67899de2017-04-21 19:15:13 +01002118 newBlob.setSuperEncrypted(blob->isSuperEncrypted());
2119 newBlob.setCriticalToDeviceEncryption(blob->isCriticalToDeviceEncryption());
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002120
Janis Danisevskisaf7783f2017-09-21 11:29:47 -07002121 error = mKeyStore->put(filename.value().string(), &newBlob, get_user_id(uid));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002122 if (!error.isOk()) {
Rubin Xu7675c9f2017-03-15 19:26:52 +00002123 ALOGI("upgradeKeyBlob keystore->put failed %d", (int)error);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002124 return;
2125 }
2126
2127 // Re-read blob for caller. We can't use newBlob because writing it modified it.
2128 error = mKeyStore->getKeyForName(blob, name8, uid, TYPE_KEYMASTER_10);
2129 };
2130
2131 KeyStoreServiceReturnCode rc =
2132 KS_HANDLE_HIDL_ERROR(dev->upgradeKey(hidlKey, params.hidl_data(), hidlCb));
2133 if (!rc.isOk()) {
Shawn Willden98c59162016-03-20 09:10:18 -06002134 return rc;
2135 }
2136
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002137 return error;
Shawn Willden98c59162016-03-20 09:10:18 -06002138}
2139
Shawn Willdene2a7b522017-04-11 09:27:40 -06002140} // namespace keystore