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> |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 33 | #include <android-base/strings.h> |
Paul Crowley | e4c93da | 2017-06-16 09:21:18 -0700 | [diff] [blame] | 34 | #include <android-base/unique_fd.h> |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 35 | #include <cutils/fs.h> |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 36 | #include <fs_mgr.h> |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 37 | #include <libdm/dm.h> |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 38 | |
Daniel Rosenberg | 65f99c9 | 2018-08-28 01:58:49 -0700 | [diff] [blame] | 39 | #include "Checkpoint.h" |
Paul Crowley | 220567c | 2020-02-07 12:45:20 -0800 | [diff] [blame] | 40 | #include "CryptoType.h" |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 41 | #include "EncryptInplace.h" |
Steven Laver | ed7b353 | 2020-02-12 12:49:40 -0800 | [diff] [blame] | 42 | #include "FsCrypt.h" |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 43 | #include "KeyStorage.h" |
| 44 | #include "KeyUtil.h" |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 45 | #include "Keymaster.h" |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 46 | #include "Utils.h" |
| 47 | #include "VoldUtil.h" |
| 48 | |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 49 | #define TABLE_LOAD_RETRIES 10 |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 50 | |
Paul Crowley | 220567c | 2020-02-07 12:45:20 -0800 | [diff] [blame] | 51 | namespace android { |
| 52 | namespace vold { |
| 53 | |
Tom Cherry | 4c5bde2 | 2019-01-29 14:34:01 -0800 | [diff] [blame] | 54 | using android::fs_mgr::FstabEntry; |
| 55 | using android::fs_mgr::GetEntryForMountPoint; |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 56 | using android::vold::KeyBuffer; |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 57 | using namespace android::dm; |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 58 | |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 59 | // Parsed from metadata options |
| 60 | struct CryptoOptions { |
| 61 | struct CryptoType cipher = invalid_crypto_type; |
Paul Crowley | 4073c0b | 2020-03-22 08:02:06 -0700 | [diff] [blame] | 62 | bool use_legacy_options_format = false; |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 63 | bool set_dun = true; // Non-legacy driver always sets DUN |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 64 | bool use_hw_wrapped_key = false; |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 65 | }; |
| 66 | |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 67 | static const std::string kDmNameUserdata = "userdata"; |
| 68 | |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 69 | static const char* kFn_keymaster_key_blob = "keymaster_key_blob"; |
| 70 | static const char* kFn_keymaster_key_blob_upgraded = "keymaster_key_blob_upgraded"; |
| 71 | |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 72 | // The first entry in this table is the default crypto type. |
Paul Crowley | 220567c | 2020-02-07 12:45:20 -0800 | [diff] [blame] | 73 | constexpr CryptoType supported_crypto_types[] = {aes_256_xts, adiantum}; |
| 74 | |
| 75 | static_assert(validateSupportedCryptoTypes(64, supported_crypto_types, |
| 76 | array_length(supported_crypto_types)), |
| 77 | "We have a CryptoType which was incompletely constructed."); |
| 78 | |
| 79 | constexpr CryptoType legacy_aes_256_xts = |
| 80 | CryptoType().set_config_name("aes-256-xts").set_kernel_name("AES-256-XTS").set_keysize(64); |
| 81 | |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 82 | static_assert(isValidCryptoType(64, legacy_aes_256_xts), |
Paul Crowley | 220567c | 2020-02-07 12:45:20 -0800 | [diff] [blame] | 83 | "We have a CryptoType which was incompletely constructed."); |
| 84 | |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 85 | // Returns KeyGeneration suitable for key as described in CryptoOptions |
| 86 | const KeyGeneration makeGen(const CryptoOptions& options) { |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 87 | return KeyGeneration{options.cipher.get_keysize(), true, options.use_hw_wrapped_key}; |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 88 | } |
| 89 | |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 90 | static bool mount_via_fs_mgr(const char* mount_point, const char* blk_device) { |
Shawn Willden | 50397a7 | 2020-04-01 10:02:16 -0600 | [diff] [blame] | 91 | // We're about to mount data not verified by verified boot. Tell Keymaster instances that early |
| 92 | // boot has ended. |
| 93 | ::android::vold::Keymaster::earlyBootEnded(); |
Shawn Willden | 2b1ff5a | 2020-01-16 14:08:36 -0700 | [diff] [blame] | 94 | |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 95 | // fs_mgr_do_mount runs fsck. Use setexeccon to run trusted |
| 96 | // partitions in the fsck domain. |
LongPing Wei | 7f3ab95 | 2019-01-30 16:03:14 +0800 | [diff] [blame] | 97 | if (setexeccon(android::vold::sFsckContext)) { |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 98 | PLOG(ERROR) << "Failed to setexeccon"; |
| 99 | return false; |
| 100 | } |
Tom Cherry | 4c5bde2 | 2019-01-29 14:34:01 -0800 | [diff] [blame] | 101 | 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] | 102 | const_cast<char*>(blk_device), nullptr, |
| 103 | android::vold::cp_needsCheckpoint()); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 104 | if (setexeccon(nullptr)) { |
| 105 | PLOG(ERROR) << "Failed to clear setexeccon"; |
| 106 | return false; |
| 107 | } |
| 108 | if (mount_rc != 0) { |
| 109 | LOG(ERROR) << "fs_mgr_do_mount failed with rc " << mount_rc; |
| 110 | return false; |
| 111 | } |
| 112 | LOG(DEBUG) << "Mounted " << mount_point; |
| 113 | return true; |
| 114 | } |
| 115 | |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 116 | // Note: It is possible to orphan a key if it is removed before deleting |
| 117 | // Update this once keymaster APIs change, and we have a proper commit. |
Greg Kaiser | 8ae16db | 2018-12-18 11:10:31 -0800 | [diff] [blame] | 118 | static void commit_key(const std::string& dir) { |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 119 | while (!android::base::WaitForProperty("vold.checkpoint_committed", "1")) { |
| 120 | LOG(ERROR) << "Wait for boot timed out"; |
| 121 | } |
| 122 | Keymaster keymaster; |
| 123 | auto keyPath = dir + "/" + kFn_keymaster_key_blob; |
| 124 | auto newKeyPath = dir + "/" + kFn_keymaster_key_blob_upgraded; |
| 125 | std::string key; |
| 126 | |
| 127 | if (!android::base::ReadFileToString(keyPath, &key)) { |
| 128 | LOG(ERROR) << "Failed to read old key: " << dir; |
| 129 | return; |
| 130 | } |
| 131 | if (rename(newKeyPath.c_str(), keyPath.c_str()) != 0) { |
| 132 | PLOG(ERROR) << "Unable to move upgraded key to location: " << keyPath; |
| 133 | return; |
| 134 | } |
| 135 | if (!keymaster.deleteKey(key)) { |
| 136 | LOG(ERROR) << "Key deletion failed during upgrade, continuing anyway: " << dir; |
| 137 | } |
| 138 | LOG(INFO) << "Old Key deleted: " << dir; |
| 139 | } |
| 140 | |
Paul Crowley | 4eac264 | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 141 | static bool read_key(const std::string& metadata_key_dir, const KeyGeneration& gen, |
| 142 | KeyBuffer* key) { |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 143 | if (metadata_key_dir.empty()) { |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 144 | LOG(ERROR) << "Failed to get metadata_key_dir"; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 145 | return false; |
| 146 | } |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 147 | std::string sKey; |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 148 | auto dir = metadata_key_dir + "/key"; |
| 149 | LOG(DEBUG) << "metadata_key_dir/key: " << dir; |
Paul Crowley | 98a23a1 | 2018-05-09 13:01:16 -0700 | [diff] [blame] | 150 | if (fs_mkdirs(dir.c_str(), 0700)) { |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 151 | PLOG(ERROR) << "Creating directories: " << dir; |
Paul Crowley | 98a23a1 | 2018-05-09 13:01:16 -0700 | [diff] [blame] | 152 | return false; |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 153 | } |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 154 | auto temp = metadata_key_dir + "/tmp"; |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 155 | auto newKeyPath = dir + "/" + kFn_keymaster_key_blob_upgraded; |
| 156 | /* If we have a leftover upgraded key, delete it. |
| 157 | * We either failed an update and must return to the old key, |
| 158 | * or we rebooted before commiting the keys in a freak accident. |
| 159 | * Either way, we can re-upgrade the key if we need to. |
| 160 | */ |
| 161 | Keymaster keymaster; |
| 162 | if (pathExists(newKeyPath)) { |
| 163 | if (!android::base::ReadFileToString(newKeyPath, &sKey)) |
Paul Crowley | 4eac264 | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 164 | LOG(ERROR) << "Failed to read incomplete key: " << dir; |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 165 | else if (!keymaster.deleteKey(sKey)) |
Paul Crowley | 4eac264 | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 166 | LOG(ERROR) << "Incomplete key deletion failed, continuing anyway: " << dir; |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 167 | else |
| 168 | unlink(newKeyPath.c_str()); |
| 169 | } |
| 170 | bool needs_cp = cp_needsCheckpoint(); |
Paul Crowley | 4eac264 | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 171 | if (!retrieveOrGenerateKey(dir, temp, kEmptyAuthentication, gen, key, needs_cp)) return false; |
Daniel Rosenberg | 690d6de | 2018-12-14 01:08:10 -0800 | [diff] [blame] | 172 | if (needs_cp && pathExists(newKeyPath)) std::thread(commit_key, dir).detach(); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 173 | return true; |
| 174 | } |
| 175 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 176 | 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] | 177 | if (android::vold::GetBlockDev512Sectors(real_blkdev, nr_sec) != android::OK) { |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 178 | PLOG(ERROR) << "Unable to measure size of " << real_blkdev; |
| 179 | return false; |
| 180 | } |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 181 | return true; |
| 182 | } |
| 183 | |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 184 | 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] | 185 | const KeyBuffer& key, const CryptoOptions& options, |
Paul Crowley | 886e572 | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 186 | std::string* crypto_blkdev, uint64_t* nr_sec) { |
| 187 | if (!get_number_of_sectors(blk_device, nr_sec)) return false; |
| 188 | // TODO(paulcrowley): don't hardcode that DmTargetDefaultKey uses 4096-byte |
| 189 | // sectors |
| 190 | *nr_sec &= ~7; |
Paul Crowley | 84e84c5 | 2020-01-29 16:09:19 -0800 | [diff] [blame] | 191 | |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 192 | KeyBuffer module_key; |
| 193 | if (options.use_hw_wrapped_key) { |
| 194 | if (!exportWrappedStorageKey(key, &module_key)) { |
| 195 | LOG(ERROR) << "Failed to get ephemeral wrapped key"; |
| 196 | return false; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 197 | } |
| 198 | } else { |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 199 | module_key = key; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 200 | } |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 201 | |
| 202 | KeyBuffer hex_key_buffer; |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 203 | if (android::vold::StrToHex(module_key, hex_key_buffer) != android::OK) { |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 204 | LOG(ERROR) << "Failed to turn key to hex"; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 205 | return false; |
| 206 | } |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 207 | std::string hex_key(hex_key_buffer.data(), hex_key_buffer.size()); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 208 | |
Paul Crowley | 886e572 | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 209 | 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] | 210 | hex_key, blk_device, 0); |
Paul Crowley | 4073c0b | 2020-03-22 08:02:06 -0700 | [diff] [blame] | 211 | if (options.use_legacy_options_format) target->SetUseLegacyOptionsFormat(); |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 212 | if (options.set_dun) target->SetSetDun(); |
| 213 | if (options.use_hw_wrapped_key) target->SetWrappedKeyV0(); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 214 | |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 215 | DmTable table; |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 216 | table.AddTarget(std::move(target)); |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 217 | |
| 218 | auto& dm = DeviceMapper::Instance(); |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 219 | for (int i = 0;; i++) { |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 220 | if (dm.CreateDevice(dm_name, table)) { |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 221 | break; |
| 222 | } |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 223 | if (i + 1 >= TABLE_LOAD_RETRIES) { |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 224 | PLOG(ERROR) << "Could not create default-key device " << dm_name; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 225 | return false; |
| 226 | } |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 227 | PLOG(INFO) << "Could not create default-key device, retrying"; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 228 | usleep(500000); |
| 229 | } |
| 230 | |
David Anderson | b922473 | 2019-05-13 13:02:54 -0700 | [diff] [blame] | 231 | if (!dm.GetDmDevicePathByName(dm_name, crypto_blkdev)) { |
| 232 | LOG(ERROR) << "Cannot retrieve default-key device status " << dm_name; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 233 | return false; |
| 234 | } |
| 235 | return true; |
| 236 | } |
| 237 | |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 238 | static const CryptoType& lookup_cipher(const std::string& cipher_name) { |
| 239 | if (cipher_name.empty()) return supported_crypto_types[0]; |
| 240 | for (size_t i = 0; i < array_length(supported_crypto_types); i++) { |
| 241 | if (cipher_name == supported_crypto_types[i].get_config_name()) { |
| 242 | return supported_crypto_types[i]; |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 243 | } |
| 244 | } |
| 245 | return invalid_crypto_type; |
| 246 | } |
| 247 | |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 248 | static bool parse_options(const std::string& options_string, CryptoOptions* options) { |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 249 | auto parts = android::base::Split(options_string, ":"); |
| 250 | if (parts.size() < 1 || parts.size() > 2) { |
| 251 | LOG(ERROR) << "Invalid metadata encryption option: " << options_string; |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 252 | return false; |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 253 | } |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 254 | std::string cipher_name = parts[0]; |
| 255 | options->cipher = lookup_cipher(cipher_name); |
| 256 | if (options->cipher.get_kernel_name() == nullptr) { |
| 257 | LOG(ERROR) << "No metadata cipher named " << cipher_name << " found"; |
| 258 | return false; |
| 259 | } |
| 260 | |
| 261 | if (parts.size() == 2) { |
| 262 | if (parts[1] == "wrappedkey_v0") { |
| 263 | options->use_hw_wrapped_key = true; |
| 264 | } else { |
| 265 | LOG(ERROR) << "Invalid metadata encryption flag: " << parts[1]; |
| 266 | return false; |
| 267 | } |
| 268 | } |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 269 | return true; |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 270 | } |
| 271 | |
Paul Lawrence | f376a01 | 2019-06-25 14:44:33 -0700 | [diff] [blame] | 272 | bool fscrypt_mount_metadata_encrypted(const std::string& blk_device, const std::string& mount_point, |
| 273 | bool needs_encrypt) { |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 274 | LOG(DEBUG) << "fscrypt_mount_metadata_encrypted: " << mount_point << " " << needs_encrypt; |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 275 | auto encrypted_state = android::base::GetProperty("ro.crypto.state", ""); |
Nikita Ioffe | f850e6e | 2019-12-09 21:19:11 +0000 | [diff] [blame] | 276 | if (encrypted_state != "" && encrypted_state != "encrypted") { |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 277 | LOG(DEBUG) << "fscrypt_enable_crypto got unexpected starting state: " << encrypted_state; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 278 | return false; |
| 279 | } |
Tom Cherry | 4c5bde2 | 2019-01-29 14:34:01 -0800 | [diff] [blame] | 280 | |
| 281 | auto data_rec = GetEntryForMountPoint(&fstab_default, mount_point); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 282 | if (!data_rec) { |
Paul Crowley | c9b92f0 | 2020-01-30 15:26:15 -0800 | [diff] [blame] | 283 | LOG(ERROR) << "Failed to get data_rec for " << mount_point; |
| 284 | return false; |
| 285 | } |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 286 | |
Paul Crowley | 4073c0b | 2020-03-22 08:02:06 -0700 | [diff] [blame] | 287 | constexpr unsigned int pre_gki_level = 29; |
| 288 | unsigned int options_format_version = android::base::GetUintProperty<unsigned int>( |
| 289 | "ro.crypto.dm_default_key.options_format.version", |
| 290 | (GetFirstApiLevel() <= pre_gki_level ? 1 : 2)); |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 291 | |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 292 | CryptoOptions options; |
Paul Crowley | 4073c0b | 2020-03-22 08:02:06 -0700 | [diff] [blame] | 293 | if (options_format_version == 1) { |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 294 | if (!data_rec->metadata_encryption.empty()) { |
| 295 | LOG(ERROR) << "metadata_encryption options cannot be set in legacy mode"; |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 296 | return false; |
| 297 | } |
| 298 | options.cipher = legacy_aes_256_xts; |
Paul Crowley | 4073c0b | 2020-03-22 08:02:06 -0700 | [diff] [blame] | 299 | options.use_legacy_options_format = true; |
Neeraj Soni | 406be86 | 2020-05-04 23:49:03 +0530 | [diff] [blame^] | 300 | if (is_metadata_wrapped_key_supported()) |
| 301 | options.use_hw_wrapped_key = true; |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 302 | options.set_dun = android::base::GetBoolProperty("ro.crypto.set_dun", false); |
| 303 | if (!options.set_dun && data_rec->fs_mgr_flags.checkpoint_blk) { |
| 304 | LOG(ERROR) |
| 305 | << "Block checkpoints and metadata encryption require ro.crypto.set_dun option"; |
| 306 | return false; |
| 307 | } |
Paul Crowley | 4073c0b | 2020-03-22 08:02:06 -0700 | [diff] [blame] | 308 | } else if (options_format_version == 2) { |
Barani Muthukumaran | 312b7df | 2020-02-06 22:56:27 -0800 | [diff] [blame] | 309 | if (!parse_options(data_rec->metadata_encryption, &options)) return false; |
Paul Crowley | 4073c0b | 2020-03-22 08:02:06 -0700 | [diff] [blame] | 310 | } else { |
| 311 | LOG(ERROR) << "Unknown options_format_version: " << options_format_version; |
| 312 | return false; |
Paul Crowley | 572c024 | 2020-02-14 01:15:35 -0800 | [diff] [blame] | 313 | } |
| 314 | |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 315 | auto gen = needs_encrypt ? makeGen(options) : neverGen(); |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 316 | KeyBuffer key; |
Paul Crowley | 4eac264 | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 317 | if (!read_key(data_rec->metadata_key_dir, gen, &key)) return false; |
Paul Lawrence | 4b140d3 | 2019-08-07 15:22:57 -0700 | [diff] [blame] | 318 | |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 319 | std::string crypto_blkdev; |
Paul Crowley | 886e572 | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 320 | uint64_t nr_sec; |
Paul Crowley | 7de5377 | 2020-03-02 12:57:58 -0800 | [diff] [blame] | 321 | 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] | 322 | return false; |
Paul Lawrence | f376a01 | 2019-06-25 14:44:33 -0700 | [diff] [blame] | 323 | |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 324 | // FIXME handle the corrupt case |
| 325 | if (needs_encrypt) { |
| 326 | LOG(INFO) << "Beginning inplace encryption, nr_sec: " << nr_sec; |
| 327 | off64_t size_already_done = 0; |
Paul Lawrence | f376a01 | 2019-06-25 14:44:33 -0700 | [diff] [blame] | 328 | 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] | 329 | &size_already_done, nr_sec, 0, false); |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 330 | if (rc != 0) { |
| 331 | LOG(ERROR) << "Inplace crypto failed with code: " << rc; |
| 332 | return false; |
| 333 | } |
| 334 | if (static_cast<uint64_t>(size_already_done) != nr_sec) { |
| 335 | LOG(ERROR) << "Inplace crypto only got up to sector: " << size_already_done; |
| 336 | return false; |
| 337 | } |
| 338 | LOG(INFO) << "Inplace encryption complete"; |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 339 | } |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 340 | |
Paul Crowley | 0fd2626 | 2018-01-30 09:48:19 -0800 | [diff] [blame] | 341 | LOG(DEBUG) << "Mounting metadata-encrypted filesystem:" << mount_point; |
Paul Crowley | 7de5377 | 2020-03-02 12:57:58 -0800 | [diff] [blame] | 342 | mount_via_fs_mgr(mount_point.c_str(), crypto_blkdev.c_str()); |
Paul Crowley | d575981 | 2016-06-02 11:04:27 -0700 | [diff] [blame] | 343 | return true; |
| 344 | } |
Paul Crowley | 220567c | 2020-02-07 12:45:20 -0800 | [diff] [blame] | 345 | |
Paul Crowley | 886e572 | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 346 | static bool get_volume_options(CryptoOptions* options) { |
| 347 | return parse_options(android::base::GetProperty("ro.crypto.volume.metadata.encryption", ""), |
| 348 | options); |
| 349 | } |
| 350 | |
| 351 | bool defaultkey_volume_keygen(KeyGeneration* gen) { |
| 352 | CryptoOptions options; |
| 353 | if (!get_volume_options(&options)) return false; |
| 354 | *gen = makeGen(options); |
| 355 | return true; |
| 356 | } |
| 357 | |
| 358 | bool defaultkey_setup_ext_volume(const std::string& label, const std::string& blk_device, |
| 359 | const KeyBuffer& key, std::string* out_crypto_blkdev) { |
| 360 | LOG(DEBUG) << "defaultkey_setup_ext_volume: " << label << " " << blk_device; |
| 361 | |
| 362 | CryptoOptions options; |
| 363 | if (!get_volume_options(&options)) return false; |
| 364 | uint64_t nr_sec; |
| 365 | return create_crypto_blk_dev(label, blk_device, key, options, out_crypto_blkdev, &nr_sec); |
| 366 | } |
| 367 | |
Paul Crowley | 220567c | 2020-02-07 12:45:20 -0800 | [diff] [blame] | 368 | } // namespace vold |
| 369 | } // namespace android |