blob: be5a2ed9a8b96fac708a23377644949d9eb1f2d3 [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
Pavel Grafove2e2d302017-08-01 17:15:53 +010033bool randomKey(KeyBuffer* key);
Eric Biggersf3dc4202019-09-30 13:05:58 -070034
35bool isFsKeyringSupported(void);
36
Paul Crowley77df7f22020-01-23 15:29:30 -080037// Install a file-based encryption key to the kernel, for use by encrypted files
38// on the specified filesystem using the specified encryption policy version.
39//
40// For v1 policies, we use FS_IOC_ADD_ENCRYPTION_KEY if the kernel supports it.
41// Otherwise we add the key to the legacy global session keyring.
42//
43// For v2 policies, we always use FS_IOC_ADD_ENCRYPTION_KEY; it's the only way
44// the kernel supports.
45//
46// Returns %true on success, %false on failure. On success also sets *policy
47// to the EncryptionPolicy used to refer to this key.
48bool installKey(const std::string& mountpoint, const EncryptionOptions& options,
49 const KeyBuffer& key, EncryptionPolicy* policy);
50
51// Evict a file-based encryption key from the kernel.
52//
53// We use FS_IOC_REMOVE_ENCRYPTION_KEY if the kernel supports it. Otherwise we
54// remove the key from the legacy global session keyring.
55//
56// In the latter case, the caller is responsible for dropping caches.
57bool evictKey(const std::string& mountpoint, const EncryptionPolicy& policy);
58
59bool retrieveKey(bool create_if_absent, const KeyAuthentication& key_authentication,
60 const std::string& key_path, const std::string& tmp_path, KeyBuffer* key,
61 bool keepOld = true);
Paul Crowleyf71ace32016-06-02 11:01:19 -070062
63} // namespace vold
64} // namespace android
65
66#endif