blob: 6ed52766aad968e08196b31440f0f952df677bae [file] [log] [blame]
Paul Crowley1ef25582016-01-21 20:26:12 +00001/*
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
Paul Crowley0323afd2016-03-15 17:04:39 -070017#ifndef ANDROID_VOLD_KEYMASTER_H
18#define ANDROID_VOLD_KEYMASTER_H
Paul Crowley1ef25582016-01-21 20:26:12 +000019
Pavel Grafove2e2d302017-08-01 17:15:53 +010020#include "KeyBuffer.h"
21
Paul Crowley0323afd2016-03-15 17:04:39 -070022#include <memory>
Paul Crowley1ef25582016-01-21 20:26:12 +000023#include <string>
Paul Crowley0323afd2016-03-15 17:04:39 -070024#include <utility>
Paul Crowley1ef25582016-01-21 20:26:12 +000025
Janis Danisevskis8e537b82016-10-26 14:27:10 +010026#include <android/hardware/keymaster/3.0/IKeymasterDevice.h>
Steven Moreland25e8b4b2017-05-01 12:45:32 -070027#include <android-base/macros.h>
Shawn Willdenf4527742017-11-09 15:59:39 -070028
29#include "authorization_set.h"
Paul Crowley1ef25582016-01-21 20:26:12 +000030
31namespace android {
32namespace vold {
Janis Danisevskis8e537b82016-10-26 14:27:10 +010033using ::android::hardware::keymaster::V3_0::IKeymasterDevice;
34using ::keystore::ErrorCode;
35using ::keystore::KeyPurpose;
36using ::keystore::AuthorizationSet;
Paul Crowley1ef25582016-01-21 20:26:12 +000037
Janis Danisevskis8e537b82016-10-26 14:27:10 +010038// C++ wrappers to the Keymaster hidl interface.
Paul Crowley1ef25582016-01-21 20:26:12 +000039// This is tailored to the needs of KeyStorage, but could be extended to be
40// a more general interface.
41
Janis Danisevskis8e537b82016-10-26 14:27:10 +010042// Wrapper for a Keymaster operation handle representing an
Paul Crowley1ef25582016-01-21 20:26:12 +000043// ongoing Keymaster operation. Aborts the operation
44// in the destructor if it is unfinished. Methods log failures
45// to LOG(ERROR).
46class KeymasterOperation {
Paul Crowleydf528a72016-03-09 09:31:37 -080047 public:
Paul Crowley0323afd2016-03-15 17:04:39 -070048 ~KeymasterOperation();
Paul Crowley1ef25582016-01-21 20:26:12 +000049 // Is this instance valid? This is false if creation fails, and becomes
50 // false on finish or if an update fails.
Janis Danisevskis8e537b82016-10-26 14:27:10 +010051 explicit operator bool() { return mError == ErrorCode::OK; }
Wei Wang4375f1b2017-02-24 17:43:01 -080052 ErrorCode errorCode() { return mError; }
Paul Crowley13ffd8e2016-01-27 14:30:22 +000053 // Call "update" repeatedly until all of the input is consumed, and
Paul Crowley1ef25582016-01-21 20:26:12 +000054 // concatenate the output. Return true on success.
Pavel Grafove2e2d302017-08-01 17:15:53 +010055 template <class TI, class TO>
56 bool updateCompletely(TI& input, TO* output) {
57 if (output) output->clear();
58 return updateCompletely(input.data(), input.size(), [&](const char* b, size_t n) {
59 if (output) std::copy(b, b+n, std::back_inserter(*output));
60 });
61 }
62
Paul Crowleydff8c722016-05-16 08:14:56 -070063 // Finish and write the output to this string, unless pointer is null.
64 bool finish(std::string* output);
Paul Crowley1ef25582016-01-21 20:26:12 +000065 // Move constructor
66 KeymasterOperation(KeymasterOperation&& rhs) {
Paul Crowley0323afd2016-03-15 17:04:39 -070067 mDevice = std::move(rhs.mDevice);
Paul Crowleydff8c722016-05-16 08:14:56 -070068 mOpHandle = std::move(rhs.mOpHandle);
69 mError = std::move(rhs.mError);
Paul Crowley1ef25582016-01-21 20:26:12 +000070 }
Paul Crowleydff8c722016-05-16 08:14:56 -070071 // Construct an object in an error state for error returns
Janis Danisevskis8e537b82016-10-26 14:27:10 +010072 KeymasterOperation()
Janis Danisevskis015ec302017-01-31 11:31:08 +000073 : mDevice{nullptr}, mOpHandle{0},
Janis Danisevskis8e537b82016-10-26 14:27:10 +010074 mError {ErrorCode::UNKNOWN_ERROR} {}
Janis Danisevskis015ec302017-01-31 11:31:08 +000075 // Move Assignment
76 KeymasterOperation& operator= (KeymasterOperation&& rhs) {
77 mDevice = std::move(rhs.mDevice);
78 mOpHandle = std::move(rhs.mOpHandle);
79 mError = std::move(rhs.mError);
80 rhs.mError = ErrorCode::UNKNOWN_ERROR;
81 rhs.mOpHandle = 0;
82 return *this;
83 }
Paul Crowleydf528a72016-03-09 09:31:37 -080084
85 private:
Janis Danisevskis8e537b82016-10-26 14:27:10 +010086 KeymasterOperation(const sp<IKeymasterDevice>& d, uint64_t h)
87 : mDevice{d}, mOpHandle{h}, mError {ErrorCode::OK} {}
88 KeymasterOperation(ErrorCode error)
89 : mDevice{nullptr}, mOpHandle{0},
Paul Crowleydff8c722016-05-16 08:14:56 -070090 mError {error} {}
Pavel Grafove2e2d302017-08-01 17:15:53 +010091
92 bool updateCompletely(const char* input, size_t inputLen,
93 const std::function<void(const char*, size_t)> consumer);
94
Janis Danisevskis8e537b82016-10-26 14:27:10 +010095 sp<IKeymasterDevice> mDevice;
96 uint64_t mOpHandle;
97 ErrorCode mError;
Paul Crowley1ef25582016-01-21 20:26:12 +000098 DISALLOW_COPY_AND_ASSIGN(KeymasterOperation);
99 friend class Keymaster;
100};
101
Paul Crowley0323afd2016-03-15 17:04:39 -0700102// Wrapper for a Keymaster device for methods that start a KeymasterOperation or are not
103// part of one.
Paul Crowley1ef25582016-01-21 20:26:12 +0000104class Keymaster {
Paul Crowleydf528a72016-03-09 09:31:37 -0800105 public:
Paul Crowley1ef25582016-01-21 20:26:12 +0000106 Keymaster();
Paul Crowley1ef25582016-01-21 20:26:12 +0000107 // false if we failed to open the keymaster device.
Janis Danisevskis8e537b82016-10-26 14:27:10 +0100108 explicit operator bool() { return mDevice.get() != nullptr; }
Paul Crowley1ef25582016-01-21 20:26:12 +0000109 // Generate a key in the keymaster from the given params.
Paul Crowleydf528a72016-03-09 09:31:37 -0800110 bool generateKey(const AuthorizationSet& inParams, std::string* key);
Paul Crowley1ef25582016-01-21 20:26:12 +0000111 // If the keymaster supports it, permanently delete a key.
Paul Crowleydf528a72016-03-09 09:31:37 -0800112 bool deleteKey(const std::string& key);
Paul Crowleydff8c722016-05-16 08:14:56 -0700113 // Replace stored key blob in response to KM_ERROR_KEY_REQUIRES_UPGRADE.
114 bool upgradeKey(const std::string& oldKey, const AuthorizationSet& inParams,
115 std::string* newKey);
116 // Begin a new cryptographic operation, collecting output parameters if pointer is non-null
Janis Danisevskis8e537b82016-10-26 14:27:10 +0100117 KeymasterOperation begin(KeyPurpose purpose, const std::string& key,
Paul Crowleydf528a72016-03-09 09:31:37 -0800118 const AuthorizationSet& inParams, AuthorizationSet* outParams);
Janis Danisevskis015ec302017-01-31 11:31:08 +0000119 bool isSecure();
Paul Crowleydf528a72016-03-09 09:31:37 -0800120
121 private:
Janis Danisevskis8e537b82016-10-26 14:27:10 +0100122 sp<hardware::keymaster::V3_0::IKeymasterDevice> mDevice;
Paul Crowley1ef25582016-01-21 20:26:12 +0000123 DISALLOW_COPY_AND_ASSIGN(Keymaster);
124};
125
Paul Crowley1ef25582016-01-21 20:26:12 +0000126} // namespace vold
127} // namespace android
128
Paul Crowley3b71fc52017-10-09 10:55:21 -0700129// FIXME no longer needed now cryptfs is in C++.
Janis Danisevskis015ec302017-01-31 11:31:08 +0000130
131/*
132 * The following functions provide C bindings to keymaster services
133 * needed by cryptfs scrypt. The compatibility check checks whether
134 * the keymaster implementation is considered secure, i.e., TEE backed.
135 * The create_key function generates an RSA key for signing.
136 * The sign_object function signes an object with the given keymaster
137 * key.
138 */
Janis Danisevskis015ec302017-01-31 11:31:08 +0000139
Paul Crowley73473332017-11-21 15:43:51 -0800140/* Return values for keymaster_sign_object_for_cryptfs_scrypt */
141
142enum class KeymasterSignResult {
143 ok = 0,
144 error = -1,
145 upgrade = -2,
146};
147
Janis Danisevskis015ec302017-01-31 11:31:08 +0000148int keymaster_compatibility_cryptfs_scrypt();
149int keymaster_create_key_for_cryptfs_scrypt(uint32_t rsa_key_size,
150 uint64_t rsa_exponent,
151 uint32_t ratelimit,
152 uint8_t* key_buffer,
153 uint32_t key_buffer_size,
154 uint32_t* key_out_size);
155
Paul Crowley73473332017-11-21 15:43:51 -0800156int keymaster_upgrade_key_for_cryptfs_scrypt(uint32_t rsa_key_size, uint64_t rsa_exponent,
157 uint32_t ratelimit, const uint8_t* key_blob,
158 size_t key_blob_size, uint8_t* key_buffer,
159 uint32_t key_buffer_size, uint32_t* key_out_size);
160
161KeymasterSignResult keymaster_sign_object_for_cryptfs_scrypt(
162 const uint8_t* key_blob, size_t key_blob_size, uint32_t ratelimit, const uint8_t* object,
163 const size_t object_size, uint8_t** signature_buffer, size_t* signature_buffer_size);
Janis Danisevskis015ec302017-01-31 11:31:08 +0000164
Janis Danisevskis015ec302017-01-31 11:31:08 +0000165
Paul Crowley1ef25582016-01-21 20:26:12 +0000166#endif