blob: bf0220eb937b9ffb9eb4076222f619a200fa2ac5 [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>
Paul Crowleyd5759812016-06-02 11:04:27 -070038
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070039#include "Checkpoint.h"
Paul Crowley220567c2020-02-07 12:45:20 -080040#include "CryptoType.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070041#include "EncryptInplace.h"
42#include "KeyStorage.h"
43#include "KeyUtil.h"
Daniel Rosenberg690d6de2018-12-14 01:08:10 -080044#include "Keymaster.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070045#include "Utils.h"
46#include "VoldUtil.h"
47
Paul Crowleyd5759812016-06-02 11:04:27 -070048#define TABLE_LOAD_RETRIES 10
Paul Crowleyd5759812016-06-02 11:04:27 -070049
Paul Crowley220567c2020-02-07 12:45:20 -080050namespace android {
51namespace vold {
52
Tom Cherry4c5bde22019-01-29 14:34:01 -080053using android::fs_mgr::FstabEntry;
54using android::fs_mgr::GetEntryForMountPoint;
Pavel Grafove2e2d302017-08-01 17:15:53 +010055using android::vold::KeyBuffer;
David Andersonb9224732019-05-13 13:02:54 -070056using namespace android::dm;
Pavel Grafove2e2d302017-08-01 17:15:53 +010057
Paul Crowley249c2fb2020-02-07 12:51:56 -080058// Parsed from metadata options
59struct CryptoOptions {
60 struct CryptoType cipher = invalid_crypto_type;
61 bool is_legacy = false;
62 bool set_dun = true; // Non-legacy driver always sets DUN
Barani Muthukumaran312b7df2020-02-06 22:56:27 -080063 bool use_hw_wrapped_key = false;
Paul Crowley249c2fb2020-02-07 12:51:56 -080064};
65
Paul Crowleyd5759812016-06-02 11:04:27 -070066static const std::string kDmNameUserdata = "userdata";
67
Daniel Rosenberg690d6de2018-12-14 01:08:10 -080068static const char* kFn_keymaster_key_blob = "keymaster_key_blob";
69static const char* kFn_keymaster_key_blob_upgraded = "keymaster_key_blob_upgraded";
70
Paul Crowley249c2fb2020-02-07 12:51:56 -080071// The first entry in this table is the default crypto type.
Paul Crowley220567c2020-02-07 12:45:20 -080072constexpr CryptoType supported_crypto_types[] = {aes_256_xts, adiantum};
73
74static_assert(validateSupportedCryptoTypes(64, supported_crypto_types,
75 array_length(supported_crypto_types)),
76 "We have a CryptoType which was incompletely constructed.");
77
78constexpr CryptoType legacy_aes_256_xts =
79 CryptoType().set_config_name("aes-256-xts").set_kernel_name("AES-256-XTS").set_keysize(64);
80
Paul Crowley249c2fb2020-02-07 12:51:56 -080081static_assert(isValidCryptoType(64, legacy_aes_256_xts),
Paul Crowley220567c2020-02-07 12:45:20 -080082 "We have a CryptoType which was incompletely constructed.");
83
Paul Crowley249c2fb2020-02-07 12:51:56 -080084// Returns KeyGeneration suitable for key as described in CryptoOptions
85const KeyGeneration makeGen(const CryptoOptions& options) {
Barani Muthukumaran312b7df2020-02-06 22:56:27 -080086 return KeyGeneration{options.cipher.get_keysize(), true, options.use_hw_wrapped_key};
Paul Crowley249c2fb2020-02-07 12:51:56 -080087}
88
Paul Crowleyd5759812016-06-02 11:04:27 -070089static bool mount_via_fs_mgr(const char* mount_point, const char* blk_device) {
Shawn Willden2b1ff5a2020-01-16 14:08:36 -070090 // We're about to mount data not verified by verified boot. Tell Keymaster that early boot has
91 // ended.
92 //
93 // TODO(paulcrowley): Make a Keymaster singleton or something, so we don't have to repeatedly
94 // open and initialize the service.
95 ::android::vold::Keymaster keymaster;
96 keymaster.earlyBootEnded();
97
Paul Crowleyd5759812016-06-02 11:04:27 -070098 // fs_mgr_do_mount runs fsck. Use setexeccon to run trusted
99 // partitions in the fsck domain.
LongPing Wei7f3ab952019-01-30 16:03:14 +0800100 if (setexeccon(android::vold::sFsckContext)) {
Paul Crowleyd5759812016-06-02 11:04:27 -0700101 PLOG(ERROR) << "Failed to setexeccon";
102 return false;
103 }
Tom Cherry4c5bde22019-01-29 14:34:01 -0800104 auto mount_rc = fs_mgr_do_mount(&fstab_default, const_cast<char*>(mount_point),
Daniel Rosenberg65f99c92018-08-28 01:58:49 -0700105 const_cast<char*>(blk_device), nullptr,
Paul Lawrence3fe93112020-06-12 08:12:48 -0700106 android::vold::cp_needsCheckpoint(), true);
Paul Crowleyd5759812016-06-02 11:04:27 -0700107 if (setexeccon(nullptr)) {
108 PLOG(ERROR) << "Failed to clear setexeccon";
109 return false;
110 }
111 if (mount_rc != 0) {
112 LOG(ERROR) << "fs_mgr_do_mount failed with rc " << mount_rc;
113 return false;
114 }
115 LOG(DEBUG) << "Mounted " << mount_point;
116 return true;
117}
118
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800119// Note: It is possible to orphan a key if it is removed before deleting
120// Update this once keymaster APIs change, and we have a proper commit.
Greg Kaiser8ae16db2018-12-18 11:10:31 -0800121static void commit_key(const std::string& dir) {
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800122 while (!android::base::WaitForProperty("vold.checkpoint_committed", "1")) {
123 LOG(ERROR) << "Wait for boot timed out";
124 }
125 Keymaster keymaster;
126 auto keyPath = dir + "/" + kFn_keymaster_key_blob;
127 auto newKeyPath = dir + "/" + kFn_keymaster_key_blob_upgraded;
128 std::string key;
129
130 if (!android::base::ReadFileToString(keyPath, &key)) {
131 LOG(ERROR) << "Failed to read old key: " << dir;
132 return;
133 }
134 if (rename(newKeyPath.c_str(), keyPath.c_str()) != 0) {
135 PLOG(ERROR) << "Unable to move upgraded key to location: " << keyPath;
136 return;
137 }
138 if (!keymaster.deleteKey(key)) {
139 LOG(ERROR) << "Key deletion failed during upgrade, continuing anyway: " << dir;
140 }
141 LOG(INFO) << "Old Key deleted: " << dir;
142}
143
Paul Crowley4eac2642020-02-12 11:04:05 -0800144static bool read_key(const std::string& metadata_key_dir, const KeyGeneration& gen,
145 KeyBuffer* key) {
Paul Crowley572c0242020-02-14 01:15:35 -0800146 if (metadata_key_dir.empty()) {
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800147 LOG(ERROR) << "Failed to get metadata_key_dir";
Paul Crowleyd5759812016-06-02 11:04:27 -0700148 return false;
149 }
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800150 std::string sKey;
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800151 auto dir = metadata_key_dir + "/key";
152 LOG(DEBUG) << "metadata_key_dir/key: " << dir;
Paul Crowley98a23a12018-05-09 13:01:16 -0700153 if (fs_mkdirs(dir.c_str(), 0700)) {
Paul Crowley0fd26262018-01-30 09:48:19 -0800154 PLOG(ERROR) << "Creating directories: " << dir;
Paul Crowley98a23a12018-05-09 13:01:16 -0700155 return false;
Paul Crowley0fd26262018-01-30 09:48:19 -0800156 }
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800157 auto temp = metadata_key_dir + "/tmp";
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800158 auto newKeyPath = dir + "/" + kFn_keymaster_key_blob_upgraded;
159 /* If we have a leftover upgraded key, delete it.
160 * We either failed an update and must return to the old key,
161 * or we rebooted before commiting the keys in a freak accident.
162 * Either way, we can re-upgrade the key if we need to.
163 */
164 Keymaster keymaster;
165 if (pathExists(newKeyPath)) {
166 if (!android::base::ReadFileToString(newKeyPath, &sKey))
Paul Crowley4eac2642020-02-12 11:04:05 -0800167 LOG(ERROR) << "Failed to read incomplete key: " << dir;
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800168 else if (!keymaster.deleteKey(sKey))
Paul Crowley4eac2642020-02-12 11:04:05 -0800169 LOG(ERROR) << "Incomplete key deletion failed, continuing anyway: " << dir;
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800170 else
171 unlink(newKeyPath.c_str());
172 }
173 bool needs_cp = cp_needsCheckpoint();
Paul Crowley4eac2642020-02-12 11:04:05 -0800174 if (!retrieveOrGenerateKey(dir, temp, kEmptyAuthentication, gen, key, needs_cp)) return false;
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800175 if (needs_cp && pathExists(newKeyPath)) std::thread(commit_key, dir).detach();
Paul Crowleyd5759812016-06-02 11:04:27 -0700176 return true;
177}
178
Paul Crowley14c8c072018-09-18 13:30:21 -0700179static bool get_number_of_sectors(const std::string& real_blkdev, uint64_t* nr_sec) {
Oleksiy Avramchenko625dc782018-05-23 10:50:46 +0200180 if (android::vold::GetBlockDev512Sectors(real_blkdev, nr_sec) != android::OK) {
Paul Crowleyd5759812016-06-02 11:04:27 -0700181 PLOG(ERROR) << "Unable to measure size of " << real_blkdev;
182 return false;
183 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700184 return true;
185}
186
Paul Crowley572c0242020-02-14 01:15:35 -0800187static bool create_crypto_blk_dev(const std::string& dm_name, const std::string& blk_device,
Paul Crowley249c2fb2020-02-07 12:51:56 -0800188 const KeyBuffer& key, const CryptoOptions& options,
Paul Crowley886e5722020-02-07 12:51:56 -0800189 std::string* crypto_blkdev, uint64_t* nr_sec) {
190 if (!get_number_of_sectors(blk_device, nr_sec)) return false;
191 // TODO(paulcrowley): don't hardcode that DmTargetDefaultKey uses 4096-byte
192 // sectors
193 *nr_sec &= ~7;
Paul Crowley84e84c52020-01-29 16:09:19 -0800194
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800195 KeyBuffer module_key;
196 if (options.use_hw_wrapped_key) {
197 if (!exportWrappedStorageKey(key, &module_key)) {
198 LOG(ERROR) << "Failed to get ephemeral wrapped key";
199 return false;
200 }
201 } else {
202 module_key = key;
203 }
204
David Andersonb9224732019-05-13 13:02:54 -0700205 KeyBuffer hex_key_buffer;
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800206 if (android::vold::StrToHex(module_key, hex_key_buffer) != android::OK) {
David Andersonb9224732019-05-13 13:02:54 -0700207 LOG(ERROR) << "Failed to turn key to hex";
Paul Crowleyd5759812016-06-02 11:04:27 -0700208 return false;
209 }
David Andersonb9224732019-05-13 13:02:54 -0700210 std::string hex_key(hex_key_buffer.data(), hex_key_buffer.size());
Paul Crowleyd5759812016-06-02 11:04:27 -0700211
Paul Crowley886e5722020-02-07 12:51:56 -0800212 auto target = std::make_unique<DmTargetDefaultKey>(0, *nr_sec, options.cipher.get_kernel_name(),
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800213 hex_key, blk_device, 0);
214 if (options.is_legacy) target->SetIsLegacy();
215 if (options.set_dun) target->SetSetDun();
216 if (options.use_hw_wrapped_key) target->SetWrappedKeyV0();
217
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800218 DmTable table;
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800219 table.AddTarget(std::move(target));
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800220
221 auto& dm = DeviceMapper::Instance();
Paul Crowley14c8c072018-09-18 13:30:21 -0700222 for (int i = 0;; i++) {
David Andersonb9224732019-05-13 13:02:54 -0700223 if (dm.CreateDevice(dm_name, table)) {
Paul Crowleyd5759812016-06-02 11:04:27 -0700224 break;
225 }
Paul Crowley14c8c072018-09-18 13:30:21 -0700226 if (i + 1 >= TABLE_LOAD_RETRIES) {
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800227 PLOG(ERROR) << "Could not create default-key device " << dm_name;
Paul Crowleyd5759812016-06-02 11:04:27 -0700228 return false;
229 }
David Andersonb9224732019-05-13 13:02:54 -0700230 PLOG(INFO) << "Could not create default-key device, retrying";
Paul Crowleyd5759812016-06-02 11:04:27 -0700231 usleep(500000);
232 }
233
David Andersonb9224732019-05-13 13:02:54 -0700234 if (!dm.GetDmDevicePathByName(dm_name, crypto_blkdev)) {
235 LOG(ERROR) << "Cannot retrieve default-key device status " << dm_name;
Paul Crowleyd5759812016-06-02 11:04:27 -0700236 return false;
237 }
238 return true;
239}
240
Paul Crowley249c2fb2020-02-07 12:51:56 -0800241static const CryptoType& lookup_cipher(const std::string& cipher_name) {
242 if (cipher_name.empty()) return supported_crypto_types[0];
243 for (size_t i = 0; i < array_length(supported_crypto_types); i++) {
244 if (cipher_name == supported_crypto_types[i].get_config_name()) {
245 return supported_crypto_types[i];
Paul Crowley572c0242020-02-14 01:15:35 -0800246 }
247 }
248 return invalid_crypto_type;
249}
250
Paul Crowley249c2fb2020-02-07 12:51:56 -0800251static bool parse_options(const std::string& options_string, CryptoOptions* options) {
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800252 auto parts = android::base::Split(options_string, ":");
253 if (parts.size() < 1 || parts.size() > 2) {
254 LOG(ERROR) << "Invalid metadata encryption option: " << options_string;
Paul Crowley249c2fb2020-02-07 12:51:56 -0800255 return false;
Paul Crowley572c0242020-02-14 01:15:35 -0800256 }
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800257 std::string cipher_name = parts[0];
258 options->cipher = lookup_cipher(cipher_name);
259 if (options->cipher.get_kernel_name() == nullptr) {
260 LOG(ERROR) << "No metadata cipher named " << cipher_name << " found";
261 return false;
262 }
263
264 if (parts.size() == 2) {
265 if (parts[1] == "wrappedkey_v0") {
266 options->use_hw_wrapped_key = true;
267 } else {
268 LOG(ERROR) << "Invalid metadata encryption flag: " << parts[1];
269 return false;
270 }
271 }
Paul Crowley249c2fb2020-02-07 12:51:56 -0800272 return true;
Paul Crowley572c0242020-02-14 01:15:35 -0800273}
274
Paul Lawrence236e5e82019-06-25 14:44:33 -0700275bool fscrypt_mount_metadata_encrypted(const std::string& blk_device, const std::string& mount_point,
276 bool needs_encrypt) {
Eric Biggersa701c452018-10-23 13:06:55 -0700277 LOG(DEBUG) << "fscrypt_mount_metadata_encrypted: " << mount_point << " " << needs_encrypt;
Paul Crowley0fd26262018-01-30 09:48:19 -0800278 auto encrypted_state = android::base::GetProperty("ro.crypto.state", "");
Nikita Ioffef850e6e2019-12-09 21:19:11 +0000279 if (encrypted_state != "" && encrypted_state != "encrypted") {
Eric Biggersa701c452018-10-23 13:06:55 -0700280 LOG(DEBUG) << "fscrypt_enable_crypto got unexpected starting state: " << encrypted_state;
Paul Crowleyd5759812016-06-02 11:04:27 -0700281 return false;
282 }
Tom Cherry4c5bde22019-01-29 14:34:01 -0800283
284 auto data_rec = GetEntryForMountPoint(&fstab_default, mount_point);
Paul Crowleyd5759812016-06-02 11:04:27 -0700285 if (!data_rec) {
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800286 LOG(ERROR) << "Failed to get data_rec for " << mount_point;
287 return false;
288 }
289 if (blk_device != data_rec->blk_device) {
290 LOG(ERROR) << "blk_device " << blk_device << " does not match fstab entry "
291 << data_rec->blk_device << " for " << mount_point;
Paul Crowleyd5759812016-06-02 11:04:27 -0700292 return false;
293 }
Paul Crowley572c0242020-02-14 01:15:35 -0800294
295 bool is_legacy;
296 if (!DmTargetDefaultKey::IsLegacy(&is_legacy)) return false;
297
Paul Crowley249c2fb2020-02-07 12:51:56 -0800298 CryptoOptions options;
299 if (is_legacy) {
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800300 if (!data_rec->metadata_encryption.empty()) {
301 LOG(ERROR) << "metadata_encryption options cannot be set in legacy mode";
Paul Crowley249c2fb2020-02-07 12:51:56 -0800302 return false;
303 }
304 options.cipher = legacy_aes_256_xts;
305 options.is_legacy = true;
306 options.set_dun = android::base::GetBoolProperty("ro.crypto.set_dun", false);
307 if (!options.set_dun && data_rec->fs_mgr_flags.checkpoint_blk) {
308 LOG(ERROR)
309 << "Block checkpoints and metadata encryption require ro.crypto.set_dun option";
310 return false;
311 }
312 } else {
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800313 if (!parse_options(data_rec->metadata_encryption, &options)) return false;
Paul Crowley572c0242020-02-14 01:15:35 -0800314 }
315
Paul Crowley249c2fb2020-02-07 12:51:56 -0800316 auto gen = needs_encrypt ? makeGen(options) : neverGen();
Paul Crowley0fd26262018-01-30 09:48:19 -0800317 KeyBuffer key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800318 if (!read_key(data_rec->metadata_key_dir, gen, &key)) return false;
Paul Lawrence4b140d32019-08-07 15:22:57 -0700319
Paul Crowleyd5759812016-06-02 11:04:27 -0700320 std::string crypto_blkdev;
Paul Crowley886e5722020-02-07 12:51:56 -0800321 uint64_t nr_sec;
322 if (!create_crypto_blk_dev(kDmNameUserdata, data_rec->blk_device, key, options, &crypto_blkdev,
323 &nr_sec))
Paul Crowley572c0242020-02-14 01:15:35 -0800324 return false;
Paul Lawrence236e5e82019-06-25 14:44:33 -0700325
Paul Crowley0fd26262018-01-30 09:48:19 -0800326 // FIXME handle the corrupt case
327 if (needs_encrypt) {
328 LOG(INFO) << "Beginning inplace encryption, nr_sec: " << nr_sec;
329 off64_t size_already_done = 0;
Paul Lawrence236e5e82019-06-25 14:44:33 -0700330 auto rc = cryptfs_enable_inplace(crypto_blkdev.data(), blk_device.data(), nr_sec,
Tom Cherry4c5bde22019-01-29 14:34:01 -0800331 &size_already_done, nr_sec, 0, false);
Paul Crowley0fd26262018-01-30 09:48:19 -0800332 if (rc != 0) {
333 LOG(ERROR) << "Inplace crypto failed with code: " << rc;
334 return false;
335 }
336 if (static_cast<uint64_t>(size_already_done) != nr_sec) {
337 LOG(ERROR) << "Inplace crypto only got up to sector: " << size_already_done;
338 return false;
339 }
340 LOG(INFO) << "Inplace encryption complete";
Paul Crowleyd5759812016-06-02 11:04:27 -0700341 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700342
Paul Crowley0fd26262018-01-30 09:48:19 -0800343 LOG(DEBUG) << "Mounting metadata-encrypted filesystem:" << mount_point;
Tom Cherry4c5bde22019-01-29 14:34:01 -0800344 mount_via_fs_mgr(data_rec->mount_point.c_str(), crypto_blkdev.c_str());
Paul Crowleyd5759812016-06-02 11:04:27 -0700345 return true;
346}
Paul Crowley220567c2020-02-07 12:45:20 -0800347
Paul Crowley886e5722020-02-07 12:51:56 -0800348static bool get_volume_options(CryptoOptions* options) {
349 return parse_options(android::base::GetProperty("ro.crypto.volume.metadata.encryption", ""),
350 options);
351}
352
353bool defaultkey_volume_keygen(KeyGeneration* gen) {
354 CryptoOptions options;
355 if (!get_volume_options(&options)) return false;
356 *gen = makeGen(options);
357 return true;
358}
359
360bool defaultkey_setup_ext_volume(const std::string& label, const std::string& blk_device,
361 const KeyBuffer& key, std::string* out_crypto_blkdev) {
362 LOG(DEBUG) << "defaultkey_setup_ext_volume: " << label << " " << blk_device;
363
364 CryptoOptions options;
365 if (!get_volume_options(&options)) return false;
366 uint64_t nr_sec;
367 return create_crypto_blk_dev(label, blk_device, key, options, out_crypto_blkdev, &nr_sec);
368}
369
Paul Crowley220567c2020-02-07 12:45:20 -0800370} // namespace vold
371} // namespace android