Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 1 | /* |
| 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 Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 18 | #include "KeyBuffer.h" |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 19 | |
| 20 | #include <string> |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 21 | |
| 22 | #include <fcntl.h> |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 23 | #include <sys/param.h> |
| 24 | #include <sys/stat.h> |
| 25 | #include <sys/types.h> |
| 26 | |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 27 | #include <android-base/logging.h> |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 28 | #include <android-base/properties.h> |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 29 | #include <android-base/strings.h> |
Paul Crowley | e4c93da | 2017-06-16 09:21:18 -0700 | [diff] [blame] | 30 | #include <android-base/unique_fd.h> |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 31 | #include <cutils/fs.h> |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 32 | #include <fs_mgr.h> |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 33 | #include <libdm/dm.h> |
Yo Chiang | 0af25a3 | 2020-10-07 14:20:00 +0800 | [diff] [blame] | 34 | #include <libgsi/libgsi.h> |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 35 | |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 36 | #include "Checkpoint.h" |
Paul Crowley | 220567c | 2020-02-07 12:45:20 -0800 | [diff] [blame] | 37 | #include "CryptoType.h" |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 38 | #include "EncryptInplace.h" |
| 39 | #include "KeyStorage.h" |
| 40 | #include "KeyUtil.h" |
Eric Biggers | d86a8ab | 2021-06-15 11:34:00 -0700 | [diff] [blame] | 41 | #include "Keystore.h" |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 42 | #include "Utils.h" |
| 43 | #include "VoldUtil.h" |
Jaegeuk Kim | 0c52c71 | 2020-12-15 09:00:49 -0800 | [diff] [blame] | 44 | #include "fs/Ext4.h" |
| 45 | #include "fs/F2fs.h" |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 46 | |
Paul Crowley | 220567c | 2020-02-07 12:45:20 -0800 | [diff] [blame] | 47 | namespace android { |
| 48 | namespace vold { |
| 49 | |
Tom Cherry | 4c5bde2 | 2019-01-29 14:34:01 -0800 | [diff] [blame] | 50 | using android::fs_mgr::FstabEntry; |
| 51 | using android::fs_mgr::GetEntryForMountPoint; |
Paul Crowley | f443038 | 2020-04-05 19:34:31 -0700 | [diff] [blame] | 52 | using android::fscrypt::GetFirstApiLevel; |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 53 | using android::vold::KeyBuffer; |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 54 | using namespace android::dm; |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 55 | |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 56 | // Parsed from metadata options |
| 57 | struct CryptoOptions { |
| 58 | struct CryptoType cipher = invalid_crypto_type; |
Paul Crowley | f56d553 | 2020-03-22 08:02:06 -0700 | [diff] [blame] | 59 | bool use_legacy_options_format = false; |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 60 | bool set_dun = true; // Non-legacy driver always sets DUN |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 61 | bool use_hw_wrapped_key = false; |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 62 | }; |
| 63 | |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 64 | static const std::string kDmNameUserdata = "userdata"; |
| 65 | |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 66 | // The first entry in this table is the default crypto type. |
Paul Crowley | 220567c | 2020-02-07 12:45:20 -0800 | [diff] [blame] | 67 | constexpr CryptoType supported_crypto_types[] = {aes_256_xts, adiantum}; |
| 68 | |
| 69 | static_assert(validateSupportedCryptoTypes(64, supported_crypto_types, |
| 70 | array_length(supported_crypto_types)), |
| 71 | "We have a CryptoType which was incompletely constructed."); |
| 72 | |
| 73 | constexpr CryptoType legacy_aes_256_xts = |
| 74 | CryptoType().set_config_name("aes-256-xts").set_kernel_name("AES-256-XTS").set_keysize(64); |
| 75 | |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 76 | static_assert(isValidCryptoType(64, legacy_aes_256_xts), |
Paul Crowley | 220567c | 2020-02-07 12:45:20 -0800 | [diff] [blame] | 77 | "We have a CryptoType which was incompletely constructed."); |
| 78 | |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 79 | // Returns KeyGeneration suitable for key as described in CryptoOptions |
| 80 | const KeyGeneration makeGen(const CryptoOptions& options) { |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 81 | return KeyGeneration{options.cipher.get_keysize(), true, options.use_hw_wrapped_key}; |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 82 | } |
| 83 | |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 84 | static bool mount_via_fs_mgr(const char* mount_point, const char* blk_device) { |
| 85 | // fs_mgr_do_mount runs fsck. Use setexeccon to run trusted |
| 86 | // partitions in the fsck domain. |
LongPing Wei | 7f3ab95 | 2019-01-30 16:03:14 +0800 | [diff] [blame] | 87 | if (setexeccon(android::vold::sFsckContext)) { |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 88 | PLOG(ERROR) << "Failed to setexeccon"; |
| 89 | return false; |
| 90 | } |
Tom Cherry | 4c5bde2 | 2019-01-29 14:34:01 -0800 | [diff] [blame] | 91 | auto mount_rc = fs_mgr_do_mount(&fstab_default, const_cast<char*>(mount_point), |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 92 | const_cast<char*>(blk_device), nullptr, |
Paul Lawrence | 3fe9311 | 2020-06-12 08:12:48 -0700 | [diff] [blame] | 93 | android::vold::cp_needsCheckpoint(), true); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 94 | if (setexeccon(nullptr)) { |
| 95 | PLOG(ERROR) << "Failed to clear setexeccon"; |
| 96 | return false; |
| 97 | } |
| 98 | if (mount_rc != 0) { |
| 99 | LOG(ERROR) << "fs_mgr_do_mount failed with rc " << mount_rc; |
| 100 | return false; |
| 101 | } |
| 102 | LOG(DEBUG) << "Mounted " << mount_point; |
| 103 | return true; |
| 104 | } |
| 105 | |
Paul Crowley | 4eac264 | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 106 | static bool read_key(const std::string& metadata_key_dir, const KeyGeneration& gen, |
| 107 | KeyBuffer* key) { |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 108 | if (metadata_key_dir.empty()) { |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 109 | LOG(ERROR) << "Failed to get metadata_key_dir"; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 110 | return false; |
| 111 | } |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 112 | std::string sKey; |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 113 | auto dir = metadata_key_dir + "/key"; |
| 114 | LOG(DEBUG) << "metadata_key_dir/key: " << dir; |
Eric Biggers | fec0c0e | 2021-02-16 15:59:17 -0800 | [diff] [blame] | 115 | if (!MkdirsSync(dir, 0700)) return false; |
Paul Crowley | 1e6a5f5 | 2021-08-06 15:16:10 -0700 | [diff] [blame^] | 116 | if (!pathExists(dir)) { |
| 117 | auto delete_all = android::base::GetBoolProperty( |
| 118 | "ro.crypto.metadata_init_delete_all_keys.enabled", false); |
| 119 | if (delete_all) { |
| 120 | LOG(INFO) << "Metadata key does not exist, calling deleteAllKeys"; |
| 121 | Keystore::deleteAllKeys(); |
| 122 | } else { |
| 123 | LOG(DEBUG) << "Metadata key does not exist but " |
| 124 | "ro.crypto.metadata_init_delete_all_keys.enabled is false"; |
| 125 | } |
| 126 | } |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 127 | auto temp = metadata_key_dir + "/tmp"; |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 128 | return retrieveOrGenerateKey(dir, temp, kEmptyAuthentication, gen, key); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 129 | } |
| 130 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 131 | static bool get_number_of_sectors(const std::string& real_blkdev, uint64_t* nr_sec) { |
Oleksiy Avramchenko | 625dc78 | 2018-05-23 10:50:46 +0200 | [diff] [blame] | 132 | if (android::vold::GetBlockDev512Sectors(real_blkdev, nr_sec) != android::OK) { |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 133 | PLOG(ERROR) << "Unable to measure size of " << real_blkdev; |
| 134 | return false; |
| 135 | } |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 136 | return true; |
| 137 | } |
| 138 | |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 139 | static bool create_crypto_blk_dev(const std::string& dm_name, const std::string& blk_device, |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 140 | const KeyBuffer& key, const CryptoOptions& options, |
Paul Crowley | 886e572 | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 141 | std::string* crypto_blkdev, uint64_t* nr_sec) { |
| 142 | if (!get_number_of_sectors(blk_device, nr_sec)) return false; |
| 143 | // TODO(paulcrowley): don't hardcode that DmTargetDefaultKey uses 4096-byte |
| 144 | // sectors |
| 145 | *nr_sec &= ~7; |
Paul Crowley | 84e84c5 | 2020-01-29 16:09:19 -0800 | [diff] [blame] | 146 | |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 147 | KeyBuffer module_key; |
| 148 | if (options.use_hw_wrapped_key) { |
| 149 | if (!exportWrappedStorageKey(key, &module_key)) { |
| 150 | LOG(ERROR) << "Failed to get ephemeral wrapped key"; |
| 151 | return false; |
| 152 | } |
| 153 | } else { |
| 154 | module_key = key; |
| 155 | } |
| 156 | |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 157 | KeyBuffer hex_key_buffer; |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 158 | if (android::vold::StrToHex(module_key, hex_key_buffer) != android::OK) { |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 159 | LOG(ERROR) << "Failed to turn key to hex"; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 160 | return false; |
| 161 | } |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 162 | std::string hex_key(hex_key_buffer.data(), hex_key_buffer.size()); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 163 | |
Paul Crowley | 886e572 | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 164 | auto target = std::make_unique<DmTargetDefaultKey>(0, *nr_sec, options.cipher.get_kernel_name(), |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 165 | hex_key, blk_device, 0); |
Paul Crowley | f56d553 | 2020-03-22 08:02:06 -0700 | [diff] [blame] | 166 | if (options.use_legacy_options_format) target->SetUseLegacyOptionsFormat(); |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 167 | if (options.set_dun) target->SetSetDun(); |
| 168 | if (options.use_hw_wrapped_key) target->SetWrappedKeyV0(); |
| 169 | |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 170 | DmTable table; |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 171 | table.AddTarget(std::move(target)); |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 172 | |
| 173 | auto& dm = DeviceMapper::Instance(); |
Eric Biggers | 836b51b | 2020-10-15 14:39:34 -0700 | [diff] [blame] | 174 | if (!dm.CreateDevice(dm_name, table, crypto_blkdev, std::chrono::seconds(5))) { |
| 175 | PLOG(ERROR) << "Could not create default-key device " << dm_name; |
| 176 | return false; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 177 | } |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 178 | return true; |
| 179 | } |
| 180 | |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 181 | static const CryptoType& lookup_cipher(const std::string& cipher_name) { |
| 182 | if (cipher_name.empty()) return supported_crypto_types[0]; |
| 183 | for (size_t i = 0; i < array_length(supported_crypto_types); i++) { |
| 184 | if (cipher_name == supported_crypto_types[i].get_config_name()) { |
| 185 | return supported_crypto_types[i]; |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 186 | } |
| 187 | } |
| 188 | return invalid_crypto_type; |
| 189 | } |
| 190 | |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 191 | static bool parse_options(const std::string& options_string, CryptoOptions* options) { |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 192 | auto parts = android::base::Split(options_string, ":"); |
| 193 | if (parts.size() < 1 || parts.size() > 2) { |
| 194 | LOG(ERROR) << "Invalid metadata encryption option: " << options_string; |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 195 | return false; |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 196 | } |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 197 | std::string cipher_name = parts[0]; |
| 198 | options->cipher = lookup_cipher(cipher_name); |
| 199 | if (options->cipher.get_kernel_name() == nullptr) { |
| 200 | LOG(ERROR) << "No metadata cipher named " << cipher_name << " found"; |
| 201 | return false; |
| 202 | } |
| 203 | |
| 204 | if (parts.size() == 2) { |
| 205 | if (parts[1] == "wrappedkey_v0") { |
| 206 | options->use_hw_wrapped_key = true; |
| 207 | } else { |
| 208 | LOG(ERROR) << "Invalid metadata encryption flag: " << parts[1]; |
| 209 | return false; |
| 210 | } |
| 211 | } |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 212 | return true; |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 213 | } |
| 214 | |
Paul Lawrence | 236e5e8 | 2019-06-25 14:44:33 -0700 | [diff] [blame] | 215 | bool fscrypt_mount_metadata_encrypted(const std::string& blk_device, const std::string& mount_point, |
Jaegeuk Kim | 0c52c71 | 2020-12-15 09:00:49 -0800 | [diff] [blame] | 216 | bool needs_encrypt, bool should_format, |
| 217 | const std::string& fs_type) { |
| 218 | LOG(DEBUG) << "fscrypt_mount_metadata_encrypted: " << mount_point |
| 219 | << " encrypt: " << needs_encrypt << " format: " << should_format << " with " |
| 220 | << fs_type; |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 221 | auto encrypted_state = android::base::GetProperty("ro.crypto.state", ""); |
Nikita Ioffe | f850e6e | 2019-12-09 21:19:11 +0000 | [diff] [blame] | 222 | if (encrypted_state != "" && encrypted_state != "encrypted") { |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 223 | LOG(DEBUG) << "fscrypt_enable_crypto got unexpected starting state: " << encrypted_state; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 224 | return false; |
| 225 | } |
Tom Cherry | 4c5bde2 | 2019-01-29 14:34:01 -0800 | [diff] [blame] | 226 | |
| 227 | auto data_rec = GetEntryForMountPoint(&fstab_default, mount_point); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 228 | if (!data_rec) { |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 229 | LOG(ERROR) << "Failed to get data_rec for " << mount_point; |
| 230 | return false; |
| 231 | } |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 232 | |
Paul Crowley | f56d553 | 2020-03-22 08:02:06 -0700 | [diff] [blame] | 233 | unsigned int options_format_version = android::base::GetUintProperty<unsigned int>( |
| 234 | "ro.crypto.dm_default_key.options_format.version", |
Eric Biggers | 72d0713 | 2020-08-10 10:55:56 -0700 | [diff] [blame] | 235 | (GetFirstApiLevel() <= __ANDROID_API_Q__ ? 1 : 2)); |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 236 | |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 237 | CryptoOptions options; |
Paul Crowley | f56d553 | 2020-03-22 08:02:06 -0700 | [diff] [blame] | 238 | if (options_format_version == 1) { |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 239 | if (!data_rec->metadata_encryption.empty()) { |
| 240 | LOG(ERROR) << "metadata_encryption options cannot be set in legacy mode"; |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 241 | return false; |
| 242 | } |
| 243 | options.cipher = legacy_aes_256_xts; |
Paul Crowley | f56d553 | 2020-03-22 08:02:06 -0700 | [diff] [blame] | 244 | options.use_legacy_options_format = true; |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 245 | options.set_dun = android::base::GetBoolProperty("ro.crypto.set_dun", false); |
| 246 | if (!options.set_dun && data_rec->fs_mgr_flags.checkpoint_blk) { |
| 247 | LOG(ERROR) |
| 248 | << "Block checkpoints and metadata encryption require ro.crypto.set_dun option"; |
| 249 | return false; |
| 250 | } |
Paul Crowley | f56d553 | 2020-03-22 08:02:06 -0700 | [diff] [blame] | 251 | } else if (options_format_version == 2) { |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 252 | if (!parse_options(data_rec->metadata_encryption, &options)) return false; |
Paul Crowley | f56d553 | 2020-03-22 08:02:06 -0700 | [diff] [blame] | 253 | } else { |
| 254 | LOG(ERROR) << "Unknown options_format_version: " << options_format_version; |
| 255 | return false; |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 256 | } |
| 257 | |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 258 | auto gen = needs_encrypt ? makeGen(options) : neverGen(); |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 259 | KeyBuffer key; |
Paul Crowley | 4eac264 | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 260 | if (!read_key(data_rec->metadata_key_dir, gen, &key)) return false; |
Paul Lawrence | 4b140d3 | 2019-08-07 15:22:57 -0700 | [diff] [blame] | 261 | |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 262 | std::string crypto_blkdev; |
Paul Crowley | 886e572 | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 263 | uint64_t nr_sec; |
Paul Crowley | 48aa90c | 2020-03-02 12:57:58 -0800 | [diff] [blame] | 264 | if (!create_crypto_blk_dev(kDmNameUserdata, blk_device, key, options, &crypto_blkdev, &nr_sec)) |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 265 | return false; |
Paul Lawrence | 236e5e8 | 2019-06-25 14:44:33 -0700 | [diff] [blame] | 266 | |
Jaegeuk Kim | 0c52c71 | 2020-12-15 09:00:49 -0800 | [diff] [blame] | 267 | if (needs_encrypt) { |
| 268 | if (should_format) { |
| 269 | status_t error; |
| 270 | |
| 271 | if (fs_type == "ext4") { |
| 272 | error = ext4::Format(crypto_blkdev, 0, mount_point); |
| 273 | } else if (fs_type == "f2fs") { |
| 274 | error = f2fs::Format(crypto_blkdev); |
| 275 | } else { |
| 276 | LOG(ERROR) << "Unknown filesystem type: " << fs_type; |
| 277 | return false; |
| 278 | } |
| 279 | LOG(DEBUG) << "Format (err=" << error << ") " << crypto_blkdev << " on " << mount_point; |
| 280 | if (error != 0) return false; |
| 281 | } else { |
| 282 | if (!encrypt_inplace(crypto_blkdev, blk_device, nr_sec, false)) return false; |
| 283 | } |
| 284 | } |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 285 | |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 286 | LOG(DEBUG) << "Mounting metadata-encrypted filesystem:" << mount_point; |
Paul Crowley | 48aa90c | 2020-03-02 12:57:58 -0800 | [diff] [blame] | 287 | mount_via_fs_mgr(mount_point.c_str(), crypto_blkdev.c_str()); |
Paul Crowley | 7fbd8d4 | 2020-03-23 08:59:12 -0700 | [diff] [blame] | 288 | |
| 289 | // Record that there's at least one fstab entry with metadata encryption |
| 290 | if (!android::base::SetProperty("ro.crypto.metadata.enabled", "true")) { |
| 291 | LOG(WARNING) << "failed to set ro.crypto.metadata.enabled"; // This isn't fatal |
| 292 | } |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 293 | return true; |
| 294 | } |
Paul Crowley | 220567c | 2020-02-07 12:45:20 -0800 | [diff] [blame] | 295 | |
Paul Crowley | 886e572 | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 296 | static bool get_volume_options(CryptoOptions* options) { |
| 297 | return parse_options(android::base::GetProperty("ro.crypto.volume.metadata.encryption", ""), |
| 298 | options); |
| 299 | } |
| 300 | |
| 301 | bool defaultkey_volume_keygen(KeyGeneration* gen) { |
| 302 | CryptoOptions options; |
| 303 | if (!get_volume_options(&options)) return false; |
| 304 | *gen = makeGen(options); |
| 305 | return true; |
| 306 | } |
| 307 | |
| 308 | bool defaultkey_setup_ext_volume(const std::string& label, const std::string& blk_device, |
| 309 | const KeyBuffer& key, std::string* out_crypto_blkdev) { |
| 310 | LOG(DEBUG) << "defaultkey_setup_ext_volume: " << label << " " << blk_device; |
| 311 | |
| 312 | CryptoOptions options; |
| 313 | if (!get_volume_options(&options)) return false; |
| 314 | uint64_t nr_sec; |
| 315 | return create_crypto_blk_dev(label, blk_device, key, options, out_crypto_blkdev, &nr_sec); |
| 316 | } |
| 317 | |
Yo Chiang | 0af25a3 | 2020-10-07 14:20:00 +0800 | [diff] [blame] | 318 | bool destroy_dsu_metadata_key(const std::string& dsu_slot) { |
| 319 | LOG(DEBUG) << "destroy_dsu_metadata_key: " << dsu_slot; |
| 320 | |
| 321 | const auto dsu_metadata_key_dir = android::gsi::GetDsuMetadataKeyDir(dsu_slot); |
| 322 | if (!pathExists(dsu_metadata_key_dir)) { |
| 323 | LOG(DEBUG) << "DSU metadata_key_dir doesn't exist, nothing to remove: " |
| 324 | << dsu_metadata_key_dir; |
| 325 | return true; |
| 326 | } |
| 327 | |
| 328 | // Ensure that the DSU key directory is different from the host OS'. |
| 329 | // Under normal circumstances, this should never happen, but handle it just in case. |
| 330 | if (auto data_rec = GetEntryForMountPoint(&fstab_default, "/data")) { |
| 331 | if (dsu_metadata_key_dir == data_rec->metadata_key_dir) { |
| 332 | LOG(ERROR) << "DSU metadata_key_dir is same as host OS: " << dsu_metadata_key_dir; |
| 333 | return false; |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | bool ok = true; |
| 338 | for (auto suffix : {"/key", "/tmp"}) { |
| 339 | const auto key_path = dsu_metadata_key_dir + suffix; |
| 340 | if (pathExists(key_path)) { |
| 341 | LOG(DEBUG) << "Destroy key: " << key_path; |
| 342 | if (!android::vold::destroyKey(key_path)) { |
| 343 | LOG(ERROR) << "Failed to destroyKey(): " << key_path; |
| 344 | ok = false; |
| 345 | } |
| 346 | } |
| 347 | } |
| 348 | if (!ok) { |
| 349 | return false; |
| 350 | } |
| 351 | |
| 352 | LOG(DEBUG) << "Remove DSU metadata_key_dir: " << dsu_metadata_key_dir; |
| 353 | // DeleteDirContentsAndDir() already logged any error, so don't log repeatedly. |
| 354 | return android::vold::DeleteDirContentsAndDir(dsu_metadata_key_dir) == android::OK; |
| 355 | } |
| 356 | |
Paul Crowley | 220567c | 2020-02-07 12:45:20 -0800 | [diff] [blame] | 357 | } // namespace vold |
| 358 | } // namespace android |