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 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 20 | #include <algorithm> |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 21 | #include <string> |
| 22 | #include <thread> |
| 23 | #include <vector> |
| 24 | |
| 25 | #include <fcntl.h> |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 26 | #include <sys/param.h> |
| 27 | #include <sys/stat.h> |
| 28 | #include <sys/types.h> |
| 29 | |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 30 | #include <android-base/file.h> |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 31 | #include <android-base/logging.h> |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 32 | #include <android-base/properties.h> |
Paul Crowley | e4c93da | 2017-06-16 09:21:18 -0700 | [diff] [blame] | 33 | #include <android-base/unique_fd.h> |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 34 | #include <cutils/fs.h> |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 35 | #include <fs_mgr.h> |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 36 | #include <libdm/dm.h> |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 37 | |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 38 | #include "Checkpoint.h" |
Paul Crowley | 220567c | 2020-02-07 12:45:20 -0800 | [diff] [blame] | 39 | #include "CryptoType.h" |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 40 | #include "EncryptInplace.h" |
| 41 | #include "KeyStorage.h" |
| 42 | #include "KeyUtil.h" |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 43 | #include "Keymaster.h" |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 44 | #include "Utils.h" |
| 45 | #include "VoldUtil.h" |
| 46 | |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 47 | #define TABLE_LOAD_RETRIES 10 |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 48 | |
Paul Crowley | 220567c | 2020-02-07 12:45:20 -0800 | [diff] [blame] | 49 | namespace android { |
| 50 | namespace vold { |
| 51 | |
Tom Cherry | 4c5bde2 | 2019-01-29 14:34:01 -0800 | [diff] [blame] | 52 | using android::fs_mgr::FstabEntry; |
| 53 | using android::fs_mgr::GetEntryForMountPoint; |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 54 | using android::vold::KeyBuffer; |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 55 | using namespace android::dm; |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 56 | |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 57 | static const std::string kDmNameUserdata = "userdata"; |
| 58 | |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 59 | static const char* kFn_keymaster_key_blob = "keymaster_key_blob"; |
| 60 | static const char* kFn_keymaster_key_blob_upgraded = "keymaster_key_blob_upgraded"; |
| 61 | |
Paul Crowley | 220567c | 2020-02-07 12:45:20 -0800 | [diff] [blame] | 62 | constexpr CryptoType supported_crypto_types[] = {aes_256_xts, adiantum}; |
| 63 | |
| 64 | static_assert(validateSupportedCryptoTypes(64, supported_crypto_types, |
| 65 | array_length(supported_crypto_types)), |
| 66 | "We have a CryptoType which was incompletely constructed."); |
| 67 | |
| 68 | constexpr CryptoType legacy_aes_256_xts = |
| 69 | CryptoType().set_config_name("aes-256-xts").set_kernel_name("AES-256-XTS").set_keysize(64); |
| 70 | |
| 71 | constexpr CryptoType legacy_crypto_types[] = {legacy_aes_256_xts}; |
| 72 | |
| 73 | static_assert(validateSupportedCryptoTypes(64, legacy_crypto_types, |
| 74 | array_length(legacy_crypto_types)), |
| 75 | "We have a CryptoType which was incompletely constructed."); |
| 76 | |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 77 | static bool mount_via_fs_mgr(const char* mount_point, const char* blk_device) { |
Shawn Willden | 2b1ff5a | 2020-01-16 14:08:36 -0700 | [diff] [blame] | 78 | // We're about to mount data not verified by verified boot. Tell Keymaster that early boot has |
| 79 | // ended. |
| 80 | // |
| 81 | // TODO(paulcrowley): Make a Keymaster singleton or something, so we don't have to repeatedly |
| 82 | // open and initialize the service. |
| 83 | ::android::vold::Keymaster keymaster; |
| 84 | keymaster.earlyBootEnded(); |
| 85 | |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 86 | // fs_mgr_do_mount runs fsck. Use setexeccon to run trusted |
| 87 | // partitions in the fsck domain. |
LongPing Wei | 7f3ab95 | 2019-01-30 16:03:14 +0800 | [diff] [blame] | 88 | if (setexeccon(android::vold::sFsckContext)) { |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 89 | PLOG(ERROR) << "Failed to setexeccon"; |
| 90 | return false; |
| 91 | } |
Tom Cherry | 4c5bde2 | 2019-01-29 14:34:01 -0800 | [diff] [blame] | 92 | 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] | 93 | const_cast<char*>(blk_device), nullptr, |
| 94 | android::vold::cp_needsCheckpoint()); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 95 | if (setexeccon(nullptr)) { |
| 96 | PLOG(ERROR) << "Failed to clear setexeccon"; |
| 97 | return false; |
| 98 | } |
| 99 | if (mount_rc != 0) { |
| 100 | LOG(ERROR) << "fs_mgr_do_mount failed with rc " << mount_rc; |
| 101 | return false; |
| 102 | } |
| 103 | LOG(DEBUG) << "Mounted " << mount_point; |
| 104 | return true; |
| 105 | } |
| 106 | |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 107 | // Note: It is possible to orphan a key if it is removed before deleting |
| 108 | // Update this once keymaster APIs change, and we have a proper commit. |
Greg Kaiser | 8ae16db | 2018-12-18 11:10:31 -0800 | [diff] [blame] | 109 | static void commit_key(const std::string& dir) { |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 110 | while (!android::base::WaitForProperty("vold.checkpoint_committed", "1")) { |
| 111 | LOG(ERROR) << "Wait for boot timed out"; |
| 112 | } |
| 113 | Keymaster keymaster; |
| 114 | auto keyPath = dir + "/" + kFn_keymaster_key_blob; |
| 115 | auto newKeyPath = dir + "/" + kFn_keymaster_key_blob_upgraded; |
| 116 | std::string key; |
| 117 | |
| 118 | if (!android::base::ReadFileToString(keyPath, &key)) { |
| 119 | LOG(ERROR) << "Failed to read old key: " << dir; |
| 120 | return; |
| 121 | } |
| 122 | if (rename(newKeyPath.c_str(), keyPath.c_str()) != 0) { |
| 123 | PLOG(ERROR) << "Unable to move upgraded key to location: " << keyPath; |
| 124 | return; |
| 125 | } |
| 126 | if (!keymaster.deleteKey(key)) { |
| 127 | LOG(ERROR) << "Key deletion failed during upgrade, continuing anyway: " << dir; |
| 128 | } |
| 129 | LOG(INFO) << "Old Key deleted: " << dir; |
| 130 | } |
| 131 | |
Paul Crowley | b3d018a | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 132 | static bool read_key(const std::string& metadata_key_dir, const KeyGeneration& gen, |
| 133 | KeyBuffer* key) { |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 134 | if (metadata_key_dir.empty()) { |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 135 | LOG(ERROR) << "Failed to get metadata_key_dir"; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 136 | return false; |
| 137 | } |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 138 | std::string sKey; |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 139 | auto dir = metadata_key_dir + "/key"; |
| 140 | LOG(DEBUG) << "metadata_key_dir/key: " << dir; |
Paul Crowley | 98a23a1 | 2018-05-09 13:01:16 -0700 | [diff] [blame] | 141 | if (fs_mkdirs(dir.c_str(), 0700)) { |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 142 | PLOG(ERROR) << "Creating directories: " << dir; |
Paul Crowley | 98a23a1 | 2018-05-09 13:01:16 -0700 | [diff] [blame] | 143 | return false; |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 144 | } |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 145 | auto temp = metadata_key_dir + "/tmp"; |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 146 | auto newKeyPath = dir + "/" + kFn_keymaster_key_blob_upgraded; |
| 147 | /* If we have a leftover upgraded key, delete it. |
| 148 | * We either failed an update and must return to the old key, |
| 149 | * or we rebooted before commiting the keys in a freak accident. |
| 150 | * Either way, we can re-upgrade the key if we need to. |
| 151 | */ |
| 152 | Keymaster keymaster; |
| 153 | if (pathExists(newKeyPath)) { |
| 154 | if (!android::base::ReadFileToString(newKeyPath, &sKey)) |
Paul Crowley | b3d018a | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 155 | LOG(ERROR) << "Failed to read incomplete key: " << dir; |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 156 | else if (!keymaster.deleteKey(sKey)) |
Paul Crowley | b3d018a | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 157 | LOG(ERROR) << "Incomplete key deletion failed, continuing anyway: " << dir; |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 158 | else |
| 159 | unlink(newKeyPath.c_str()); |
| 160 | } |
| 161 | bool needs_cp = cp_needsCheckpoint(); |
Paul Crowley | b3d018a | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 162 | if (!retrieveOrGenerateKey(dir, temp, kEmptyAuthentication, gen, key, needs_cp)) return false; |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 163 | if (needs_cp && pathExists(newKeyPath)) std::thread(commit_key, dir).detach(); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 164 | return true; |
| 165 | } |
| 166 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 167 | 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] | 168 | if (android::vold::GetBlockDev512Sectors(real_blkdev, nr_sec) != android::OK) { |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 169 | PLOG(ERROR) << "Unable to measure size of " << real_blkdev; |
| 170 | return false; |
| 171 | } |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 172 | return true; |
| 173 | } |
| 174 | |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 175 | static bool create_crypto_blk_dev(const std::string& dm_name, const std::string& blk_device, |
| 176 | bool is_legacy, const std::string& cipher, bool set_dun, |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 177 | const KeyBuffer& key, std::string* crypto_blkdev) { |
| 178 | uint64_t nr_sec; |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 179 | if (!get_number_of_sectors(blk_device, &nr_sec)) return false; |
Paul Crowley | 84e84c5 | 2020-01-29 16:09:19 -0800 | [diff] [blame] | 180 | |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 181 | KeyBuffer hex_key_buffer; |
| 182 | if (android::vold::StrToHex(key, hex_key_buffer) != android::OK) { |
| 183 | LOG(ERROR) << "Failed to turn key to hex"; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 184 | return false; |
| 185 | } |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 186 | std::string hex_key(hex_key_buffer.data(), hex_key_buffer.size()); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 187 | |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 188 | DmTable table; |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 189 | table.Emplace<DmTargetDefaultKey>(0, nr_sec, cipher, hex_key, blk_device, 0, is_legacy, |
| 190 | set_dun); |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 191 | |
| 192 | auto& dm = DeviceMapper::Instance(); |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 193 | for (int i = 0;; i++) { |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 194 | if (dm.CreateDevice(dm_name, table)) { |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 195 | break; |
| 196 | } |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 197 | if (i + 1 >= TABLE_LOAD_RETRIES) { |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 198 | PLOG(ERROR) << "Could not create default-key device " << dm_name; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 199 | return false; |
| 200 | } |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 201 | PLOG(INFO) << "Could not create default-key device, retrying"; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 202 | usleep(500000); |
| 203 | } |
| 204 | |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 205 | if (!dm.GetDmDevicePathByName(dm_name, crypto_blkdev)) { |
| 206 | LOG(ERROR) << "Cannot retrieve default-key device status " << dm_name; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 207 | return false; |
| 208 | } |
| 209 | return true; |
| 210 | } |
| 211 | |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 212 | static const CryptoType& lookup_cipher_in_table(const CryptoType table[], int table_len, |
| 213 | const std::string& cipher_name) { |
| 214 | if (cipher_name.empty()) return table[0]; |
| 215 | for (int i = 0; i < table_len; i++) { |
| 216 | if (cipher_name == table[i].get_config_name()) { |
| 217 | return table[i]; |
| 218 | } |
| 219 | } |
| 220 | return invalid_crypto_type; |
| 221 | } |
| 222 | |
| 223 | static const CryptoType& lookup_cipher(const std::string& cipher_name, bool is_legacy) { |
| 224 | if (is_legacy) { |
| 225 | return lookup_cipher_in_table(legacy_crypto_types, array_length(legacy_crypto_types), |
| 226 | cipher_name); |
| 227 | } else { |
| 228 | return lookup_cipher_in_table(supported_crypto_types, array_length(supported_crypto_types), |
| 229 | cipher_name); |
| 230 | } |
| 231 | } |
| 232 | |
Paul Lawrence | 236e5e8 | 2019-06-25 14:44:33 -0700 | [diff] [blame] | 233 | bool fscrypt_mount_metadata_encrypted(const std::string& blk_device, const std::string& mount_point, |
| 234 | bool needs_encrypt) { |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 235 | LOG(DEBUG) << "fscrypt_mount_metadata_encrypted: " << mount_point << " " << needs_encrypt; |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 236 | auto encrypted_state = android::base::GetProperty("ro.crypto.state", ""); |
Nikita Ioffe | f850e6e | 2019-12-09 21:19:11 +0000 | [diff] [blame] | 237 | if (encrypted_state != "" && encrypted_state != "encrypted") { |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 238 | LOG(DEBUG) << "fscrypt_enable_crypto got unexpected starting state: " << encrypted_state; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 239 | return false; |
| 240 | } |
Tom Cherry | 4c5bde2 | 2019-01-29 14:34:01 -0800 | [diff] [blame] | 241 | |
| 242 | auto data_rec = GetEntryForMountPoint(&fstab_default, mount_point); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 243 | if (!data_rec) { |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 244 | LOG(ERROR) << "Failed to get data_rec for " << mount_point; |
| 245 | return false; |
| 246 | } |
| 247 | if (blk_device != data_rec->blk_device) { |
| 248 | LOG(ERROR) << "blk_device " << blk_device << " does not match fstab entry " |
| 249 | << data_rec->blk_device << " for " << mount_point; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 250 | return false; |
| 251 | } |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 252 | |
| 253 | bool is_legacy; |
| 254 | if (!DmTargetDefaultKey::IsLegacy(&is_legacy)) return false; |
| 255 | |
| 256 | // Non-legacy driver always sets DUN |
| 257 | bool set_dun = !is_legacy || android::base::GetBoolProperty("ro.crypto.set_dun", false); |
| 258 | if (!set_dun && data_rec->fs_mgr_flags.checkpoint_blk) { |
| 259 | LOG(ERROR) << "Block checkpoints and metadata encryption require ro.crypto.set_dun option"; |
| 260 | return false; |
| 261 | } |
| 262 | |
| 263 | auto cipher = lookup_cipher(data_rec->metadata_cipher, is_legacy); |
| 264 | if (cipher.get_kernel_name() == nullptr) { |
| 265 | LOG(ERROR) << "No metadata cipher named " << data_rec->metadata_cipher |
| 266 | << " found, is_legacy=" << is_legacy; |
| 267 | return false; |
| 268 | } |
| 269 | |
Paul Crowley | b3d018a | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 270 | auto gen = needs_encrypt ? makeGen(cipher) : neverGen(); |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 271 | KeyBuffer key; |
Paul Crowley | b3d018a | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 272 | if (!read_key(data_rec->metadata_key_dir, gen, &key)) return false; |
Paul Lawrence | 4b140d3 | 2019-08-07 15:22:57 -0700 | [diff] [blame] | 273 | |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 274 | std::string crypto_blkdev; |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 275 | if (!create_crypto_blk_dev(kDmNameUserdata, data_rec->blk_device, is_legacy, |
| 276 | cipher.get_kernel_name(), set_dun, key, &crypto_blkdev)) |
| 277 | return false; |
Paul Lawrence | 236e5e8 | 2019-06-25 14:44:33 -0700 | [diff] [blame] | 278 | |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 279 | // FIXME handle the corrupt case |
| 280 | if (needs_encrypt) { |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 281 | uint64_t nr_sec; |
| 282 | if (!get_number_of_sectors(data_rec->blk_device, &nr_sec)) return false; |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 283 | LOG(INFO) << "Beginning inplace encryption, nr_sec: " << nr_sec; |
| 284 | off64_t size_already_done = 0; |
Paul Lawrence | 236e5e8 | 2019-06-25 14:44:33 -0700 | [diff] [blame] | 285 | auto rc = cryptfs_enable_inplace(crypto_blkdev.data(), blk_device.data(), nr_sec, |
Tom Cherry | 4c5bde2 | 2019-01-29 14:34:01 -0800 | [diff] [blame] | 286 | &size_already_done, nr_sec, 0, false); |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 287 | if (rc != 0) { |
| 288 | LOG(ERROR) << "Inplace crypto failed with code: " << rc; |
| 289 | return false; |
| 290 | } |
| 291 | if (static_cast<uint64_t>(size_already_done) != nr_sec) { |
| 292 | LOG(ERROR) << "Inplace crypto only got up to sector: " << size_already_done; |
| 293 | return false; |
| 294 | } |
| 295 | LOG(INFO) << "Inplace encryption complete"; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 296 | } |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 297 | |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 298 | LOG(DEBUG) << "Mounting metadata-encrypted filesystem:" << mount_point; |
Tom Cherry | 4c5bde2 | 2019-01-29 14:34:01 -0800 | [diff] [blame] | 299 | mount_via_fs_mgr(data_rec->mount_point.c_str(), crypto_blkdev.c_str()); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 300 | return true; |
| 301 | } |
Paul Crowley | 220567c | 2020-02-07 12:45:20 -0800 | [diff] [blame] | 302 | |
| 303 | } // namespace vold |
| 304 | } // namespace android |