Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 1 | /* |
| 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 Crowley | 0323afd | 2016-03-15 17:04:39 -0700 | [diff] [blame] | 17 | #ifndef ANDROID_VOLD_KEYMASTER_H |
| 18 | #define ANDROID_VOLD_KEYMASTER_H |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 19 | |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 20 | #include "KeyBuffer.h" |
| 21 | |
Paul Crowley | 0323afd | 2016-03-15 17:04:39 -0700 | [diff] [blame] | 22 | #include <memory> |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 23 | #include <string> |
Paul Crowley | 0323afd | 2016-03-15 17:04:39 -0700 | [diff] [blame] | 24 | #include <utility> |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 25 | |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 26 | #include <android/hardware/keymaster/3.0/IKeymasterDevice.h> |
Steven Moreland | 25e8b4b | 2017-05-01 12:45:32 -0700 | [diff] [blame] | 27 | #include <android-base/macros.h> |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 28 | #include <keystore/authorization_set.h> |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 29 | |
| 30 | namespace android { |
| 31 | namespace vold { |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 32 | using ::android::hardware::keymaster::V3_0::IKeymasterDevice; |
| 33 | using ::keystore::ErrorCode; |
| 34 | using ::keystore::KeyPurpose; |
| 35 | using ::keystore::AuthorizationSet; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 36 | |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 37 | // C++ wrappers to the Keymaster hidl interface. |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 38 | // This is tailored to the needs of KeyStorage, but could be extended to be |
| 39 | // a more general interface. |
| 40 | |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 41 | // Wrapper for a Keymaster operation handle representing an |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 42 | // ongoing Keymaster operation. Aborts the operation |
| 43 | // in the destructor if it is unfinished. Methods log failures |
| 44 | // to LOG(ERROR). |
| 45 | class KeymasterOperation { |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 46 | public: |
Paul Crowley | 0323afd | 2016-03-15 17:04:39 -0700 | [diff] [blame] | 47 | ~KeymasterOperation(); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 48 | // Is this instance valid? This is false if creation fails, and becomes |
| 49 | // false on finish or if an update fails. |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 50 | explicit operator bool() { return mError == ErrorCode::OK; } |
Wei Wang | 4375f1b | 2017-02-24 17:43:01 -0800 | [diff] [blame] | 51 | ErrorCode errorCode() { return mError; } |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 52 | // Call "update" repeatedly until all of the input is consumed, and |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 53 | // concatenate the output. Return true on success. |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 54 | template <class TI, class TO> |
| 55 | bool updateCompletely(TI& input, TO* output) { |
| 56 | if (output) output->clear(); |
| 57 | return updateCompletely(input.data(), input.size(), [&](const char* b, size_t n) { |
| 58 | if (output) std::copy(b, b+n, std::back_inserter(*output)); |
| 59 | }); |
| 60 | } |
| 61 | |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 62 | // Finish and write the output to this string, unless pointer is null. |
| 63 | bool finish(std::string* output); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 64 | // Move constructor |
| 65 | KeymasterOperation(KeymasterOperation&& rhs) { |
Paul Crowley | 0323afd | 2016-03-15 17:04:39 -0700 | [diff] [blame] | 66 | mDevice = std::move(rhs.mDevice); |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 67 | mOpHandle = std::move(rhs.mOpHandle); |
| 68 | mError = std::move(rhs.mError); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 69 | } |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 70 | // Construct an object in an error state for error returns |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 71 | KeymasterOperation() |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 72 | : mDevice{nullptr}, mOpHandle{0}, |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 73 | mError {ErrorCode::UNKNOWN_ERROR} {} |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 74 | // Move Assignment |
| 75 | KeymasterOperation& operator= (KeymasterOperation&& rhs) { |
| 76 | mDevice = std::move(rhs.mDevice); |
| 77 | mOpHandle = std::move(rhs.mOpHandle); |
| 78 | mError = std::move(rhs.mError); |
| 79 | rhs.mError = ErrorCode::UNKNOWN_ERROR; |
| 80 | rhs.mOpHandle = 0; |
| 81 | return *this; |
| 82 | } |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 83 | |
| 84 | private: |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 85 | KeymasterOperation(const sp<IKeymasterDevice>& d, uint64_t h) |
| 86 | : mDevice{d}, mOpHandle{h}, mError {ErrorCode::OK} {} |
| 87 | KeymasterOperation(ErrorCode error) |
| 88 | : mDevice{nullptr}, mOpHandle{0}, |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 89 | mError {error} {} |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 90 | |
| 91 | bool updateCompletely(const char* input, size_t inputLen, |
| 92 | const std::function<void(const char*, size_t)> consumer); |
| 93 | |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 94 | sp<IKeymasterDevice> mDevice; |
| 95 | uint64_t mOpHandle; |
| 96 | ErrorCode mError; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 97 | DISALLOW_COPY_AND_ASSIGN(KeymasterOperation); |
| 98 | friend class Keymaster; |
| 99 | }; |
| 100 | |
Paul Crowley | 0323afd | 2016-03-15 17:04:39 -0700 | [diff] [blame] | 101 | // Wrapper for a Keymaster device for methods that start a KeymasterOperation or are not |
| 102 | // part of one. |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 103 | class Keymaster { |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 104 | public: |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 105 | Keymaster(); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 106 | // false if we failed to open the keymaster device. |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 107 | explicit operator bool() { return mDevice.get() != nullptr; } |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 108 | // Generate a key in the keymaster from the given params. |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 109 | bool generateKey(const AuthorizationSet& inParams, std::string* key); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 110 | // If the keymaster supports it, permanently delete a key. |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 111 | bool deleteKey(const std::string& key); |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 112 | // Replace stored key blob in response to KM_ERROR_KEY_REQUIRES_UPGRADE. |
| 113 | bool upgradeKey(const std::string& oldKey, const AuthorizationSet& inParams, |
| 114 | std::string* newKey); |
| 115 | // Begin a new cryptographic operation, collecting output parameters if pointer is non-null |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 116 | KeymasterOperation begin(KeyPurpose purpose, const std::string& key, |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 117 | const AuthorizationSet& inParams, AuthorizationSet* outParams); |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 118 | bool isSecure(); |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 119 | |
| 120 | private: |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 121 | sp<hardware::keymaster::V3_0::IKeymasterDevice> mDevice; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 122 | DISALLOW_COPY_AND_ASSIGN(Keymaster); |
| 123 | }; |
| 124 | |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 125 | } // namespace vold |
| 126 | } // namespace android |
| 127 | |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame^] | 128 | // FIXME no longer needed now cryptfs is in C++. |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 129 | |
| 130 | /* |
| 131 | * The following functions provide C bindings to keymaster services |
| 132 | * needed by cryptfs scrypt. The compatibility check checks whether |
| 133 | * the keymaster implementation is considered secure, i.e., TEE backed. |
| 134 | * The create_key function generates an RSA key for signing. |
| 135 | * The sign_object function signes an object with the given keymaster |
| 136 | * key. |
| 137 | */ |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 138 | |
| 139 | int keymaster_compatibility_cryptfs_scrypt(); |
| 140 | int keymaster_create_key_for_cryptfs_scrypt(uint32_t rsa_key_size, |
| 141 | uint64_t rsa_exponent, |
| 142 | uint32_t ratelimit, |
| 143 | uint8_t* key_buffer, |
| 144 | uint32_t key_buffer_size, |
| 145 | uint32_t* key_out_size); |
| 146 | |
| 147 | int keymaster_sign_object_for_cryptfs_scrypt(const uint8_t* key_blob, |
| 148 | size_t key_blob_size, |
| 149 | uint32_t ratelimit, |
| 150 | const uint8_t* object, |
| 151 | const size_t object_size, |
| 152 | uint8_t** signature_buffer, |
| 153 | size_t* signature_buffer_size); |
| 154 | |
Janis Danisevskis | 015ec30 | 2017-01-31 11:31:08 +0000 | [diff] [blame] | 155 | |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 156 | #endif |