blob: 65458d4715ac2a13eb12d237d853b845930b6068 [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
20#include <string>
21
22namespace android {
23namespace vold {
24
Paul Crowley05720802016-02-08 15:55:41 +000025// 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 Crowley6ab2cab2017-01-04 22:32:40 -080027// If "token" and "secret" are nonempty, "secret" is appended to the application-specific
Paul Crowley05720802016-02-08 15:55:41 +000028// binary needed to unlock.
Paul Crowley6ab2cab2017-01-04 22:32:40 -080029// If only "secret" is nonempty, it is used to decrypt in a non-Keymaster process.
Paul Crowley05720802016-02-08 15:55:41 +000030class KeyAuthentication {
Paul Crowleydf528a72016-03-09 09:31:37 -080031 public:
32 KeyAuthentication(std::string t, std::string s) : token{t}, secret{s} {};
Paul Crowley6ab2cab2017-01-04 22:32:40 -080033
34 bool usesKeymaster() const { return !token.empty() || secret.empty(); };
35
Paul Crowley05720802016-02-08 15:55:41 +000036 const std::string token;
37 const std::string secret;
38};
39
40extern const KeyAuthentication kEmptyAuthentication;
41
Paul Crowley1ef25582016-01-21 20:26:12 +000042// Create a directory at the named path, and store "key" in it,
43// in such a way that it can only be retrieved via Keymaster and
44// can be securely deleted.
45// It's safe to move/rename the directory after creation.
Paul Crowleydf528a72016-03-09 09:31:37 -080046bool storeKey(const std::string& dir, const KeyAuthentication& auth, const std::string& key);
Paul Crowley1ef25582016-01-21 20:26:12 +000047
48// Retrieve the key from the named directory.
Paul Crowleydf528a72016-03-09 09:31:37 -080049bool retrieveKey(const std::string& dir, const KeyAuthentication& auth, std::string* key);
Paul Crowley1ef25582016-01-21 20:26:12 +000050
51// Securely destroy the key stored in the named directory and delete the directory.
Paul Crowleydf528a72016-03-09 09:31:37 -080052bool destroyKey(const std::string& dir);
Paul Crowley1ef25582016-01-21 20:26:12 +000053
54} // namespace vold
55} // namespace android
56
57#endif