blob: e6497e5b1db3205281256b03b2e4a2f08cf91eff [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
Paul Crowley14c8c072018-09-18 13:30:21 -070020#include <algorithm>
Paul Crowleyd5759812016-06-02 11:04:27 -070021#include <string>
22#include <thread>
23#include <vector>
24
25#include <fcntl.h>
Paul Crowleyd5759812016-06-02 11:04:27 -070026#include <sys/param.h>
27#include <sys/stat.h>
28#include <sys/types.h>
29
Daniel Rosenberg690d6de2018-12-14 01:08:10 -080030#include <android-base/file.h>
Paul Crowleyd5759812016-06-02 11:04:27 -070031#include <android-base/logging.h>
Paul Crowley0fd26262018-01-30 09:48:19 -080032#include <android-base/properties.h>
Barani Muthukumaran312b7df2020-02-06 22:56:27 -080033#include <android-base/strings.h>
Paul Crowleye4c93da2017-06-16 09:21:18 -070034#include <android-base/unique_fd.h>
Paul Crowley0fd26262018-01-30 09:48:19 -080035#include <cutils/fs.h>
Paul Crowleyd5759812016-06-02 11:04:27 -070036#include <fs_mgr.h>
David Andersonb9224732019-05-13 13:02:54 -070037#include <libdm/dm.h>
Yo Chiang0af25a32020-10-07 14:20:00 +080038#include <libgsi/libgsi.h>
Paul Crowleyd5759812016-06-02 11:04:27 -070039
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070040#include "Checkpoint.h"
Paul Crowley220567c2020-02-07 12:45:20 -080041#include "CryptoType.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070042#include "EncryptInplace.h"
43#include "KeyStorage.h"
44#include "KeyUtil.h"
Daniel Rosenberg690d6de2018-12-14 01:08:10 -080045#include "Keymaster.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070046#include "Utils.h"
47#include "VoldUtil.h"
48
Paul Crowley220567c2020-02-07 12:45:20 -080049namespace android {
50namespace vold {
51
Tom Cherry4c5bde22019-01-29 14:34:01 -080052using android::fs_mgr::FstabEntry;
53using android::fs_mgr::GetEntryForMountPoint;
Pavel Grafove2e2d302017-08-01 17:15:53 +010054using android::vold::KeyBuffer;
David Andersonb9224732019-05-13 13:02:54 -070055using namespace android::dm;
Pavel Grafove2e2d302017-08-01 17:15:53 +010056
Paul Crowley249c2fb2020-02-07 12:51:56 -080057// Parsed from metadata options
58struct CryptoOptions {
59 struct CryptoType cipher = invalid_crypto_type;
Paul Crowleyf56d5532020-03-22 08:02:06 -070060 bool use_legacy_options_format = false;
Paul Crowley249c2fb2020-02-07 12:51:56 -080061 bool set_dun = true; // Non-legacy driver always sets DUN
Barani Muthukumaran312b7df2020-02-06 22:56:27 -080062 bool use_hw_wrapped_key = false;
Paul Crowley249c2fb2020-02-07 12:51:56 -080063};
64
Paul Crowleyd5759812016-06-02 11:04:27 -070065static const std::string kDmNameUserdata = "userdata";
66
Daniel Rosenberg690d6de2018-12-14 01:08:10 -080067static const char* kFn_keymaster_key_blob = "keymaster_key_blob";
68static const char* kFn_keymaster_key_blob_upgraded = "keymaster_key_blob_upgraded";
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
Paul Crowleyd5759812016-06-02 11:04:27 -070088static bool mount_via_fs_mgr(const char* mount_point, const char* blk_device) {
Shawn Willden28eddbd2020-04-01 10:02:16 -060089 // We're about to mount data not verified by verified boot. Tell Keymaster instances that early
90 // boot has ended.
91 ::android::vold::Keymaster::earlyBootEnded();
Shawn Willden2b1ff5a2020-01-16 14:08:36 -070092
Paul Crowleyd5759812016-06-02 11:04:27 -070093 // fs_mgr_do_mount runs fsck. Use setexeccon to run trusted
94 // partitions in the fsck domain.
LongPing Wei7f3ab952019-01-30 16:03:14 +080095 if (setexeccon(android::vold::sFsckContext)) {
Paul Crowleyd5759812016-06-02 11:04:27 -070096 PLOG(ERROR) << "Failed to setexeccon";
97 return false;
98 }
Tom Cherry4c5bde22019-01-29 14:34:01 -080099 auto mount_rc = fs_mgr_do_mount(&fstab_default, const_cast<char*>(mount_point),
Daniel Rosenberg65f99c92018-08-28 01:58:49 -0700100 const_cast<char*>(blk_device), nullptr,
Paul Lawrence3fe93112020-06-12 08:12:48 -0700101 android::vold::cp_needsCheckpoint(), true);
Paul Crowleyd5759812016-06-02 11:04:27 -0700102 if (setexeccon(nullptr)) {
103 PLOG(ERROR) << "Failed to clear setexeccon";
104 return false;
105 }
106 if (mount_rc != 0) {
107 LOG(ERROR) << "fs_mgr_do_mount failed with rc " << mount_rc;
108 return false;
109 }
110 LOG(DEBUG) << "Mounted " << mount_point;
111 return true;
112}
113
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800114// Note: It is possible to orphan a key if it is removed before deleting
115// Update this once keymaster APIs change, and we have a proper commit.
Greg Kaiser8ae16db2018-12-18 11:10:31 -0800116static void commit_key(const std::string& dir) {
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800117 while (!android::base::WaitForProperty("vold.checkpoint_committed", "1")) {
118 LOG(ERROR) << "Wait for boot timed out";
119 }
120 Keymaster keymaster;
121 auto keyPath = dir + "/" + kFn_keymaster_key_blob;
122 auto newKeyPath = dir + "/" + kFn_keymaster_key_blob_upgraded;
123 std::string key;
124
125 if (!android::base::ReadFileToString(keyPath, &key)) {
126 LOG(ERROR) << "Failed to read old key: " << dir;
127 return;
128 }
129 if (rename(newKeyPath.c_str(), keyPath.c_str()) != 0) {
130 PLOG(ERROR) << "Unable to move upgraded key to location: " << keyPath;
131 return;
132 }
133 if (!keymaster.deleteKey(key)) {
134 LOG(ERROR) << "Key deletion failed during upgrade, continuing anyway: " << dir;
135 }
136 LOG(INFO) << "Old Key deleted: " << dir;
137}
138
Paul Crowley4eac2642020-02-12 11:04:05 -0800139static bool read_key(const std::string& metadata_key_dir, const KeyGeneration& gen,
140 KeyBuffer* key) {
Paul Crowley572c0242020-02-14 01:15:35 -0800141 if (metadata_key_dir.empty()) {
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800142 LOG(ERROR) << "Failed to get metadata_key_dir";
Paul Crowleyd5759812016-06-02 11:04:27 -0700143 return false;
144 }
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800145 std::string sKey;
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800146 auto dir = metadata_key_dir + "/key";
147 LOG(DEBUG) << "metadata_key_dir/key: " << dir;
Paul Crowley98a23a12018-05-09 13:01:16 -0700148 if (fs_mkdirs(dir.c_str(), 0700)) {
Paul Crowley0fd26262018-01-30 09:48:19 -0800149 PLOG(ERROR) << "Creating directories: " << dir;
Paul Crowley98a23a12018-05-09 13:01:16 -0700150 return false;
Paul Crowley0fd26262018-01-30 09:48:19 -0800151 }
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800152 auto temp = metadata_key_dir + "/tmp";
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800153 auto newKeyPath = dir + "/" + kFn_keymaster_key_blob_upgraded;
154 /* If we have a leftover upgraded key, delete it.
155 * We either failed an update and must return to the old key,
156 * or we rebooted before commiting the keys in a freak accident.
157 * Either way, we can re-upgrade the key if we need to.
158 */
159 Keymaster keymaster;
160 if (pathExists(newKeyPath)) {
161 if (!android::base::ReadFileToString(newKeyPath, &sKey))
Paul Crowley4eac2642020-02-12 11:04:05 -0800162 LOG(ERROR) << "Failed to read incomplete key: " << dir;
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800163 else if (!keymaster.deleteKey(sKey))
Paul Crowley4eac2642020-02-12 11:04:05 -0800164 LOG(ERROR) << "Incomplete key deletion failed, continuing anyway: " << dir;
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800165 else
166 unlink(newKeyPath.c_str());
167 }
168 bool needs_cp = cp_needsCheckpoint();
Paul Crowley4eac2642020-02-12 11:04:05 -0800169 if (!retrieveOrGenerateKey(dir, temp, kEmptyAuthentication, gen, key, needs_cp)) return false;
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800170 if (needs_cp && pathExists(newKeyPath)) std::thread(commit_key, dir).detach();
Paul Crowleyd5759812016-06-02 11:04:27 -0700171 return true;
172}
173
Paul Crowley14c8c072018-09-18 13:30:21 -0700174static bool get_number_of_sectors(const std::string& real_blkdev, uint64_t* nr_sec) {
Oleksiy Avramchenko625dc782018-05-23 10:50:46 +0200175 if (android::vold::GetBlockDev512Sectors(real_blkdev, nr_sec) != android::OK) {
Paul Crowleyd5759812016-06-02 11:04:27 -0700176 PLOG(ERROR) << "Unable to measure size of " << real_blkdev;
177 return false;
178 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700179 return true;
180}
181
Paul Crowley572c0242020-02-14 01:15:35 -0800182static bool create_crypto_blk_dev(const std::string& dm_name, const std::string& blk_device,
Paul Crowley249c2fb2020-02-07 12:51:56 -0800183 const KeyBuffer& key, const CryptoOptions& options,
Paul Crowley886e5722020-02-07 12:51:56 -0800184 std::string* crypto_blkdev, uint64_t* nr_sec) {
185 if (!get_number_of_sectors(blk_device, nr_sec)) return false;
186 // TODO(paulcrowley): don't hardcode that DmTargetDefaultKey uses 4096-byte
187 // sectors
188 *nr_sec &= ~7;
Paul Crowley84e84c52020-01-29 16:09:19 -0800189
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800190 KeyBuffer module_key;
191 if (options.use_hw_wrapped_key) {
192 if (!exportWrappedStorageKey(key, &module_key)) {
193 LOG(ERROR) << "Failed to get ephemeral wrapped key";
194 return false;
195 }
196 } else {
197 module_key = key;
198 }
199
David Andersonb9224732019-05-13 13:02:54 -0700200 KeyBuffer hex_key_buffer;
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800201 if (android::vold::StrToHex(module_key, hex_key_buffer) != android::OK) {
David Andersonb9224732019-05-13 13:02:54 -0700202 LOG(ERROR) << "Failed to turn key to hex";
Paul Crowleyd5759812016-06-02 11:04:27 -0700203 return false;
204 }
David Andersonb9224732019-05-13 13:02:54 -0700205 std::string hex_key(hex_key_buffer.data(), hex_key_buffer.size());
Paul Crowleyd5759812016-06-02 11:04:27 -0700206
Paul Crowley886e5722020-02-07 12:51:56 -0800207 auto target = std::make_unique<DmTargetDefaultKey>(0, *nr_sec, options.cipher.get_kernel_name(),
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800208 hex_key, blk_device, 0);
Paul Crowleyf56d5532020-03-22 08:02:06 -0700209 if (options.use_legacy_options_format) target->SetUseLegacyOptionsFormat();
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800210 if (options.set_dun) target->SetSetDun();
211 if (options.use_hw_wrapped_key) target->SetWrappedKeyV0();
212
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800213 DmTable table;
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800214 table.AddTarget(std::move(target));
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800215
216 auto& dm = DeviceMapper::Instance();
Eric Biggers836b51b2020-10-15 14:39:34 -0700217 if (!dm.CreateDevice(dm_name, table, crypto_blkdev, std::chrono::seconds(5))) {
218 PLOG(ERROR) << "Could not create default-key device " << dm_name;
219 return false;
Paul Crowleyd5759812016-06-02 11:04:27 -0700220 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700221 return true;
222}
223
Paul Crowley249c2fb2020-02-07 12:51:56 -0800224static const CryptoType& lookup_cipher(const std::string& cipher_name) {
225 if (cipher_name.empty()) return supported_crypto_types[0];
226 for (size_t i = 0; i < array_length(supported_crypto_types); i++) {
227 if (cipher_name == supported_crypto_types[i].get_config_name()) {
228 return supported_crypto_types[i];
Paul Crowley572c0242020-02-14 01:15:35 -0800229 }
230 }
231 return invalid_crypto_type;
232}
233
Paul Crowley249c2fb2020-02-07 12:51:56 -0800234static bool parse_options(const std::string& options_string, CryptoOptions* options) {
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800235 auto parts = android::base::Split(options_string, ":");
236 if (parts.size() < 1 || parts.size() > 2) {
237 LOG(ERROR) << "Invalid metadata encryption option: " << options_string;
Paul Crowley249c2fb2020-02-07 12:51:56 -0800238 return false;
Paul Crowley572c0242020-02-14 01:15:35 -0800239 }
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800240 std::string cipher_name = parts[0];
241 options->cipher = lookup_cipher(cipher_name);
242 if (options->cipher.get_kernel_name() == nullptr) {
243 LOG(ERROR) << "No metadata cipher named " << cipher_name << " found";
244 return false;
245 }
246
247 if (parts.size() == 2) {
248 if (parts[1] == "wrappedkey_v0") {
249 options->use_hw_wrapped_key = true;
250 } else {
251 LOG(ERROR) << "Invalid metadata encryption flag: " << parts[1];
252 return false;
253 }
254 }
Paul Crowley249c2fb2020-02-07 12:51:56 -0800255 return true;
Paul Crowley572c0242020-02-14 01:15:35 -0800256}
257
Paul Lawrence236e5e82019-06-25 14:44:33 -0700258bool fscrypt_mount_metadata_encrypted(const std::string& blk_device, const std::string& mount_point,
259 bool needs_encrypt) {
Eric Biggersa701c452018-10-23 13:06:55 -0700260 LOG(DEBUG) << "fscrypt_mount_metadata_encrypted: " << mount_point << " " << needs_encrypt;
Paul Crowley0fd26262018-01-30 09:48:19 -0800261 auto encrypted_state = android::base::GetProperty("ro.crypto.state", "");
Nikita Ioffef850e6e2019-12-09 21:19:11 +0000262 if (encrypted_state != "" && encrypted_state != "encrypted") {
Eric Biggersa701c452018-10-23 13:06:55 -0700263 LOG(DEBUG) << "fscrypt_enable_crypto got unexpected starting state: " << encrypted_state;
Paul Crowleyd5759812016-06-02 11:04:27 -0700264 return false;
265 }
Tom Cherry4c5bde22019-01-29 14:34:01 -0800266
267 auto data_rec = GetEntryForMountPoint(&fstab_default, mount_point);
Paul Crowleyd5759812016-06-02 11:04:27 -0700268 if (!data_rec) {
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800269 LOG(ERROR) << "Failed to get data_rec for " << mount_point;
270 return false;
271 }
Paul Crowley572c0242020-02-14 01:15:35 -0800272
Paul Crowleyf56d5532020-03-22 08:02:06 -0700273 unsigned int options_format_version = android::base::GetUintProperty<unsigned int>(
274 "ro.crypto.dm_default_key.options_format.version",
Eric Biggers72d07132020-08-10 10:55:56 -0700275 (GetFirstApiLevel() <= __ANDROID_API_Q__ ? 1 : 2));
Paul Crowley572c0242020-02-14 01:15:35 -0800276
Paul Crowley249c2fb2020-02-07 12:51:56 -0800277 CryptoOptions options;
Paul Crowleyf56d5532020-03-22 08:02:06 -0700278 if (options_format_version == 1) {
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800279 if (!data_rec->metadata_encryption.empty()) {
280 LOG(ERROR) << "metadata_encryption options cannot be set in legacy mode";
Paul Crowley249c2fb2020-02-07 12:51:56 -0800281 return false;
282 }
283 options.cipher = legacy_aes_256_xts;
Paul Crowleyf56d5532020-03-22 08:02:06 -0700284 options.use_legacy_options_format = true;
Paul Crowley249c2fb2020-02-07 12:51:56 -0800285 options.set_dun = android::base::GetBoolProperty("ro.crypto.set_dun", false);
286 if (!options.set_dun && data_rec->fs_mgr_flags.checkpoint_blk) {
287 LOG(ERROR)
288 << "Block checkpoints and metadata encryption require ro.crypto.set_dun option";
289 return false;
290 }
Paul Crowleyf56d5532020-03-22 08:02:06 -0700291 } else if (options_format_version == 2) {
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800292 if (!parse_options(data_rec->metadata_encryption, &options)) return false;
Paul Crowleyf56d5532020-03-22 08:02:06 -0700293 } else {
294 LOG(ERROR) << "Unknown options_format_version: " << options_format_version;
295 return false;
Paul Crowley572c0242020-02-14 01:15:35 -0800296 }
297
Paul Crowley249c2fb2020-02-07 12:51:56 -0800298 auto gen = needs_encrypt ? makeGen(options) : neverGen();
Paul Crowley0fd26262018-01-30 09:48:19 -0800299 KeyBuffer key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800300 if (!read_key(data_rec->metadata_key_dir, gen, &key)) return false;
Paul Lawrence4b140d32019-08-07 15:22:57 -0700301
Paul Crowleyd5759812016-06-02 11:04:27 -0700302 std::string crypto_blkdev;
Paul Crowley886e5722020-02-07 12:51:56 -0800303 uint64_t nr_sec;
Paul Crowley48aa90c2020-03-02 12:57:58 -0800304 if (!create_crypto_blk_dev(kDmNameUserdata, blk_device, key, options, &crypto_blkdev, &nr_sec))
Paul Crowley572c0242020-02-14 01:15:35 -0800305 return false;
Paul Lawrence236e5e82019-06-25 14:44:33 -0700306
Paul Crowley0fd26262018-01-30 09:48:19 -0800307 // FIXME handle the corrupt case
308 if (needs_encrypt) {
309 LOG(INFO) << "Beginning inplace encryption, nr_sec: " << nr_sec;
Eric Biggersc01995e2020-11-03 14:11:00 -0800310 auto rc = cryptfs_enable_inplace(crypto_blkdev.data(), blk_device.data(), nr_sec, false);
Paul Crowley0fd26262018-01-30 09:48:19 -0800311 if (rc != 0) {
312 LOG(ERROR) << "Inplace crypto failed with code: " << rc;
313 return false;
314 }
Paul Crowley0fd26262018-01-30 09:48:19 -0800315 LOG(INFO) << "Inplace encryption complete";
Paul Crowleyd5759812016-06-02 11:04:27 -0700316 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700317
Paul Crowley0fd26262018-01-30 09:48:19 -0800318 LOG(DEBUG) << "Mounting metadata-encrypted filesystem:" << mount_point;
Paul Crowley48aa90c2020-03-02 12:57:58 -0800319 mount_via_fs_mgr(mount_point.c_str(), crypto_blkdev.c_str());
Paul Crowley7fbd8d42020-03-23 08:59:12 -0700320
321 // Record that there's at least one fstab entry with metadata encryption
322 if (!android::base::SetProperty("ro.crypto.metadata.enabled", "true")) {
323 LOG(WARNING) << "failed to set ro.crypto.metadata.enabled"; // This isn't fatal
324 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700325 return true;
326}
Paul Crowley220567c2020-02-07 12:45:20 -0800327
Paul Crowley886e5722020-02-07 12:51:56 -0800328static bool get_volume_options(CryptoOptions* options) {
329 return parse_options(android::base::GetProperty("ro.crypto.volume.metadata.encryption", ""),
330 options);
331}
332
333bool defaultkey_volume_keygen(KeyGeneration* gen) {
334 CryptoOptions options;
335 if (!get_volume_options(&options)) return false;
336 *gen = makeGen(options);
337 return true;
338}
339
340bool defaultkey_setup_ext_volume(const std::string& label, const std::string& blk_device,
341 const KeyBuffer& key, std::string* out_crypto_blkdev) {
342 LOG(DEBUG) << "defaultkey_setup_ext_volume: " << label << " " << blk_device;
343
344 CryptoOptions options;
345 if (!get_volume_options(&options)) return false;
346 uint64_t nr_sec;
347 return create_crypto_blk_dev(label, blk_device, key, options, out_crypto_blkdev, &nr_sec);
348}
349
Yo Chiang0af25a32020-10-07 14:20:00 +0800350bool destroy_dsu_metadata_key(const std::string& dsu_slot) {
351 LOG(DEBUG) << "destroy_dsu_metadata_key: " << dsu_slot;
352
353 const auto dsu_metadata_key_dir = android::gsi::GetDsuMetadataKeyDir(dsu_slot);
354 if (!pathExists(dsu_metadata_key_dir)) {
355 LOG(DEBUG) << "DSU metadata_key_dir doesn't exist, nothing to remove: "
356 << dsu_metadata_key_dir;
357 return true;
358 }
359
360 // Ensure that the DSU key directory is different from the host OS'.
361 // Under normal circumstances, this should never happen, but handle it just in case.
362 if (auto data_rec = GetEntryForMountPoint(&fstab_default, "/data")) {
363 if (dsu_metadata_key_dir == data_rec->metadata_key_dir) {
364 LOG(ERROR) << "DSU metadata_key_dir is same as host OS: " << dsu_metadata_key_dir;
365 return false;
366 }
367 }
368
369 bool ok = true;
370 for (auto suffix : {"/key", "/tmp"}) {
371 const auto key_path = dsu_metadata_key_dir + suffix;
372 if (pathExists(key_path)) {
373 LOG(DEBUG) << "Destroy key: " << key_path;
374 if (!android::vold::destroyKey(key_path)) {
375 LOG(ERROR) << "Failed to destroyKey(): " << key_path;
376 ok = false;
377 }
378 }
379 }
380 if (!ok) {
381 return false;
382 }
383
384 LOG(DEBUG) << "Remove DSU metadata_key_dir: " << dsu_metadata_key_dir;
385 // DeleteDirContentsAndDir() already logged any error, so don't log repeatedly.
386 return android::vold::DeleteDirContentsAndDir(dsu_metadata_key_dir) == android::OK;
387}
388
Paul Crowley220567c2020-02-07 12:45:20 -0800389} // namespace vold
390} // namespace android