blob: 50943fc8081c9b3b145d648c603b19bfef0f5420 [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
20#include <string>
Paul Crowleyd5759812016-06-02 11:04:27 -070021
22#include <fcntl.h>
Paul Crowleyd5759812016-06-02 11:04:27 -070023#include <sys/param.h>
24#include <sys/stat.h>
25#include <sys/types.h>
26
Paul Crowleyd5759812016-06-02 11:04:27 -070027#include <android-base/logging.h>
Paul Crowley0fd26262018-01-30 09:48:19 -080028#include <android-base/properties.h>
Barani Muthukumaran312b7df2020-02-06 22:56:27 -080029#include <android-base/strings.h>
Paul Crowleye4c93da2017-06-16 09:21:18 -070030#include <android-base/unique_fd.h>
Paul Crowley0fd26262018-01-30 09:48:19 -080031#include <cutils/fs.h>
Paul Crowleyd5759812016-06-02 11:04:27 -070032#include <fs_mgr.h>
David Andersonb9224732019-05-13 13:02:54 -070033#include <libdm/dm.h>
Yo Chiang0af25a32020-10-07 14:20:00 +080034#include <libgsi/libgsi.h>
Paul Crowleyd5759812016-06-02 11:04:27 -070035
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070036#include "Checkpoint.h"
Paul Crowley220567c2020-02-07 12:45:20 -080037#include "CryptoType.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070038#include "EncryptInplace.h"
Neeraj Sonif14a3c02020-05-04 23:49:03 +053039#include "FsCrypt.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070040#include "KeyStorage.h"
41#include "KeyUtil.h"
Eric Biggersd86a8ab2021-06-15 11:34:00 -070042#include "Keystore.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070043#include "Utils.h"
44#include "VoldUtil.h"
Jaegeuk Kim0c52c712020-12-15 09:00:49 -080045#include "fs/Ext4.h"
46#include "fs/F2fs.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070047
Paul Crowley220567c2020-02-07 12:45:20 -080048namespace android {
49namespace vold {
50
Tom Cherry4c5bde22019-01-29 14:34:01 -080051using android::fs_mgr::FstabEntry;
52using android::fs_mgr::GetEntryForMountPoint;
Paul Crowleyf4430382020-04-05 19:34:31 -070053using android::fscrypt::GetFirstApiLevel;
Pavel Grafove2e2d302017-08-01 17:15:53 +010054using android::vold::KeyBuffer;
David Andersonb9224732019-05-13 13:02:54 -070055using namespace android::dm;
David Anderson156d9d22021-09-21 17:21:57 -070056using namespace std::chrono_literals;
Pavel Grafove2e2d302017-08-01 17:15:53 +010057
Paul Crowley249c2fb2020-02-07 12:51:56 -080058// Parsed from metadata options
59struct CryptoOptions {
60 struct CryptoType cipher = invalid_crypto_type;
Paul Crowleyf56d5532020-03-22 08:02:06 -070061 bool use_legacy_options_format = false;
Paul Crowley249c2fb2020-02-07 12:51:56 -080062 bool set_dun = true; // Non-legacy driver always sets DUN
Barani Muthukumaran312b7df2020-02-06 22:56:27 -080063 bool use_hw_wrapped_key = false;
Paul Crowley249c2fb2020-02-07 12:51:56 -080064};
65
Paul Crowleyd5759812016-06-02 11:04:27 -070066static const std::string kDmNameUserdata = "userdata";
67
Paul Crowley249c2fb2020-02-07 12:51:56 -080068// The first entry in this table is the default crypto type.
Paul Crowley220567c2020-02-07 12:45:20 -080069constexpr CryptoType supported_crypto_types[] = {aes_256_xts, adiantum};
70
71static_assert(validateSupportedCryptoTypes(64, supported_crypto_types,
72 array_length(supported_crypto_types)),
73 "We have a CryptoType which was incompletely constructed.");
74
75constexpr CryptoType legacy_aes_256_xts =
76 CryptoType().set_config_name("aes-256-xts").set_kernel_name("AES-256-XTS").set_keysize(64);
77
Paul Crowley249c2fb2020-02-07 12:51:56 -080078static_assert(isValidCryptoType(64, legacy_aes_256_xts),
Paul Crowley220567c2020-02-07 12:45:20 -080079 "We have a CryptoType which was incompletely constructed.");
80
Paul Crowley249c2fb2020-02-07 12:51:56 -080081// Returns KeyGeneration suitable for key as described in CryptoOptions
82const KeyGeneration makeGen(const CryptoOptions& options) {
Barani Muthukumaran312b7df2020-02-06 22:56:27 -080083 return KeyGeneration{options.cipher.get_keysize(), true, options.use_hw_wrapped_key};
Paul Crowley249c2fb2020-02-07 12:51:56 -080084}
85
David Anderson156d9d22021-09-21 17:21:57 -070086void defaultkey_precreate_dm_device() {
87 auto& dm = DeviceMapper::Instance();
88 if (dm.GetState(kDmNameUserdata) != DmDeviceState::INVALID) {
89 LOG(INFO) << "Not pre-creating userdata encryption device; device already exists";
90 return;
91 }
92 if (!dm.CreateEmptyDevice(kDmNameUserdata)) {
93 LOG(ERROR) << "Failed to pre-create userdata metadata encryption device";
94 }
95}
96
Paul Crowleyd5759812016-06-02 11:04:27 -070097static bool mount_via_fs_mgr(const char* mount_point, const char* blk_device) {
98 // fs_mgr_do_mount runs fsck. Use setexeccon to run trusted
99 // partitions in the fsck domain.
LongPing Wei7f3ab952019-01-30 16:03:14 +0800100 if (setexeccon(android::vold::sFsckContext)) {
Paul Crowleyd5759812016-06-02 11:04:27 -0700101 PLOG(ERROR) << "Failed to setexeccon";
102 return false;
103 }
Tom Cherry4c5bde22019-01-29 14:34:01 -0800104 auto mount_rc = fs_mgr_do_mount(&fstab_default, const_cast<char*>(mount_point),
Daniel Rosenberg65f99c92018-08-28 01:58:49 -0700105 const_cast<char*>(blk_device), nullptr,
Paul Lawrence3fe93112020-06-12 08:12:48 -0700106 android::vold::cp_needsCheckpoint(), true);
Paul Crowleyd5759812016-06-02 11:04:27 -0700107 if (setexeccon(nullptr)) {
108 PLOG(ERROR) << "Failed to clear setexeccon";
109 return false;
110 }
111 if (mount_rc != 0) {
112 LOG(ERROR) << "fs_mgr_do_mount failed with rc " << mount_rc;
113 return false;
114 }
115 LOG(DEBUG) << "Mounted " << mount_point;
116 return true;
117}
118
Paul Crowley4eac2642020-02-12 11:04:05 -0800119static bool read_key(const std::string& metadata_key_dir, const KeyGeneration& gen,
120 KeyBuffer* key) {
Paul Crowley572c0242020-02-14 01:15:35 -0800121 if (metadata_key_dir.empty()) {
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800122 LOG(ERROR) << "Failed to get metadata_key_dir";
Paul Crowleyd5759812016-06-02 11:04:27 -0700123 return false;
124 }
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800125 std::string sKey;
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800126 auto dir = metadata_key_dir + "/key";
127 LOG(DEBUG) << "metadata_key_dir/key: " << dir;
Eric Biggersfec0c0e2021-02-16 15:59:17 -0800128 if (!MkdirsSync(dir, 0700)) return false;
Howard Chencbc1bdb2021-09-14 14:40:59 +0800129 auto in_dsu = android::base::GetBoolProperty("ro.gsid.image_running", false);
130 // !pathExists(dir) does not imply there's a factory reset when in DSU mode.
131 if (!pathExists(dir) && !in_dsu) {
Paul Crowley1e6a5f52021-08-06 15:16:10 -0700132 auto delete_all = android::base::GetBoolProperty(
133 "ro.crypto.metadata_init_delete_all_keys.enabled", false);
134 if (delete_all) {
135 LOG(INFO) << "Metadata key does not exist, calling deleteAllKeys";
136 Keystore::deleteAllKeys();
137 } else {
138 LOG(DEBUG) << "Metadata key does not exist but "
139 "ro.crypto.metadata_init_delete_all_keys.enabled is false";
140 }
141 }
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800142 auto temp = metadata_key_dir + "/tmp";
Eric Biggersf74373b2020-11-05 19:58:26 -0800143 return retrieveOrGenerateKey(dir, temp, kEmptyAuthentication, gen, key);
Paul Crowleyd5759812016-06-02 11:04:27 -0700144}
145
Paul Crowley14c8c072018-09-18 13:30:21 -0700146static bool get_number_of_sectors(const std::string& real_blkdev, uint64_t* nr_sec) {
Oleksiy Avramchenko625dc782018-05-23 10:50:46 +0200147 if (android::vold::GetBlockDev512Sectors(real_blkdev, nr_sec) != android::OK) {
Paul Crowleyd5759812016-06-02 11:04:27 -0700148 PLOG(ERROR) << "Unable to measure size of " << real_blkdev;
149 return false;
150 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700151 return true;
152}
153
Paul Crowley572c0242020-02-14 01:15:35 -0800154static bool create_crypto_blk_dev(const std::string& dm_name, const std::string& blk_device,
Paul Crowley249c2fb2020-02-07 12:51:56 -0800155 const KeyBuffer& key, const CryptoOptions& options,
Paul Crowley886e5722020-02-07 12:51:56 -0800156 std::string* crypto_blkdev, uint64_t* nr_sec) {
157 if (!get_number_of_sectors(blk_device, nr_sec)) return false;
158 // TODO(paulcrowley): don't hardcode that DmTargetDefaultKey uses 4096-byte
159 // sectors
160 *nr_sec &= ~7;
Paul Crowley84e84c52020-01-29 16:09:19 -0800161
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800162 KeyBuffer module_key;
163 if (options.use_hw_wrapped_key) {
164 if (!exportWrappedStorageKey(key, &module_key)) {
165 LOG(ERROR) << "Failed to get ephemeral wrapped key";
166 return false;
167 }
168 } else {
169 module_key = key;
170 }
171
David Andersonb9224732019-05-13 13:02:54 -0700172 KeyBuffer hex_key_buffer;
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800173 if (android::vold::StrToHex(module_key, hex_key_buffer) != android::OK) {
David Andersonb9224732019-05-13 13:02:54 -0700174 LOG(ERROR) << "Failed to turn key to hex";
Paul Crowleyd5759812016-06-02 11:04:27 -0700175 return false;
176 }
David Andersonb9224732019-05-13 13:02:54 -0700177 std::string hex_key(hex_key_buffer.data(), hex_key_buffer.size());
Paul Crowleyd5759812016-06-02 11:04:27 -0700178
Paul Crowley886e5722020-02-07 12:51:56 -0800179 auto target = std::make_unique<DmTargetDefaultKey>(0, *nr_sec, options.cipher.get_kernel_name(),
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800180 hex_key, blk_device, 0);
Paul Crowleyf56d5532020-03-22 08:02:06 -0700181 if (options.use_legacy_options_format) target->SetUseLegacyOptionsFormat();
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800182 if (options.set_dun) target->SetSetDun();
183 if (options.use_hw_wrapped_key) target->SetWrappedKeyV0();
184
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800185 DmTable table;
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800186 table.AddTarget(std::move(target));
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800187
188 auto& dm = DeviceMapper::Instance();
David Anderson156d9d22021-09-21 17:21:57 -0700189 if (dm_name == kDmNameUserdata && dm.GetState(dm_name) == DmDeviceState::SUSPENDED) {
190 // The device was created in advance, populate it now.
David Anderson156d9d22021-09-21 17:21:57 -0700191 if (!dm.LoadTableAndActivate(dm_name, table)) {
192 LOG(ERROR) << "Failed to populate default-key device " << dm_name;
193 return false;
194 }
Will McVickerb910e7e2021-12-23 12:23:39 -0800195 if (!dm.WaitForDevice(dm_name, 5s, crypto_blkdev)) {
196 LOG(ERROR) << "Failed to wait for default-key device " << dm_name;
197 return false;
198 }
David Anderson156d9d22021-09-21 17:21:57 -0700199 } else if (!dm.CreateDevice(dm_name, table, crypto_blkdev, 5s)) {
200 LOG(ERROR) << "Could not create default-key device " << dm_name;
Eric Biggers836b51b2020-10-15 14:39:34 -0700201 return false;
Paul Crowleyd5759812016-06-02 11:04:27 -0700202 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700203 return true;
204}
205
Paul Crowley249c2fb2020-02-07 12:51:56 -0800206static const CryptoType& lookup_cipher(const std::string& cipher_name) {
207 if (cipher_name.empty()) return supported_crypto_types[0];
208 for (size_t i = 0; i < array_length(supported_crypto_types); i++) {
209 if (cipher_name == supported_crypto_types[i].get_config_name()) {
210 return supported_crypto_types[i];
Paul Crowley572c0242020-02-14 01:15:35 -0800211 }
212 }
213 return invalid_crypto_type;
214}
215
Paul Crowley249c2fb2020-02-07 12:51:56 -0800216static bool parse_options(const std::string& options_string, CryptoOptions* options) {
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800217 auto parts = android::base::Split(options_string, ":");
218 if (parts.size() < 1 || parts.size() > 2) {
219 LOG(ERROR) << "Invalid metadata encryption option: " << options_string;
Paul Crowley249c2fb2020-02-07 12:51:56 -0800220 return false;
Paul Crowley572c0242020-02-14 01:15:35 -0800221 }
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800222 std::string cipher_name = parts[0];
223 options->cipher = lookup_cipher(cipher_name);
224 if (options->cipher.get_kernel_name() == nullptr) {
225 LOG(ERROR) << "No metadata cipher named " << cipher_name << " found";
226 return false;
227 }
228
229 if (parts.size() == 2) {
230 if (parts[1] == "wrappedkey_v0") {
231 options->use_hw_wrapped_key = true;
232 } else {
233 LOG(ERROR) << "Invalid metadata encryption flag: " << parts[1];
234 return false;
235 }
236 }
Paul Crowley249c2fb2020-02-07 12:51:56 -0800237 return true;
Paul Crowley572c0242020-02-14 01:15:35 -0800238}
239
Paul Lawrence236e5e82019-06-25 14:44:33 -0700240bool fscrypt_mount_metadata_encrypted(const std::string& blk_device, const std::string& mount_point,
Jaegeuk Kim0c52c712020-12-15 09:00:49 -0800241 bool needs_encrypt, bool should_format,
242 const std::string& fs_type) {
243 LOG(DEBUG) << "fscrypt_mount_metadata_encrypted: " << mount_point
244 << " encrypt: " << needs_encrypt << " format: " << should_format << " with "
245 << fs_type;
Paul Crowley0fd26262018-01-30 09:48:19 -0800246 auto encrypted_state = android::base::GetProperty("ro.crypto.state", "");
Nikita Ioffef850e6e2019-12-09 21:19:11 +0000247 if (encrypted_state != "" && encrypted_state != "encrypted") {
David Andersone1791572021-11-05 18:57:49 -0700248 LOG(ERROR) << "fscrypt_mount_metadata_encrypted got unexpected starting state: "
249 << encrypted_state;
Paul Crowleyd5759812016-06-02 11:04:27 -0700250 return false;
251 }
Tom Cherry4c5bde22019-01-29 14:34:01 -0800252
253 auto data_rec = GetEntryForMountPoint(&fstab_default, mount_point);
Paul Crowleyd5759812016-06-02 11:04:27 -0700254 if (!data_rec) {
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800255 LOG(ERROR) << "Failed to get data_rec for " << mount_point;
256 return false;
257 }
Paul Crowley572c0242020-02-14 01:15:35 -0800258
Paul Crowleyf56d5532020-03-22 08:02:06 -0700259 unsigned int options_format_version = android::base::GetUintProperty<unsigned int>(
260 "ro.crypto.dm_default_key.options_format.version",
Eric Biggers72d07132020-08-10 10:55:56 -0700261 (GetFirstApiLevel() <= __ANDROID_API_Q__ ? 1 : 2));
Paul Crowley572c0242020-02-14 01:15:35 -0800262
Paul Crowley249c2fb2020-02-07 12:51:56 -0800263 CryptoOptions options;
Paul Crowleyf56d5532020-03-22 08:02:06 -0700264 if (options_format_version == 1) {
Eric Biggers41d78432022-03-17 23:18:18 +0000265 if (!data_rec->metadata_encryption_options.empty()) {
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800266 LOG(ERROR) << "metadata_encryption options cannot be set in legacy mode";
Paul Crowley249c2fb2020-02-07 12:51:56 -0800267 return false;
268 }
269 options.cipher = legacy_aes_256_xts;
Paul Crowleyf56d5532020-03-22 08:02:06 -0700270 options.use_legacy_options_format = true;
Neeraj Sonif14a3c02020-05-04 23:49:03 +0530271 if (is_metadata_wrapped_key_supported())
272 options.use_hw_wrapped_key = true;
Paul Crowley249c2fb2020-02-07 12:51:56 -0800273 options.set_dun = android::base::GetBoolProperty("ro.crypto.set_dun", false);
274 if (!options.set_dun && data_rec->fs_mgr_flags.checkpoint_blk) {
275 LOG(ERROR)
276 << "Block checkpoints and metadata encryption require ro.crypto.set_dun option";
277 return false;
278 }
Paul Crowleyf56d5532020-03-22 08:02:06 -0700279 } else if (options_format_version == 2) {
Eric Biggers41d78432022-03-17 23:18:18 +0000280 if (!parse_options(data_rec->metadata_encryption_options, &options)) return false;
Paul Crowleyf56d5532020-03-22 08:02:06 -0700281 } else {
282 LOG(ERROR) << "Unknown options_format_version: " << options_format_version;
283 return false;
Paul Crowley572c0242020-02-14 01:15:35 -0800284 }
285
Paul Crowley249c2fb2020-02-07 12:51:56 -0800286 auto gen = needs_encrypt ? makeGen(options) : neverGen();
Paul Crowley0fd26262018-01-30 09:48:19 -0800287 KeyBuffer key;
David Andersone1791572021-11-05 18:57:49 -0700288 if (!read_key(data_rec->metadata_key_dir, gen, &key)) {
289 LOG(ERROR) << "read_key failed in mountFstab";
290 return false;
291 }
Paul Lawrence4b140d32019-08-07 15:22:57 -0700292
Paul Crowleyd5759812016-06-02 11:04:27 -0700293 std::string crypto_blkdev;
Paul Crowley886e5722020-02-07 12:51:56 -0800294 uint64_t nr_sec;
David Andersone1791572021-11-05 18:57:49 -0700295 if (!create_crypto_blk_dev(kDmNameUserdata, blk_device, key, options, &crypto_blkdev,
296 &nr_sec)) {
297 LOG(ERROR) << "create_crypto_blk_dev failed in mountFstab";
Paul Crowley572c0242020-02-14 01:15:35 -0800298 return false;
David Andersone1791572021-11-05 18:57:49 -0700299 }
Paul Lawrence236e5e82019-06-25 14:44:33 -0700300
Jaegeuk Kim0c52c712020-12-15 09:00:49 -0800301 if (needs_encrypt) {
302 if (should_format) {
303 status_t error;
304
305 if (fs_type == "ext4") {
306 error = ext4::Format(crypto_blkdev, 0, mount_point);
307 } else if (fs_type == "f2fs") {
308 error = f2fs::Format(crypto_blkdev);
309 } else {
310 LOG(ERROR) << "Unknown filesystem type: " << fs_type;
311 return false;
312 }
David Andersone1791572021-11-05 18:57:49 -0700313 if (error != 0) {
314 LOG(ERROR) << "Format of " << crypto_blkdev << " for " << mount_point
315 << " failed (err=" << error << ").";
316 return false;
317 }
318 LOG(DEBUG) << "Format of " << crypto_blkdev << " for " << mount_point << " succeeded.";
Jaegeuk Kim0c52c712020-12-15 09:00:49 -0800319 } else {
Eric Biggers640a1a92022-03-09 20:39:04 +0000320 if (!encrypt_inplace(crypto_blkdev, blk_device, nr_sec)) {
David Andersone1791572021-11-05 18:57:49 -0700321 LOG(ERROR) << "encrypt_inplace failed in mountFstab";
322 return false;
323 }
Jaegeuk Kim0c52c712020-12-15 09:00:49 -0800324 }
325 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700326
Paul Crowley0fd26262018-01-30 09:48:19 -0800327 LOG(DEBUG) << "Mounting metadata-encrypted filesystem:" << mount_point;
Paul Crowley48aa90c2020-03-02 12:57:58 -0800328 mount_via_fs_mgr(mount_point.c_str(), crypto_blkdev.c_str());
Paul Crowley7fbd8d42020-03-23 08:59:12 -0700329
330 // Record that there's at least one fstab entry with metadata encryption
331 if (!android::base::SetProperty("ro.crypto.metadata.enabled", "true")) {
332 LOG(WARNING) << "failed to set ro.crypto.metadata.enabled"; // This isn't fatal
333 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700334 return true;
335}
Paul Crowley220567c2020-02-07 12:45:20 -0800336
Paul Crowley886e5722020-02-07 12:51:56 -0800337static bool get_volume_options(CryptoOptions* options) {
338 return parse_options(android::base::GetProperty("ro.crypto.volume.metadata.encryption", ""),
339 options);
340}
341
342bool defaultkey_volume_keygen(KeyGeneration* gen) {
343 CryptoOptions options;
344 if (!get_volume_options(&options)) return false;
345 *gen = makeGen(options);
346 return true;
347}
348
349bool defaultkey_setup_ext_volume(const std::string& label, const std::string& blk_device,
350 const KeyBuffer& key, std::string* out_crypto_blkdev) {
351 LOG(DEBUG) << "defaultkey_setup_ext_volume: " << label << " " << blk_device;
352
353 CryptoOptions options;
354 if (!get_volume_options(&options)) return false;
355 uint64_t nr_sec;
356 return create_crypto_blk_dev(label, blk_device, key, options, out_crypto_blkdev, &nr_sec);
357}
358
Yo Chiang0af25a32020-10-07 14:20:00 +0800359bool destroy_dsu_metadata_key(const std::string& dsu_slot) {
360 LOG(DEBUG) << "destroy_dsu_metadata_key: " << dsu_slot;
361
362 const auto dsu_metadata_key_dir = android::gsi::GetDsuMetadataKeyDir(dsu_slot);
363 if (!pathExists(dsu_metadata_key_dir)) {
364 LOG(DEBUG) << "DSU metadata_key_dir doesn't exist, nothing to remove: "
365 << dsu_metadata_key_dir;
366 return true;
367 }
368
369 // Ensure that the DSU key directory is different from the host OS'.
370 // Under normal circumstances, this should never happen, but handle it just in case.
371 if (auto data_rec = GetEntryForMountPoint(&fstab_default, "/data")) {
372 if (dsu_metadata_key_dir == data_rec->metadata_key_dir) {
373 LOG(ERROR) << "DSU metadata_key_dir is same as host OS: " << dsu_metadata_key_dir;
374 return false;
375 }
376 }
377
378 bool ok = true;
379 for (auto suffix : {"/key", "/tmp"}) {
380 const auto key_path = dsu_metadata_key_dir + suffix;
381 if (pathExists(key_path)) {
382 LOG(DEBUG) << "Destroy key: " << key_path;
383 if (!android::vold::destroyKey(key_path)) {
384 LOG(ERROR) << "Failed to destroyKey(): " << key_path;
385 ok = false;
386 }
387 }
388 }
389 if (!ok) {
390 return false;
391 }
392
393 LOG(DEBUG) << "Remove DSU metadata_key_dir: " << dsu_metadata_key_dir;
394 // DeleteDirContentsAndDir() already logged any error, so don't log repeatedly.
395 return android::vold::DeleteDirContentsAndDir(dsu_metadata_key_dir) == android::OK;
396}
397
Paul Crowley220567c2020-02-07 12:45:20 -0800398} // namespace vold
399} // namespace android