blob: 0f5bc93e9cdddb434a85ac6c254981c68f3e8a00 [file] [log] [blame]
Paul Crowleyf71ace32016-06-02 11:01:19 -07001/*
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_KEYUTIL_H
18#define ANDROID_VOLD_KEYUTIL_H
19
Pavel Grafove2e2d302017-08-01 17:15:53 +010020#include "KeyBuffer.h"
Paul Crowley26a53882017-10-26 11:16:39 -070021#include "KeyStorage.h"
Pavel Grafove2e2d302017-08-01 17:15:53 +010022
Paul Crowley77df7f22020-01-23 15:29:30 -080023#include <fscrypt/fscrypt.h>
24
Pavel Grafove2e2d302017-08-01 17:15:53 +010025#include <memory>
Paul Crowley14c8c072018-09-18 13:30:21 -070026#include <string>
Paul Crowleyf71ace32016-06-02 11:01:19 -070027
28namespace android {
29namespace vold {
30
Paul Crowley77df7f22020-01-23 15:29:30 -080031using namespace android::fscrypt;
32
Paul Crowley4eac2642020-02-12 11:04:05 -080033// Description of how to generate a key when needed.
34struct KeyGeneration {
35 size_t keysize;
36 bool allow_gen;
37 bool use_hw_wrapped_key;
38};
Eric Biggersf3dc4202019-09-30 13:05:58 -070039
Paul Crowley4eac2642020-02-12 11:04:05 -080040// Generate a key as specified in KeyGeneration
41bool generateStorageKey(const KeyGeneration& gen, KeyBuffer* key);
42
Paul Crowley4eac2642020-02-12 11:04:05 -080043// Returns a key with allow_gen false so generateStorageKey returns false;
44// this is used to indicate to retrieveOrGenerateKey that a key should not
45// be generated.
46const KeyGeneration neverGen();
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -080047
Eric Biggersf3dc4202019-09-30 13:05:58 -070048bool isFsKeyringSupported(void);
49
Paul Crowley77df7f22020-01-23 15:29:30 -080050// Install a file-based encryption key to the kernel, for use by encrypted files
51// on the specified filesystem using the specified encryption policy version.
52//
53// For v1 policies, we use FS_IOC_ADD_ENCRYPTION_KEY if the kernel supports it.
Nikita Ioffe1ee35cf2020-02-28 19:50:31 +000054// Otherwise we add the key to the global session keyring as a "logon" key.
Paul Crowley77df7f22020-01-23 15:29:30 -080055//
56// For v2 policies, we always use FS_IOC_ADD_ENCRYPTION_KEY; it's the only way
57// the kernel supports.
58//
Nikita Ioffe1ee35cf2020-02-28 19:50:31 +000059// If kernel supports FS_IOC_ADD_ENCRYPTION_KEY, also installs key of
60// fscrypt-provisioning type to the global session keyring. This makes it
61// possible to unmount and then remount mountpoint without losing the file-based
62// key.
63//
Paul Crowley77df7f22020-01-23 15:29:30 -080064// Returns %true on success, %false on failure. On success also sets *policy
65// to the EncryptionPolicy used to refer to this key.
66bool installKey(const std::string& mountpoint, const EncryptionOptions& options,
67 const KeyBuffer& key, EncryptionPolicy* policy);
68
69// Evict a file-based encryption key from the kernel.
70//
Nikita Ioffe1ee35cf2020-02-28 19:50:31 +000071// This undoes the effect of installKey().
Paul Crowley77df7f22020-01-23 15:29:30 -080072//
Nikita Ioffe1ee35cf2020-02-28 19:50:31 +000073// If the kernel doesn't support the filesystem-level keyring, the caller is
74// responsible for dropping caches.
Paul Crowley77df7f22020-01-23 15:29:30 -080075bool evictKey(const std::string& mountpoint, const EncryptionPolicy& policy);
76
Eric Biggers2c9d6d62020-10-29 12:59:28 -070077// Retrieves the key from the named directory, or generates it if it doesn't
78// exist. In most cases |keepOld| must be false; see retrieveKey() for details.
Paul Crowley4eac2642020-02-12 11:04:05 -080079bool retrieveOrGenerateKey(const std::string& key_path, const std::string& tmp_path,
80 const KeyAuthentication& key_authentication, const KeyGeneration& gen,
Eric Biggers2c9d6d62020-10-29 12:59:28 -070081 KeyBuffer* key, bool keepOld);
Paul Crowleyf71ace32016-06-02 11:01:19 -070082
Nikita Ioffe1ee35cf2020-02-28 19:50:31 +000083// Re-installs a file-based encryption key of fscrypt-provisioning type from the
84// global session keyring back into fs keyring of the mountpoint.
85bool reloadKeyFromSessionKeyring(const std::string& mountpoint, const EncryptionPolicy& policy);
86
Paul Crowleyf71ace32016-06-02 11:01:19 -070087} // namespace vold
88} // namespace android
89
90#endif