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