blob: 5c7c1dbfe10ec289145b80f0daf393fd4d212729 [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
Paul Crowley1ef25582016-01-21 20:26:12 +000022#include <string>
23
24namespace android {
25namespace vold {
26
Paul Crowley05720802016-02-08 15:55:41 +000027// Represents the information needed to decrypt a disk encryption key.
28// If "token" is nonempty, it is passed in as a required Gatekeeper auth token.
Paul Crowley6ab2cab2017-01-04 22:32:40 -080029// If "token" and "secret" are nonempty, "secret" is appended to the application-specific
Paul Crowley05720802016-02-08 15:55:41 +000030// binary needed to unlock.
Paul Crowley6ab2cab2017-01-04 22:32:40 -080031// If only "secret" is nonempty, it is used to decrypt in a non-Keymaster process.
Paul Crowley05720802016-02-08 15:55:41 +000032class KeyAuthentication {
Paul Crowleydf528a72016-03-09 09:31:37 -080033 public:
Greg Kaiserfef650f2018-12-18 11:10:31 -080034 KeyAuthentication(const std::string& t, const std::string& s) : token{t}, secret{s} {};
Paul Crowley6ab2cab2017-01-04 22:32:40 -080035
36 bool usesKeymaster() const { return !token.empty() || secret.empty(); };
37
Paul Crowley05720802016-02-08 15:55:41 +000038 const std::string token;
39 const std::string secret;
40};
41
Shivaprasad Hongal92292622018-07-05 14:49:12 -070042enum class KeyType {
43 DE_SYS,
44 DE_USER,
Neeraj Sonic480f912018-12-14 15:18:15 +053045 CE_USER,
46 ME,
Shivaprasad Hongal92292622018-07-05 14:49:12 -070047};
48
Paul Crowley05720802016-02-08 15:55:41 +000049extern const KeyAuthentication kEmptyAuthentication;
50
Paul Crowleyf71ace32016-06-02 11:01:19 -070051// Checks if path "path" exists.
52bool pathExists(const std::string& path);
53
Paul Crowley26a53882017-10-26 11:16:39 -070054bool createSecdiscardable(const std::string& path, std::string* hash);
55bool readSecdiscardable(const std::string& path, std::string* hash);
56
Paul Crowley1ef25582016-01-21 20:26:12 +000057// Create a directory at the named path, and store "key" in it,
58// in such a way that it can only be retrieved via Keymaster and
59// can be securely deleted.
60// It's safe to move/rename the directory after creation.
Pavel Grafove2e2d302017-08-01 17:15:53 +010061bool storeKey(const std::string& dir, const KeyAuthentication& auth, const KeyBuffer& key);
Paul Crowley1ef25582016-01-21 20:26:12 +000062
Paul Crowleyf71ace32016-06-02 11:01:19 -070063// Create a directory at the named path, and store "key" in it as storeKey
64// This version creates the key in "tmp_path" then atomically renames "tmp_path"
65// to "key_path" thereby ensuring that the key is either stored entirely or
66// not at all.
67bool storeKeyAtomically(const std::string& key_path, const std::string& tmp_path,
Pavel Grafove2e2d302017-08-01 17:15:53 +010068 const KeyAuthentication& auth, const KeyBuffer& key);
Paul Crowleyf71ace32016-06-02 11:01:19 -070069
Paul Crowley1ef25582016-01-21 20:26:12 +000070// Retrieve the key from the named directory.
Eric Biggers2c9d6d62020-10-29 12:59:28 -070071//
72// If the key is wrapped by a Keymaster key that requires an upgrade, then that
73// Keymaster key is upgraded. If |keepOld| is false, then the upgraded
74// Keymaster key replaces the original one. As part of this, the original is
75// deleted from Keymaster; however, if a user data checkpoint is active, this
76// part is delayed until the checkpoint is committed.
77//
78// If instead |keepOld| is true, then the upgraded key doesn't actually replace
79// the original one. This is needed *only* if |dir| isn't located in /data and
80// a user data checkpoint is active. In this case the caller must handle
81// replacing the original key if the checkpoint is committed, and deleting the
82// upgraded key if the checkpoint is rolled back.
Daniel Rosenberg690d6de2018-12-14 01:08:10 -080083bool retrieveKey(const std::string& dir, const KeyAuthentication& auth, KeyBuffer* key,
Eric Biggers2c9d6d62020-10-29 12:59:28 -070084 bool keepOld);
Paul Crowley1ef25582016-01-21 20:26:12 +000085
86// Securely destroy the key stored in the named directory and delete the directory.
Paul Crowleydf528a72016-03-09 09:31:37 -080087bool destroyKey(const std::string& dir);
Paul Crowley1ef25582016-01-21 20:26:12 +000088
Rubin Xu2436e272017-04-27 20:43:10 +010089bool runSecdiscardSingle(const std::string& file);
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -080090
91// Generate wrapped storage key using keymaster. Uses STORAGE_KEY tag in keymaster.
92bool generateWrappedStorageKey(KeyBuffer* key);
93// Export the per-boot boot wrapped storage key using keymaster.
94bool exportWrappedStorageKey(const KeyBuffer& kmKey, KeyBuffer* key);
Paul Crowley1ef25582016-01-21 20:26:12 +000095} // namespace vold
96} // namespace android
97
98#endif