blob: b7b8e3acbc0863f1019fdaf6f5c3ba49d7e72d3a [file] [log] [blame]
Paul Crowleyd5759812016-06-02 11:04:27 -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#include "MetadataCrypt.h"
Paul Crowley14c8c072018-09-18 13:30:21 -070018#include "KeyBuffer.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070019
Daniel Rosenberg358487a2024-07-29 13:48:38 -070020#include <fstream>
Paul Crowleyd5759812016-06-02 11:04:27 -070021#include <string>
Paul Crowleyd5759812016-06-02 11:04:27 -070022
23#include <fcntl.h>
Paul Crowleyd5759812016-06-02 11:04:27 -070024#include <sys/param.h>
25#include <sys/stat.h>
26#include <sys/types.h>
27
Paul Crowleyd5759812016-06-02 11:04:27 -070028#include <android-base/logging.h>
Paul Crowley0fd26262018-01-30 09:48:19 -080029#include <android-base/properties.h>
Barani Muthukumaran312b7df2020-02-06 22:56:27 -080030#include <android-base/strings.h>
Paul Crowleye4c93da2017-06-16 09:21:18 -070031#include <android-base/unique_fd.h>
Paul Crowley0fd26262018-01-30 09:48:19 -080032#include <cutils/fs.h>
Paul Crowleyd5759812016-06-02 11:04:27 -070033#include <fs_mgr.h>
David Andersonb9224732019-05-13 13:02:54 -070034#include <libdm/dm.h>
Yo Chiang0af25a32020-10-07 14:20:00 +080035#include <libgsi/libgsi.h>
Paul Crowleyd5759812016-06-02 11:04:27 -070036
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070037#include "Checkpoint.h"
Paul Crowley220567c2020-02-07 12:45:20 -080038#include "CryptoType.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070039#include "EncryptInplace.h"
Neeraj Sonic0e1e5b2020-05-04 23:49:03 +053040#include "FsCrypt.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070041#include "KeyStorage.h"
42#include "KeyUtil.h"
Eric Biggersd86a8ab2021-06-15 11:34:00 -070043#include "Keystore.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070044#include "Utils.h"
45#include "VoldUtil.h"
Jaegeuk Kim0c52c712020-12-15 09:00:49 -080046#include "fs/Ext4.h"
47#include "fs/F2fs.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070048
Paul Crowley220567c2020-02-07 12:45:20 -080049namespace android {
50namespace vold {
51
Jaegeuk Kim2091c872024-04-23 19:01:26 -070052using android::base::Basename;
Tom Cherry4c5bde22019-01-29 14:34:01 -080053using android::fs_mgr::FstabEntry;
54using android::fs_mgr::GetEntryForMountPoint;
Paul Crowleyf4430382020-04-05 19:34:31 -070055using android::fscrypt::GetFirstApiLevel;
Pavel Grafove2e2d302017-08-01 17:15:53 +010056using android::vold::KeyBuffer;
David Andersonb9224732019-05-13 13:02:54 -070057using namespace android::dm;
David Anderson156d9d22021-09-21 17:21:57 -070058using namespace std::chrono_literals;
Pavel Grafove2e2d302017-08-01 17:15:53 +010059
Paul Crowley249c2fb2020-02-07 12:51:56 -080060// Parsed from metadata options
61struct CryptoOptions {
62 struct CryptoType cipher = invalid_crypto_type;
Paul Crowleyf56d5532020-03-22 08:02:06 -070063 bool use_legacy_options_format = false;
Paul Crowley249c2fb2020-02-07 12:51:56 -080064 bool set_dun = true; // Non-legacy driver always sets DUN
Barani Muthukumaran312b7df2020-02-06 22:56:27 -080065 bool use_hw_wrapped_key = false;
Paul Crowley249c2fb2020-02-07 12:51:56 -080066};
67
Paul Crowleyd5759812016-06-02 11:04:27 -070068static const std::string kDmNameUserdata = "userdata";
69
Paul Crowley249c2fb2020-02-07 12:51:56 -080070// The first entry in this table is the default crypto type.
Paul Crowley220567c2020-02-07 12:45:20 -080071constexpr CryptoType supported_crypto_types[] = {aes_256_xts, adiantum};
72
73static_assert(validateSupportedCryptoTypes(64, supported_crypto_types,
74 array_length(supported_crypto_types)),
75 "We have a CryptoType which was incompletely constructed.");
76
77constexpr CryptoType legacy_aes_256_xts =
78 CryptoType().set_config_name("aes-256-xts").set_kernel_name("AES-256-XTS").set_keysize(64);
79
Paul Crowley249c2fb2020-02-07 12:51:56 -080080static_assert(isValidCryptoType(64, legacy_aes_256_xts),
Paul Crowley220567c2020-02-07 12:45:20 -080081 "We have a CryptoType which was incompletely constructed.");
82
Paul Crowley249c2fb2020-02-07 12:51:56 -080083// Returns KeyGeneration suitable for key as described in CryptoOptions
84const KeyGeneration makeGen(const CryptoOptions& options) {
Barani Muthukumaran312b7df2020-02-06 22:56:27 -080085 return KeyGeneration{options.cipher.get_keysize(), true, options.use_hw_wrapped_key};
Paul Crowley249c2fb2020-02-07 12:51:56 -080086}
87
David Anderson156d9d22021-09-21 17:21:57 -070088void defaultkey_precreate_dm_device() {
89 auto& dm = DeviceMapper::Instance();
90 if (dm.GetState(kDmNameUserdata) != DmDeviceState::INVALID) {
91 LOG(INFO) << "Not pre-creating userdata encryption device; device already exists";
92 return;
93 }
David Anderson7b769bc2022-12-08 09:49:54 -080094
David Anderson223c1b22022-12-13 19:42:49 -080095 if (!dm.CreatePlaceholderDevice(kDmNameUserdata)) {
David Anderson7b769bc2022-12-08 09:49:54 -080096 LOG(ERROR) << "Failed to pre-create userdata metadata encryption device";
97 }
David Anderson156d9d22021-09-21 17:21:57 -070098}
99
faqiang.zhudd20dc32021-07-19 12:27:37 +0800100static bool mount_via_fs_mgr(const char* mount_point, const char* blk_device, bool needs_encrypt) {
Paul Crowleyd5759812016-06-02 11:04:27 -0700101 // fs_mgr_do_mount runs fsck. Use setexeccon to run trusted
102 // partitions in the fsck domain.
LongPing Wei7f3ab952019-01-30 16:03:14 +0800103 if (setexeccon(android::vold::sFsckContext)) {
Paul Crowleyd5759812016-06-02 11:04:27 -0700104 PLOG(ERROR) << "Failed to setexeccon";
105 return false;
106 }
Paul Lawrence997e9bb2023-06-22 08:43:42 -0700107 auto mount_rc = fs_mgr_do_mount(&fstab_default, mount_point, blk_device,
108 android::vold::cp_needsCheckpoint(), needs_encrypt);
Paul Crowleyd5759812016-06-02 11:04:27 -0700109 if (setexeccon(nullptr)) {
110 PLOG(ERROR) << "Failed to clear setexeccon";
111 return false;
112 }
113 if (mount_rc != 0) {
114 LOG(ERROR) << "fs_mgr_do_mount failed with rc " << mount_rc;
115 return false;
116 }
117 LOG(DEBUG) << "Mounted " << mount_point;
118 return true;
119}
120
Jaegeuk Kimfb9aada2023-01-13 08:22:11 -0800121static bool read_key(const std::string& metadata_key_dir, const KeyGeneration& gen, bool first_key,
Paul Crowley4eac2642020-02-12 11:04:05 -0800122 KeyBuffer* key) {
Paul Crowley572c0242020-02-14 01:15:35 -0800123 if (metadata_key_dir.empty()) {
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800124 LOG(ERROR) << "Failed to get metadata_key_dir";
Paul Crowleyd5759812016-06-02 11:04:27 -0700125 return false;
126 }
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800127 std::string sKey;
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800128 auto dir = metadata_key_dir + "/key";
129 LOG(DEBUG) << "metadata_key_dir/key: " << dir;
Eric Biggersfec0c0e2021-02-16 15:59:17 -0800130 if (!MkdirsSync(dir, 0700)) return false;
Howard Chencbc1bdb2021-09-14 14:40:59 +0800131 auto in_dsu = android::base::GetBoolProperty("ro.gsid.image_running", false);
132 // !pathExists(dir) does not imply there's a factory reset when in DSU mode.
Jaegeuk Kimfb9aada2023-01-13 08:22:11 -0800133 if (!pathExists(dir) && !in_dsu && first_key) {
Paul Crowley1e6a5f52021-08-06 15:16:10 -0700134 auto delete_all = android::base::GetBoolProperty(
135 "ro.crypto.metadata_init_delete_all_keys.enabled", false);
136 if (delete_all) {
137 LOG(INFO) << "Metadata key does not exist, calling deleteAllKeys";
138 Keystore::deleteAllKeys();
139 } else {
140 LOG(DEBUG) << "Metadata key does not exist but "
141 "ro.crypto.metadata_init_delete_all_keys.enabled is false";
142 }
143 }
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800144 auto temp = metadata_key_dir + "/tmp";
Eric Biggersf74373b2020-11-05 19:58:26 -0800145 return retrieveOrGenerateKey(dir, temp, kEmptyAuthentication, gen, key);
Paul Crowleyd5759812016-06-02 11:04:27 -0700146}
147
Paul Crowley14c8c072018-09-18 13:30:21 -0700148static bool get_number_of_sectors(const std::string& real_blkdev, uint64_t* nr_sec) {
Oleksiy Avramchenko625dc782018-05-23 10:50:46 +0200149 if (android::vold::GetBlockDev512Sectors(real_blkdev, nr_sec) != android::OK) {
Paul Crowleyd5759812016-06-02 11:04:27 -0700150 PLOG(ERROR) << "Unable to measure size of " << real_blkdev;
151 return false;
152 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700153 return true;
154}
155
Paul Crowley572c0242020-02-14 01:15:35 -0800156static bool create_crypto_blk_dev(const std::string& dm_name, const std::string& blk_device,
Paul Crowley249c2fb2020-02-07 12:51:56 -0800157 const KeyBuffer& key, const CryptoOptions& options,
Jaegeuk Kim2091c872024-04-23 19:01:26 -0700158 std::string* crypto_blkdev, uint64_t* nr_sec, bool is_userdata) {
Paul Crowley886e5722020-02-07 12:51:56 -0800159 if (!get_number_of_sectors(blk_device, nr_sec)) return false;
160 // TODO(paulcrowley): don't hardcode that DmTargetDefaultKey uses 4096-byte
161 // sectors
162 *nr_sec &= ~7;
Paul Crowley84e84c52020-01-29 16:09:19 -0800163
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800164 KeyBuffer module_key;
165 if (options.use_hw_wrapped_key) {
166 if (!exportWrappedStorageKey(key, &module_key)) {
167 LOG(ERROR) << "Failed to get ephemeral wrapped key";
168 return false;
169 }
170 } else {
171 module_key = key;
172 }
173
David Andersonb9224732019-05-13 13:02:54 -0700174 KeyBuffer hex_key_buffer;
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800175 if (android::vold::StrToHex(module_key, hex_key_buffer) != android::OK) {
David Andersonb9224732019-05-13 13:02:54 -0700176 LOG(ERROR) << "Failed to turn key to hex";
Paul Crowleyd5759812016-06-02 11:04:27 -0700177 return false;
178 }
David Andersonb9224732019-05-13 13:02:54 -0700179 std::string hex_key(hex_key_buffer.data(), hex_key_buffer.size());
Paul Crowleyd5759812016-06-02 11:04:27 -0700180
Paul Crowley886e5722020-02-07 12:51:56 -0800181 auto target = std::make_unique<DmTargetDefaultKey>(0, *nr_sec, options.cipher.get_kernel_name(),
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800182 hex_key, blk_device, 0);
Paul Crowleyf56d5532020-03-22 08:02:06 -0700183 if (options.use_legacy_options_format) target->SetUseLegacyOptionsFormat();
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800184 if (options.set_dun) target->SetSetDun();
185 if (options.use_hw_wrapped_key) target->SetWrappedKeyV0();
186
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800187 DmTable table;
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800188 table.AddTarget(std::move(target));
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800189
190 auto& dm = DeviceMapper::Instance();
David Anderson156d9d22021-09-21 17:21:57 -0700191 if (dm_name == kDmNameUserdata && dm.GetState(dm_name) == DmDeviceState::SUSPENDED) {
192 // The device was created in advance, populate it now.
David Anderson156d9d22021-09-21 17:21:57 -0700193 if (!dm.LoadTableAndActivate(dm_name, table)) {
194 LOG(ERROR) << "Failed to populate default-key device " << dm_name;
195 return false;
196 }
Masaya Takahashi5ed64b22023-02-06 19:43:52 +0900197 if (!dm.WaitForDevice(dm_name, 20s, crypto_blkdev)) {
Will McVickerb910e7e2021-12-23 12:23:39 -0800198 LOG(ERROR) << "Failed to wait for default-key device " << dm_name;
199 return false;
200 }
David Anderson156d9d22021-09-21 17:21:57 -0700201 } else if (!dm.CreateDevice(dm_name, table, crypto_blkdev, 5s)) {
202 LOG(ERROR) << "Could not create default-key device " << dm_name;
Eric Biggers836b51b2020-10-15 14:39:34 -0700203 return false;
Paul Crowleyd5759812016-06-02 11:04:27 -0700204 }
Jaegeuk Kim95c61b32023-11-10 15:16:14 -0800205
206 // If there are multiple partitions used for a single mount, F2FS stores
207 // their partition paths in superblock. If the paths are dm targets, we
208 // cannot guarantee them across device boots. Let's use the logical paths.
Jaegeuk Kim2091c872024-04-23 19:01:26 -0700209 if (is_userdata) {
Jaegeuk Kim95c61b32023-11-10 15:16:14 -0800210 *crypto_blkdev = "/dev/block/mapper/" + dm_name;
211 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700212 return true;
213}
214
Paul Crowley249c2fb2020-02-07 12:51:56 -0800215static const CryptoType& lookup_cipher(const std::string& cipher_name) {
216 if (cipher_name.empty()) return supported_crypto_types[0];
217 for (size_t i = 0; i < array_length(supported_crypto_types); i++) {
218 if (cipher_name == supported_crypto_types[i].get_config_name()) {
219 return supported_crypto_types[i];
Paul Crowley572c0242020-02-14 01:15:35 -0800220 }
221 }
222 return invalid_crypto_type;
223}
224
Paul Crowley249c2fb2020-02-07 12:51:56 -0800225static bool parse_options(const std::string& options_string, CryptoOptions* options) {
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800226 auto parts = android::base::Split(options_string, ":");
227 if (parts.size() < 1 || parts.size() > 2) {
228 LOG(ERROR) << "Invalid metadata encryption option: " << options_string;
Paul Crowley249c2fb2020-02-07 12:51:56 -0800229 return false;
Paul Crowley572c0242020-02-14 01:15:35 -0800230 }
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800231 std::string cipher_name = parts[0];
232 options->cipher = lookup_cipher(cipher_name);
233 if (options->cipher.get_kernel_name() == nullptr) {
234 LOG(ERROR) << "No metadata cipher named " << cipher_name << " found";
235 return false;
236 }
237
238 if (parts.size() == 2) {
239 if (parts[1] == "wrappedkey_v0") {
240 options->use_hw_wrapped_key = true;
241 } else {
242 LOG(ERROR) << "Invalid metadata encryption flag: " << parts[1];
243 return false;
244 }
245 }
Paul Crowley249c2fb2020-02-07 12:51:56 -0800246 return true;
Paul Crowley572c0242020-02-14 01:15:35 -0800247}
248
Daniel Rosenberg358487a2024-07-29 13:48:38 -0700249class EncryptionInProgress {
250 private:
251 std::string file_path_;
252 bool need_cleanup_ = false;
253
254 public:
255 EncryptionInProgress(const FstabEntry& entry) {
256 file_path_ = fs_mgr_metadata_encryption_in_progress_file_name(entry);
257 }
258
259 [[nodiscard]] bool Mark() {
260 {
261 std::ofstream touch(file_path_);
262 if (!touch.is_open()) {
263 PLOG(ERROR) << "Failed to mark metadata encryption in progress " << file_path_;
264 return false;
265 }
266 need_cleanup_ = true;
267 }
268 if (!android::vold::FsyncParentDirectory(file_path_)) return false;
269
270 LOG(INFO) << "Marked metadata encryption in progress (" << file_path_ << ")";
271 return true;
272 }
273
274 [[nodiscard]] bool Remove() {
275 need_cleanup_ = false;
276 if (unlink(file_path_.c_str()) != 0) {
277 PLOG(ERROR) << "Failed to clear metadata encryption in progress (" << file_path_ << ")";
278 return false;
279 }
280 if (!android::vold::FsyncParentDirectory(file_path_)) return false;
281
282 LOG(INFO) << "Cleared metadata encryption in progress (" << file_path_ << ")";
283 return true;
284 }
285
286 ~EncryptionInProgress() {
287 if (need_cleanup_) (void)Remove();
288 }
289};
290
Paul Lawrence236e5e82019-06-25 14:44:33 -0700291bool fscrypt_mount_metadata_encrypted(const std::string& blk_device, const std::string& mount_point,
Jaegeuk Kim0c52c712020-12-15 09:00:49 -0800292 bool needs_encrypt, bool should_format,
Jaegeuk Kim2091c872024-04-23 19:01:26 -0700293 const std::string& fs_type, bool is_zoned,
Ashok Mutyala8a398782024-05-28 09:31:44 +0000294 const std::vector<std::string>& user_devices,
Daeho Jeong0c841552024-10-21 14:05:31 -0700295 const std::vector<bool>& device_aliased, int64_t length) {
Jaegeuk Kim0c52c712020-12-15 09:00:49 -0800296 LOG(DEBUG) << "fscrypt_mount_metadata_encrypted: " << mount_point
297 << " encrypt: " << needs_encrypt << " format: " << should_format << " with "
Ashok Mutyala8a398782024-05-28 09:31:44 +0000298 << fs_type << " block device: " << blk_device << " with zoned " << is_zoned
299 << " length: " << length;
Jaegeuk Kim2091c872024-04-23 19:01:26 -0700300
301 for (auto& device : user_devices) {
302 LOG(DEBUG) << " - user devices: " << device;
303 }
304
Paul Crowley0fd26262018-01-30 09:48:19 -0800305 auto encrypted_state = android::base::GetProperty("ro.crypto.state", "");
Nikita Ioffef850e6e2019-12-09 21:19:11 +0000306 if (encrypted_state != "" && encrypted_state != "encrypted") {
David Andersone1791572021-11-05 18:57:49 -0700307 LOG(ERROR) << "fscrypt_mount_metadata_encrypted got unexpected starting state: "
308 << encrypted_state;
Paul Crowleyd5759812016-06-02 11:04:27 -0700309 return false;
310 }
Tom Cherry4c5bde22019-01-29 14:34:01 -0800311
312 auto data_rec = GetEntryForMountPoint(&fstab_default, mount_point);
Paul Crowleyd5759812016-06-02 11:04:27 -0700313 if (!data_rec) {
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800314 LOG(ERROR) << "Failed to get data_rec for " << mount_point;
315 return false;
316 }
Paul Crowley572c0242020-02-14 01:15:35 -0800317
Paul Crowleyf56d5532020-03-22 08:02:06 -0700318 unsigned int options_format_version = android::base::GetUintProperty<unsigned int>(
319 "ro.crypto.dm_default_key.options_format.version",
Eric Biggers72d07132020-08-10 10:55:56 -0700320 (GetFirstApiLevel() <= __ANDROID_API_Q__ ? 1 : 2));
Paul Crowley572c0242020-02-14 01:15:35 -0800321
Paul Crowley249c2fb2020-02-07 12:51:56 -0800322 CryptoOptions options;
Paul Crowleyf56d5532020-03-22 08:02:06 -0700323 if (options_format_version == 1) {
Eric Biggers41d78432022-03-17 23:18:18 +0000324 if (!data_rec->metadata_encryption_options.empty()) {
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800325 LOG(ERROR) << "metadata_encryption options cannot be set in legacy mode";
Paul Crowley249c2fb2020-02-07 12:51:56 -0800326 return false;
327 }
328 options.cipher = legacy_aes_256_xts;
Paul Crowleyf56d5532020-03-22 08:02:06 -0700329 options.use_legacy_options_format = true;
Neeraj Sonic0e1e5b2020-05-04 23:49:03 +0530330 if (is_metadata_wrapped_key_supported())
331 options.use_hw_wrapped_key = true;
Paul Crowley249c2fb2020-02-07 12:51:56 -0800332 options.set_dun = android::base::GetBoolProperty("ro.crypto.set_dun", false);
333 if (!options.set_dun && data_rec->fs_mgr_flags.checkpoint_blk) {
334 LOG(ERROR)
335 << "Block checkpoints and metadata encryption require ro.crypto.set_dun option";
336 return false;
337 }
Paul Crowleyf56d5532020-03-22 08:02:06 -0700338 } else if (options_format_version == 2) {
Eric Biggers41d78432022-03-17 23:18:18 +0000339 if (!parse_options(data_rec->metadata_encryption_options, &options)) return false;
Paul Crowleyf56d5532020-03-22 08:02:06 -0700340 } else {
341 LOG(ERROR) << "Unknown options_format_version: " << options_format_version;
342 return false;
Paul Crowley572c0242020-02-14 01:15:35 -0800343 }
344
Jaegeuk Kimf6151b42020-12-15 09:02:29 -0800345 auto default_metadata_key_dir = data_rec->metadata_key_dir;
Jaegeuk Kim2091c872024-04-23 19:01:26 -0700346 if (!user_devices.empty()) {
Jaegeuk Kimf6151b42020-12-15 09:02:29 -0800347 default_metadata_key_dir = default_metadata_key_dir + "/default";
348 }
Paul Crowley249c2fb2020-02-07 12:51:56 -0800349 auto gen = needs_encrypt ? makeGen(options) : neverGen();
Paul Crowley0fd26262018-01-30 09:48:19 -0800350 KeyBuffer key;
Jaegeuk Kimfb9aada2023-01-13 08:22:11 -0800351 if (!read_key(default_metadata_key_dir, gen, true, &key)) {
David Andersone1791572021-11-05 18:57:49 -0700352 LOG(ERROR) << "read_key failed in mountFstab";
353 return false;
354 }
Paul Lawrence4b140d32019-08-07 15:22:57 -0700355
Paul Crowleyd5759812016-06-02 11:04:27 -0700356 std::string crypto_blkdev;
Paul Crowley886e5722020-02-07 12:51:56 -0800357 uint64_t nr_sec;
Jaegeuk Kim2091c872024-04-23 19:01:26 -0700358 if (!create_crypto_blk_dev(kDmNameUserdata, blk_device, key, options, &crypto_blkdev, &nr_sec,
359 true)) {
David Andersone1791572021-11-05 18:57:49 -0700360 LOG(ERROR) << "create_crypto_blk_dev failed in mountFstab";
Paul Crowley572c0242020-02-14 01:15:35 -0800361 return false;
David Andersone1791572021-11-05 18:57:49 -0700362 }
Paul Lawrence236e5e82019-06-25 14:44:33 -0700363
Jaegeuk Kim2091c872024-04-23 19:01:26 -0700364 // create dm-default-key for user devices
365 std::vector<std::string> crypto_user_blkdev;
366 for (auto& device : user_devices) {
367 std::string name = Basename(device);
368 auto metadata_key_dir = data_rec->metadata_key_dir + "/" + name;
Jaegeuk Kimf6151b42020-12-15 09:02:29 -0800369
Jaegeuk Kim2091c872024-04-23 19:01:26 -0700370 if (!read_key(metadata_key_dir, gen, false, &key)) {
371 LOG(ERROR) << "read_key failed with zoned device: " << device;
Jaegeuk Kimf6151b42020-12-15 09:02:29 -0800372 return false;
373 }
Jaegeuk Kim2091c872024-04-23 19:01:26 -0700374 std::string crypto_blkdev_arg;
375 if (!create_crypto_blk_dev(name, device, key, options, &crypto_blkdev_arg, &nr_sec, true)) {
376 LOG(ERROR) << "fscrypt_mount_metadata_encrypted: failed with device: " << device;
Jaegeuk Kimf6151b42020-12-15 09:02:29 -0800377 return false;
378 }
Jaegeuk Kim2091c872024-04-23 19:01:26 -0700379 crypto_user_blkdev.push_back(crypto_blkdev_arg.c_str());
Jaegeuk Kimf6151b42020-12-15 09:02:29 -0800380 }
381
Jaegeuk Kim0c52c712020-12-15 09:00:49 -0800382 if (needs_encrypt) {
Daniel Rosenberg358487a2024-07-29 13:48:38 -0700383 EncryptionInProgress marker(*data_rec);
384 if (!marker.Mark()) return false;
Jaegeuk Kim0c52c712020-12-15 09:00:49 -0800385 if (should_format) {
386 status_t error;
387
388 if (fs_type == "ext4") {
389 error = ext4::Format(crypto_blkdev, 0, mount_point);
390 } else if (fs_type == "f2fs") {
Daeho Jeong0c841552024-10-21 14:05:31 -0700391 error = f2fs::Format(crypto_blkdev, is_zoned, crypto_user_blkdev, device_aliased,
392 length);
Jaegeuk Kim0c52c712020-12-15 09:00:49 -0800393 } else {
394 LOG(ERROR) << "Unknown filesystem type: " << fs_type;
395 return false;
396 }
David Andersone1791572021-11-05 18:57:49 -0700397 if (error != 0) {
398 LOG(ERROR) << "Format of " << crypto_blkdev << " for " << mount_point
399 << " failed (err=" << error << ").";
400 return false;
401 }
402 LOG(DEBUG) << "Format of " << crypto_blkdev << " for " << mount_point << " succeeded.";
Jaegeuk Kim0c52c712020-12-15 09:00:49 -0800403 } else {
Jaegeuk Kim2091c872024-04-23 19:01:26 -0700404 if (!user_devices.empty()) {
405 LOG(ERROR) << "encrypt_inplace cannot support zoned or userdata_exp device; should "
406 "format it.";
Jaegeuk Kimf6151b42020-12-15 09:02:29 -0800407 return false;
408 }
Eric Biggers640a1a92022-03-09 20:39:04 +0000409 if (!encrypt_inplace(crypto_blkdev, blk_device, nr_sec)) {
David Andersone1791572021-11-05 18:57:49 -0700410 LOG(ERROR) << "encrypt_inplace failed in mountFstab";
411 return false;
412 }
Jaegeuk Kim0c52c712020-12-15 09:00:49 -0800413 }
Daniel Rosenberg358487a2024-07-29 13:48:38 -0700414 if (!marker.Remove()) return false;
Jaegeuk Kim0c52c712020-12-15 09:00:49 -0800415 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700416
Paul Crowley0fd26262018-01-30 09:48:19 -0800417 LOG(DEBUG) << "Mounting metadata-encrypted filesystem:" << mount_point;
faqiang.zhudd20dc32021-07-19 12:27:37 +0800418 mount_via_fs_mgr(mount_point.c_str(), crypto_blkdev.c_str(), needs_encrypt);
Paul Crowley7fbd8d42020-03-23 08:59:12 -0700419
420 // Record that there's at least one fstab entry with metadata encryption
421 if (!android::base::SetProperty("ro.crypto.metadata.enabled", "true")) {
422 LOG(WARNING) << "failed to set ro.crypto.metadata.enabled"; // This isn't fatal
423 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700424 return true;
425}
Paul Crowley220567c2020-02-07 12:45:20 -0800426
Paul Crowley886e5722020-02-07 12:51:56 -0800427static bool get_volume_options(CryptoOptions* options) {
428 return parse_options(android::base::GetProperty("ro.crypto.volume.metadata.encryption", ""),
429 options);
430}
431
432bool defaultkey_volume_keygen(KeyGeneration* gen) {
433 CryptoOptions options;
434 if (!get_volume_options(&options)) return false;
435 *gen = makeGen(options);
436 return true;
437}
438
439bool defaultkey_setup_ext_volume(const std::string& label, const std::string& blk_device,
440 const KeyBuffer& key, std::string* out_crypto_blkdev) {
441 LOG(DEBUG) << "defaultkey_setup_ext_volume: " << label << " " << blk_device;
442
443 CryptoOptions options;
444 if (!get_volume_options(&options)) return false;
445 uint64_t nr_sec;
Jaegeuk Kim2091c872024-04-23 19:01:26 -0700446 return create_crypto_blk_dev(label, blk_device, key, options, out_crypto_blkdev, &nr_sec,
447 false);
Paul Crowley886e5722020-02-07 12:51:56 -0800448}
449
Yo Chiang0af25a32020-10-07 14:20:00 +0800450bool destroy_dsu_metadata_key(const std::string& dsu_slot) {
451 LOG(DEBUG) << "destroy_dsu_metadata_key: " << dsu_slot;
452
453 const auto dsu_metadata_key_dir = android::gsi::GetDsuMetadataKeyDir(dsu_slot);
454 if (!pathExists(dsu_metadata_key_dir)) {
455 LOG(DEBUG) << "DSU metadata_key_dir doesn't exist, nothing to remove: "
456 << dsu_metadata_key_dir;
457 return true;
458 }
459
460 // Ensure that the DSU key directory is different from the host OS'.
461 // Under normal circumstances, this should never happen, but handle it just in case.
462 if (auto data_rec = GetEntryForMountPoint(&fstab_default, "/data")) {
463 if (dsu_metadata_key_dir == data_rec->metadata_key_dir) {
464 LOG(ERROR) << "DSU metadata_key_dir is same as host OS: " << dsu_metadata_key_dir;
465 return false;
466 }
467 }
468
469 bool ok = true;
470 for (auto suffix : {"/key", "/tmp"}) {
471 const auto key_path = dsu_metadata_key_dir + suffix;
472 if (pathExists(key_path)) {
473 LOG(DEBUG) << "Destroy key: " << key_path;
474 if (!android::vold::destroyKey(key_path)) {
475 LOG(ERROR) << "Failed to destroyKey(): " << key_path;
476 ok = false;
477 }
478 }
479 }
480 if (!ok) {
481 return false;
482 }
483
484 LOG(DEBUG) << "Remove DSU metadata_key_dir: " << dsu_metadata_key_dir;
485 // DeleteDirContentsAndDir() already logged any error, so don't log repeatedly.
486 return android::vold::DeleteDirContentsAndDir(dsu_metadata_key_dir) == android::OK;
487}
488
Paul Crowley220567c2020-02-07 12:45:20 -0800489} // namespace vold
490} // namespace android