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 | #ifndef ANDROID_VOLD_KEYSTORAGE_H |
| 18 | #define ANDROID_VOLD_KEYSTORAGE_H |
| 19 | |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 20 | #include "KeyBuffer.h" |
| 21 | |
Seth Moore | 5a43d61 | 2021-01-19 17:51:51 +0000 | [diff] [blame] | 22 | #include <cstdint> |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 23 | #include <string> |
Seth Moore | 5a43d61 | 2021-01-19 17:51:51 +0000 | [diff] [blame] | 24 | #include <vector> |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 25 | |
| 26 | namespace android { |
| 27 | namespace vold { |
| 28 | |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 29 | // Represents the information needed to decrypt a disk encryption key. |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 30 | class KeyAuthentication { |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 31 | public: |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 32 | KeyAuthentication(const std::string& s) : secret{s} {}; |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 33 | |
Eric Biggers | d86a8ab | 2021-06-15 11:34:00 -0700 | [diff] [blame] | 34 | bool usesKeystore() const { return secret.empty(); }; |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 35 | |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 36 | const std::string secret; |
| 37 | }; |
| 38 | |
| 39 | extern const KeyAuthentication kEmptyAuthentication; |
| 40 | |
Paul Crowley | 26a5388 | 2017-10-26 11:16:39 -0700 | [diff] [blame] | 41 | bool createSecdiscardable(const std::string& path, std::string* hash); |
| 42 | bool readSecdiscardable(const std::string& path, std::string* hash); |
| 43 | |
Satya Tangirala | 0f890a9 | 2021-06-08 12:55:24 -0700 | [diff] [blame] | 44 | // Renames a key directory while also managing deferred commits appropriately. |
| 45 | // This method should be used whenever a key directory needs to be moved/renamed. |
| 46 | bool RenameKeyDir(const std::string& old_name, const std::string& new_name); |
| 47 | |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 48 | // Create a directory at the named path, and store "key" in it as storeKey |
| 49 | // This version creates the key in "tmp_path" then atomically renames "tmp_path" |
| 50 | // to "key_path" thereby ensuring that the key is either stored entirely or |
Eric Biggers | 3345a2a | 2021-02-16 15:59:17 -0800 | [diff] [blame] | 51 | // not at all. All the needed files and directories are also fsync'ed to ensure |
| 52 | // that the key is actually persisted to disk. |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 53 | bool storeKeyAtomically(const std::string& key_path, const std::string& tmp_path, |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 54 | const KeyAuthentication& auth, const KeyBuffer& key); |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 55 | |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 56 | // Retrieve the key from the named directory. |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 57 | bool retrieveKey(const std::string& dir, const KeyAuthentication& auth, KeyBuffer* key); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 58 | |
| 59 | // Securely destroy the key stored in the named directory and delete the directory. |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 60 | bool destroyKey(const std::string& dir); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 61 | |
Rubin Xu | 2436e27 | 2017-04-27 20:43:10 +0100 | [diff] [blame] | 62 | bool runSecdiscardSingle(const std::string& file); |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 63 | |
Eric Biggers | d86a8ab | 2021-06-15 11:34:00 -0700 | [diff] [blame] | 64 | // Generate wrapped storage key using keystore. Uses STORAGE_KEY tag in keystore. |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 65 | bool generateWrappedStorageKey(KeyBuffer* key); |
Eric Biggers | d86a8ab | 2021-06-15 11:34:00 -0700 | [diff] [blame] | 66 | // Export the per-boot boot wrapped storage key using keystore. |
| 67 | bool exportWrappedStorageKey(const KeyBuffer& ksKey, KeyBuffer* key); |
Seth Moore | 5a43d61 | 2021-01-19 17:51:51 +0000 | [diff] [blame] | 68 | |
| 69 | // Set a seed to be mixed into all key storage encryption keys. |
| 70 | bool setKeyStorageBindingSeed(const std::vector<uint8_t>& seed); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 71 | } // namespace vold |
| 72 | } // namespace android |
| 73 | |
| 74 | #endif |