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 | |
| 20 | #include <string> |
| 21 | |
| 22 | namespace android { |
| 23 | namespace vold { |
| 24 | |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 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. |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 27 | // If "token" and "secret" are nonempty, "secret" is appended to the application-specific |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 28 | // binary needed to unlock. |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 29 | // If only "secret" is nonempty, it is used to decrypt in a non-Keymaster process. |
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: |
| 32 | KeyAuthentication(std::string t, std::string s) : token{t}, secret{s} {}; |
Paul Crowley | 6ab2cab | 2017-01-04 22:32:40 -0800 | [diff] [blame] | 33 | |
| 34 | bool usesKeymaster() const { return !token.empty() || secret.empty(); }; |
| 35 | |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 36 | const std::string token; |
| 37 | const std::string secret; |
| 38 | }; |
| 39 | |
| 40 | extern const KeyAuthentication kEmptyAuthentication; |
| 41 | |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 42 | // Checks if path "path" exists. |
| 43 | bool pathExists(const std::string& path); |
| 44 | |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 45 | // Create a directory at the named path, and store "key" in it, |
| 46 | // in such a way that it can only be retrieved via Keymaster and |
| 47 | // can be securely deleted. |
| 48 | // It's safe to move/rename the directory after creation. |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 49 | bool storeKey(const std::string& dir, const KeyAuthentication& auth, const std::string& key); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 50 | |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 51 | // Create a directory at the named path, and store "key" in it as storeKey |
| 52 | // This version creates the key in "tmp_path" then atomically renames "tmp_path" |
| 53 | // to "key_path" thereby ensuring that the key is either stored entirely or |
| 54 | // not at all. |
| 55 | bool storeKeyAtomically(const std::string& key_path, const std::string& tmp_path, |
| 56 | const KeyAuthentication& auth, const std::string& key); |
| 57 | |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 58 | // Retrieve the key from the named directory. |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 59 | bool retrieveKey(const std::string& dir, const KeyAuthentication& auth, std::string* key); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 60 | |
| 61 | // 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] | 62 | bool destroyKey(const std::string& dir); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 63 | |
Rubin Xu | 2436e27 | 2017-04-27 20:43:10 +0100 | [diff] [blame] | 64 | bool runSecdiscardSingle(const std::string& file); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 65 | } // namespace vold |
| 66 | } // namespace android |
| 67 | |
| 68 | #endif |