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 | |
| 17 | #include "KeyStorage.h" |
| 18 | |
Daniel Rosenberg | d2906b8 | 2019-06-07 14:18:14 -0700 | [diff] [blame] | 19 | #include "Checkpoint.h" |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 20 | #include "Keymaster.h" |
Paul Crowley | 63c18d3 | 2016-02-10 14:02:47 +0000 | [diff] [blame] | 21 | #include "ScryptParameters.h" |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 22 | #include "Utils.h" |
| 23 | |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 24 | #include <algorithm> |
Seth Moore | 5a43d61 | 2021-01-19 17:51:51 +0000 | [diff] [blame] | 25 | #include <memory> |
| 26 | #include <mutex> |
Daniel Rosenberg | a48730a | 2019-06-06 20:38:38 -0700 | [diff] [blame] | 27 | #include <thread> |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 28 | #include <vector> |
| 29 | |
| 30 | #include <errno.h> |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 31 | #include <stdio.h> |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 32 | #include <sys/stat.h> |
| 33 | #include <sys/types.h> |
| 34 | #include <sys/wait.h> |
| 35 | #include <unistd.h> |
| 36 | |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 37 | #include <openssl/err.h> |
| 38 | #include <openssl/evp.h> |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 39 | #include <openssl/sha.h> |
| 40 | |
| 41 | #include <android-base/file.h> |
| 42 | #include <android-base/logging.h> |
Daniel Rosenberg | a48730a | 2019-06-06 20:38:38 -0700 | [diff] [blame] | 43 | #include <android-base/properties.h> |
Daniel Rosenberg | d2906b8 | 2019-06-07 14:18:14 -0700 | [diff] [blame] | 44 | #include <android-base/unique_fd.h> |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 45 | |
Paul Crowley | 63c18d3 | 2016-02-10 14:02:47 +0000 | [diff] [blame] | 46 | #include <cutils/properties.h> |
| 47 | |
Paul Crowley | 320e5e1 | 2016-03-04 14:07:05 -0800 | [diff] [blame] | 48 | #include <hardware/hw_auth_token.h> |
| 49 | |
Paul Crowley | 63c18d3 | 2016-02-10 14:02:47 +0000 | [diff] [blame] | 50 | extern "C" { |
| 51 | |
| 52 | #include "crypto_scrypt.h" |
Paul Crowley | 63c18d3 | 2016-02-10 14:02:47 +0000 | [diff] [blame] | 53 | } |
| 54 | |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 55 | namespace android { |
| 56 | namespace vold { |
| 57 | |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 58 | const KeyAuthentication kEmptyAuthentication{""}; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 59 | |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 60 | static constexpr size_t AES_KEY_BYTES = 32; |
| 61 | static constexpr size_t GCM_NONCE_BYTES = 12; |
| 62 | static constexpr size_t GCM_MAC_BYTES = 16; |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 63 | static constexpr size_t SALT_BYTES = 1 << 4; |
| 64 | static constexpr size_t SECDISCARDABLE_BYTES = 1 << 14; |
| 65 | static constexpr size_t STRETCHED_BYTES = 1 << 6; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 66 | |
Shawn Willden | 785365b | 2018-01-20 09:37:36 -0700 | [diff] [blame] | 67 | static constexpr uint32_t AUTH_TIMEOUT = 30; // Seconds |
Paul Crowley | b3de337 | 2016-04-27 12:58:41 -0700 | [diff] [blame] | 68 | |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 69 | static const char* kCurrentVersion = "1"; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 70 | static const char* kRmPath = "/system/bin/rm"; |
| 71 | static const char* kSecdiscardPath = "/system/bin/secdiscard"; |
Paul Crowley | 63c18d3 | 2016-02-10 14:02:47 +0000 | [diff] [blame] | 72 | static const char* kStretch_none = "none"; |
| 73 | static const char* kStretch_nopassword = "nopassword"; |
| 74 | static const std::string kStretchPrefix_scrypt = "scrypt "; |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 75 | static const char* kHashPrefix_secdiscardable = "Android secdiscardable SHA512"; |
| 76 | static const char* kHashPrefix_keygen = "Android key wrapping key generation SHA512"; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 77 | static const char* kFn_encrypted_key = "encrypted_key"; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 78 | static const char* kFn_keymaster_key_blob = "keymaster_key_blob"; |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 79 | static const char* kFn_keymaster_key_blob_upgraded = "keymaster_key_blob_upgraded"; |
Paul Crowley | 63c18d3 | 2016-02-10 14:02:47 +0000 | [diff] [blame] | 80 | static const char* kFn_salt = "salt"; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 81 | static const char* kFn_secdiscardable = "secdiscardable"; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 82 | static const char* kFn_stretching = "stretching"; |
| 83 | static const char* kFn_version = "version"; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 84 | |
Seth Moore | 5a43d61 | 2021-01-19 17:51:51 +0000 | [diff] [blame] | 85 | namespace { |
| 86 | |
| 87 | // Storage binding info for ensuring key encryption keys include a |
| 88 | // platform-provided seed in their derivation. |
| 89 | struct StorageBindingInfo { |
| 90 | enum class State { |
| 91 | UNINITIALIZED, |
| 92 | IN_USE, // key storage keys are bound to seed |
| 93 | NOT_USED, // key storage keys are NOT bound to seed |
| 94 | }; |
| 95 | |
| 96 | // Binding seed mixed into all key storage keys. |
| 97 | std::vector<uint8_t> seed; |
| 98 | |
| 99 | // State tracker for the key storage key binding. |
| 100 | State state = State::UNINITIALIZED; |
| 101 | |
| 102 | std::mutex guard; |
| 103 | }; |
| 104 | |
| 105 | // Never freed as the dtor is non-trivial. |
| 106 | StorageBindingInfo& storage_binding_info = *new StorageBindingInfo; |
| 107 | |
| 108 | } // namespace |
| 109 | |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 110 | static bool checkSize(const std::string& kind, size_t actual, size_t expected) { |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 111 | if (actual != expected) { |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 112 | LOG(ERROR) << "Wrong number of bytes in " << kind << ", expected " << expected << " got " |
| 113 | << actual; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 114 | return false; |
| 115 | } |
| 116 | return true; |
| 117 | } |
| 118 | |
Paul Crowley | 26a5388 | 2017-10-26 11:16:39 -0700 | [diff] [blame] | 119 | static void hashWithPrefix(char const* prefix, const std::string& tohash, std::string* res) { |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 120 | SHA512_CTX c; |
| 121 | |
| 122 | SHA512_Init(&c); |
| 123 | // Personalise the hashing by introducing a fixed prefix. |
| 124 | // Hashing applications should use personalization except when there is a |
| 125 | // specific reason not to; see section 4.11 of https://www.schneier.com/skein1.3.pdf |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 126 | std::string hashingPrefix = prefix; |
| 127 | hashingPrefix.resize(SHA512_CBLOCK); |
| 128 | SHA512_Update(&c, hashingPrefix.data(), hashingPrefix.size()); |
| 129 | SHA512_Update(&c, tohash.data(), tohash.size()); |
Paul Crowley | 26a5388 | 2017-10-26 11:16:39 -0700 | [diff] [blame] | 130 | res->assign(SHA512_DIGEST_LENGTH, '\0'); |
| 131 | SHA512_Final(reinterpret_cast<uint8_t*>(&(*res)[0]), &c); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 132 | } |
| 133 | |
Eric Biggers | b2024e0 | 2021-03-15 12:44:36 -0700 | [diff] [blame] | 134 | // Generates a keymaster key, using rollback resistance if supported. |
| 135 | static bool generateKeymasterKey(Keymaster& keymaster, |
| 136 | const km::AuthorizationSetBuilder& paramBuilder, |
| 137 | std::string* key) { |
| 138 | auto paramsWithRollback = paramBuilder; |
| 139 | paramsWithRollback.Authorization(km::TAG_ROLLBACK_RESISTANCE); |
| 140 | |
| 141 | if (!keymaster.generateKey(paramsWithRollback, key)) { |
| 142 | LOG(WARNING) << "Failed to generate rollback-resistant key. This is expected if keymaster " |
| 143 | "doesn't support rollback resistance. Falling back to " |
| 144 | "non-rollback-resistant key."; |
| 145 | if (!keymaster.generateKey(paramBuilder, key)) return false; |
| 146 | } |
| 147 | return true; |
| 148 | } |
| 149 | |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 150 | static bool generateKeyStorageKey(Keymaster& keymaster, const std::string& appId, |
| 151 | std::string* key) { |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame] | 152 | auto paramBuilder = km::AuthorizationSetBuilder() |
| 153 | .AesEncryptionKey(AES_KEY_BYTES * 8) |
| 154 | .GcmModeMinMacLen(GCM_MAC_BYTES * 8) |
| 155 | .Authorization(km::TAG_APPLICATION_ID, appId) |
| 156 | .Authorization(km::TAG_NO_AUTH_REQUIRED); |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 157 | LOG(DEBUG) << "Generating \"key storage\" key that doesn't need auth token"; |
Eric Biggers | b2024e0 | 2021-03-15 12:44:36 -0700 | [diff] [blame] | 158 | return generateKeymasterKey(keymaster, paramBuilder, key); |
Paul Crowley | 320e5e1 | 2016-03-04 14:07:05 -0800 | [diff] [blame] | 159 | } |
| 160 | |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 161 | bool generateWrappedStorageKey(KeyBuffer* key) { |
| 162 | Keymaster keymaster; |
| 163 | if (!keymaster) return false; |
| 164 | std::string key_temp; |
| 165 | auto paramBuilder = km::AuthorizationSetBuilder().AesEncryptionKey(AES_KEY_BYTES * 8); |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 166 | paramBuilder.Authorization(km::TAG_STORAGE_KEY); |
Eric Biggers | b2024e0 | 2021-03-15 12:44:36 -0700 | [diff] [blame] | 167 | if (!generateKeymasterKey(keymaster, paramBuilder, &key_temp)) return false; |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 168 | *key = KeyBuffer(key_temp.size()); |
| 169 | memcpy(reinterpret_cast<void*>(key->data()), key_temp.c_str(), key->size()); |
| 170 | return true; |
| 171 | } |
| 172 | |
| 173 | bool exportWrappedStorageKey(const KeyBuffer& kmKey, KeyBuffer* key) { |
| 174 | Keymaster keymaster; |
| 175 | if (!keymaster) return false; |
| 176 | std::string key_temp; |
| 177 | |
| 178 | if (!keymaster.exportKey(kmKey, &key_temp)) return false; |
| 179 | *key = KeyBuffer(key_temp.size()); |
| 180 | memcpy(reinterpret_cast<void*>(key->data()), key_temp.c_str(), key->size()); |
| 181 | return true; |
| 182 | } |
| 183 | |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 184 | static km::AuthorizationSet beginParams(const std::string& appId) { |
| 185 | return km::AuthorizationSetBuilder() |
| 186 | .GcmModeMacLen(GCM_MAC_BYTES * 8) |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame] | 187 | .Authorization(km::TAG_APPLICATION_ID, appId); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 188 | } |
| 189 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 190 | static bool readFileToString(const std::string& filename, std::string* result) { |
Paul Crowley | a051eb7 | 2016-03-08 16:08:32 -0800 | [diff] [blame] | 191 | if (!android::base::ReadFileToString(filename, result)) { |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 192 | PLOG(ERROR) << "Failed to read from " << filename; |
| 193 | return false; |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 194 | } |
| 195 | return true; |
| 196 | } |
| 197 | |
Paul Crowley | 26a5388 | 2017-10-26 11:16:39 -0700 | [diff] [blame] | 198 | static bool readRandomBytesOrLog(size_t count, std::string* out) { |
| 199 | auto status = ReadRandomBytes(count, *out); |
| 200 | if (status != OK) { |
| 201 | LOG(ERROR) << "Random read failed with status: " << status; |
| 202 | return false; |
| 203 | } |
| 204 | return true; |
| 205 | } |
| 206 | |
| 207 | bool createSecdiscardable(const std::string& filename, std::string* hash) { |
| 208 | std::string secdiscardable; |
| 209 | if (!readRandomBytesOrLog(SECDISCARDABLE_BYTES, &secdiscardable)) return false; |
| 210 | if (!writeStringToFile(secdiscardable, filename)) return false; |
| 211 | hashWithPrefix(kHashPrefix_secdiscardable, secdiscardable, hash); |
| 212 | return true; |
| 213 | } |
| 214 | |
| 215 | bool readSecdiscardable(const std::string& filename, std::string* hash) { |
| 216 | std::string secdiscardable; |
| 217 | if (!readFileToString(filename, &secdiscardable)) return false; |
| 218 | hashWithPrefix(kHashPrefix_secdiscardable, secdiscardable, hash); |
| 219 | return true; |
| 220 | } |
| 221 | |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 222 | static std::mutex key_upgrade_lock; |
| 223 | |
| 224 | // List of key directories that have had their Keymaster key upgraded during |
| 225 | // this boot and written to "keymaster_key_blob_upgraded", but replacing the old |
| 226 | // key was delayed due to an active checkpoint. Protected by key_upgrade_lock. |
| 227 | static std::vector<std::string> key_dirs_to_commit; |
| 228 | |
| 229 | // Replaces |dir|/keymaster_key_blob with |dir|/keymaster_key_blob_upgraded and |
| 230 | // deletes the old key from Keymaster. |
| 231 | static bool CommitUpgradedKey(Keymaster& keymaster, const std::string& dir) { |
| 232 | auto blob_file = dir + "/" + kFn_keymaster_key_blob; |
| 233 | auto upgraded_blob_file = dir + "/" + kFn_keymaster_key_blob_upgraded; |
| 234 | |
| 235 | std::string blob; |
| 236 | if (!readFileToString(blob_file, &blob)) return false; |
| 237 | |
| 238 | if (rename(upgraded_blob_file.c_str(), blob_file.c_str()) != 0) { |
| 239 | PLOG(ERROR) << "Failed to rename " << upgraded_blob_file << " to " << blob_file; |
| 240 | return false; |
Daniel Rosenberg | a48730a | 2019-06-06 20:38:38 -0700 | [diff] [blame] | 241 | } |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 242 | // Ensure that the rename is persisted before deleting the Keymaster key. |
| 243 | if (!FsyncDirectory(dir)) return false; |
| 244 | |
| 245 | if (!keymaster || !keymaster.deleteKey(blob)) { |
| 246 | LOG(WARNING) << "Failed to delete old key " << blob_file |
| 247 | << " from Keymaster; continuing anyway"; |
| 248 | // Continue on, but the space in Keymaster used by the old key won't be freed. |
| 249 | } |
| 250 | return true; |
| 251 | } |
| 252 | |
| 253 | static void DeferredCommitKeys() { |
| 254 | android::base::WaitForProperty("vold.checkpoint_committed", "1"); |
| 255 | LOG(INFO) << "Committing upgraded keys"; |
Daniel Rosenberg | a48730a | 2019-06-06 20:38:38 -0700 | [diff] [blame] | 256 | Keymaster keymaster; |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 257 | if (!keymaster) { |
| 258 | LOG(ERROR) << "Failed to open Keymaster; old keys won't be deleted from Keymaster"; |
| 259 | // Continue on, but the space in Keymaster used by the old keys won't be freed. |
| 260 | } |
| 261 | std::lock_guard<std::mutex> lock(key_upgrade_lock); |
| 262 | for (auto& dir : key_dirs_to_commit) { |
| 263 | LOG(INFO) << "Committing upgraded key " << dir; |
| 264 | CommitUpgradedKey(keymaster, dir); |
| 265 | } |
| 266 | key_dirs_to_commit.clear(); |
| 267 | } |
| 268 | |
| 269 | // Returns true if the Keymaster key in |dir| has already been upgraded and is |
| 270 | // pending being committed. Assumes that key_upgrade_lock is held. |
| 271 | static bool IsKeyCommitPending(const std::string& dir) { |
| 272 | for (const auto& dir_to_commit : key_dirs_to_commit) { |
| 273 | if (IsSameFile(dir, dir_to_commit)) return true; |
| 274 | } |
| 275 | return false; |
| 276 | } |
| 277 | |
| 278 | // Schedules the upgraded Keymaster key in |dir| to be committed later. |
| 279 | // Assumes that key_upgrade_lock is held. |
| 280 | static void ScheduleKeyCommit(const std::string& dir) { |
| 281 | if (key_dirs_to_commit.empty()) std::thread(DeferredCommitKeys).detach(); |
| 282 | key_dirs_to_commit.push_back(dir); |
| 283 | } |
| 284 | |
| 285 | static void CancelPendingKeyCommit(const std::string& dir) { |
| 286 | std::lock_guard<std::mutex> lock(key_upgrade_lock); |
| 287 | for (auto it = key_dirs_to_commit.begin(); it != key_dirs_to_commit.end(); it++) { |
| 288 | if (IsSameFile(*it, dir)) { |
| 289 | LOG(DEBUG) << "Cancelling pending commit of upgraded key " << dir |
| 290 | << " because it is being destroyed"; |
| 291 | key_dirs_to_commit.erase(it); |
| 292 | break; |
| 293 | } |
Daniel Rosenberg | a48730a | 2019-06-06 20:38:38 -0700 | [diff] [blame] | 294 | } |
| 295 | } |
| 296 | |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 297 | // Deletes a leftover upgraded key, if present. An upgraded key can be left |
| 298 | // over if an update failed, or if we rebooted before committing the key in a |
| 299 | // freak accident. Either way, we can re-upgrade the key if we need to. |
| 300 | static void DeleteUpgradedKey(Keymaster& keymaster, const std::string& path) { |
| 301 | if (pathExists(path)) { |
| 302 | LOG(DEBUG) << "Deleting leftover upgraded key " << path; |
| 303 | std::string blob; |
| 304 | if (!android::base::ReadFileToString(path, &blob)) { |
| 305 | LOG(WARNING) << "Failed to read leftover upgraded key " << path |
| 306 | << "; continuing anyway"; |
| 307 | } else if (!keymaster.deleteKey(blob)) { |
| 308 | LOG(WARNING) << "Failed to delete leftover upgraded key " << path |
| 309 | << " from Keymaster; continuing anyway"; |
| 310 | } |
| 311 | if (unlink(path.c_str()) != 0) { |
| 312 | LOG(WARNING) << "Failed to unlink leftover upgraded key " << path |
| 313 | << "; continuing anyway"; |
| 314 | } |
Daniel Rosenberg | a48730a | 2019-06-06 20:38:38 -0700 | [diff] [blame] | 315 | } |
| 316 | } |
| 317 | |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 318 | // Begins a Keymaster operation using the key stored in |dir|. |
| 319 | static KeymasterOperation BeginKeymasterOp(Keymaster& keymaster, const std::string& dir, |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 320 | const km::AuthorizationSet& keyParams, |
| 321 | const km::AuthorizationSet& opParams, |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 322 | km::AuthorizationSet* outParams) { |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 323 | km::AuthorizationSet inParams(keyParams); |
Janis Danisevskis | 8e537b8 | 2016-10-26 14:27:10 +0100 | [diff] [blame] | 324 | inParams.append(opParams.begin(), opParams.end()); |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 325 | |
| 326 | auto blob_file = dir + "/" + kFn_keymaster_key_blob; |
| 327 | auto upgraded_blob_file = dir + "/" + kFn_keymaster_key_blob_upgraded; |
| 328 | |
| 329 | std::lock_guard<std::mutex> lock(key_upgrade_lock); |
| 330 | |
| 331 | std::string blob; |
| 332 | bool already_upgraded = IsKeyCommitPending(dir); |
| 333 | if (already_upgraded) { |
| 334 | LOG(DEBUG) |
| 335 | << blob_file |
| 336 | << " was already upgraded and is waiting to be committed; using the upgraded blob"; |
| 337 | if (!readFileToString(upgraded_blob_file, &blob)) return KeymasterOperation(); |
| 338 | } else { |
| 339 | DeleteUpgradedKey(keymaster, upgraded_blob_file); |
| 340 | if (!readFileToString(blob_file, &blob)) return KeymasterOperation(); |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 341 | } |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 342 | |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame] | 343 | auto opHandle = keymaster.begin(blob, inParams, outParams); |
| 344 | if (!opHandle) return opHandle; |
| 345 | |
| 346 | // If key blob wasn't upgraded, nothing left to do. |
| 347 | if (!opHandle.getUpgradedBlob()) return opHandle; |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 348 | |
| 349 | if (already_upgraded) { |
| 350 | LOG(ERROR) << "Unexpected case; already-upgraded key " << upgraded_blob_file |
| 351 | << " still requires upgrade"; |
| 352 | return KeymasterOperation(); |
| 353 | } |
| 354 | LOG(INFO) << "Upgrading key: " << blob_file; |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame] | 355 | if (!writeStringToFile(*opHandle.getUpgradedBlob(), upgraded_blob_file)) |
| 356 | return KeymasterOperation(); |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 357 | if (cp_needsCheckpoint()) { |
| 358 | LOG(INFO) << "Wrote upgraded key to " << upgraded_blob_file |
| 359 | << "; delaying commit due to checkpoint"; |
| 360 | ScheduleKeyCommit(dir); |
| 361 | } else { |
| 362 | if (!CommitUpgradedKey(keymaster, dir)) return KeymasterOperation(); |
| 363 | LOG(INFO) << "Key upgraded: " << blob_file; |
| 364 | } |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame] | 365 | return opHandle; |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | static bool encryptWithKeymasterKey(Keymaster& keymaster, const std::string& dir, |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 369 | const km::AuthorizationSet& keyParams, |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 370 | const KeyBuffer& message, std::string* ciphertext) { |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame] | 371 | km::AuthorizationSet opParams = |
| 372 | km::AuthorizationSetBuilder().Authorization(km::TAG_PURPOSE, km::KeyPurpose::ENCRYPT); |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 373 | km::AuthorizationSet outParams; |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame] | 374 | auto opHandle = BeginKeymasterOp(keymaster, dir, keyParams, opParams, &outParams); |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 375 | if (!opHandle) return false; |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 376 | auto nonceBlob = outParams.GetTagValue(km::TAG_NONCE); |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame] | 377 | if (!nonceBlob) { |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 378 | LOG(ERROR) << "GCM encryption but no nonce generated"; |
| 379 | return false; |
| 380 | } |
| 381 | // nonceBlob here is just a pointer into existing data, must not be freed |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame] | 382 | std::string nonce(nonceBlob.value().get().begin(), nonceBlob.value().get().end()); |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 383 | if (!checkSize("nonce", nonce.size(), GCM_NONCE_BYTES)) return false; |
| 384 | std::string body; |
| 385 | if (!opHandle.updateCompletely(message, &body)) return false; |
| 386 | |
| 387 | std::string mac; |
| 388 | if (!opHandle.finish(&mac)) return false; |
| 389 | if (!checkSize("mac", mac.size(), GCM_MAC_BYTES)) return false; |
| 390 | *ciphertext = nonce + body + mac; |
| 391 | return true; |
| 392 | } |
| 393 | |
| 394 | static bool decryptWithKeymasterKey(Keymaster& keymaster, const std::string& dir, |
Shawn Willden | 3535181 | 2018-01-22 09:08:32 -0700 | [diff] [blame] | 395 | const km::AuthorizationSet& keyParams, |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 396 | const std::string& ciphertext, KeyBuffer* message) { |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame] | 397 | const std::string nonce = ciphertext.substr(0, GCM_NONCE_BYTES); |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 398 | auto bodyAndMac = ciphertext.substr(GCM_NONCE_BYTES); |
Satya Tangirala | e8de4ff | 2021-02-28 22:32:07 -0800 | [diff] [blame] | 399 | auto opParams = km::AuthorizationSetBuilder() |
| 400 | .Authorization(km::TAG_NONCE, nonce) |
| 401 | .Authorization(km::TAG_PURPOSE, km::KeyPurpose::DECRYPT); |
| 402 | auto opHandle = BeginKeymasterOp(keymaster, dir, keyParams, opParams, nullptr); |
Paul Crowley | dff8c72 | 2016-05-16 08:14:56 -0700 | [diff] [blame] | 403 | if (!opHandle) return false; |
| 404 | if (!opHandle.updateCompletely(bodyAndMac, message)) return false; |
| 405 | if (!opHandle.finish(nullptr)) return false; |
| 406 | return true; |
| 407 | } |
| 408 | |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 409 | static std::string getStretching(const KeyAuthentication& auth) { |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 410 | if (auth.usesKeymaster()) { |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 411 | return kStretch_nopassword; |
| 412 | } else { |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 413 | return kStretch_none; |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 414 | } |
Paul Crowley | 63c18d3 | 2016-02-10 14:02:47 +0000 | [diff] [blame] | 415 | } |
| 416 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 417 | static bool stretchSecret(const std::string& stretching, const std::string& secret, |
Satya Tangirala | 478cea9 | 2021-04-07 14:30:25 -0700 | [diff] [blame^] | 418 | std::string* stretched) { |
Paul Crowley | 63c18d3 | 2016-02-10 14:02:47 +0000 | [diff] [blame] | 419 | if (stretching == kStretch_nopassword) { |
| 420 | if (!secret.empty()) { |
Paul Crowley | d9b9295 | 2016-03-04 13:45:00 -0800 | [diff] [blame] | 421 | LOG(WARNING) << "Password present but stretching is nopassword"; |
Paul Crowley | 63c18d3 | 2016-02-10 14:02:47 +0000 | [diff] [blame] | 422 | // Continue anyway |
| 423 | } |
Paul Crowley | a051eb7 | 2016-03-08 16:08:32 -0800 | [diff] [blame] | 424 | stretched->clear(); |
Paul Crowley | 63c18d3 | 2016-02-10 14:02:47 +0000 | [diff] [blame] | 425 | } else if (stretching == kStretch_none) { |
Paul Crowley | a051eb7 | 2016-03-08 16:08:32 -0800 | [diff] [blame] | 426 | *stretched = secret; |
Paul Crowley | 63c18d3 | 2016-02-10 14:02:47 +0000 | [diff] [blame] | 427 | } else { |
| 428 | LOG(ERROR) << "Unknown stretching type: " << stretching; |
| 429 | return false; |
| 430 | } |
| 431 | return true; |
| 432 | } |
| 433 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 434 | static bool generateAppId(const KeyAuthentication& auth, const std::string& stretching, |
Satya Tangirala | 478cea9 | 2021-04-07 14:30:25 -0700 | [diff] [blame^] | 435 | const std::string& secdiscardable_hash, std::string* appId) { |
Paul Crowley | 63c18d3 | 2016-02-10 14:02:47 +0000 | [diff] [blame] | 436 | std::string stretched; |
Satya Tangirala | 478cea9 | 2021-04-07 14:30:25 -0700 | [diff] [blame^] | 437 | if (!stretchSecret(stretching, auth.secret, &stretched)) return false; |
Paul Crowley | 26a5388 | 2017-10-26 11:16:39 -0700 | [diff] [blame] | 438 | *appId = secdiscardable_hash + stretched; |
Seth Moore | 5a43d61 | 2021-01-19 17:51:51 +0000 | [diff] [blame] | 439 | |
| 440 | const std::lock_guard<std::mutex> scope_lock(storage_binding_info.guard); |
| 441 | switch (storage_binding_info.state) { |
| 442 | case StorageBindingInfo::State::UNINITIALIZED: |
| 443 | storage_binding_info.state = StorageBindingInfo::State::NOT_USED; |
| 444 | break; |
| 445 | case StorageBindingInfo::State::IN_USE: |
| 446 | appId->append(storage_binding_info.seed.begin(), storage_binding_info.seed.end()); |
| 447 | break; |
| 448 | case StorageBindingInfo::State::NOT_USED: |
| 449 | // noop |
| 450 | break; |
| 451 | } |
| 452 | |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 453 | return true; |
| 454 | } |
| 455 | |
| 456 | static void logOpensslError() { |
| 457 | LOG(ERROR) << "Openssl error: " << ERR_get_error(); |
| 458 | } |
| 459 | |
Shawn Willden | 785365b | 2018-01-20 09:37:36 -0700 | [diff] [blame] | 460 | static bool encryptWithoutKeymaster(const std::string& preKey, const KeyBuffer& plaintext, |
| 461 | std::string* ciphertext) { |
Paul Crowley | 26a5388 | 2017-10-26 11:16:39 -0700 | [diff] [blame] | 462 | std::string key; |
| 463 | hashWithPrefix(kHashPrefix_keygen, preKey, &key); |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 464 | key.resize(AES_KEY_BYTES); |
| 465 | if (!readRandomBytesOrLog(GCM_NONCE_BYTES, ciphertext)) return false; |
| 466 | auto ctx = std::unique_ptr<EVP_CIPHER_CTX, decltype(&::EVP_CIPHER_CTX_free)>( |
| 467 | EVP_CIPHER_CTX_new(), EVP_CIPHER_CTX_free); |
| 468 | if (!ctx) { |
| 469 | logOpensslError(); |
| 470 | return false; |
| 471 | } |
| 472 | if (1 != EVP_EncryptInit_ex(ctx.get(), EVP_aes_256_gcm(), NULL, |
Shawn Willden | 785365b | 2018-01-20 09:37:36 -0700 | [diff] [blame] | 473 | reinterpret_cast<const uint8_t*>(key.data()), |
| 474 | reinterpret_cast<const uint8_t*>(ciphertext->data()))) { |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 475 | logOpensslError(); |
| 476 | return false; |
| 477 | } |
| 478 | ciphertext->resize(GCM_NONCE_BYTES + plaintext.size() + GCM_MAC_BYTES); |
| 479 | int outlen; |
Shawn Willden | 785365b | 2018-01-20 09:37:36 -0700 | [diff] [blame] | 480 | if (1 != EVP_EncryptUpdate( |
| 481 | ctx.get(), reinterpret_cast<uint8_t*>(&(*ciphertext)[0] + GCM_NONCE_BYTES), |
| 482 | &outlen, reinterpret_cast<const uint8_t*>(plaintext.data()), plaintext.size())) { |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 483 | logOpensslError(); |
| 484 | return false; |
| 485 | } |
| 486 | if (outlen != static_cast<int>(plaintext.size())) { |
| 487 | LOG(ERROR) << "GCM ciphertext length should be " << plaintext.size() << " was " << outlen; |
| 488 | return false; |
| 489 | } |
Shawn Willden | 785365b | 2018-01-20 09:37:36 -0700 | [diff] [blame] | 490 | if (1 != EVP_EncryptFinal_ex( |
| 491 | ctx.get(), |
| 492 | reinterpret_cast<uint8_t*>(&(*ciphertext)[0] + GCM_NONCE_BYTES + plaintext.size()), |
| 493 | &outlen)) { |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 494 | logOpensslError(); |
| 495 | return false; |
| 496 | } |
| 497 | if (outlen != 0) { |
| 498 | LOG(ERROR) << "GCM EncryptFinal should be 0, was " << outlen; |
| 499 | return false; |
| 500 | } |
| 501 | if (1 != EVP_CIPHER_CTX_ctrl(ctx.get(), EVP_CTRL_GCM_GET_TAG, GCM_MAC_BYTES, |
Shawn Willden | 785365b | 2018-01-20 09:37:36 -0700 | [diff] [blame] | 502 | reinterpret_cast<uint8_t*>(&(*ciphertext)[0] + GCM_NONCE_BYTES + |
| 503 | plaintext.size()))) { |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 504 | logOpensslError(); |
| 505 | return false; |
| 506 | } |
| 507 | return true; |
| 508 | } |
| 509 | |
Shawn Willden | 785365b | 2018-01-20 09:37:36 -0700 | [diff] [blame] | 510 | static bool decryptWithoutKeymaster(const std::string& preKey, const std::string& ciphertext, |
| 511 | KeyBuffer* plaintext) { |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 512 | if (ciphertext.size() < GCM_NONCE_BYTES + GCM_MAC_BYTES) { |
| 513 | LOG(ERROR) << "GCM ciphertext too small: " << ciphertext.size(); |
| 514 | return false; |
| 515 | } |
Paul Crowley | 26a5388 | 2017-10-26 11:16:39 -0700 | [diff] [blame] | 516 | std::string key; |
| 517 | hashWithPrefix(kHashPrefix_keygen, preKey, &key); |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 518 | key.resize(AES_KEY_BYTES); |
| 519 | auto ctx = std::unique_ptr<EVP_CIPHER_CTX, decltype(&::EVP_CIPHER_CTX_free)>( |
| 520 | EVP_CIPHER_CTX_new(), EVP_CIPHER_CTX_free); |
| 521 | if (!ctx) { |
| 522 | logOpensslError(); |
| 523 | return false; |
| 524 | } |
| 525 | if (1 != EVP_DecryptInit_ex(ctx.get(), EVP_aes_256_gcm(), NULL, |
Shawn Willden | 785365b | 2018-01-20 09:37:36 -0700 | [diff] [blame] | 526 | reinterpret_cast<const uint8_t*>(key.data()), |
| 527 | reinterpret_cast<const uint8_t*>(ciphertext.data()))) { |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 528 | logOpensslError(); |
| 529 | return false; |
| 530 | } |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 531 | *plaintext = KeyBuffer(ciphertext.size() - GCM_NONCE_BYTES - GCM_MAC_BYTES); |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 532 | int outlen; |
Shawn Willden | 785365b | 2018-01-20 09:37:36 -0700 | [diff] [blame] | 533 | if (1 != EVP_DecryptUpdate(ctx.get(), reinterpret_cast<uint8_t*>(&(*plaintext)[0]), &outlen, |
| 534 | reinterpret_cast<const uint8_t*>(ciphertext.data() + GCM_NONCE_BYTES), |
| 535 | plaintext->size())) { |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 536 | logOpensslError(); |
| 537 | return false; |
| 538 | } |
| 539 | if (outlen != static_cast<int>(plaintext->size())) { |
| 540 | LOG(ERROR) << "GCM plaintext length should be " << plaintext->size() << " was " << outlen; |
| 541 | return false; |
| 542 | } |
| 543 | if (1 != EVP_CIPHER_CTX_ctrl(ctx.get(), EVP_CTRL_GCM_SET_TAG, GCM_MAC_BYTES, |
Shawn Willden | 785365b | 2018-01-20 09:37:36 -0700 | [diff] [blame] | 544 | const_cast<void*>(reinterpret_cast<const void*>( |
| 545 | ciphertext.data() + GCM_NONCE_BYTES + plaintext->size())))) { |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 546 | logOpensslError(); |
| 547 | return false; |
| 548 | } |
| 549 | if (1 != EVP_DecryptFinal_ex(ctx.get(), |
Shawn Willden | 785365b | 2018-01-20 09:37:36 -0700 | [diff] [blame] | 550 | reinterpret_cast<uint8_t*>(&(*plaintext)[0] + plaintext->size()), |
| 551 | &outlen)) { |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 552 | logOpensslError(); |
| 553 | return false; |
| 554 | } |
| 555 | if (outlen != 0) { |
| 556 | LOG(ERROR) << "GCM EncryptFinal should be 0, was " << outlen; |
| 557 | return false; |
| 558 | } |
Paul Crowley | 63c18d3 | 2016-02-10 14:02:47 +0000 | [diff] [blame] | 559 | return true; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 560 | } |
| 561 | |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 562 | bool storeKey(const std::string& dir, const KeyAuthentication& auth, const KeyBuffer& key) { |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 563 | if (TEMP_FAILURE_RETRY(mkdir(dir.c_str(), 0700)) == -1) { |
| 564 | PLOG(ERROR) << "key mkdir " << dir; |
| 565 | return false; |
| 566 | } |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 567 | if (!writeStringToFile(kCurrentVersion, dir + "/" + kFn_version)) return false; |
Paul Crowley | 26a5388 | 2017-10-26 11:16:39 -0700 | [diff] [blame] | 568 | std::string secdiscardable_hash; |
| 569 | if (!createSecdiscardable(dir + "/" + kFn_secdiscardable, &secdiscardable_hash)) return false; |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 570 | std::string stretching = getStretching(auth); |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 571 | if (!writeStringToFile(stretching, dir + "/" + kFn_stretching)) return false; |
Paul Crowley | 320e5e1 | 2016-03-04 14:07:05 -0800 | [diff] [blame] | 572 | std::string appId; |
Satya Tangirala | 478cea9 | 2021-04-07 14:30:25 -0700 | [diff] [blame^] | 573 | if (!generateAppId(auth, stretching, secdiscardable_hash, &appId)) return false; |
Paul Crowley | 320e5e1 | 2016-03-04 14:07:05 -0800 | [diff] [blame] | 574 | std::string encryptedKey; |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 575 | if (auth.usesKeymaster()) { |
| 576 | Keymaster keymaster; |
| 577 | if (!keymaster) return false; |
| 578 | std::string kmKey; |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 579 | if (!generateKeyStorageKey(keymaster, appId, &kmKey)) return false; |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 580 | if (!writeStringToFile(kmKey, dir + "/" + kFn_keymaster_key_blob)) return false; |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 581 | km::AuthorizationSet keyParams = beginParams(appId); |
| 582 | if (!encryptWithKeymasterKey(keymaster, dir, keyParams, key, &encryptedKey)) return false; |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 583 | } else { |
| 584 | if (!encryptWithoutKeymaster(appId, key, &encryptedKey)) return false; |
| 585 | } |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 586 | if (!writeStringToFile(encryptedKey, dir + "/" + kFn_encrypted_key)) return false; |
Paul Crowley | 621d9b9 | 2018-12-07 15:36:09 -0800 | [diff] [blame] | 587 | if (!FsyncDirectory(dir)) return false; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 588 | return true; |
| 589 | } |
| 590 | |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 591 | bool storeKeyAtomically(const std::string& key_path, const std::string& tmp_path, |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 592 | const KeyAuthentication& auth, const KeyBuffer& key) { |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 593 | if (pathExists(key_path)) { |
| 594 | LOG(ERROR) << "Already exists, cannot create key at: " << key_path; |
| 595 | return false; |
| 596 | } |
| 597 | if (pathExists(tmp_path)) { |
| 598 | LOG(DEBUG) << "Already exists, destroying: " << tmp_path; |
| 599 | destroyKey(tmp_path); // May be partially created so ignore errors |
| 600 | } |
| 601 | if (!storeKey(tmp_path, auth, key)) return false; |
| 602 | if (rename(tmp_path.c_str(), key_path.c_str()) != 0) { |
| 603 | PLOG(ERROR) << "Unable to move new key to location: " << key_path; |
| 604 | return false; |
| 605 | } |
Eric Biggers | 3345a2a | 2021-02-16 15:59:17 -0800 | [diff] [blame] | 606 | if (!FsyncParentDirectory(key_path)) return false; |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 607 | LOG(DEBUG) << "Created key: " << key_path; |
| 608 | return true; |
| 609 | } |
| 610 | |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 611 | bool retrieveKey(const std::string& dir, const KeyAuthentication& auth, KeyBuffer* key) { |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 612 | std::string version; |
Paul Crowley | a051eb7 | 2016-03-08 16:08:32 -0800 | [diff] [blame] | 613 | if (!readFileToString(dir + "/" + kFn_version, &version)) return false; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 614 | if (version != kCurrentVersion) { |
| 615 | LOG(ERROR) << "Version mismatch, expected " << kCurrentVersion << " got " << version; |
| 616 | return false; |
| 617 | } |
Paul Crowley | 26a5388 | 2017-10-26 11:16:39 -0700 | [diff] [blame] | 618 | std::string secdiscardable_hash; |
| 619 | if (!readSecdiscardable(dir + "/" + kFn_secdiscardable, &secdiscardable_hash)) return false; |
Paul Crowley | 63c18d3 | 2016-02-10 14:02:47 +0000 | [diff] [blame] | 620 | std::string stretching; |
Paul Crowley | a051eb7 | 2016-03-08 16:08:32 -0800 | [diff] [blame] | 621 | if (!readFileToString(dir + "/" + kFn_stretching, &stretching)) return false; |
Paul Crowley | 320e5e1 | 2016-03-04 14:07:05 -0800 | [diff] [blame] | 622 | std::string appId; |
Satya Tangirala | 478cea9 | 2021-04-07 14:30:25 -0700 | [diff] [blame^] | 623 | if (!generateAppId(auth, stretching, secdiscardable_hash, &appId)) return false; |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 624 | std::string encryptedMessage; |
Paul Crowley | a051eb7 | 2016-03-08 16:08:32 -0800 | [diff] [blame] | 625 | if (!readFileToString(dir + "/" + kFn_encrypted_key, &encryptedMessage)) return false; |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 626 | if (auth.usesKeymaster()) { |
| 627 | Keymaster keymaster; |
| 628 | if (!keymaster) return false; |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 629 | km::AuthorizationSet keyParams = beginParams(appId); |
| 630 | if (!decryptWithKeymasterKey(keymaster, dir, keyParams, encryptedMessage, key)) |
Shawn Willden | 785365b | 2018-01-20 09:37:36 -0700 | [diff] [blame] | 631 | return false; |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 632 | } else { |
| 633 | if (!decryptWithoutKeymaster(appId, encryptedMessage, key)) return false; |
| 634 | } |
| 635 | return true; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 636 | } |
| 637 | |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 638 | static bool DeleteKeymasterKey(const std::string& blob_file) { |
| 639 | std::string blob; |
| 640 | if (!readFileToString(blob_file, &blob)) return false; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 641 | Keymaster keymaster; |
| 642 | if (!keymaster) return false; |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 643 | LOG(DEBUG) << "Deleting key " << blob_file << " from Keymaster"; |
| 644 | if (!keymaster.deleteKey(blob)) return false; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 645 | return true; |
| 646 | } |
| 647 | |
Rubin Xu | 2436e27 | 2017-04-27 20:43:10 +0100 | [diff] [blame] | 648 | bool runSecdiscardSingle(const std::string& file) { |
Shawn Willden | 785365b | 2018-01-20 09:37:36 -0700 | [diff] [blame] | 649 | if (ForkExecvp(std::vector<std::string>{kSecdiscardPath, "--", file}) != 0) { |
Rubin Xu | 2436e27 | 2017-04-27 20:43:10 +0100 | [diff] [blame] | 650 | LOG(ERROR) << "secdiscard failed"; |
| 651 | return false; |
| 652 | } |
| 653 | return true; |
| 654 | } |
| 655 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 656 | static bool recursiveDeleteKey(const std::string& dir) { |
| 657 | if (ForkExecvp(std::vector<std::string>{kRmPath, "-rf", dir}) != 0) { |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 658 | LOG(ERROR) << "recursive delete failed"; |
| 659 | return false; |
| 660 | } |
| 661 | return true; |
| 662 | } |
| 663 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 664 | bool destroyKey(const std::string& dir) { |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 665 | bool success = true; |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 666 | |
| 667 | CancelPendingKeyCommit(dir); |
| 668 | |
Paul Crowley | ff19b05 | 2017-10-26 11:28:55 -0700 | [diff] [blame] | 669 | auto secdiscard_cmd = std::vector<std::string>{ |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 670 | kSecdiscardPath, |
| 671 | "--", |
| 672 | dir + "/" + kFn_encrypted_key, |
| 673 | dir + "/" + kFn_secdiscardable, |
Paul Crowley | ff19b05 | 2017-10-26 11:28:55 -0700 | [diff] [blame] | 674 | }; |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 675 | // Try each thing, even if previous things failed. |
| 676 | |
| 677 | for (auto& fn : {kFn_keymaster_key_blob, kFn_keymaster_key_blob_upgraded}) { |
| 678 | auto blob_file = dir + "/" + fn; |
| 679 | if (pathExists(blob_file)) { |
| 680 | success &= DeleteKeymasterKey(blob_file); |
| 681 | secdiscard_cmd.push_back(blob_file); |
| 682 | } |
Paul Crowley | ff19b05 | 2017-10-26 11:28:55 -0700 | [diff] [blame] | 683 | } |
| 684 | if (ForkExecvp(secdiscard_cmd) != 0) { |
| 685 | LOG(ERROR) << "secdiscard failed"; |
| 686 | success = false; |
| 687 | } |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 688 | success &= recursiveDeleteKey(dir); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 689 | return success; |
| 690 | } |
| 691 | |
Seth Moore | 5a43d61 | 2021-01-19 17:51:51 +0000 | [diff] [blame] | 692 | bool setKeyStorageBindingSeed(const std::vector<uint8_t>& seed) { |
| 693 | const std::lock_guard<std::mutex> scope_lock(storage_binding_info.guard); |
| 694 | switch (storage_binding_info.state) { |
| 695 | case StorageBindingInfo::State::UNINITIALIZED: |
| 696 | storage_binding_info.state = StorageBindingInfo::State::IN_USE; |
| 697 | storage_binding_info.seed = seed; |
| 698 | return true; |
| 699 | case StorageBindingInfo::State::IN_USE: |
| 700 | LOG(ERROR) << "key storage binding seed already set"; |
| 701 | return false; |
| 702 | case StorageBindingInfo::State::NOT_USED: |
| 703 | LOG(ERROR) << "key storage already in use without binding"; |
| 704 | return false; |
| 705 | } |
| 706 | return false; |
| 707 | } |
| 708 | |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 709 | } // namespace vold |
| 710 | } // namespace android |