blob: 8e9b0905d52093538355da23f265aedd811d869e [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"
Bill Peckham08e5bd02020-02-25 16:23:13 -080021
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.
Paul Crowley05720802016-02-08 15:55:41 +000030class KeyAuthentication {
Paul Crowleydf528a72016-03-09 09:31:37 -080031 public:
Satya Tangiralae1361712021-03-15 15:33:08 -070032 KeyAuthentication(const std::string& s) : secret{s} {};
Paul Crowley6ab2cab2017-01-04 22:32:40 -080033
Eric Biggersd86a8ab2021-06-15 11:34:00 -070034 bool usesKeystore() const { return secret.empty(); };
Paul Crowley6ab2cab2017-01-04 22:32:40 -080035
Paul Crowley05720802016-02-08 15:55:41 +000036 const std::string secret;
37};
38
Shivaprasad Hongal92292622018-07-05 14:49:12 -070039enum class KeyType {
40 DE_SYS,
41 DE_USER,
Neeraj Sonic480f912018-12-14 15:18:15 +053042 CE_USER,
43 ME,
Shivaprasad Hongal92292622018-07-05 14:49:12 -070044};
45
Paul Crowley05720802016-02-08 15:55:41 +000046extern const KeyAuthentication kEmptyAuthentication;
47
Paul Crowley26a53882017-10-26 11:16:39 -070048bool createSecdiscardable(const std::string& path, std::string* hash);
49bool readSecdiscardable(const std::string& path, std::string* hash);
50
Satya Tangirala0f890a92021-06-08 12:55:24 -070051// Renames a key directory while also managing deferred commits appropriately.
52// This method should be used whenever a key directory needs to be moved/renamed.
53bool RenameKeyDir(const std::string& old_name, const std::string& new_name);
Paul Crowley1ef25582016-01-21 20:26:12 +000054
Paul Crowleyf71ace32016-06-02 11:01:19 -070055// Create a directory at the named path, and store "key" in it as storeKey
56// This version creates the key in "tmp_path" then atomically renames "tmp_path"
57// to "key_path" thereby ensuring that the key is either stored entirely or
Eric Biggers3345a2a2021-02-16 15:59:17 -080058// not at all. All the needed files and directories are also fsync'ed to ensure
59// that the key is actually persisted to disk.
Paul Crowleyf71ace32016-06-02 11:01:19 -070060bool storeKeyAtomically(const std::string& key_path, const std::string& tmp_path,
Pavel Grafove2e2d302017-08-01 17:15:53 +010061 const KeyAuthentication& auth, const KeyBuffer& key);
Paul Crowleyf71ace32016-06-02 11:01:19 -070062
Paul Crowley1ef25582016-01-21 20:26:12 +000063// Retrieve the key from the named directory.
Eric Biggersf74373b2020-11-05 19:58:26 -080064bool retrieveKey(const std::string& dir, const KeyAuthentication& auth, KeyBuffer* key);
Paul Crowley1ef25582016-01-21 20:26:12 +000065
66// Securely destroy the key stored in the named directory and delete the directory.
Paul Crowleydf528a72016-03-09 09:31:37 -080067bool destroyKey(const std::string& dir);
Paul Crowley1ef25582016-01-21 20:26:12 +000068
Rubin Xu2436e272017-04-27 20:43:10 +010069bool runSecdiscardSingle(const std::string& file);
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -080070
Eric Biggersd86a8ab2021-06-15 11:34:00 -070071// Generate wrapped storage key using keystore. Uses STORAGE_KEY tag in keystore.
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -080072bool generateWrappedStorageKey(KeyBuffer* key);
Eric Biggersd86a8ab2021-06-15 11:34:00 -070073// Export the per-boot boot wrapped storage key using keystore.
74bool exportWrappedStorageKey(const KeyBuffer& ksKey, KeyBuffer* key);
Seth Moore5a43d612021-01-19 17:51:51 +000075
76// Set a seed to be mixed into all key storage encryption keys.
77bool setKeyStorageBindingSeed(const std::vector<uint8_t>& seed);
Paul Crowley1ef25582016-01-21 20:26:12 +000078} // namespace vold
79} // namespace android
80
81#endif