blob: 1db3f2344fc4b69746440834434d1ff7d25c8c63 [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)) {
Shawn Willdenda6dcc32017-12-03 14:56:05 -0700816 // TODO(jbires): remove uid checking upon implementation of b/25646100
Max Bires670467d2017-12-12 11:16:43 -0800817 if (!checkBinderPermission(P_GEN_UNIQUE_ID) ||
Max Biresef4f0672017-11-29 14:38:48 -0800818 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
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001175Status KeyStoreService::begin(const sp<IBinder>& appToken, const String16& name, int32_t purpose,
1176 bool pruneable, const KeymasterArguments& params,
1177 const ::std::vector<uint8_t>& entropy, int32_t uid,
1178 OperationResult* result) {
Shawn Willden0329a822017-12-04 13:55:14 -07001179 auto keyPurpose = static_cast<KeyPurpose>(purpose);
1180
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001181 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1182 uid_t targetUid = getEffectiveUid(uid);
1183 if (!is_granted_to(callingUid, targetUid)) {
1184 ALOGW("uid %d not permitted to act for uid %d in begin", callingUid, targetUid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001185 result->resultCode = ResponseCode::PERMISSION_DENIED;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001186 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001187 }
1188 if (!pruneable && get_app_id(callingUid) != AID_SYSTEM) {
1189 ALOGE("Non-system uid %d trying to start non-pruneable operation", callingUid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001190 result->resultCode = ResponseCode::PERMISSION_DENIED;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001191 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001192 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001193 if (!checkAllowedOperationParams(params.getParameters())) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001194 result->resultCode = ErrorCode::INVALID_ARGUMENT;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001195 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001196 }
Shawn Willden0329a822017-12-04 13:55:14 -07001197
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001198 Blob keyBlob;
1199 String8 name8(name);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001200 result->resultCode = mKeyStore->getKeyForName(&keyBlob, name8, targetUid, TYPE_KEYMASTER_10);
Shawn Willdend5a24e62017-02-28 13:53:24 -07001201 if (result->resultCode == ResponseCode::LOCKED && keyBlob.isSuperEncrypted()) {
1202 result->resultCode = ErrorCode::KEY_USER_NOT_AUTHENTICATED;
1203 }
Shawn Willden0329a822017-12-04 13:55:14 -07001204 if (!result->resultCode.isOk()) return Status::ok();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001205
1206 auto key = blob2hidlVec(keyBlob);
1207 auto& dev = mKeyStore->getDevice(keyBlob);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001208 AuthorizationSet opParams = params.getParameters();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001209 KeyCharacteristics characteristics;
1210 result->resultCode = getOperationCharacteristics(key, &dev, opParams, &characteristics);
1211
1212 if (result->resultCode == ErrorCode::KEY_REQUIRES_UPGRADE) {
1213 result->resultCode = upgradeKeyBlob(name, targetUid, opParams, &keyBlob);
1214 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001215 return Status::ok();
Shawn Willden98c59162016-03-20 09:10:18 -06001216 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001217 key = blob2hidlVec(keyBlob);
1218 result->resultCode = getOperationCharacteristics(key, &dev, opParams, &characteristics);
Shawn Willden98c59162016-03-20 09:10:18 -06001219 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001220 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001221 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001222 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001223
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001224 // Merge these characteristics with the ones cached when the key was generated or imported
1225 Blob charBlob;
1226 AuthorizationSet persistedCharacteristics;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001227 result->resultCode =
1228 mKeyStore->getKeyForName(&charBlob, name8, targetUid, TYPE_KEY_CHARACTERISTICS);
1229 if (result->resultCode.isOk()) {
1230 // TODO write one shot stream buffer to avoid copying (twice here)
1231 std::string charBuffer(reinterpret_cast<const char*>(charBlob.getValue()),
1232 charBlob.getLength());
1233 std::stringstream charStream(charBuffer);
1234 persistedCharacteristics.Deserialize(&charStream);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001235 } else {
1236 ALOGD("Unable to read cached characteristics for key");
1237 }
1238
1239 // Replace the sw_enforced set with those persisted to disk, minus hw_enforced
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001240 AuthorizationSet softwareEnforced = characteristics.softwareEnforced;
Shawn Willden0329a822017-12-04 13:55:14 -07001241 AuthorizationSet hardwareEnforced = characteristics.hardwareEnforced;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001242 persistedCharacteristics.Union(softwareEnforced);
Shawn Willden0329a822017-12-04 13:55:14 -07001243 persistedCharacteristics.Subtract(hardwareEnforced);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001244 characteristics.softwareEnforced = persistedCharacteristics.hidl_data();
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001245
Shawn Willden0329a822017-12-04 13:55:14 -07001246 KeyStoreServiceReturnCode authResult;
1247 HardwareAuthToken authToken;
1248 std::tie(authResult, authToken) =
1249 getAuthToken(characteristics, 0 /* no challenge */, keyPurpose,
1250 /*failOnTokenMissing*/ false);
1251
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001252 // If per-operation auth is needed we need to begin the operation and
1253 // the client will need to authorize that operation before calling
1254 // update. Any other auth issues stop here.
Shawn Willden827243a2017-09-12 05:41:33 -06001255 if (!authResult.isOk() && authResult != ResponseCode::OP_AUTH_NEEDED) {
1256 result->resultCode = authResult;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001257 return Status::ok();
Shawn Willden827243a2017-09-12 05:41:33 -06001258 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001259
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001260 // Add entropy to the device first.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001261 if (entropy.size()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001262 int32_t resultCode;
1263 addRngEntropy(entropy, &resultCode); // binder error is not possible
1264 result->resultCode = KeyStoreServiceReturnCode(resultCode);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001265 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001266 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001267 }
1268 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001269
1270 // Create a keyid for this key.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001271 km_id_t keyid;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001272 if (!enforcement_policy.CreateKeyId(key, &keyid)) {
1273 ALOGE("Failed to create a key ID for authorization checking.");
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001274 result->resultCode = ErrorCode::UNKNOWN_ERROR;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001275 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001276 }
1277
1278 // Check that all key authorization policy requirements are met.
Shawn Willden0329a822017-12-04 13:55:14 -07001279 AuthorizationSet key_auths = characteristics.hardwareEnforced;
1280 key_auths.append(characteristics.softwareEnforced.begin(),
1281 characteristics.softwareEnforced.end());
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001282
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001283 result->resultCode =
Shawn Willden0329a822017-12-04 13:55:14 -07001284 enforcement_policy.AuthorizeOperation(keyPurpose, keyid, key_auths, opParams, authToken,
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001285 0 /* op_handle */, true /* is_begin_operation */);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001286 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001287 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001288 }
1289
Shawn Willdene2a7b522017-04-11 09:27:40 -06001290 // If there are more than kMaxOperations, abort the oldest operation that was started as
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001291 // pruneable.
Shawn Willdene2a7b522017-04-11 09:27:40 -06001292 while (mOperationMap.getOperationCount() >= kMaxOperations) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001293 ALOGD("Reached or exceeded concurrent operations limit");
1294 if (!pruneOperation()) {
1295 break;
1296 }
1297 }
1298
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001299 auto hidlCb = [&](ErrorCode ret, const hidl_vec<KeyParameter>& outParams,
1300 uint64_t operationHandle) {
1301 result->resultCode = ret;
1302 if (!result->resultCode.isOk()) {
1303 return;
1304 }
1305 result->handle = operationHandle;
1306 result->outParams = outParams;
1307 };
1308
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001309 ErrorCode rc =
Shawn Willden0329a822017-12-04 13:55:14 -07001310 KS_HANDLE_HIDL_ERROR(dev->begin(keyPurpose, key, opParams.hidl_data(), authToken, hidlCb));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001311 if (rc != ErrorCode::OK) {
1312 ALOGW("Got error %d from begin()", rc);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001313 }
1314
1315 // If there are too many operations abort the oldest operation that was
1316 // started as pruneable and try again.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001317 while (rc == ErrorCode::TOO_MANY_OPERATIONS && mOperationMap.hasPruneableOperation()) {
1318 ALOGW("Ran out of operation handles");
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001319 if (!pruneOperation()) {
1320 break;
1321 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001322 rc = KS_HANDLE_HIDL_ERROR(
Shawn Willden0329a822017-12-04 13:55:14 -07001323 dev->begin(keyPurpose, key, opParams.hidl_data(), authToken, hidlCb));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001324 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001325 if (rc != ErrorCode::OK) {
1326 result->resultCode = rc;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001327 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001328 }
1329
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001330 // Note: The operation map takes possession of the contents of "characteristics".
1331 // It is safe to use characteristics after the following line but it will be empty.
Shawn Willden0329a822017-12-04 13:55:14 -07001332 sp<IBinder> operationToken = mOperationMap.addOperation(
1333 result->handle, keyid, keyPurpose, dev, appToken, std::move(characteristics), pruneable);
1334 assert(characteristics.hardwareEnforced.size() == 0);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001335 assert(characteristics.softwareEnforced.size() == 0);
Shawn Willdenc5e8f362017-08-31 09:23:06 -06001336 result->token = operationToken;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001337
Shawn Willden0329a822017-12-04 13:55:14 -07001338 mOperationMap.setOperationAuthToken(operationToken, std::move(authToken));
1339
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001340 // Return the authentication lookup result. If this is a per operation
1341 // auth'd key then the resultCode will be ::OP_AUTH_NEEDED and the
1342 // application should get an auth token using the handle before the
1343 // first call to update, which will fail if keystore hasn't received the
1344 // auth token.
Shawn Willden2f96c792017-09-07 23:59:08 -06001345 if (result->resultCode == ErrorCode::OK) {
1346 result->resultCode = authResult;
1347 }
Shawn Willdenc5e8f362017-08-31 09:23:06 -06001348
1349 // Other result fields were set in the begin operation's callback.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001350 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001351}
1352
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001353Status KeyStoreService::update(const sp<IBinder>& token, const KeymasterArguments& params,
1354 const ::std::vector<uint8_t>& data, OperationResult* result) {
1355 if (!checkAllowedOperationParams(params.getParameters())) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001356 result->resultCode = ErrorCode::INVALID_ARGUMENT;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001357 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001358 }
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001359
1360 auto getOpResult = mOperationMap.getOperation(token);
1361 if (!getOpResult.isOk()) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001362 result->resultCode = ErrorCode::INVALID_OPERATION_HANDLE;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001363 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001364 }
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001365 const auto& op = getOpResult.value();
1366
Shawn Willden0329a822017-12-04 13:55:14 -07001367 HardwareAuthToken authToken;
1368 std::tie(result->resultCode, authToken) = getOperationAuthTokenIfNeeded(token);
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001369 if (!result->resultCode.isOk()) return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001370
1371 // Check that all key authorization policy requirements are met.
Shawn Willden0329a822017-12-04 13:55:14 -07001372 AuthorizationSet key_auths(op.characteristics.hardwareEnforced);
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001373 key_auths.append(op.characteristics.softwareEnforced.begin(),
1374 op.characteristics.softwareEnforced.end());
1375
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001376 result->resultCode = enforcement_policy.AuthorizeOperation(
Shawn Willden0329a822017-12-04 13:55:14 -07001377 op.purpose, op.keyid, key_auths, params.getParameters(), authToken, op.handle,
1378 false /* is_begin_operation */);
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001379 if (!result->resultCode.isOk()) return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001380
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001381 auto hidlCb = [&](ErrorCode ret, uint32_t inputConsumed,
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001382 const hidl_vec<KeyParameter>& outParams,
1383 const ::std::vector<uint8_t>& output) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001384 result->resultCode = ret;
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001385 if (result->resultCode.isOk()) {
1386 result->inputConsumed = inputConsumed;
1387 result->outParams = outParams;
1388 result->data = output;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001389 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001390 };
1391
Shawn Willden0329a822017-12-04 13:55:14 -07001392 KeyStoreServiceReturnCode rc = KS_HANDLE_HIDL_ERROR(op.device->update(
1393 op.handle, params.getParameters(), data, authToken, VerificationToken(), hidlCb));
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001394
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001395 // just a reminder: on success result->resultCode was set in the callback. So we only overwrite
1396 // it if there was a communication error indicated by the ErrorCode.
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001397 if (!rc.isOk()) result->resultCode = rc;
1398
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001399 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001400}
1401
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001402Status KeyStoreService::finish(const sp<IBinder>& token, const KeymasterArguments& params,
1403 const ::std::vector<uint8_t>& signature,
1404 const ::std::vector<uint8_t>& entropy, OperationResult* result) {
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001405 auto getOpResult = mOperationMap.getOperation(token);
1406 if (!getOpResult.isOk()) {
1407 result->resultCode = ErrorCode::INVALID_OPERATION_HANDLE;
1408 return Status::ok();
1409 }
1410 const auto& op = std::move(getOpResult.value());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001411 if (!checkAllowedOperationParams(params.getParameters())) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001412 result->resultCode = ErrorCode::INVALID_ARGUMENT;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001413 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001414 }
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001415
Shawn Willden0329a822017-12-04 13:55:14 -07001416 HardwareAuthToken authToken;
1417 std::tie(result->resultCode, authToken) = getOperationAuthTokenIfNeeded(token);
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001418 if (!result->resultCode.isOk()) return Status::ok();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001419
1420 if (entropy.size()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001421 int resultCode;
1422 addRngEntropy(entropy, &resultCode); // binder error is not possible
1423 result->resultCode = KeyStoreServiceReturnCode(resultCode);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001424 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001425 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001426 }
1427 }
1428
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001429 // Check that all key authorization policy requirements are met.
Shawn Willden0329a822017-12-04 13:55:14 -07001430 AuthorizationSet key_auths(op.characteristics.hardwareEnforced);
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001431 key_auths.append(op.characteristics.softwareEnforced.begin(),
1432 op.characteristics.softwareEnforced.end());
1433
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001434 result->resultCode = enforcement_policy.AuthorizeOperation(
Shawn Willden0329a822017-12-04 13:55:14 -07001435 op.purpose, op.keyid, key_auths, params.getParameters(), authToken, op.handle,
1436 false /* is_begin_operation */);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001437 if (!result->resultCode.isOk()) return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001438
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001439 auto hidlCb = [&](ErrorCode ret, const hidl_vec<KeyParameter>& outParams,
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001440 const ::std::vector<uint8_t>& output) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001441 result->resultCode = ret;
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001442 if (result->resultCode.isOk()) {
1443 result->outParams = outParams;
1444 result->data = output;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001445 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001446 };
1447
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001448 KeyStoreServiceReturnCode rc = KS_HANDLE_HIDL_ERROR(
Shawn Willden0329a822017-12-04 13:55:14 -07001449 op.device->finish(op.handle, params.getParameters(),
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001450 ::std::vector<uint8_t>() /* TODO(swillden): wire up input to finish() */,
Shawn Willden0329a822017-12-04 13:55:14 -07001451 signature, authToken, VerificationToken(), hidlCb));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001452 mOperationMap.removeOperation(token);
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001453 mAuthTokenTable.MarkCompleted(op.handle);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001454
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001455 // just a reminder: on success result->resultCode was set in the callback. So we only overwrite
1456 // it if there was a communication error indicated by the ErrorCode.
1457 if (!rc.isOk()) {
1458 result->resultCode = rc;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001459 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001460 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001461}
1462
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001463Status KeyStoreService::abort(const sp<IBinder>& token, int32_t* aidl_return) {
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001464 auto getOpResult = mOperationMap.removeOperation(token);
1465 if (!getOpResult.isOk()) {
1466 *aidl_return = static_cast<int32_t>(ErrorCode::INVALID_OPERATION_HANDLE);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001467 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001468 }
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001469 auto op = std::move(getOpResult.value());
1470 mAuthTokenTable.MarkCompleted(op.handle);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001471
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001472 ErrorCode error_code = KS_HANDLE_HIDL_ERROR(op.device->abort(op.handle));
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001473 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(error_code));
1474 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001475}
1476
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001477Status KeyStoreService::isOperationAuthorized(const sp<IBinder>& token, bool* aidl_return) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001478 AuthorizationSet ignored;
Shawn Willden0329a822017-12-04 13:55:14 -07001479 KeyStoreServiceReturnCode rc;
1480 std::tie(rc, std::ignore) = getOperationAuthTokenIfNeeded(token);
1481 *aidl_return = rc.isOk();
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001482 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001483}
1484
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001485Status KeyStoreService::addAuthToken(const ::std::vector<uint8_t>& authTokenAsVector,
1486 int32_t* aidl_return) {
1487
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001488 // TODO(swillden): When gatekeeper and fingerprint are ready, this should be updated to
1489 // receive a HardwareAuthToken, rather than an opaque byte array.
1490
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001491 if (!checkBinderPermission(P_ADD_AUTH)) {
1492 ALOGW("addAuthToken: permission denied for %d", IPCThreadState::self()->getCallingUid());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001493 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
1494 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001495 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001496 if (authTokenAsVector.size() != sizeof(hw_auth_token_t)) {
1497 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
1498 return Status::ok();
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001499 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001500
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001501 hw_auth_token_t authToken;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001502 memcpy(reinterpret_cast<void*>(&authToken), authTokenAsVector.data(), sizeof(hw_auth_token_t));
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001503 if (authToken.version != 0) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001504 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
1505 return Status::ok();
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001506 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001507
Shawn Willden0329a822017-12-04 13:55:14 -07001508 mAuthTokenTable.AddAuthenticationToken(hidlVec2AuthToken(hidl_vec<uint8_t>(authTokenAsVector)));
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001509 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
1510 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001511}
1512
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001513bool isDeviceIdAttestationRequested(const KeymasterArguments& params) {
1514 const hardware::hidl_vec<KeyParameter> paramsVec = params.getParameters();
1515 for (size_t i = 0; i < paramsVec.size(); ++i) {
1516 switch (paramsVec[i].tag) {
Shawn Willdene2a7b522017-04-11 09:27:40 -06001517 case Tag::ATTESTATION_ID_BRAND:
1518 case Tag::ATTESTATION_ID_DEVICE:
1519 case Tag::ATTESTATION_ID_IMEI:
1520 case Tag::ATTESTATION_ID_MANUFACTURER:
1521 case Tag::ATTESTATION_ID_MEID:
1522 case Tag::ATTESTATION_ID_MODEL:
1523 case Tag::ATTESTATION_ID_PRODUCT:
1524 case Tag::ATTESTATION_ID_SERIAL:
1525 return true;
1526 default:
1527 break;
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +01001528 }
1529 }
1530 return false;
1531}
1532
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001533Status KeyStoreService::attestKey(const String16& name, const KeymasterArguments& params,
1534 ::android::security::keymaster::KeymasterCertificateChain* chain,
1535 int32_t* aidl_return) {
1536 // check null output if method signature is updated and return ErrorCode::OUTPUT_PARAMETER_NULL
1537 if (!checkAllowedOperationParams(params.getParameters())) {
1538 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
1539 return Status::ok();
Shawn Willden50eb1b22016-01-21 12:41:23 -07001540 }
1541
Eran Messerie2c34152017-12-21 21:01:22 +00001542 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1543
1544 if (isDeviceIdAttestationRequested(params) && (callingUid != AID_SYSTEM)) {
1545 // Only the system context may request Device ID attestation combined with key attestation.
1546 // Otherwise, There is a dedicated attestDeviceIds() method for device ID attestation.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001547 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
1548 return Status::ok();
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +01001549 }
1550
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001551 AuthorizationSet mutableParams = params.getParameters();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001552 KeyStoreServiceReturnCode rc = updateParamsForAttestation(callingUid, &mutableParams);
1553 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001554 *aidl_return = static_cast<int32_t>(rc);
1555 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001556 }
Shawn Willdene2a7b522017-04-11 09:27:40 -06001557
Shawn Willden50eb1b22016-01-21 12:41:23 -07001558 Blob keyBlob;
1559 String8 name8(name);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001560 rc = mKeyStore->getKeyForName(&keyBlob, name8, callingUid, TYPE_KEYMASTER_10);
1561 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001562 *aidl_return = static_cast<int32_t>(rc);
1563 return Status::ok();
Shawn Willden50eb1b22016-01-21 12:41:23 -07001564 }
1565
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001566 KeyStoreServiceReturnCode error;
1567 auto hidlCb = [&](ErrorCode ret, const hidl_vec<hidl_vec<uint8_t>>& certChain) {
1568 error = ret;
1569 if (!error.isOk()) {
1570 return;
1571 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001572 if (chain) {
1573 *chain = KeymasterCertificateChain(certChain);
1574 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001575 };
1576
1577 auto hidlKey = blob2hidlVec(keyBlob);
1578 auto& dev = mKeyStore->getDevice(keyBlob);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001579 rc = KS_HANDLE_HIDL_ERROR(dev->attestKey(hidlKey, mutableParams.hidl_data(), hidlCb));
1580 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001581 *aidl_return = static_cast<int32_t>(rc);
1582 return Status::ok();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001583 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001584 *aidl_return = static_cast<int32_t>(error);
1585 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001586}
1587
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001588Status
1589KeyStoreService::attestDeviceIds(const KeymasterArguments& params,
1590 ::android::security::keymaster::KeymasterCertificateChain* chain,
1591 int32_t* aidl_return) {
1592 // check null output if method signature is updated and return ErrorCode::OUTPUT_PARAMETER_NULL
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001593
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001594 if (!checkAllowedOperationParams(params.getParameters())) {
1595 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
1596 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001597 }
1598
1599 if (!isDeviceIdAttestationRequested(params)) {
1600 // There is an attestKey() method for attesting keys without device ID attestation.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001601 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
1602 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001603 }
1604
1605 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1606 sp<IBinder> binder = defaultServiceManager()->getService(String16("permission"));
1607 if (binder == 0) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001608 *aidl_return =
1609 static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::CANNOT_ATTEST_IDS));
1610 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001611 }
1612 if (!interface_cast<IPermissionController>(binder)->checkPermission(
1613 String16("android.permission.READ_PRIVILEGED_PHONE_STATE"),
1614 IPCThreadState::self()->getCallingPid(), callingUid)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001615 *aidl_return =
1616 static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::CANNOT_ATTEST_IDS));
1617 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001618 }
1619
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001620 AuthorizationSet mutableParams = params.getParameters();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001621 KeyStoreServiceReturnCode rc = updateParamsForAttestation(callingUid, &mutableParams);
1622 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001623 *aidl_return = static_cast<int32_t>(rc);
1624 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001625 }
1626
1627 // Generate temporary key.
1628 auto& dev = mKeyStore->getDevice();
1629 KeyStoreServiceReturnCode error;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001630 ::std::vector<uint8_t> hidlKey;
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001631
1632 AuthorizationSet keyCharacteristics;
1633 keyCharacteristics.push_back(TAG_PURPOSE, KeyPurpose::VERIFY);
1634 keyCharacteristics.push_back(TAG_ALGORITHM, Algorithm::EC);
1635 keyCharacteristics.push_back(TAG_DIGEST, Digest::SHA_2_256);
1636 keyCharacteristics.push_back(TAG_NO_AUTH_REQUIRED);
1637 keyCharacteristics.push_back(TAG_EC_CURVE, EcCurve::P_256);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001638 auto generateHidlCb = [&](ErrorCode ret, const ::std::vector<uint8_t>& hidlKeyBlob,
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001639 const KeyCharacteristics&) {
1640 error = ret;
1641 if (!error.isOk()) {
1642 return;
1643 }
1644 hidlKey = hidlKeyBlob;
1645 };
1646
1647 rc = KS_HANDLE_HIDL_ERROR(dev->generateKey(keyCharacteristics.hidl_data(), generateHidlCb));
1648 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001649 *aidl_return = static_cast<int32_t>(rc);
1650 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001651 }
1652 if (!error.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001653 *aidl_return = static_cast<int32_t>(error);
1654 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001655 }
1656
1657 // Attest key and device IDs.
1658 auto attestHidlCb = [&](ErrorCode ret, const hidl_vec<hidl_vec<uint8_t>>& certChain) {
1659 error = ret;
1660 if (!error.isOk()) {
1661 return;
1662 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001663 *chain = ::android::security::keymaster::KeymasterCertificateChain(certChain);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001664 };
1665 KeyStoreServiceReturnCode attestationRc =
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001666 KS_HANDLE_HIDL_ERROR(dev->attestKey(hidlKey, mutableParams.hidl_data(), attestHidlCb));
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001667
1668 // Delete temporary key.
1669 KeyStoreServiceReturnCode deletionRc = KS_HANDLE_HIDL_ERROR(dev->deleteKey(hidlKey));
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +01001670
1671 if (!attestationRc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001672 *aidl_return = static_cast<int32_t>(attestationRc);
1673 return Status::ok();
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +01001674 }
1675 if (!error.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001676 *aidl_return = static_cast<int32_t>(error);
1677 return Status::ok();
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +01001678 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001679 *aidl_return = static_cast<int32_t>(deletionRc);
1680 return Status::ok();
Shawn Willden50eb1b22016-01-21 12:41:23 -07001681}
1682
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001683Status KeyStoreService::onDeviceOffBody(int32_t* aidl_return) {
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001684 // TODO(tuckeris): add permission check. This should be callable from ClockworkHome only.
1685 mAuthTokenTable.onDeviceOffBody();
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001686 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
1687 return Status::ok();
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001688}
1689
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001690/**
1691 * Prune the oldest pruneable operation.
1692 */
1693bool KeyStoreService::pruneOperation() {
1694 sp<IBinder> oldest = mOperationMap.getOldestPruneableOperation();
1695 ALOGD("Trying to prune operation %p", oldest.get());
1696 size_t op_count_before_abort = mOperationMap.getOperationCount();
1697 // We mostly ignore errors from abort() because all we care about is whether at least
1698 // one operation has been removed.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001699 int32_t abort_error;
1700 abort(oldest, &abort_error);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001701 if (mOperationMap.getOperationCount() >= op_count_before_abort) {
1702 ALOGE("Failed to abort pruneable operation %p, error: %d", oldest.get(), abort_error);
1703 return false;
1704 }
1705 return true;
1706}
1707
1708/**
1709 * Get the effective target uid for a binder operation that takes an
1710 * optional uid as the target.
1711 */
1712uid_t KeyStoreService::getEffectiveUid(int32_t targetUid) {
1713 if (targetUid == UID_SELF) {
1714 return IPCThreadState::self()->getCallingUid();
1715 }
1716 return static_cast<uid_t>(targetUid);
1717}
1718
1719/**
1720 * Check if the caller of the current binder method has the required
1721 * permission and if acting on other uids the grants to do so.
1722 */
1723bool KeyStoreService::checkBinderPermission(perm_t permission, int32_t targetUid) {
1724 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1725 pid_t spid = IPCThreadState::self()->getCallingPid();
1726 if (!has_permission(callingUid, permission, spid)) {
1727 ALOGW("permission %s denied for %d", get_perm_label(permission), callingUid);
1728 return false;
1729 }
1730 if (!is_granted_to(callingUid, getEffectiveUid(targetUid))) {
1731 ALOGW("uid %d not granted to act for %d", callingUid, targetUid);
1732 return false;
1733 }
1734 return true;
1735}
1736
1737/**
1738 * Check if the caller of the current binder method has the required
1739 * permission and the target uid is the caller or the caller is system.
1740 */
1741bool KeyStoreService::checkBinderPermissionSelfOrSystem(perm_t permission, int32_t targetUid) {
1742 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1743 pid_t spid = IPCThreadState::self()->getCallingPid();
1744 if (!has_permission(callingUid, permission, spid)) {
1745 ALOGW("permission %s denied for %d", get_perm_label(permission), callingUid);
1746 return false;
1747 }
1748 return getEffectiveUid(targetUid) == callingUid || callingUid == AID_SYSTEM;
1749}
1750
1751/**
1752 * Check if the caller of the current binder method has the required
1753 * permission or the target of the operation is the caller's uid. This is
1754 * for operation where the permission is only for cross-uid activity and all
1755 * uids are allowed to act on their own (ie: clearing all entries for a
1756 * given uid).
1757 */
1758bool KeyStoreService::checkBinderPermissionOrSelfTarget(perm_t permission, int32_t targetUid) {
1759 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1760 if (getEffectiveUid(targetUid) == callingUid) {
1761 return true;
1762 } else {
1763 return checkBinderPermission(permission, targetUid);
1764 }
1765}
1766
1767/**
1768 * Helper method to check that the caller has the required permission as
1769 * well as the keystore is in the unlocked state if checkUnlocked is true.
1770 *
1771 * Returns NO_ERROR on success, PERMISSION_DENIED on a permission error and
1772 * otherwise the state of keystore when not unlocked and checkUnlocked is
1773 * true.
1774 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001775KeyStoreServiceReturnCode
1776KeyStoreService::checkBinderPermissionAndKeystoreState(perm_t permission, int32_t targetUid,
1777 bool checkUnlocked) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001778 if (!checkBinderPermission(permission, targetUid)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001779 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001780 }
1781 State state = mKeyStore->getState(get_user_id(getEffectiveUid(targetUid)));
1782 if (checkUnlocked && !isKeystoreUnlocked(state)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001783 // All State values coincide with ResponseCodes
1784 return static_cast<ResponseCode>(state);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001785 }
1786
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001787 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001788}
1789
1790bool KeyStoreService::isKeystoreUnlocked(State state) {
1791 switch (state) {
1792 case ::STATE_NO_ERROR:
1793 return true;
1794 case ::STATE_UNINITIALIZED:
1795 case ::STATE_LOCKED:
1796 return false;
1797 }
1798 return false;
1799}
1800
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001801/**
Shawn Willden0329a822017-12-04 13:55:14 -07001802 * Check that all KeyParameters provided by the application are allowed. Any parameter that keystore
1803 * adds itself should be disallowed here.
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001804 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001805bool KeyStoreService::checkAllowedOperationParams(const hidl_vec<KeyParameter>& params) {
1806 for (size_t i = 0; i < params.size(); ++i) {
1807 switch (params[i].tag) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001808 case Tag::ATTESTATION_APPLICATION_ID:
Shawn Willdene2a7b522017-04-11 09:27:40 -06001809 case Tag::RESET_SINCE_ID_ROTATION:
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001810 return false;
1811 default:
1812 break;
1813 }
1814 }
1815 return true;
1816}
1817
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001818ErrorCode KeyStoreService::getOperationCharacteristics(const hidl_vec<uint8_t>& key,
Shawn Willdenc67a8aa2017-12-03 17:51:29 -07001819 sp<Keymaster>* dev,
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001820 const AuthorizationSet& params,
1821 KeyCharacteristics* out) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001822 ::std::vector<uint8_t> appId;
1823 ::std::vector<uint8_t> appData;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001824 for (auto param : params) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001825 if (param.tag == Tag::APPLICATION_ID) {
1826 appId = authorizationValue(TAG_APPLICATION_ID, param).value();
1827 } else if (param.tag == Tag::APPLICATION_DATA) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001828 appId = authorizationValue(TAG_APPLICATION_DATA, param).value();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001829 }
1830 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001831 ErrorCode error = ErrorCode::OK;
1832
1833 auto hidlCb = [&](ErrorCode ret, const KeyCharacteristics& keyCharacteristics) {
1834 error = ret;
1835 if (error != ErrorCode::OK) {
1836 return;
1837 }
1838 if (out) *out = keyCharacteristics;
1839 };
1840
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001841 ErrorCode rc = KS_HANDLE_HIDL_ERROR((*dev)->getKeyCharacteristics(key, appId, appId, hidlCb));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001842 if (rc != ErrorCode::OK) {
1843 return rc;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001844 }
1845 return error;
1846}
1847
1848/**
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001849 * Get the auth token for this operation from the auth token table.
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001850 *
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001851 * Returns ResponseCode::NO_ERROR if the auth token was set or none was required.
1852 * ::OP_AUTH_NEEDED if it is a per op authorization, no
1853 * authorization token exists for that operation and
1854 * failOnTokenMissing is false.
1855 * KM_ERROR_KEY_USER_NOT_AUTHENTICATED if there is no valid auth
1856 * token for the operation
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001857 */
Shawn Willden0329a822017-12-04 13:55:14 -07001858std::pair<KeyStoreServiceReturnCode, HardwareAuthToken>
1859KeyStoreService::getAuthToken(const KeyCharacteristics& characteristics, uint64_t handle,
1860 KeyPurpose purpose, bool failOnTokenMissing) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001861
Shawn Willden0329a822017-12-04 13:55:14 -07001862 AuthorizationSet allCharacteristics(characteristics.softwareEnforced);
1863 allCharacteristics.append(characteristics.hardwareEnforced.begin(),
1864 characteristics.hardwareEnforced.end());
1865
1866 const HardwareAuthToken* authToken = nullptr;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001867 AuthTokenTable::Error err = mAuthTokenTable.FindAuthorization(
Shawn Willden0329a822017-12-04 13:55:14 -07001868 allCharacteristics, static_cast<KeyPurpose>(purpose), handle, &authToken);
1869
1870 KeyStoreServiceReturnCode rc;
1871
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001872 switch (err) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001873 case AuthTokenTable::OK:
1874 case AuthTokenTable::AUTH_NOT_REQUIRED:
Shawn Willden0329a822017-12-04 13:55:14 -07001875 rc = ResponseCode::NO_ERROR;
1876 break;
1877
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001878 case AuthTokenTable::AUTH_TOKEN_NOT_FOUND:
1879 case AuthTokenTable::AUTH_TOKEN_EXPIRED:
1880 case AuthTokenTable::AUTH_TOKEN_WRONG_SID:
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001881 ALOGE("getAuthToken failed: %d", err); // STOPSHIP: debug only, to be removed
Shawn Willden0329a822017-12-04 13:55:14 -07001882 rc = ErrorCode::KEY_USER_NOT_AUTHENTICATED;
1883 break;
1884
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001885 case AuthTokenTable::OP_HANDLE_REQUIRED:
Shawn Willden0329a822017-12-04 13:55:14 -07001886 rc = failOnTokenMissing ? KeyStoreServiceReturnCode(ErrorCode::KEY_USER_NOT_AUTHENTICATED)
1887 : KeyStoreServiceReturnCode(ResponseCode::OP_AUTH_NEEDED);
1888 break;
1889
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001890 default:
1891 ALOGE("Unexpected FindAuthorization return value %d", err);
Shawn Willden0329a822017-12-04 13:55:14 -07001892 rc = ErrorCode::INVALID_ARGUMENT;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001893 }
Shawn Willden0329a822017-12-04 13:55:14 -07001894
1895 return {rc, authToken ? std::move(*authToken) : HardwareAuthToken()};
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001896}
1897
1898/**
1899 * Add the auth token for the operation to the param list if the operation
1900 * requires authorization. Uses the cached result in the OperationMap if available
1901 * otherwise gets the token from the AuthTokenTable and caches the result.
1902 *
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001903 * Returns ResponseCode::NO_ERROR if the auth token was added or not needed.
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001904 * KM_ERROR_KEY_USER_NOT_AUTHENTICATED if the operation is not
1905 * authenticated.
1906 * KM_ERROR_INVALID_OPERATION_HANDLE if token is not a valid
1907 * operation token.
1908 */
Shawn Willden0329a822017-12-04 13:55:14 -07001909std::pair<KeyStoreServiceReturnCode, const HardwareAuthToken&>
1910KeyStoreService::getOperationAuthTokenIfNeeded(const sp<IBinder>& token) {
1911 static HardwareAuthToken emptyToken = {};
1912
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001913 auto getOpResult = mOperationMap.getOperation(token);
Shawn Willden0329a822017-12-04 13:55:14 -07001914 if (!getOpResult.isOk()) return {ErrorCode::INVALID_OPERATION_HANDLE, emptyToken};
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001915 const auto& op = getOpResult.value();
1916
Shawn Willden0329a822017-12-04 13:55:14 -07001917 if (!op.hasAuthToken()) {
1918 KeyStoreServiceReturnCode rc;
1919 HardwareAuthToken found;
1920 std::tie(rc, found) = getAuthToken(op.characteristics, op.handle, op.purpose);
1921 if (!rc.isOk()) return {rc, emptyToken};
1922 mOperationMap.setOperationAuthToken(token, std::move(found));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001923 }
Shawn Willden0329a822017-12-04 13:55:14 -07001924
1925 return {ResponseCode::NO_ERROR, op.authToken};
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001926}
1927
1928/**
1929 * Translate a result value to a legacy return value. All keystore errors are
1930 * preserved and keymaster errors become SYSTEM_ERRORs
1931 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001932KeyStoreServiceReturnCode KeyStoreService::translateResultToLegacyResult(int32_t result) {
Shawn Willden0329a822017-12-04 13:55:14 -07001933 if (result > 0) return static_cast<ResponseCode>(result);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001934 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001935}
1936
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001937static NullOr<const Algorithm&> getKeyAlgoritmFromKeyCharacteristics(
1938 const ::android::security::keymaster::KeyCharacteristics& characteristics) {
Shawn Willden0329a822017-12-04 13:55:14 -07001939 for (const auto& param : characteristics.hardwareEnforced.getParameters()) {
1940 auto algo = authorizationValue(TAG_ALGORITHM, param);
1941 if (algo.isOk()) return algo;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001942 }
Shawn Willden0329a822017-12-04 13:55:14 -07001943 for (const auto& param : characteristics.softwareEnforced.getParameters()) {
1944 auto algo = authorizationValue(TAG_ALGORITHM, param);
1945 if (algo.isOk()) return algo;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001946 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001947 return {};
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001948}
1949
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001950void KeyStoreService::addLegacyBeginParams(const String16& name, AuthorizationSet* params) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001951 // All legacy keys are DIGEST_NONE/PAD_NONE.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001952 params->push_back(TAG_DIGEST, Digest::NONE);
1953 params->push_back(TAG_PADDING, PaddingMode::NONE);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001954
1955 // Look up the algorithm of the key.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001956 ::android::security::keymaster::KeyCharacteristics characteristics;
1957 int32_t result;
1958 auto rc = getKeyCharacteristics(name, ::android::security::keymaster::KeymasterBlob(),
1959 ::android::security::keymaster::KeymasterBlob(), UID_SELF,
1960 &characteristics, &result);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001961 if (!rc.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001962 ALOGE("Failed to get key characteristics");
1963 return;
1964 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001965 auto algorithm = getKeyAlgoritmFromKeyCharacteristics(characteristics);
1966 if (!algorithm.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001967 ALOGE("getKeyCharacteristics did not include KM_TAG_ALGORITHM");
1968 return;
1969 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001970 params->push_back(TAG_ALGORITHM, algorithm.value());
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001971}
1972
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001973KeyStoreServiceReturnCode KeyStoreService::doLegacySignVerify(const String16& name,
1974 const hidl_vec<uint8_t>& data,
1975 hidl_vec<uint8_t>* out,
1976 const hidl_vec<uint8_t>& signature,
1977 KeyPurpose purpose) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001978
1979 std::basic_stringstream<uint8_t> outBuffer;
1980 OperationResult result;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001981 AuthorizationSet inArgs;
1982 addLegacyBeginParams(name, &inArgs);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001983 sp<IBinder> appToken(new BBinder);
1984 sp<IBinder> token;
1985
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001986 begin(appToken, name, static_cast<int32_t>(purpose), true,
1987 KeymasterArguments(inArgs.hidl_data()), ::std::vector<uint8_t>(), UID_SELF, &result);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001988 if (!result.resultCode.isOk()) {
1989 if (result.resultCode == ResponseCode::KEY_NOT_FOUND) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001990 ALOGW("Key not found");
1991 } else {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001992 ALOGW("Error in begin: %d", int32_t(result.resultCode));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001993 }
1994 return translateResultToLegacyResult(result.resultCode);
1995 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001996 inArgs.Clear();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001997 token = result.token;
1998 size_t consumed = 0;
1999 size_t lastConsumed = 0;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002000 hidl_vec<uint8_t> data_view;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002001 do {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002002 data_view.setToExternal(const_cast<uint8_t*>(&data[consumed]), data.size() - consumed);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07002003 update(token, KeymasterArguments(inArgs.hidl_data()), data_view, &result);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002004 if (result.resultCode != ResponseCode::NO_ERROR) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002005 ALOGW("Error in update: %d", int32_t(result.resultCode));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002006 return translateResultToLegacyResult(result.resultCode);
2007 }
2008 if (out) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002009 outBuffer.write(&result.data[0], result.data.size());
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002010 }
2011 lastConsumed = result.inputConsumed;
2012 consumed += lastConsumed;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002013 } while (consumed < data.size() && lastConsumed > 0);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002014
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002015 if (consumed != data.size()) {
2016 ALOGW("Not all data consumed. Consumed %zu of %zu", consumed, data.size());
2017 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002018 }
2019
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07002020 finish(token, KeymasterArguments(inArgs.hidl_data()), signature, ::std::vector<uint8_t>(),
2021 &result);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002022 if (result.resultCode != ResponseCode::NO_ERROR) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002023 ALOGW("Error in finish: %d", int32_t(result.resultCode));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002024 return translateResultToLegacyResult(result.resultCode);
2025 }
2026 if (out) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002027 outBuffer.write(&result.data[0], result.data.size());
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002028 }
2029
2030 if (out) {
2031 auto buf = outBuffer.str();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002032 out->resize(buf.size());
2033 memcpy(&(*out)[0], buf.data(), out->size());
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002034 }
2035
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002036 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002037}
2038
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002039KeyStoreServiceReturnCode KeyStoreService::upgradeKeyBlob(const String16& name, uid_t uid,
2040 const AuthorizationSet& params,
2041 Blob* blob) {
Shawn Willden98c59162016-03-20 09:10:18 -06002042 // Read the blob rather than assuming the caller provided the right name/uid/blob triplet.
2043 String8 name8(name);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07002044 KeyStoreServiceReturnCode responseCode =
2045 mKeyStore->getKeyForName(blob, name8, uid, TYPE_KEYMASTER_10);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002046 if (responseCode != ResponseCode::NO_ERROR) {
Shawn Willden98c59162016-03-20 09:10:18 -06002047 return responseCode;
2048 }
Rubin Xu7675c9f2017-03-15 19:26:52 +00002049 ALOGI("upgradeKeyBlob %s %d", name8.string(), uid);
Shawn Willden98c59162016-03-20 09:10:18 -06002050
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002051 auto hidlKey = blob2hidlVec(*blob);
2052 auto& dev = mKeyStore->getDevice(*blob);
Shawn Willden98c59162016-03-20 09:10:18 -06002053
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002054 KeyStoreServiceReturnCode error;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07002055 auto hidlCb = [&](ErrorCode ret, const ::std::vector<uint8_t>& upgradedKeyBlob) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002056 error = ret;
2057 if (!error.isOk()) {
2058 return;
2059 }
2060
Janis Danisevskisaf7783f2017-09-21 11:29:47 -07002061 auto filename = mKeyStore->getBlobFileNameIfExists(name8, uid, ::TYPE_KEYMASTER_10);
2062 if (!filename.isOk()) {
2063 ALOGI("trying to upgrade a non existing blob");
2064 return;
2065 }
2066 error = mKeyStore->del(filename.value().string(), ::TYPE_ANY, get_user_id(uid));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002067 if (!error.isOk()) {
Rubin Xu7675c9f2017-03-15 19:26:52 +00002068 ALOGI("upgradeKeyBlob keystore->del failed %d", (int)error);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002069 return;
2070 }
2071
2072 Blob newBlob(&upgradedKeyBlob[0], upgradedKeyBlob.size(), nullptr /* info */,
2073 0 /* infoLength */, ::TYPE_KEYMASTER_10);
2074 newBlob.setFallback(blob->isFallback());
2075 newBlob.setEncrypted(blob->isEncrypted());
Rubin Xu67899de2017-04-21 19:15:13 +01002076 newBlob.setSuperEncrypted(blob->isSuperEncrypted());
2077 newBlob.setCriticalToDeviceEncryption(blob->isCriticalToDeviceEncryption());
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002078
Janis Danisevskisaf7783f2017-09-21 11:29:47 -07002079 error = mKeyStore->put(filename.value().string(), &newBlob, get_user_id(uid));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002080 if (!error.isOk()) {
Rubin Xu7675c9f2017-03-15 19:26:52 +00002081 ALOGI("upgradeKeyBlob keystore->put failed %d", (int)error);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002082 return;
2083 }
2084
2085 // Re-read blob for caller. We can't use newBlob because writing it modified it.
2086 error = mKeyStore->getKeyForName(blob, name8, uid, TYPE_KEYMASTER_10);
2087 };
2088
2089 KeyStoreServiceReturnCode rc =
2090 KS_HANDLE_HIDL_ERROR(dev->upgradeKey(hidlKey, params.hidl_data(), hidlCb));
2091 if (!rc.isOk()) {
Shawn Willden98c59162016-03-20 09:10:18 -06002092 return rc;
2093 }
2094
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002095 return error;
Shawn Willden98c59162016-03-20 09:10:18 -06002096}
2097
Shawn Willdene2a7b522017-04-11 09:27:40 -06002098} // namespace keystore