2016-06-02 20:04:27 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "MetadataCrypt.h"
|
2018-09-18 22:30:21 +02:00
|
|
|
#include "KeyBuffer.h"
|
2016-06-02 20:04:27 +02:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <android-base/logging.h>
|
2018-01-30 18:48:19 +01:00
|
|
|
#include <android-base/properties.h>
|
2020-02-07 07:56:27 +01:00
|
|
|
#include <android-base/strings.h>
|
2017-06-16 18:21:18 +02:00
|
|
|
#include <android-base/unique_fd.h>
|
2018-01-30 18:48:19 +01:00
|
|
|
#include <cutils/fs.h>
|
2016-06-02 20:04:27 +02:00
|
|
|
#include <fs_mgr.h>
|
2019-05-13 22:02:54 +02:00
|
|
|
#include <libdm/dm.h>
|
2020-10-07 08:20:00 +02:00
|
|
|
#include <libgsi/libgsi.h>
|
2016-06-02 20:04:27 +02:00
|
|
|
|
2018-08-28 10:58:49 +02:00
|
|
|
#include "Checkpoint.h"
|
2020-02-07 21:45:20 +01:00
|
|
|
#include "CryptoType.h"
|
2016-06-02 20:04:27 +02:00
|
|
|
#include "EncryptInplace.h"
|
|
|
|
#include "KeyStorage.h"
|
|
|
|
#include "KeyUtil.h"
|
2018-12-14 10:08:10 +01:00
|
|
|
#include "Keymaster.h"
|
2016-06-02 20:04:27 +02:00
|
|
|
#include "Utils.h"
|
|
|
|
#include "VoldUtil.h"
|
|
|
|
|
2020-02-07 21:45:20 +01:00
|
|
|
namespace android {
|
|
|
|
namespace vold {
|
|
|
|
|
2019-01-29 23:34:01 +01:00
|
|
|
using android::fs_mgr::FstabEntry;
|
|
|
|
using android::fs_mgr::GetEntryForMountPoint;
|
2017-08-01 18:15:53 +02:00
|
|
|
using android::vold::KeyBuffer;
|
2019-05-13 22:02:54 +02:00
|
|
|
using namespace android::dm;
|
2017-08-01 18:15:53 +02:00
|
|
|
|
2020-02-07 21:51:56 +01:00
|
|
|
// Parsed from metadata options
|
|
|
|
struct CryptoOptions {
|
|
|
|
struct CryptoType cipher = invalid_crypto_type;
|
2020-03-22 16:02:06 +01:00
|
|
|
bool use_legacy_options_format = false;
|
2020-02-07 21:51:56 +01:00
|
|
|
bool set_dun = true; // Non-legacy driver always sets DUN
|
2020-02-07 07:56:27 +01:00
|
|
|
bool use_hw_wrapped_key = false;
|
2020-02-07 21:51:56 +01:00
|
|
|
};
|
|
|
|
|
2016-06-02 20:04:27 +02:00
|
|
|
static const std::string kDmNameUserdata = "userdata";
|
|
|
|
|
2020-02-07 21:51:56 +01:00
|
|
|
// The first entry in this table is the default crypto type.
|
2020-02-07 21:45:20 +01:00
|
|
|
constexpr CryptoType supported_crypto_types[] = {aes_256_xts, adiantum};
|
|
|
|
|
|
|
|
static_assert(validateSupportedCryptoTypes(64, supported_crypto_types,
|
|
|
|
array_length(supported_crypto_types)),
|
|
|
|
"We have a CryptoType which was incompletely constructed.");
|
|
|
|
|
|
|
|
constexpr CryptoType legacy_aes_256_xts =
|
|
|
|
CryptoType().set_config_name("aes-256-xts").set_kernel_name("AES-256-XTS").set_keysize(64);
|
|
|
|
|
2020-02-07 21:51:56 +01:00
|
|
|
static_assert(isValidCryptoType(64, legacy_aes_256_xts),
|
2020-02-07 21:45:20 +01:00
|
|
|
"We have a CryptoType which was incompletely constructed.");
|
|
|
|
|
2020-02-07 21:51:56 +01:00
|
|
|
// Returns KeyGeneration suitable for key as described in CryptoOptions
|
|
|
|
const KeyGeneration makeGen(const CryptoOptions& options) {
|
2020-02-07 07:56:27 +01:00
|
|
|
return KeyGeneration{options.cipher.get_keysize(), true, options.use_hw_wrapped_key};
|
2020-02-07 21:51:56 +01:00
|
|
|
}
|
|
|
|
|
2016-06-02 20:04:27 +02:00
|
|
|
static bool mount_via_fs_mgr(const char* mount_point, const char* blk_device) {
|
|
|
|
// fs_mgr_do_mount runs fsck. Use setexeccon to run trusted
|
|
|
|
// partitions in the fsck domain.
|
2019-01-30 09:03:14 +01:00
|
|
|
if (setexeccon(android::vold::sFsckContext)) {
|
2016-06-02 20:04:27 +02:00
|
|
|
PLOG(ERROR) << "Failed to setexeccon";
|
|
|
|
return false;
|
|
|
|
}
|
2019-01-29 23:34:01 +01:00
|
|
|
auto mount_rc = fs_mgr_do_mount(&fstab_default, const_cast<char*>(mount_point),
|
2018-08-28 10:58:49 +02:00
|
|
|
const_cast<char*>(blk_device), nullptr,
|
2020-06-12 17:12:48 +02:00
|
|
|
android::vold::cp_needsCheckpoint(), true);
|
2016-06-02 20:04:27 +02:00
|
|
|
if (setexeccon(nullptr)) {
|
|
|
|
PLOG(ERROR) << "Failed to clear setexeccon";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (mount_rc != 0) {
|
|
|
|
LOG(ERROR) << "fs_mgr_do_mount failed with rc " << mount_rc;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
LOG(DEBUG) << "Mounted " << mount_point;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-12 20:04:05 +01:00
|
|
|
static bool read_key(const std::string& metadata_key_dir, const KeyGeneration& gen,
|
|
|
|
KeyBuffer* key) {
|
2020-02-14 10:15:35 +01:00
|
|
|
if (metadata_key_dir.empty()) {
|
2020-01-31 00:26:15 +01:00
|
|
|
LOG(ERROR) << "Failed to get metadata_key_dir";
|
2016-06-02 20:04:27 +02:00
|
|
|
return false;
|
|
|
|
}
|
2018-12-14 10:08:10 +01:00
|
|
|
std::string sKey;
|
2020-01-31 00:26:15 +01:00
|
|
|
auto dir = metadata_key_dir + "/key";
|
|
|
|
LOG(DEBUG) << "metadata_key_dir/key: " << dir;
|
2018-05-09 22:01:16 +02:00
|
|
|
if (fs_mkdirs(dir.c_str(), 0700)) {
|
2018-01-30 18:48:19 +01:00
|
|
|
PLOG(ERROR) << "Creating directories: " << dir;
|
2018-05-09 22:01:16 +02:00
|
|
|
return false;
|
2018-01-30 18:48:19 +01:00
|
|
|
}
|
2020-01-31 00:26:15 +01:00
|
|
|
auto temp = metadata_key_dir + "/tmp";
|
2020-11-06 04:58:26 +01:00
|
|
|
return retrieveOrGenerateKey(dir, temp, kEmptyAuthentication, gen, key);
|
2016-06-02 20:04:27 +02:00
|
|
|
}
|
|
|
|
|
2018-09-18 22:30:21 +02:00
|
|
|
static bool get_number_of_sectors(const std::string& real_blkdev, uint64_t* nr_sec) {
|
2018-05-23 10:50:46 +02:00
|
|
|
if (android::vold::GetBlockDev512Sectors(real_blkdev, nr_sec) != android::OK) {
|
2016-06-02 20:04:27 +02:00
|
|
|
PLOG(ERROR) << "Unable to measure size of " << real_blkdev;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-14 10:15:35 +01:00
|
|
|
static bool create_crypto_blk_dev(const std::string& dm_name, const std::string& blk_device,
|
2020-02-07 21:51:56 +01:00
|
|
|
const KeyBuffer& key, const CryptoOptions& options,
|
2020-02-07 21:51:56 +01:00
|
|
|
std::string* crypto_blkdev, uint64_t* nr_sec) {
|
|
|
|
if (!get_number_of_sectors(blk_device, nr_sec)) return false;
|
|
|
|
// TODO(paulcrowley): don't hardcode that DmTargetDefaultKey uses 4096-byte
|
|
|
|
// sectors
|
|
|
|
*nr_sec &= ~7;
|
2020-01-30 01:09:19 +01:00
|
|
|
|
2020-02-07 07:56:27 +01:00
|
|
|
KeyBuffer module_key;
|
|
|
|
if (options.use_hw_wrapped_key) {
|
|
|
|
if (!exportWrappedStorageKey(key, &module_key)) {
|
|
|
|
LOG(ERROR) << "Failed to get ephemeral wrapped key";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
module_key = key;
|
|
|
|
}
|
|
|
|
|
2019-05-13 22:02:54 +02:00
|
|
|
KeyBuffer hex_key_buffer;
|
2020-02-07 07:56:27 +01:00
|
|
|
if (android::vold::StrToHex(module_key, hex_key_buffer) != android::OK) {
|
2019-05-13 22:02:54 +02:00
|
|
|
LOG(ERROR) << "Failed to turn key to hex";
|
2016-06-02 20:04:27 +02:00
|
|
|
return false;
|
|
|
|
}
|
2019-05-13 22:02:54 +02:00
|
|
|
std::string hex_key(hex_key_buffer.data(), hex_key_buffer.size());
|
2016-06-02 20:04:27 +02:00
|
|
|
|
2020-02-07 21:51:56 +01:00
|
|
|
auto target = std::make_unique<DmTargetDefaultKey>(0, *nr_sec, options.cipher.get_kernel_name(),
|
2020-02-07 07:56:27 +01:00
|
|
|
hex_key, blk_device, 0);
|
2020-03-22 16:02:06 +01:00
|
|
|
if (options.use_legacy_options_format) target->SetUseLegacyOptionsFormat();
|
2020-02-07 07:56:27 +01:00
|
|
|
if (options.set_dun) target->SetSetDun();
|
|
|
|
if (options.use_hw_wrapped_key) target->SetWrappedKeyV0();
|
|
|
|
|
2019-05-13 22:02:54 +02:00
|
|
|
DmTable table;
|
2020-02-07 07:56:27 +01:00
|
|
|
table.AddTarget(std::move(target));
|
2016-06-02 20:04:27 +02:00
|
|
|
|
2020-01-31 00:26:15 +01:00
|
|
|
auto& dm = DeviceMapper::Instance();
|
2020-10-15 23:39:34 +02:00
|
|
|
if (!dm.CreateDevice(dm_name, table, crypto_blkdev, std::chrono::seconds(5))) {
|
|
|
|
PLOG(ERROR) << "Could not create default-key device " << dm_name;
|
|
|
|
return false;
|
2016-06-02 20:04:27 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-07 21:51:56 +01:00
|
|
|
static const CryptoType& lookup_cipher(const std::string& cipher_name) {
|
|
|
|
if (cipher_name.empty()) return supported_crypto_types[0];
|
|
|
|
for (size_t i = 0; i < array_length(supported_crypto_types); i++) {
|
|
|
|
if (cipher_name == supported_crypto_types[i].get_config_name()) {
|
|
|
|
return supported_crypto_types[i];
|
2020-02-14 10:15:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return invalid_crypto_type;
|
|
|
|
}
|
|
|
|
|
2020-02-07 21:51:56 +01:00
|
|
|
static bool parse_options(const std::string& options_string, CryptoOptions* options) {
|
2020-02-07 07:56:27 +01:00
|
|
|
auto parts = android::base::Split(options_string, ":");
|
|
|
|
if (parts.size() < 1 || parts.size() > 2) {
|
|
|
|
LOG(ERROR) << "Invalid metadata encryption option: " << options_string;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
std::string cipher_name = parts[0];
|
|
|
|
options->cipher = lookup_cipher(cipher_name);
|
2020-02-07 21:51:56 +01:00
|
|
|
if (options->cipher.get_kernel_name() == nullptr) {
|
2020-02-07 07:56:27 +01:00
|
|
|
LOG(ERROR) << "No metadata cipher named " << cipher_name << " found";
|
2020-02-07 21:51:56 +01:00
|
|
|
return false;
|
2020-02-14 10:15:35 +01:00
|
|
|
}
|
2020-02-07 07:56:27 +01:00
|
|
|
|
|
|
|
if (parts.size() == 2) {
|
|
|
|
if (parts[1] == "wrappedkey_v0") {
|
|
|
|
options->use_hw_wrapped_key = true;
|
|
|
|
} else {
|
|
|
|
LOG(ERROR) << "Invalid metadata encryption flag: " << parts[1];
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2020-02-07 21:51:56 +01:00
|
|
|
return true;
|
2020-02-14 10:15:35 +01:00
|
|
|
}
|
|
|
|
|
2019-06-25 23:44:33 +02:00
|
|
|
bool fscrypt_mount_metadata_encrypted(const std::string& blk_device, const std::string& mount_point,
|
|
|
|
bool needs_encrypt) {
|
2018-10-23 22:06:55 +02:00
|
|
|
LOG(DEBUG) << "fscrypt_mount_metadata_encrypted: " << mount_point << " " << needs_encrypt;
|
2018-01-30 18:48:19 +01:00
|
|
|
auto encrypted_state = android::base::GetProperty("ro.crypto.state", "");
|
2019-12-09 22:19:11 +01:00
|
|
|
if (encrypted_state != "" && encrypted_state != "encrypted") {
|
2018-10-23 22:06:55 +02:00
|
|
|
LOG(DEBUG) << "fscrypt_enable_crypto got unexpected starting state: " << encrypted_state;
|
2016-06-02 20:04:27 +02:00
|
|
|
return false;
|
|
|
|
}
|
2019-01-29 23:34:01 +01:00
|
|
|
|
|
|
|
auto data_rec = GetEntryForMountPoint(&fstab_default, mount_point);
|
2016-06-02 20:04:27 +02:00
|
|
|
if (!data_rec) {
|
2020-01-31 00:26:15 +01:00
|
|
|
LOG(ERROR) << "Failed to get data_rec for " << mount_point;
|
2016-06-02 20:04:27 +02:00
|
|
|
return false;
|
|
|
|
}
|
2020-02-14 10:15:35 +01:00
|
|
|
|
2020-03-22 16:02:06 +01:00
|
|
|
unsigned int options_format_version = android::base::GetUintProperty<unsigned int>(
|
|
|
|
"ro.crypto.dm_default_key.options_format.version",
|
2020-08-10 19:55:56 +02:00
|
|
|
(GetFirstApiLevel() <= __ANDROID_API_Q__ ? 1 : 2));
|
2020-02-14 10:15:35 +01:00
|
|
|
|
2020-02-07 21:51:56 +01:00
|
|
|
CryptoOptions options;
|
2020-03-22 16:02:06 +01:00
|
|
|
if (options_format_version == 1) {
|
2020-02-07 07:56:27 +01:00
|
|
|
if (!data_rec->metadata_encryption.empty()) {
|
|
|
|
LOG(ERROR) << "metadata_encryption options cannot be set in legacy mode";
|
2020-02-07 21:51:56 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
options.cipher = legacy_aes_256_xts;
|
2020-03-22 16:02:06 +01:00
|
|
|
options.use_legacy_options_format = true;
|
2020-02-07 21:51:56 +01:00
|
|
|
options.set_dun = android::base::GetBoolProperty("ro.crypto.set_dun", false);
|
|
|
|
if (!options.set_dun && data_rec->fs_mgr_flags.checkpoint_blk) {
|
|
|
|
LOG(ERROR)
|
|
|
|
<< "Block checkpoints and metadata encryption require ro.crypto.set_dun option";
|
|
|
|
return false;
|
|
|
|
}
|
2020-03-22 16:02:06 +01:00
|
|
|
} else if (options_format_version == 2) {
|
2020-02-07 07:56:27 +01:00
|
|
|
if (!parse_options(data_rec->metadata_encryption, &options)) return false;
|
2020-03-22 16:02:06 +01:00
|
|
|
} else {
|
|
|
|
LOG(ERROR) << "Unknown options_format_version: " << options_format_version;
|
|
|
|
return false;
|
2020-02-14 10:15:35 +01:00
|
|
|
}
|
|
|
|
|
2020-02-07 21:51:56 +01:00
|
|
|
auto gen = needs_encrypt ? makeGen(options) : neverGen();
|
2020-01-31 00:26:15 +01:00
|
|
|
KeyBuffer key;
|
2020-02-12 20:04:05 +01:00
|
|
|
if (!read_key(data_rec->metadata_key_dir, gen, &key)) return false;
|
2019-08-08 00:22:57 +02:00
|
|
|
|
2016-06-02 20:04:27 +02:00
|
|
|
std::string crypto_blkdev;
|
2020-02-07 21:51:56 +01:00
|
|
|
uint64_t nr_sec;
|
2020-03-02 21:57:58 +01:00
|
|
|
if (!create_crypto_blk_dev(kDmNameUserdata, blk_device, key, options, &crypto_blkdev, &nr_sec))
|
2020-02-14 10:15:35 +01:00
|
|
|
return false;
|
2019-06-25 23:44:33 +02:00
|
|
|
|
2018-01-30 18:48:19 +01:00
|
|
|
// FIXME handle the corrupt case
|
Refactor EncryptInplace.cpp
Refactor EncryptInplace.cpp to simplify and improve it a lot. This is
everything that didn't fit into prior commits, including:
- Share a lot more code between ext4, f2fs, and full encryption.
- Improve the log messages. Most importantly, don't spam the log with
huge numbers of messages, and don't log errors in expected cases.
Note: generate_f2fs_info() is still too noisy, but that's part of
"system/extras", not vold, so this change doesn't change that.
- When possible, do 32K reads/writes for f2fs and for full encryption,
not just for ext4. This might improve performance.
- Take advantage of C++ functionality.
- Be more careful about edge cases. E.g. if the calculation of the
number of blocks to encrypt was wrong, don't set vold.encrypt_progress
to > 99 until we're actually done.
The net change is over 200 lines removed.
Before-after comparison of log when enabling metadata encryption:
ext4 before:
I vold : Beginning inplace encryption, nr_sec: 16777216
D vold : cryptfs_enable_inplace(/dev/block/dm-8, /dev/block/by-name/userdata, 16777216, 0)
D vold : Opening/dev/block/by-name/userdata
D vold : Opening/dev/block/dm-8
I vold : Encrypting ext4 filesystem in place...
[omitted 6387 log messages]
I vold : Encrypted to sector 822084608
D vold : cryptfs_enable_inplace_ext4 success
I vold : Inplace encryption complete
ext4 after:
D vold : encrypt_inplace(/dev/block/dm-8, /dev/block/by-name/userdata, 16777216, false)
D vold : ext4 filesystem has 64 block groups
I vold : Encrypting ext4 filesystem on /dev/block/by-name/userdata in-place via /dev/block/dm-8
I vold : 50327 blocks (206 MB) of 2097152 blocks are in-use
D vold : Encrypted 10000 of 50327 blocks
D vold : Encrypted 20000 of 50327 blocks
D vold : Encrypted 30000 of 50327 blocks
D vold : Encrypted 40000 of 50327 blocks
D vold : Encrypted 50000 of 50327 blocks
D vold : Encrypted 50327 of 50327 blocks
I vold : Successfully encrypted ext4 filesystem on /dev/block/by-name/userdata
f2fs before:
I vold : Beginning inplace encryption, nr_sec: 16777216
D vold : cryptfs_enable_inplace(/dev/block/dm-8, /dev/block/by-name/userdata, 16777216, 0)
D vold : Opening/dev/block/by-name/userdata
D vold : Opening/dev/block/dm-8
E vold : Reading ext4 extent caused an exception
D vold : cryptfs_enable_inplace_ext4()=-1
[omitted logspam from f2fs_sparseblock]
I vold : Encrypting from block 0
I vold : Encrypted to block 15872
I vold : Encrypting from block 16384
I vold : Encrypted to block 16385
I vold : Encrypting from block 17408
I vold : Encrypted to block 17412
D vold : cryptfs_enable_inplace_f2fs success
I vold : Inplace encryption complete
f2fs after:
D vold : encrypt_inplace(/dev/block/dm-8, /dev/block/by-name/userdata, 16777216, false)
[omitted logspam from f2fs_sparseblock]
I vold : Encrypting f2fs filesystem on /dev/block/by-name/userdata in-place via /dev/block/dm-8
I vold : 15880 blocks (65 MB) of 2097152 blocks are in-use
D vold : Encrypted 10000 of 15880 blocks
D vold : Encrypted 15880 of 15880 blocks
I vold : Successfully encrypted f2fs filesystem on /dev/block/by-name/userdata
Test: Booted Cuttlefish with metadata encryption enabled and with the
userdata filesystem using (1) ext4, (2) f2fs, and (3) f2fs but
with EncryptInplace.cpp patched to not recognize the filesystem
and fall back to the "full" encryption case. Checked that the log
messages were as expected and that /data was mounted.
I've had no luck testing FDE yet; it doesn't work even without
these changes. Suggestions appreciated...
Change-Id: I08fc8465f7962abd698904b5466f3ed080d53953
2020-11-03 23:11:02 +01:00
|
|
|
if (needs_encrypt && !encrypt_inplace(crypto_blkdev, blk_device, nr_sec, false)) return false;
|
2016-06-02 20:04:27 +02:00
|
|
|
|
2018-01-30 18:48:19 +01:00
|
|
|
LOG(DEBUG) << "Mounting metadata-encrypted filesystem:" << mount_point;
|
2020-03-02 21:57:58 +01:00
|
|
|
mount_via_fs_mgr(mount_point.c_str(), crypto_blkdev.c_str());
|
2020-03-23 16:59:12 +01:00
|
|
|
|
|
|
|
// Record that there's at least one fstab entry with metadata encryption
|
|
|
|
if (!android::base::SetProperty("ro.crypto.metadata.enabled", "true")) {
|
|
|
|
LOG(WARNING) << "failed to set ro.crypto.metadata.enabled"; // This isn't fatal
|
|
|
|
}
|
2016-06-02 20:04:27 +02:00
|
|
|
return true;
|
|
|
|
}
|
2020-02-07 21:45:20 +01:00
|
|
|
|
2020-02-07 21:51:56 +01:00
|
|
|
static bool get_volume_options(CryptoOptions* options) {
|
|
|
|
return parse_options(android::base::GetProperty("ro.crypto.volume.metadata.encryption", ""),
|
|
|
|
options);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool defaultkey_volume_keygen(KeyGeneration* gen) {
|
|
|
|
CryptoOptions options;
|
|
|
|
if (!get_volume_options(&options)) return false;
|
|
|
|
*gen = makeGen(options);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool defaultkey_setup_ext_volume(const std::string& label, const std::string& blk_device,
|
|
|
|
const KeyBuffer& key, std::string* out_crypto_blkdev) {
|
|
|
|
LOG(DEBUG) << "defaultkey_setup_ext_volume: " << label << " " << blk_device;
|
|
|
|
|
|
|
|
CryptoOptions options;
|
|
|
|
if (!get_volume_options(&options)) return false;
|
|
|
|
uint64_t nr_sec;
|
|
|
|
return create_crypto_blk_dev(label, blk_device, key, options, out_crypto_blkdev, &nr_sec);
|
|
|
|
}
|
|
|
|
|
2020-10-07 08:20:00 +02:00
|
|
|
bool destroy_dsu_metadata_key(const std::string& dsu_slot) {
|
|
|
|
LOG(DEBUG) << "destroy_dsu_metadata_key: " << dsu_slot;
|
|
|
|
|
|
|
|
const auto dsu_metadata_key_dir = android::gsi::GetDsuMetadataKeyDir(dsu_slot);
|
|
|
|
if (!pathExists(dsu_metadata_key_dir)) {
|
|
|
|
LOG(DEBUG) << "DSU metadata_key_dir doesn't exist, nothing to remove: "
|
|
|
|
<< dsu_metadata_key_dir;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure that the DSU key directory is different from the host OS'.
|
|
|
|
// Under normal circumstances, this should never happen, but handle it just in case.
|
|
|
|
if (auto data_rec = GetEntryForMountPoint(&fstab_default, "/data")) {
|
|
|
|
if (dsu_metadata_key_dir == data_rec->metadata_key_dir) {
|
|
|
|
LOG(ERROR) << "DSU metadata_key_dir is same as host OS: " << dsu_metadata_key_dir;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ok = true;
|
|
|
|
for (auto suffix : {"/key", "/tmp"}) {
|
|
|
|
const auto key_path = dsu_metadata_key_dir + suffix;
|
|
|
|
if (pathExists(key_path)) {
|
|
|
|
LOG(DEBUG) << "Destroy key: " << key_path;
|
|
|
|
if (!android::vold::destroyKey(key_path)) {
|
|
|
|
LOG(ERROR) << "Failed to destroyKey(): " << key_path;
|
|
|
|
ok = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!ok) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOG(DEBUG) << "Remove DSU metadata_key_dir: " << dsu_metadata_key_dir;
|
|
|
|
// DeleteDirContentsAndDir() already logged any error, so don't log repeatedly.
|
|
|
|
return android::vold::DeleteDirContentsAndDir(dsu_metadata_key_dir) == android::OK;
|
|
|
|
}
|
|
|
|
|
2020-02-07 21:45:20 +01:00
|
|
|
} // namespace vold
|
|
|
|
} // namespace android
|