bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [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 | |
| 20 | #include "KeyBuffer.h" |
bigbiff | a957f07 | 2021-03-07 18:20:29 -0500 | [diff] [blame] | 21 | |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 22 | #include <string> |
| 23 | |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 24 | |
| 25 | // Represents the information needed to decrypt a disk encryption key. |
| 26 | // If "token" is nonempty, it is passed in as a required Gatekeeper auth token. |
| 27 | // If "token" and "secret" are nonempty, "secret" is appended to the application-specific |
| 28 | // binary needed to unlock. |
| 29 | // If only "secret" is nonempty, it is used to decrypt in a non-Keymaster process. |
| 30 | class KeyAuthentication { |
| 31 | public: |
| 32 | KeyAuthentication(const std::string& t, const std::string& s) : token{t}, secret{s} {}; |
| 33 | |
| 34 | bool usesKeymaster() const { return !token.empty() || secret.empty(); }; |
| 35 | |
| 36 | const std::string token; |
| 37 | const std::string secret; |
| 38 | }; |
| 39 | |
| 40 | extern const KeyAuthentication kEmptyAuthentication; |
| 41 | |
| 42 | // Checks if path "path" exists. |
| 43 | bool pathExists(const std::string& path); |
| 44 | |
| 45 | bool createSecdiscardable(const std::string& path, std::string* hash); |
| 46 | bool readSecdiscardable(const std::string& path, std::string* hash); |
| 47 | |
| 48 | // Create a directory at the named path, and store "key" in it, |
| 49 | // in such a way that it can only be retrieved via Keymaster and |
| 50 | // can be securely deleted. |
| 51 | // It's safe to move/rename the directory after creation. |
| 52 | bool storeKey(const std::string& dir, const KeyAuthentication& auth, const KeyBuffer& key); |
| 53 | |
| 54 | // Create a directory at the named path, and store "key" in it as storeKey |
| 55 | // This version creates the key in "tmp_path" then atomically renames "tmp_path" |
| 56 | // to "key_path" thereby ensuring that the key is either stored entirely or |
| 57 | // not at all. |
| 58 | bool storeKeyAtomically(const std::string& key_path, const std::string& tmp_path, |
| 59 | const KeyAuthentication& auth, const KeyBuffer& key); |
| 60 | |
| 61 | // Retrieve the key from the named directory. |
| 62 | bool retrieveKey(const std::string& dir, const KeyAuthentication& auth, KeyBuffer* key, |
bigbiff | bbbfe17 | 2021-05-30 15:52:41 -0400 | [diff] [blame] | 63 | bool keepOld); |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 64 | |
| 65 | // Securely destroy the key stored in the named directory and delete the directory. |
| 66 | bool destroyKey(const std::string& dir); |
| 67 | |
| 68 | bool runSecdiscardSingle(const std::string& file); |
bigbiff | a957f07 | 2021-03-07 18:20:29 -0500 | [diff] [blame] | 69 | |
| 70 | // Generate wrapped storage key using keymaster. Uses STORAGE_KEY tag in keymaster. |
| 71 | bool generateWrappedStorageKey(KeyBuffer* key); |
| 72 | // Export the per-boot boot wrapped storage key using keymaster. |
| 73 | bool exportWrappedStorageKey(const KeyBuffer& kmKey, KeyBuffer* key); |
bigbiff | 7ba7500 | 2020-04-11 20:47:09 -0400 | [diff] [blame] | 74 | |
| 75 | #endif |