blob: a69dbf7a06c15c1f05e224310eace613d67348e2 [file] [log] [blame]
Paul Crowley1ef25582016-01-21 20:26:12 +00001/*
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 Grafove2e2d302017-08-01 17:15:53 +010020#include "KeyBuffer.h"
21
Seth Moore5a43d612021-01-19 17:51:51 +000022#include <cstdint>
Paul Crowley1ef25582016-01-21 20:26:12 +000023#include <string>
Seth Moore5a43d612021-01-19 17:51:51 +000024#include <vector>
Paul Crowley1ef25582016-01-21 20:26:12 +000025
26namespace android {
27namespace vold {
28
Paul Crowley05720802016-02-08 15:55:41 +000029// Represents the information needed to decrypt a disk encryption key.
30// If "token" is nonempty, it is passed in as a required Gatekeeper auth token.
Paul Crowley6ab2cab2017-01-04 22:32:40 -080031// If "token" and "secret" are nonempty, "secret" is appended to the application-specific
Paul Crowley05720802016-02-08 15:55:41 +000032// binary needed to unlock.
Paul Crowley6ab2cab2017-01-04 22:32:40 -080033// If only "secret" is nonempty, it is used to decrypt in a non-Keymaster process.
Paul Crowley05720802016-02-08 15:55:41 +000034class KeyAuthentication {
Paul Crowleydf528a72016-03-09 09:31:37 -080035 public:
Greg Kaiser8ae16db2018-12-18 11:10:31 -080036 KeyAuthentication(const std::string& t, const std::string& s) : token{t}, secret{s} {};
Paul Crowley6ab2cab2017-01-04 22:32:40 -080037
38 bool usesKeymaster() const { return !token.empty() || secret.empty(); };
39
Paul Crowley05720802016-02-08 15:55:41 +000040 const std::string token;
41 const std::string secret;
42};
43
44extern const KeyAuthentication kEmptyAuthentication;
45
Paul Crowleyf71ace32016-06-02 11:01:19 -070046// Checks if path "path" exists.
47bool pathExists(const std::string& path);
48
Paul Crowley26a53882017-10-26 11:16:39 -070049bool createSecdiscardable(const std::string& path, std::string* hash);
50bool readSecdiscardable(const std::string& path, std::string* hash);
51
Paul Crowley1ef25582016-01-21 20:26:12 +000052// Create a directory at the named path, and store "key" in it,
53// in such a way that it can only be retrieved via Keymaster and
54// can be securely deleted.
55// It's safe to move/rename the directory after creation.
Pavel Grafove2e2d302017-08-01 17:15:53 +010056bool storeKey(const std::string& dir, const KeyAuthentication& auth, const KeyBuffer& key);
Paul Crowley1ef25582016-01-21 20:26:12 +000057
Paul Crowleyf71ace32016-06-02 11:01:19 -070058// Create a directory at the named path, and store "key" in it as storeKey
59// This version creates the key in "tmp_path" then atomically renames "tmp_path"
60// to "key_path" thereby ensuring that the key is either stored entirely or
61// not at all.
62bool storeKeyAtomically(const std::string& key_path, const std::string& tmp_path,
Pavel Grafove2e2d302017-08-01 17:15:53 +010063 const KeyAuthentication& auth, const KeyBuffer& key);
Paul Crowleyf71ace32016-06-02 11:01:19 -070064
Paul Crowley1ef25582016-01-21 20:26:12 +000065// Retrieve the key from the named directory.
Eric Biggersf74373b2020-11-05 19:58:26 -080066bool retrieveKey(const std::string& dir, const KeyAuthentication& auth, KeyBuffer* key);
Paul Crowley1ef25582016-01-21 20:26:12 +000067
68// Securely destroy the key stored in the named directory and delete the directory.
Paul Crowleydf528a72016-03-09 09:31:37 -080069bool destroyKey(const std::string& dir);
Paul Crowley1ef25582016-01-21 20:26:12 +000070
Rubin Xu2436e272017-04-27 20:43:10 +010071bool runSecdiscardSingle(const std::string& file);
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -080072
73// Generate wrapped storage key using keymaster. Uses STORAGE_KEY tag in keymaster.
74bool generateWrappedStorageKey(KeyBuffer* key);
75// Export the per-boot boot wrapped storage key using keymaster.
76bool exportWrappedStorageKey(const KeyBuffer& kmKey, KeyBuffer* key);
Seth Moore5a43d612021-01-19 17:51:51 +000077
78// Set a seed to be mixed into all key storage encryption keys.
79bool setKeyStorageBindingSeed(const std::vector<uint8_t>& seed);
Paul Crowley1ef25582016-01-21 20:26:12 +000080} // namespace vold
81} // namespace android
82
83#endif