blob: 94595205b8a395775191a1490b4b6c6548830e93 [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
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001175static inline void addAuthTokenToParams(AuthorizationSet* params, const HardwareAuthToken* token) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001176 if (token) {
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001177 params->push_back(TAG_AUTH_TOKEN, authToken2HidlVec(*token));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001178 }
1179}
1180
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001181Status KeyStoreService::begin(const sp<IBinder>& appToken, const String16& name, int32_t purpose,
1182 bool pruneable, const KeymasterArguments& params,
1183 const ::std::vector<uint8_t>& entropy, int32_t uid,
1184 OperationResult* result) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001185 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1186 uid_t targetUid = getEffectiveUid(uid);
1187 if (!is_granted_to(callingUid, targetUid)) {
1188 ALOGW("uid %d not permitted to act for uid %d in begin", callingUid, targetUid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001189 result->resultCode = ResponseCode::PERMISSION_DENIED;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001190 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001191 }
1192 if (!pruneable && get_app_id(callingUid) != AID_SYSTEM) {
1193 ALOGE("Non-system uid %d trying to start non-pruneable operation", callingUid);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001194 result->resultCode = ResponseCode::PERMISSION_DENIED;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001195 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001196 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001197 if (!checkAllowedOperationParams(params.getParameters())) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001198 result->resultCode = ErrorCode::INVALID_ARGUMENT;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001199 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001200 }
1201 Blob keyBlob;
1202 String8 name8(name);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001203 result->resultCode = mKeyStore->getKeyForName(&keyBlob, name8, targetUid, TYPE_KEYMASTER_10);
Shawn Willdend5a24e62017-02-28 13:53:24 -07001204 if (result->resultCode == ResponseCode::LOCKED && keyBlob.isSuperEncrypted()) {
1205 result->resultCode = ErrorCode::KEY_USER_NOT_AUTHENTICATED;
1206 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001207 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001208 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001209 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001210
1211 auto key = blob2hidlVec(keyBlob);
1212 auto& dev = mKeyStore->getDevice(keyBlob);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001213 AuthorizationSet opParams = params.getParameters();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001214 KeyCharacteristics characteristics;
1215 result->resultCode = getOperationCharacteristics(key, &dev, opParams, &characteristics);
1216
1217 if (result->resultCode == ErrorCode::KEY_REQUIRES_UPGRADE) {
1218 result->resultCode = upgradeKeyBlob(name, targetUid, opParams, &keyBlob);
1219 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001220 return Status::ok();
Shawn Willden98c59162016-03-20 09:10:18 -06001221 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001222 key = blob2hidlVec(keyBlob);
1223 result->resultCode = getOperationCharacteristics(key, &dev, opParams, &characteristics);
Shawn Willden98c59162016-03-20 09:10:18 -06001224 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001225 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001226 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001227 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001228
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001229 const HardwareAuthToken* authToken = NULL;
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001230
1231 // Merge these characteristics with the ones cached when the key was generated or imported
1232 Blob charBlob;
1233 AuthorizationSet persistedCharacteristics;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001234 result->resultCode =
1235 mKeyStore->getKeyForName(&charBlob, name8, targetUid, TYPE_KEY_CHARACTERISTICS);
1236 if (result->resultCode.isOk()) {
1237 // TODO write one shot stream buffer to avoid copying (twice here)
1238 std::string charBuffer(reinterpret_cast<const char*>(charBlob.getValue()),
1239 charBlob.getLength());
1240 std::stringstream charStream(charBuffer);
1241 persistedCharacteristics.Deserialize(&charStream);
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001242 } else {
1243 ALOGD("Unable to read cached characteristics for key");
1244 }
1245
1246 // Replace the sw_enforced set with those persisted to disk, minus hw_enforced
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001247 AuthorizationSet softwareEnforced = characteristics.softwareEnforced;
1248 AuthorizationSet teeEnforced = characteristics.teeEnforced;
1249 persistedCharacteristics.Union(softwareEnforced);
1250 persistedCharacteristics.Subtract(teeEnforced);
1251 characteristics.softwareEnforced = persistedCharacteristics.hidl_data();
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001252
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001253 auto authResult = getAuthToken(characteristics, 0, KeyPurpose(purpose), &authToken,
Shawn Willdenc5e8f362017-08-31 09:23:06 -06001254 /*failOnTokenMissing*/ false);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001255 // If per-operation auth is needed we need to begin the operation and
1256 // the client will need to authorize that operation before calling
1257 // update. Any other auth issues stop here.
Shawn Willden827243a2017-09-12 05:41:33 -06001258 if (!authResult.isOk() && authResult != ResponseCode::OP_AUTH_NEEDED) {
1259 result->resultCode = authResult;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001260 return Status::ok();
Shawn Willden827243a2017-09-12 05:41:33 -06001261 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001262
1263 addAuthTokenToParams(&opParams, authToken);
1264
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001265 // Add entropy to the device first.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001266 if (entropy.size()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001267 int32_t resultCode;
1268 addRngEntropy(entropy, &resultCode); // binder error is not possible
1269 result->resultCode = KeyStoreServiceReturnCode(resultCode);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001270 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001271 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001272 }
1273 }
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001274
1275 // Create a keyid for this key.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001276 km_id_t keyid;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001277 if (!enforcement_policy.CreateKeyId(key, &keyid)) {
1278 ALOGE("Failed to create a key ID for authorization checking.");
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001279 result->resultCode = ErrorCode::UNKNOWN_ERROR;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001280 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001281 }
1282
1283 // Check that all key authorization policy requirements are met.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001284 AuthorizationSet key_auths = characteristics.teeEnforced;
1285 key_auths.append(&characteristics.softwareEnforced[0],
1286 &characteristics.softwareEnforced[characteristics.softwareEnforced.size()]);
1287
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001288 result->resultCode =
1289 enforcement_policy.AuthorizeOperation(KeyPurpose(purpose), keyid, key_auths, opParams,
1290 0 /* op_handle */, true /* is_begin_operation */);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001291 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001292 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001293 }
1294
Shawn Willdene2a7b522017-04-11 09:27:40 -06001295 // If there are more than kMaxOperations, abort the oldest operation that was started as
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001296 // pruneable.
Shawn Willdene2a7b522017-04-11 09:27:40 -06001297 while (mOperationMap.getOperationCount() >= kMaxOperations) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001298 ALOGD("Reached or exceeded concurrent operations limit");
1299 if (!pruneOperation()) {
1300 break;
1301 }
1302 }
1303
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001304 auto hidlCb = [&](ErrorCode ret, const hidl_vec<KeyParameter>& outParams,
1305 uint64_t operationHandle) {
1306 result->resultCode = ret;
1307 if (!result->resultCode.isOk()) {
1308 return;
1309 }
1310 result->handle = operationHandle;
1311 result->outParams = outParams;
1312 };
1313
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001314 ErrorCode rc =
1315 KS_HANDLE_HIDL_ERROR(dev->begin(KeyPurpose(purpose), key, opParams.hidl_data(), hidlCb));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001316 if (rc != ErrorCode::OK) {
1317 ALOGW("Got error %d from begin()", rc);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001318 }
1319
1320 // If there are too many operations abort the oldest operation that was
1321 // started as pruneable and try again.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001322 while (rc == ErrorCode::TOO_MANY_OPERATIONS && mOperationMap.hasPruneableOperation()) {
1323 ALOGW("Ran out of operation handles");
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001324 if (!pruneOperation()) {
1325 break;
1326 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001327 rc = KS_HANDLE_HIDL_ERROR(
1328 dev->begin(KeyPurpose(purpose), key, opParams.hidl_data(), hidlCb));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001329 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001330 if (rc != ErrorCode::OK) {
1331 result->resultCode = rc;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001332 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001333 }
1334
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001335 // Note: The operation map takes possession of the contents of "characteristics".
1336 // It is safe to use characteristics after the following line but it will be empty.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001337 sp<IBinder> operationToken =
1338 mOperationMap.addOperation(result->handle, keyid, KeyPurpose(purpose), dev, appToken,
1339 std::move(characteristics), pruneable);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001340 assert(characteristics.teeEnforced.size() == 0);
1341 assert(characteristics.softwareEnforced.size() == 0);
Shawn Willdenc5e8f362017-08-31 09:23:06 -06001342 result->token = operationToken;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001343
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001344 if (authToken) {
Shawn Willdendebb61e2017-12-03 12:51:19 -07001345 mOperationMap.setOperationAuthToken(operationToken, *authToken);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001346 }
1347 // Return the authentication lookup result. If this is a per operation
1348 // auth'd key then the resultCode will be ::OP_AUTH_NEEDED and the
1349 // application should get an auth token using the handle before the
1350 // first call to update, which will fail if keystore hasn't received the
1351 // auth token.
Shawn Willden2f96c792017-09-07 23:59:08 -06001352 if (result->resultCode == ErrorCode::OK) {
1353 result->resultCode = authResult;
1354 }
Shawn Willdenc5e8f362017-08-31 09:23:06 -06001355
1356 // Other result fields were set in the begin operation's callback.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001357 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001358}
1359
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001360Status KeyStoreService::update(const sp<IBinder>& token, const KeymasterArguments& params,
1361 const ::std::vector<uint8_t>& data, OperationResult* result) {
1362 if (!checkAllowedOperationParams(params.getParameters())) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001363 result->resultCode = ErrorCode::INVALID_ARGUMENT;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001364 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001365 }
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001366
1367 auto getOpResult = mOperationMap.getOperation(token);
1368 if (!getOpResult.isOk()) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001369 result->resultCode = ErrorCode::INVALID_OPERATION_HANDLE;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001370 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001371 }
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001372 const auto& op = getOpResult.value();
1373
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001374 AuthorizationSet opParams = params.getParameters();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001375 result->resultCode = addOperationAuthTokenIfNeeded(token, &opParams);
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001376 if (!result->resultCode.isOk()) return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001377
1378 // Check that all key authorization policy requirements are met.
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001379 AuthorizationSet key_auths(op.characteristics.teeEnforced);
1380 key_auths.append(op.characteristics.softwareEnforced.begin(),
1381 op.characteristics.softwareEnforced.end());
1382
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001383 result->resultCode = enforcement_policy.AuthorizeOperation(
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001384 op.purpose, op.keyid, key_auths, opParams, op.handle, false /* is_begin_operation */);
1385 if (!result->resultCode.isOk()) return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001386
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001387 auto hidlCb = [&](ErrorCode ret, uint32_t inputConsumed,
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001388 const hidl_vec<KeyParameter>& outParams,
1389 const ::std::vector<uint8_t>& output) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001390 result->resultCode = ret;
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001391 if (result->resultCode.isOk()) {
1392 result->inputConsumed = inputConsumed;
1393 result->outParams = outParams;
1394 result->data = output;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001395 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001396 };
1397
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001398 KeyStoreServiceReturnCode rc =
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001399 KS_HANDLE_HIDL_ERROR(op.device->update(op.handle, opParams.hidl_data(), data, hidlCb));
1400
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001401 // just a reminder: on success result->resultCode was set in the callback. So we only overwrite
1402 // it if there was a communication error indicated by the ErrorCode.
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001403 if (!rc.isOk()) result->resultCode = rc;
1404
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001405 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001406}
1407
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001408Status KeyStoreService::finish(const sp<IBinder>& token, const KeymasterArguments& params,
1409 const ::std::vector<uint8_t>& signature,
1410 const ::std::vector<uint8_t>& entropy, OperationResult* result) {
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001411 auto getOpResult = mOperationMap.getOperation(token);
1412 if (!getOpResult.isOk()) {
1413 result->resultCode = ErrorCode::INVALID_OPERATION_HANDLE;
1414 return Status::ok();
1415 }
1416 const auto& op = std::move(getOpResult.value());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001417 if (!checkAllowedOperationParams(params.getParameters())) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001418 result->resultCode = ErrorCode::INVALID_ARGUMENT;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001419 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001420 }
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001421
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001422 AuthorizationSet opParams = params.getParameters();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001423 result->resultCode = addOperationAuthTokenIfNeeded(token, &opParams);
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001424 if (!result->resultCode.isOk()) return Status::ok();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001425
1426 if (entropy.size()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001427 int resultCode;
1428 addRngEntropy(entropy, &resultCode); // binder error is not possible
1429 result->resultCode = KeyStoreServiceReturnCode(resultCode);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001430 if (!result->resultCode.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001431 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001432 }
1433 }
1434
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001435 // Check that all key authorization policy requirements are met.
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001436 AuthorizationSet key_auths(op.characteristics.teeEnforced);
1437 key_auths.append(op.characteristics.softwareEnforced.begin(),
1438 op.characteristics.softwareEnforced.end());
1439
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001440 result->resultCode = enforcement_policy.AuthorizeOperation(
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001441 op.purpose, op.keyid, key_auths, opParams, op.handle, false /* is_begin_operation */);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001442 if (!result->resultCode.isOk()) return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001443
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001444 auto hidlCb = [&](ErrorCode ret, const hidl_vec<KeyParameter>& outParams,
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001445 const ::std::vector<uint8_t>& output) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001446 result->resultCode = ret;
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001447 if (result->resultCode.isOk()) {
1448 result->outParams = outParams;
1449 result->data = output;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001450 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001451 };
1452
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001453 KeyStoreServiceReturnCode rc = KS_HANDLE_HIDL_ERROR(
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001454 op.device->finish(op.handle, opParams.hidl_data(),
1455 ::std::vector<uint8_t>() /* TODO(swillden): wire up input to finish() */,
1456 signature, hidlCb));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001457 mOperationMap.removeOperation(token);
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001458 mAuthTokenTable.MarkCompleted(op.handle);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001459
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001460 // just a reminder: on success result->resultCode was set in the callback. So we only overwrite
1461 // it if there was a communication error indicated by the ErrorCode.
1462 if (!rc.isOk()) {
1463 result->resultCode = rc;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001464 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001465 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001466}
1467
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001468Status KeyStoreService::abort(const sp<IBinder>& token, int32_t* aidl_return) {
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001469 auto getOpResult = mOperationMap.removeOperation(token);
1470 if (!getOpResult.isOk()) {
1471 *aidl_return = static_cast<int32_t>(ErrorCode::INVALID_OPERATION_HANDLE);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001472 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001473 }
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001474 auto op = std::move(getOpResult.value());
1475 mAuthTokenTable.MarkCompleted(op.handle);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001476
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001477 ErrorCode error_code = KS_HANDLE_HIDL_ERROR(op.device->abort(op.handle));
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001478 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(error_code));
1479 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001480}
1481
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001482Status KeyStoreService::isOperationAuthorized(const sp<IBinder>& token, bool* aidl_return) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001483 AuthorizationSet ignored;
1484 auto authResult = addOperationAuthTokenIfNeeded(token, &ignored);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001485 *aidl_return = authResult.isOk();
1486 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001487}
1488
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001489Status KeyStoreService::addAuthToken(const ::std::vector<uint8_t>& authTokenAsVector,
1490 int32_t* aidl_return) {
1491
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001492 // TODO(swillden): When gatekeeper and fingerprint are ready, this should be updated to
1493 // receive a HardwareAuthToken, rather than an opaque byte array.
1494
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001495 if (!checkBinderPermission(P_ADD_AUTH)) {
1496 ALOGW("addAuthToken: permission denied for %d", IPCThreadState::self()->getCallingUid());
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001497 *aidl_return = static_cast<int32_t>(ResponseCode::PERMISSION_DENIED);
1498 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001499 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001500 if (authTokenAsVector.size() != sizeof(hw_auth_token_t)) {
1501 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
1502 return Status::ok();
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001503 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001504
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001505 hw_auth_token_t authToken;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001506 memcpy(reinterpret_cast<void*>(&authToken), authTokenAsVector.data(), sizeof(hw_auth_token_t));
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001507 if (authToken.version != 0) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001508 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
1509 return Status::ok();
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001510 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001511
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001512 std::unique_ptr<HardwareAuthToken> hidlAuthToken(new HardwareAuthToken);
1513 hidlAuthToken->challenge = authToken.challenge;
1514 hidlAuthToken->userId = authToken.user_id;
1515 hidlAuthToken->authenticatorId = authToken.authenticator_id;
1516 hidlAuthToken->authenticatorType = authToken.authenticator_type;
1517 hidlAuthToken->timestamp = authToken.timestamp;
1518 static_assert(
1519 std::is_same<decltype(hidlAuthToken->hmac),
1520 ::android::hardware::hidl_array<uint8_t, sizeof(authToken.hmac)>>::value,
1521 "This function assumes token HMAC is 32 bytes, but it might not be.");
1522 std::copy(authToken.hmac, authToken.hmac + sizeof(authToken.hmac), hidlAuthToken->hmac.data());
1523
Janis Danisevskis8f737ad2017-11-21 12:30:15 -08001524 mAuthTokenTable.AddAuthenticationToken(std::move(hidlAuthToken));
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001525 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
1526 return Status::ok();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001527}
1528
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001529bool isDeviceIdAttestationRequested(const KeymasterArguments& params) {
1530 const hardware::hidl_vec<KeyParameter> paramsVec = params.getParameters();
1531 for (size_t i = 0; i < paramsVec.size(); ++i) {
1532 switch (paramsVec[i].tag) {
Shawn Willdene2a7b522017-04-11 09:27:40 -06001533 case Tag::ATTESTATION_ID_BRAND:
1534 case Tag::ATTESTATION_ID_DEVICE:
1535 case Tag::ATTESTATION_ID_IMEI:
1536 case Tag::ATTESTATION_ID_MANUFACTURER:
1537 case Tag::ATTESTATION_ID_MEID:
1538 case Tag::ATTESTATION_ID_MODEL:
1539 case Tag::ATTESTATION_ID_PRODUCT:
1540 case Tag::ATTESTATION_ID_SERIAL:
1541 return true;
1542 default:
1543 break;
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +01001544 }
1545 }
1546 return false;
1547}
1548
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001549Status KeyStoreService::attestKey(const String16& name, const KeymasterArguments& params,
1550 ::android::security::keymaster::KeymasterCertificateChain* chain,
1551 int32_t* aidl_return) {
1552 // check null output if method signature is updated and return ErrorCode::OUTPUT_PARAMETER_NULL
1553 if (!checkAllowedOperationParams(params.getParameters())) {
1554 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
1555 return Status::ok();
Shawn Willden50eb1b22016-01-21 12:41:23 -07001556 }
1557
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001558 if (isDeviceIdAttestationRequested(params)) {
1559 // There is a dedicated attestDeviceIds() method for device ID attestation.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001560 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
1561 return Status::ok();
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +01001562 }
1563
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001564 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1565
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001566 AuthorizationSet mutableParams = params.getParameters();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001567 KeyStoreServiceReturnCode rc = updateParamsForAttestation(callingUid, &mutableParams);
1568 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001569 *aidl_return = static_cast<int32_t>(rc);
1570 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001571 }
Shawn Willdene2a7b522017-04-11 09:27:40 -06001572
Shawn Willden50eb1b22016-01-21 12:41:23 -07001573 Blob keyBlob;
1574 String8 name8(name);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001575 rc = mKeyStore->getKeyForName(&keyBlob, name8, callingUid, TYPE_KEYMASTER_10);
1576 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001577 *aidl_return = static_cast<int32_t>(rc);
1578 return Status::ok();
Shawn Willden50eb1b22016-01-21 12:41:23 -07001579 }
1580
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001581 KeyStoreServiceReturnCode error;
1582 auto hidlCb = [&](ErrorCode ret, const hidl_vec<hidl_vec<uint8_t>>& certChain) {
1583 error = ret;
1584 if (!error.isOk()) {
1585 return;
1586 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001587 if (chain) {
1588 *chain = KeymasterCertificateChain(certChain);
1589 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001590 };
1591
1592 auto hidlKey = blob2hidlVec(keyBlob);
1593 auto& dev = mKeyStore->getDevice(keyBlob);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001594 rc = KS_HANDLE_HIDL_ERROR(dev->attestKey(hidlKey, mutableParams.hidl_data(), hidlCb));
1595 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001596 *aidl_return = static_cast<int32_t>(rc);
1597 return Status::ok();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001598 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001599 *aidl_return = static_cast<int32_t>(error);
1600 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001601}
1602
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001603Status
1604KeyStoreService::attestDeviceIds(const KeymasterArguments& params,
1605 ::android::security::keymaster::KeymasterCertificateChain* chain,
1606 int32_t* aidl_return) {
1607 // check null output if method signature is updated and return ErrorCode::OUTPUT_PARAMETER_NULL
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001608
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001609 if (!checkAllowedOperationParams(params.getParameters())) {
1610 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
1611 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001612 }
1613
1614 if (!isDeviceIdAttestationRequested(params)) {
1615 // There is an attestKey() method for attesting keys without device ID attestation.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001616 *aidl_return = static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::INVALID_ARGUMENT));
1617 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001618 }
1619
1620 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1621 sp<IBinder> binder = defaultServiceManager()->getService(String16("permission"));
1622 if (binder == 0) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001623 *aidl_return =
1624 static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::CANNOT_ATTEST_IDS));
1625 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001626 }
1627 if (!interface_cast<IPermissionController>(binder)->checkPermission(
1628 String16("android.permission.READ_PRIVILEGED_PHONE_STATE"),
1629 IPCThreadState::self()->getCallingPid(), callingUid)) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001630 *aidl_return =
1631 static_cast<int32_t>(KeyStoreServiceReturnCode(ErrorCode::CANNOT_ATTEST_IDS));
1632 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001633 }
1634
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001635 AuthorizationSet mutableParams = params.getParameters();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001636 KeyStoreServiceReturnCode rc = updateParamsForAttestation(callingUid, &mutableParams);
1637 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001638 *aidl_return = static_cast<int32_t>(rc);
1639 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001640 }
1641
1642 // Generate temporary key.
1643 auto& dev = mKeyStore->getDevice();
1644 KeyStoreServiceReturnCode error;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001645 ::std::vector<uint8_t> hidlKey;
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001646
1647 AuthorizationSet keyCharacteristics;
1648 keyCharacteristics.push_back(TAG_PURPOSE, KeyPurpose::VERIFY);
1649 keyCharacteristics.push_back(TAG_ALGORITHM, Algorithm::EC);
1650 keyCharacteristics.push_back(TAG_DIGEST, Digest::SHA_2_256);
1651 keyCharacteristics.push_back(TAG_NO_AUTH_REQUIRED);
1652 keyCharacteristics.push_back(TAG_EC_CURVE, EcCurve::P_256);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001653 auto generateHidlCb = [&](ErrorCode ret, const ::std::vector<uint8_t>& hidlKeyBlob,
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001654 const KeyCharacteristics&) {
1655 error = ret;
1656 if (!error.isOk()) {
1657 return;
1658 }
1659 hidlKey = hidlKeyBlob;
1660 };
1661
1662 rc = KS_HANDLE_HIDL_ERROR(dev->generateKey(keyCharacteristics.hidl_data(), generateHidlCb));
1663 if (!rc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001664 *aidl_return = static_cast<int32_t>(rc);
1665 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001666 }
1667 if (!error.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001668 *aidl_return = static_cast<int32_t>(error);
1669 return Status::ok();
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001670 }
1671
1672 // Attest key and device IDs.
1673 auto attestHidlCb = [&](ErrorCode ret, const hidl_vec<hidl_vec<uint8_t>>& certChain) {
1674 error = ret;
1675 if (!error.isOk()) {
1676 return;
1677 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001678 *chain = ::android::security::keymaster::KeymasterCertificateChain(certChain);
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001679 };
1680 KeyStoreServiceReturnCode attestationRc =
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001681 KS_HANDLE_HIDL_ERROR(dev->attestKey(hidlKey, mutableParams.hidl_data(), attestHidlCb));
Bartosz Fabianowski5aa93e02017-04-24 13:54:49 +02001682
1683 // Delete temporary key.
1684 KeyStoreServiceReturnCode deletionRc = KS_HANDLE_HIDL_ERROR(dev->deleteKey(hidlKey));
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +01001685
1686 if (!attestationRc.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001687 *aidl_return = static_cast<int32_t>(attestationRc);
1688 return Status::ok();
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +01001689 }
1690 if (!error.isOk()) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001691 *aidl_return = static_cast<int32_t>(error);
1692 return Status::ok();
Bartosz Fabianowskia9452d92017-01-23 22:21:11 +01001693 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001694 *aidl_return = static_cast<int32_t>(deletionRc);
1695 return Status::ok();
Shawn Willden50eb1b22016-01-21 12:41:23 -07001696}
1697
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001698Status KeyStoreService::onDeviceOffBody(int32_t* aidl_return) {
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001699 // TODO(tuckeris): add permission check. This should be callable from ClockworkHome only.
1700 mAuthTokenTable.onDeviceOffBody();
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001701 *aidl_return = static_cast<int32_t>(ResponseCode::NO_ERROR);
1702 return Status::ok();
Tucker Sylvestro0ab28b72016-08-05 18:02:47 -04001703}
1704
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001705/**
1706 * Prune the oldest pruneable operation.
1707 */
1708bool KeyStoreService::pruneOperation() {
1709 sp<IBinder> oldest = mOperationMap.getOldestPruneableOperation();
1710 ALOGD("Trying to prune operation %p", oldest.get());
1711 size_t op_count_before_abort = mOperationMap.getOperationCount();
1712 // We mostly ignore errors from abort() because all we care about is whether at least
1713 // one operation has been removed.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001714 int32_t abort_error;
1715 abort(oldest, &abort_error);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001716 if (mOperationMap.getOperationCount() >= op_count_before_abort) {
1717 ALOGE("Failed to abort pruneable operation %p, error: %d", oldest.get(), abort_error);
1718 return false;
1719 }
1720 return true;
1721}
1722
1723/**
1724 * Get the effective target uid for a binder operation that takes an
1725 * optional uid as the target.
1726 */
1727uid_t KeyStoreService::getEffectiveUid(int32_t targetUid) {
1728 if (targetUid == UID_SELF) {
1729 return IPCThreadState::self()->getCallingUid();
1730 }
1731 return static_cast<uid_t>(targetUid);
1732}
1733
1734/**
1735 * Check if the caller of the current binder method has the required
1736 * permission and if acting on other uids the grants to do so.
1737 */
1738bool KeyStoreService::checkBinderPermission(perm_t permission, int32_t targetUid) {
1739 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1740 pid_t spid = IPCThreadState::self()->getCallingPid();
1741 if (!has_permission(callingUid, permission, spid)) {
1742 ALOGW("permission %s denied for %d", get_perm_label(permission), callingUid);
1743 return false;
1744 }
1745 if (!is_granted_to(callingUid, getEffectiveUid(targetUid))) {
1746 ALOGW("uid %d not granted to act for %d", callingUid, targetUid);
1747 return false;
1748 }
1749 return true;
1750}
1751
1752/**
1753 * Check if the caller of the current binder method has the required
1754 * permission and the target uid is the caller or the caller is system.
1755 */
1756bool KeyStoreService::checkBinderPermissionSelfOrSystem(perm_t permission, int32_t targetUid) {
1757 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1758 pid_t spid = IPCThreadState::self()->getCallingPid();
1759 if (!has_permission(callingUid, permission, spid)) {
1760 ALOGW("permission %s denied for %d", get_perm_label(permission), callingUid);
1761 return false;
1762 }
1763 return getEffectiveUid(targetUid) == callingUid || callingUid == AID_SYSTEM;
1764}
1765
1766/**
1767 * Check if the caller of the current binder method has the required
1768 * permission or the target of the operation is the caller's uid. This is
1769 * for operation where the permission is only for cross-uid activity and all
1770 * uids are allowed to act on their own (ie: clearing all entries for a
1771 * given uid).
1772 */
1773bool KeyStoreService::checkBinderPermissionOrSelfTarget(perm_t permission, int32_t targetUid) {
1774 uid_t callingUid = IPCThreadState::self()->getCallingUid();
1775 if (getEffectiveUid(targetUid) == callingUid) {
1776 return true;
1777 } else {
1778 return checkBinderPermission(permission, targetUid);
1779 }
1780}
1781
1782/**
1783 * Helper method to check that the caller has the required permission as
1784 * well as the keystore is in the unlocked state if checkUnlocked is true.
1785 *
1786 * Returns NO_ERROR on success, PERMISSION_DENIED on a permission error and
1787 * otherwise the state of keystore when not unlocked and checkUnlocked is
1788 * true.
1789 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001790KeyStoreServiceReturnCode
1791KeyStoreService::checkBinderPermissionAndKeystoreState(perm_t permission, int32_t targetUid,
1792 bool checkUnlocked) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001793 if (!checkBinderPermission(permission, targetUid)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001794 return ResponseCode::PERMISSION_DENIED;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001795 }
1796 State state = mKeyStore->getState(get_user_id(getEffectiveUid(targetUid)));
1797 if (checkUnlocked && !isKeystoreUnlocked(state)) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001798 // All State values coincide with ResponseCodes
1799 return static_cast<ResponseCode>(state);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001800 }
1801
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001802 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001803}
1804
1805bool KeyStoreService::isKeystoreUnlocked(State state) {
1806 switch (state) {
1807 case ::STATE_NO_ERROR:
1808 return true;
1809 case ::STATE_UNINITIALIZED:
1810 case ::STATE_LOCKED:
1811 return false;
1812 }
1813 return false;
1814}
1815
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001816/**
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001817 * Check that all KeyParameter's provided by the application are
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001818 * allowed. Any parameter that keystore adds itself should be disallowed here.
1819 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001820bool KeyStoreService::checkAllowedOperationParams(const hidl_vec<KeyParameter>& params) {
1821 for (size_t i = 0; i < params.size(); ++i) {
1822 switch (params[i].tag) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001823 case Tag::ATTESTATION_APPLICATION_ID:
Shawn Willdene2a7b522017-04-11 09:27:40 -06001824 case Tag::AUTH_TOKEN:
1825 case Tag::RESET_SINCE_ID_ROTATION:
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001826 return false;
1827 default:
1828 break;
1829 }
1830 }
1831 return true;
1832}
1833
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001834ErrorCode KeyStoreService::getOperationCharacteristics(const hidl_vec<uint8_t>& key,
Shawn Willdenc67a8aa2017-12-03 17:51:29 -07001835 sp<Keymaster>* dev,
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001836 const AuthorizationSet& params,
1837 KeyCharacteristics* out) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001838 ::std::vector<uint8_t> appId;
1839 ::std::vector<uint8_t> appData;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001840 for (auto param : params) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001841 if (param.tag == Tag::APPLICATION_ID) {
1842 appId = authorizationValue(TAG_APPLICATION_ID, param).value();
1843 } else if (param.tag == Tag::APPLICATION_DATA) {
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001844 appId = authorizationValue(TAG_APPLICATION_DATA, param).value();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001845 }
1846 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001847 ErrorCode error = ErrorCode::OK;
1848
1849 auto hidlCb = [&](ErrorCode ret, const KeyCharacteristics& keyCharacteristics) {
1850 error = ret;
1851 if (error != ErrorCode::OK) {
1852 return;
1853 }
1854 if (out) *out = keyCharacteristics;
1855 };
1856
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001857 ErrorCode rc = KS_HANDLE_HIDL_ERROR((*dev)->getKeyCharacteristics(key, appId, appId, hidlCb));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001858 if (rc != ErrorCode::OK) {
1859 return rc;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001860 }
1861 return error;
1862}
1863
1864/**
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001865 * Get the auth token for this operation from the auth token table.
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001866 *
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001867 * Returns ResponseCode::NO_ERROR if the auth token was set or none was required.
1868 * ::OP_AUTH_NEEDED if it is a per op authorization, no
1869 * authorization token exists for that operation and
1870 * failOnTokenMissing is false.
1871 * KM_ERROR_KEY_USER_NOT_AUTHENTICATED if there is no valid auth
1872 * token for the operation
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001873 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001874KeyStoreServiceReturnCode KeyStoreService::getAuthToken(const KeyCharacteristics& characteristics,
1875 uint64_t handle, KeyPurpose purpose,
Shawn Willdend3ed3a22017-03-28 00:39:16 +00001876 const HardwareAuthToken** authToken,
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001877 bool failOnTokenMissing) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001878
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001879 AuthorizationSet allCharacteristics;
1880 for (size_t i = 0; i < characteristics.softwareEnforced.size(); i++) {
1881 allCharacteristics.push_back(characteristics.softwareEnforced[i]);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001882 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001883 for (size_t i = 0; i < characteristics.teeEnforced.size(); i++) {
1884 allCharacteristics.push_back(characteristics.teeEnforced[i]);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001885 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001886 AuthTokenTable::Error err = mAuthTokenTable.FindAuthorization(
1887 allCharacteristics, KeyPurpose(purpose), handle, authToken);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001888 switch (err) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001889 case AuthTokenTable::OK:
1890 case AuthTokenTable::AUTH_NOT_REQUIRED:
1891 return ResponseCode::NO_ERROR;
1892 case AuthTokenTable::AUTH_TOKEN_NOT_FOUND:
1893 case AuthTokenTable::AUTH_TOKEN_EXPIRED:
1894 case AuthTokenTable::AUTH_TOKEN_WRONG_SID:
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001895 ALOGE("getAuthToken failed: %d", err); // STOPSHIP: debug only, to be removed
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001896 return ErrorCode::KEY_USER_NOT_AUTHENTICATED;
1897 case AuthTokenTable::OP_HANDLE_REQUIRED:
1898 return failOnTokenMissing ? KeyStoreServiceReturnCode(ErrorCode::KEY_USER_NOT_AUTHENTICATED)
1899 : KeyStoreServiceReturnCode(ResponseCode::OP_AUTH_NEEDED);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001900 default:
1901 ALOGE("Unexpected FindAuthorization return value %d", err);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001902 return ErrorCode::INVALID_ARGUMENT;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001903 }
1904}
1905
1906/**
1907 * Add the auth token for the operation to the param list if the operation
1908 * requires authorization. Uses the cached result in the OperationMap if available
1909 * otherwise gets the token from the AuthTokenTable and caches the result.
1910 *
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001911 * Returns ResponseCode::NO_ERROR if the auth token was added or not needed.
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001912 * KM_ERROR_KEY_USER_NOT_AUTHENTICATED if the operation is not
1913 * authenticated.
1914 * KM_ERROR_INVALID_OPERATION_HANDLE if token is not a valid
1915 * operation token.
1916 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001917KeyStoreServiceReturnCode KeyStoreService::addOperationAuthTokenIfNeeded(const sp<IBinder>& token,
1918 AuthorizationSet* params) {
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001919 auto getOpResult = mOperationMap.getOperation(token);
1920 if (!getOpResult.isOk()) return ErrorCode::INVALID_OPERATION_HANDLE;
1921 const auto& op = getOpResult.value();
1922
1923 if (!op.authToken) {
1924 const HardwareAuthToken* found = nullptr;
1925 auto result = getAuthToken(op.characteristics, op.handle, op.purpose, &found);
1926 if (!result.isOk()) return result;
1927 if (found) mOperationMap.setOperationAuthToken(token, *found);
1928 assert(*op.authToken == *found);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001929 }
Shawn Willdenda6dcc32017-12-03 14:56:05 -07001930 addAuthTokenToParams(params, op.authToken.get());
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001931 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001932}
1933
1934/**
1935 * Translate a result value to a legacy return value. All keystore errors are
1936 * preserved and keymaster errors become SYSTEM_ERRORs
1937 */
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001938KeyStoreServiceReturnCode KeyStoreService::translateResultToLegacyResult(int32_t result) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001939 if (result > 0) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001940 return static_cast<ResponseCode>(result);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001941 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001942 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001943}
1944
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001945static NullOr<const Algorithm&> getKeyAlgoritmFromKeyCharacteristics(
1946 const ::android::security::keymaster::KeyCharacteristics& characteristics) {
1947 for (size_t i = 0; i < characteristics.teeEnforced.getParameters().size(); ++i) {
1948 auto algo =
1949 authorizationValue(TAG_ALGORITHM, characteristics.teeEnforced.getParameters()[i]);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001950 if (algo.isOk()) return algo.value();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001951 }
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001952 for (size_t i = 0; i < characteristics.softwareEnforced.getParameters().size(); ++i) {
1953 auto algo =
1954 authorizationValue(TAG_ALGORITHM, characteristics.softwareEnforced.getParameters()[i]);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001955 if (algo.isOk()) return algo.value();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001956 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001957 return {};
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001958}
1959
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001960void KeyStoreService::addLegacyBeginParams(const String16& name, AuthorizationSet* params) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001961 // All legacy keys are DIGEST_NONE/PAD_NONE.
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001962 params->push_back(TAG_DIGEST, Digest::NONE);
1963 params->push_back(TAG_PADDING, PaddingMode::NONE);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001964
1965 // Look up the algorithm of the key.
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001966 ::android::security::keymaster::KeyCharacteristics characteristics;
1967 int32_t result;
1968 auto rc = getKeyCharacteristics(name, ::android::security::keymaster::KeymasterBlob(),
1969 ::android::security::keymaster::KeymasterBlob(), UID_SELF,
1970 &characteristics, &result);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001971 if (!rc.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001972 ALOGE("Failed to get key characteristics");
1973 return;
1974 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001975 auto algorithm = getKeyAlgoritmFromKeyCharacteristics(characteristics);
1976 if (!algorithm.isOk()) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001977 ALOGE("getKeyCharacteristics did not include KM_TAG_ALGORITHM");
1978 return;
1979 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001980 params->push_back(TAG_ALGORITHM, algorithm.value());
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001981}
1982
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001983KeyStoreServiceReturnCode KeyStoreService::doLegacySignVerify(const String16& name,
1984 const hidl_vec<uint8_t>& data,
1985 hidl_vec<uint8_t>* out,
1986 const hidl_vec<uint8_t>& signature,
1987 KeyPurpose purpose) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001988
1989 std::basic_stringstream<uint8_t> outBuffer;
1990 OperationResult result;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001991 AuthorizationSet inArgs;
1992 addLegacyBeginParams(name, &inArgs);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07001993 sp<IBinder> appToken(new BBinder);
1994 sp<IBinder> token;
1995
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07001996 begin(appToken, name, static_cast<int32_t>(purpose), true,
1997 KeymasterArguments(inArgs.hidl_data()), ::std::vector<uint8_t>(), UID_SELF, &result);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01001998 if (!result.resultCode.isOk()) {
1999 if (result.resultCode == ResponseCode::KEY_NOT_FOUND) {
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002000 ALOGW("Key not found");
2001 } else {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002002 ALOGW("Error in begin: %d", int32_t(result.resultCode));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002003 }
2004 return translateResultToLegacyResult(result.resultCode);
2005 }
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002006 inArgs.Clear();
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002007 token = result.token;
2008 size_t consumed = 0;
2009 size_t lastConsumed = 0;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002010 hidl_vec<uint8_t> data_view;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002011 do {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002012 data_view.setToExternal(const_cast<uint8_t*>(&data[consumed]), data.size() - consumed);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07002013 update(token, KeymasterArguments(inArgs.hidl_data()), data_view, &result);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002014 if (result.resultCode != ResponseCode::NO_ERROR) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002015 ALOGW("Error in update: %d", int32_t(result.resultCode));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002016 return translateResultToLegacyResult(result.resultCode);
2017 }
2018 if (out) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002019 outBuffer.write(&result.data[0], result.data.size());
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002020 }
2021 lastConsumed = result.inputConsumed;
2022 consumed += lastConsumed;
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002023 } while (consumed < data.size() && lastConsumed > 0);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002024
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002025 if (consumed != data.size()) {
2026 ALOGW("Not all data consumed. Consumed %zu of %zu", consumed, data.size());
2027 return ResponseCode::SYSTEM_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002028 }
2029
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07002030 finish(token, KeymasterArguments(inArgs.hidl_data()), signature, ::std::vector<uint8_t>(),
2031 &result);
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002032 if (result.resultCode != ResponseCode::NO_ERROR) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002033 ALOGW("Error in finish: %d", int32_t(result.resultCode));
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002034 return translateResultToLegacyResult(result.resultCode);
2035 }
2036 if (out) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002037 outBuffer.write(&result.data[0], result.data.size());
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002038 }
2039
2040 if (out) {
2041 auto buf = outBuffer.str();
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002042 out->resize(buf.size());
2043 memcpy(&(*out)[0], buf.data(), out->size());
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002044 }
2045
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002046 return ResponseCode::NO_ERROR;
Shawn Willdenc1d1fee2016-01-26 22:44:56 -07002047}
2048
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002049KeyStoreServiceReturnCode KeyStoreService::upgradeKeyBlob(const String16& name, uid_t uid,
2050 const AuthorizationSet& params,
2051 Blob* blob) {
Shawn Willden98c59162016-03-20 09:10:18 -06002052 // Read the blob rather than assuming the caller provided the right name/uid/blob triplet.
2053 String8 name8(name);
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07002054 KeyStoreServiceReturnCode responseCode =
2055 mKeyStore->getKeyForName(blob, name8, uid, TYPE_KEYMASTER_10);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002056 if (responseCode != ResponseCode::NO_ERROR) {
Shawn Willden98c59162016-03-20 09:10:18 -06002057 return responseCode;
2058 }
Rubin Xu7675c9f2017-03-15 19:26:52 +00002059 ALOGI("upgradeKeyBlob %s %d", name8.string(), uid);
Shawn Willden98c59162016-03-20 09:10:18 -06002060
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002061 auto hidlKey = blob2hidlVec(*blob);
2062 auto& dev = mKeyStore->getDevice(*blob);
Shawn Willden98c59162016-03-20 09:10:18 -06002063
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002064 KeyStoreServiceReturnCode error;
Dmitry Dementyeva447b3c2017-10-27 23:09:53 -07002065 auto hidlCb = [&](ErrorCode ret, const ::std::vector<uint8_t>& upgradedKeyBlob) {
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002066 error = ret;
2067 if (!error.isOk()) {
2068 return;
2069 }
2070
Janis Danisevskisaf7783f2017-09-21 11:29:47 -07002071 auto filename = mKeyStore->getBlobFileNameIfExists(name8, uid, ::TYPE_KEYMASTER_10);
2072 if (!filename.isOk()) {
2073 ALOGI("trying to upgrade a non existing blob");
2074 return;
2075 }
2076 error = mKeyStore->del(filename.value().string(), ::TYPE_ANY, get_user_id(uid));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002077 if (!error.isOk()) {
Rubin Xu7675c9f2017-03-15 19:26:52 +00002078 ALOGI("upgradeKeyBlob keystore->del failed %d", (int)error);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002079 return;
2080 }
2081
2082 Blob newBlob(&upgradedKeyBlob[0], upgradedKeyBlob.size(), nullptr /* info */,
2083 0 /* infoLength */, ::TYPE_KEYMASTER_10);
2084 newBlob.setFallback(blob->isFallback());
2085 newBlob.setEncrypted(blob->isEncrypted());
Rubin Xu67899de2017-04-21 19:15:13 +01002086 newBlob.setSuperEncrypted(blob->isSuperEncrypted());
2087 newBlob.setCriticalToDeviceEncryption(blob->isCriticalToDeviceEncryption());
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002088
Janis Danisevskisaf7783f2017-09-21 11:29:47 -07002089 error = mKeyStore->put(filename.value().string(), &newBlob, get_user_id(uid));
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002090 if (!error.isOk()) {
Rubin Xu7675c9f2017-03-15 19:26:52 +00002091 ALOGI("upgradeKeyBlob keystore->put failed %d", (int)error);
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002092 return;
2093 }
2094
2095 // Re-read blob for caller. We can't use newBlob because writing it modified it.
2096 error = mKeyStore->getKeyForName(blob, name8, uid, TYPE_KEYMASTER_10);
2097 };
2098
2099 KeyStoreServiceReturnCode rc =
2100 KS_HANDLE_HIDL_ERROR(dev->upgradeKey(hidlKey, params.hidl_data(), hidlCb));
2101 if (!rc.isOk()) {
Shawn Willden98c59162016-03-20 09:10:18 -06002102 return rc;
2103 }
2104
Janis Danisevskisc7a9fa22016-10-13 18:43:45 +01002105 return error;
Shawn Willden98c59162016-03-20 09:10:18 -06002106}
2107
Shawn Willdene2a7b522017-04-11 09:27:40 -06002108} // namespace keystore