blob: 106978e7ca6ed616feb058d065397fa035a8e0ca [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>
Paul Crowleye4c93da2017-06-16 09:21:18 -070033#include <android-base/unique_fd.h>
Paul Crowley0fd26262018-01-30 09:48:19 -080034#include <cutils/fs.h>
Paul Crowleyd5759812016-06-02 11:04:27 -070035#include <fs_mgr.h>
David Andersonb9224732019-05-13 13:02:54 -070036#include <libdm/dm.h>
Paul Crowleyd5759812016-06-02 11:04:27 -070037
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070038#include "Checkpoint.h"
Paul Crowley220567c2020-02-07 12:45:20 -080039#include "CryptoType.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070040#include "EncryptInplace.h"
41#include "KeyStorage.h"
42#include "KeyUtil.h"
Daniel Rosenberg690d6de2018-12-14 01:08:10 -080043#include "Keymaster.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070044#include "Utils.h"
45#include "VoldUtil.h"
46
Paul Crowleyd5759812016-06-02 11:04:27 -070047#define TABLE_LOAD_RETRIES 10
Paul Crowleyd5759812016-06-02 11:04:27 -070048
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 Crowleyd5759812016-06-02 11:04:27 -070057static const std::string kDmNameUserdata = "userdata";
58
Daniel Rosenberg690d6de2018-12-14 01:08:10 -080059static const char* kFn_keymaster_key_blob = "keymaster_key_blob";
60static const char* kFn_keymaster_key_blob_upgraded = "keymaster_key_blob_upgraded";
61
Paul Crowley220567c2020-02-07 12:45:20 -080062constexpr CryptoType supported_crypto_types[] = {aes_256_xts, adiantum};
63
64static_assert(validateSupportedCryptoTypes(64, supported_crypto_types,
65 array_length(supported_crypto_types)),
66 "We have a CryptoType which was incompletely constructed.");
67
68constexpr CryptoType legacy_aes_256_xts =
69 CryptoType().set_config_name("aes-256-xts").set_kernel_name("AES-256-XTS").set_keysize(64);
70
71constexpr CryptoType legacy_crypto_types[] = {legacy_aes_256_xts};
72
73static_assert(validateSupportedCryptoTypes(64, legacy_crypto_types,
74 array_length(legacy_crypto_types)),
75 "We have a CryptoType which was incompletely constructed.");
76
Paul Crowleyd5759812016-06-02 11:04:27 -070077static bool mount_via_fs_mgr(const char* mount_point, const char* blk_device) {
Shawn Willden2b1ff5a2020-01-16 14:08:36 -070078 // 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 Crowleyd5759812016-06-02 11:04:27 -070086 // fs_mgr_do_mount runs fsck. Use setexeccon to run trusted
87 // partitions in the fsck domain.
LongPing Wei7f3ab952019-01-30 16:03:14 +080088 if (setexeccon(android::vold::sFsckContext)) {
Paul Crowleyd5759812016-06-02 11:04:27 -070089 PLOG(ERROR) << "Failed to setexeccon";
90 return false;
91 }
Tom Cherry4c5bde22019-01-29 14:34:01 -080092 auto mount_rc = fs_mgr_do_mount(&fstab_default, const_cast<char*>(mount_point),
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070093 const_cast<char*>(blk_device), nullptr,
94 android::vold::cp_needsCheckpoint());
Paul Crowleyd5759812016-06-02 11:04:27 -070095 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 Rosenberg690d6de2018-12-14 01:08:10 -0800107// 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 Kaiser8ae16db2018-12-18 11:10:31 -0800109static void commit_key(const std::string& dir) {
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800110 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
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800132static bool retrieveMetadataKey(bool create_if_absent, const std::string& key_path,
133 const std::string& tmp_path, KeyBuffer* key, bool keepOld) {
134 if (pathExists(key_path)) {
135 LOG(DEBUG) << "Key exists, using: " << key_path;
136 if (!retrieveKey(key_path, kEmptyAuthentication, key, keepOld)) return false;
137 } else {
138 if (!create_if_absent) {
139 LOG(ERROR) << "No key found in " << key_path;
140 return false;
141 }
142 LOG(INFO) << "Creating new key in " << key_path;
143 if (!randomKey(key)) return false;
144 if (!storeKeyAtomically(key_path, tmp_path, kEmptyAuthentication, *key)) return false;
145 }
146 return true;
147}
148
Paul Crowley572c0242020-02-14 01:15:35 -0800149static bool read_key(const std::string& metadata_key_dir, bool create_if_absent, KeyBuffer* key) {
150 if (metadata_key_dir.empty()) {
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800151 LOG(ERROR) << "Failed to get metadata_key_dir";
Paul Crowleyd5759812016-06-02 11:04:27 -0700152 return false;
153 }
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800154 std::string sKey;
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800155 auto dir = metadata_key_dir + "/key";
156 LOG(DEBUG) << "metadata_key_dir/key: " << dir;
Paul Crowley98a23a12018-05-09 13:01:16 -0700157 if (fs_mkdirs(dir.c_str(), 0700)) {
Paul Crowley0fd26262018-01-30 09:48:19 -0800158 PLOG(ERROR) << "Creating directories: " << dir;
Paul Crowley98a23a12018-05-09 13:01:16 -0700159 return false;
Paul Crowley0fd26262018-01-30 09:48:19 -0800160 }
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800161 auto temp = metadata_key_dir + "/tmp";
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800162 auto newKeyPath = dir + "/" + kFn_keymaster_key_blob_upgraded;
163 /* If we have a leftover upgraded key, delete it.
164 * We either failed an update and must return to the old key,
165 * or we rebooted before commiting the keys in a freak accident.
166 * Either way, we can re-upgrade the key if we need to.
167 */
168 Keymaster keymaster;
169 if (pathExists(newKeyPath)) {
170 if (!android::base::ReadFileToString(newKeyPath, &sKey))
171 LOG(ERROR) << "Failed to read old key: " << dir;
172 else if (!keymaster.deleteKey(sKey))
173 LOG(ERROR) << "Old key deletion failed, continuing anyway: " << dir;
174 else
175 unlink(newKeyPath.c_str());
176 }
177 bool needs_cp = cp_needsCheckpoint();
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800178 if (!retrieveMetadataKey(create_if_absent, dir, temp, key, needs_cp)) return false;
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800179 if (needs_cp && pathExists(newKeyPath)) std::thread(commit_key, dir).detach();
Paul Crowleyd5759812016-06-02 11:04:27 -0700180 return true;
181}
182
Paul Crowley14c8c072018-09-18 13:30:21 -0700183static bool get_number_of_sectors(const std::string& real_blkdev, uint64_t* nr_sec) {
Oleksiy Avramchenko625dc782018-05-23 10:50:46 +0200184 if (android::vold::GetBlockDev512Sectors(real_blkdev, nr_sec) != android::OK) {
Paul Crowleyd5759812016-06-02 11:04:27 -0700185 PLOG(ERROR) << "Unable to measure size of " << real_blkdev;
186 return false;
187 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700188 return true;
189}
190
Paul Crowley572c0242020-02-14 01:15:35 -0800191static bool create_crypto_blk_dev(const std::string& dm_name, const std::string& blk_device,
192 bool is_legacy, const std::string& cipher, bool set_dun,
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800193 const KeyBuffer& key, std::string* crypto_blkdev) {
194 uint64_t nr_sec;
Paul Crowley572c0242020-02-14 01:15:35 -0800195 if (!get_number_of_sectors(blk_device, &nr_sec)) return false;
Paul Crowley84e84c52020-01-29 16:09:19 -0800196
David Andersonb9224732019-05-13 13:02:54 -0700197 KeyBuffer hex_key_buffer;
198 if (android::vold::StrToHex(key, hex_key_buffer) != android::OK) {
199 LOG(ERROR) << "Failed to turn key to hex";
Paul Crowleyd5759812016-06-02 11:04:27 -0700200 return false;
201 }
David Andersonb9224732019-05-13 13:02:54 -0700202 std::string hex_key(hex_key_buffer.data(), hex_key_buffer.size());
Paul Crowleyd5759812016-06-02 11:04:27 -0700203
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800204 DmTable table;
Paul Crowley572c0242020-02-14 01:15:35 -0800205 table.Emplace<DmTargetDefaultKey>(0, nr_sec, cipher, hex_key, blk_device, 0, is_legacy,
206 set_dun);
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800207
208 auto& dm = DeviceMapper::Instance();
Paul Crowley14c8c072018-09-18 13:30:21 -0700209 for (int i = 0;; i++) {
David Andersonb9224732019-05-13 13:02:54 -0700210 if (dm.CreateDevice(dm_name, table)) {
Paul Crowleyd5759812016-06-02 11:04:27 -0700211 break;
212 }
Paul Crowley14c8c072018-09-18 13:30:21 -0700213 if (i + 1 >= TABLE_LOAD_RETRIES) {
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800214 PLOG(ERROR) << "Could not create default-key device " << dm_name;
Paul Crowleyd5759812016-06-02 11:04:27 -0700215 return false;
216 }
David Andersonb9224732019-05-13 13:02:54 -0700217 PLOG(INFO) << "Could not create default-key device, retrying";
Paul Crowleyd5759812016-06-02 11:04:27 -0700218 usleep(500000);
219 }
220
David Andersonb9224732019-05-13 13:02:54 -0700221 if (!dm.GetDmDevicePathByName(dm_name, crypto_blkdev)) {
222 LOG(ERROR) << "Cannot retrieve default-key device status " << dm_name;
Paul Crowleyd5759812016-06-02 11:04:27 -0700223 return false;
224 }
225 return true;
226}
227
Paul Crowley572c0242020-02-14 01:15:35 -0800228static const CryptoType& lookup_cipher_in_table(const CryptoType table[], int table_len,
229 const std::string& cipher_name) {
230 if (cipher_name.empty()) return table[0];
231 for (int i = 0; i < table_len; i++) {
232 if (cipher_name == table[i].get_config_name()) {
233 return table[i];
234 }
235 }
236 return invalid_crypto_type;
237}
238
239static const CryptoType& lookup_cipher(const std::string& cipher_name, bool is_legacy) {
240 if (is_legacy) {
241 return lookup_cipher_in_table(legacy_crypto_types, array_length(legacy_crypto_types),
242 cipher_name);
243 } else {
244 return lookup_cipher_in_table(supported_crypto_types, array_length(supported_crypto_types),
245 cipher_name);
246 }
247}
248
Paul Lawrence236e5e82019-06-25 14:44:33 -0700249bool fscrypt_mount_metadata_encrypted(const std::string& blk_device, const std::string& mount_point,
250 bool needs_encrypt) {
Eric Biggersa701c452018-10-23 13:06:55 -0700251 LOG(DEBUG) << "fscrypt_mount_metadata_encrypted: " << mount_point << " " << needs_encrypt;
Paul Crowley0fd26262018-01-30 09:48:19 -0800252 auto encrypted_state = android::base::GetProperty("ro.crypto.state", "");
Nikita Ioffef850e6e2019-12-09 21:19:11 +0000253 if (encrypted_state != "" && encrypted_state != "encrypted") {
Eric Biggersa701c452018-10-23 13:06:55 -0700254 LOG(DEBUG) << "fscrypt_enable_crypto got unexpected starting state: " << encrypted_state;
Paul Crowleyd5759812016-06-02 11:04:27 -0700255 return false;
256 }
Tom Cherry4c5bde22019-01-29 14:34:01 -0800257
258 auto data_rec = GetEntryForMountPoint(&fstab_default, mount_point);
Paul Crowleyd5759812016-06-02 11:04:27 -0700259 if (!data_rec) {
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800260 LOG(ERROR) << "Failed to get data_rec for " << mount_point;
261 return false;
262 }
263 if (blk_device != data_rec->blk_device) {
264 LOG(ERROR) << "blk_device " << blk_device << " does not match fstab entry "
265 << data_rec->blk_device << " for " << mount_point;
Paul Crowleyd5759812016-06-02 11:04:27 -0700266 return false;
267 }
Paul Crowley572c0242020-02-14 01:15:35 -0800268
269 bool is_legacy;
270 if (!DmTargetDefaultKey::IsLegacy(&is_legacy)) return false;
271
272 // Non-legacy driver always sets DUN
273 bool set_dun = !is_legacy || android::base::GetBoolProperty("ro.crypto.set_dun", false);
274 if (!set_dun && data_rec->fs_mgr_flags.checkpoint_blk) {
275 LOG(ERROR) << "Block checkpoints and metadata encryption require ro.crypto.set_dun option";
276 return false;
277 }
278
279 auto cipher = lookup_cipher(data_rec->metadata_cipher, is_legacy);
280 if (cipher.get_kernel_name() == nullptr) {
281 LOG(ERROR) << "No metadata cipher named " << data_rec->metadata_cipher
282 << " found, is_legacy=" << is_legacy;
283 return false;
284 }
285
Paul Crowley0fd26262018-01-30 09:48:19 -0800286 KeyBuffer key;
Paul Crowley572c0242020-02-14 01:15:35 -0800287 if (!read_key(data_rec->metadata_key_dir, needs_encrypt, &key)) return false;
Paul Lawrence4b140d32019-08-07 15:22:57 -0700288
Paul Crowleyd5759812016-06-02 11:04:27 -0700289 std::string crypto_blkdev;
Paul Crowley572c0242020-02-14 01:15:35 -0800290 if (!create_crypto_blk_dev(kDmNameUserdata, data_rec->blk_device, is_legacy,
291 cipher.get_kernel_name(), set_dun, key, &crypto_blkdev))
292 return false;
Paul Lawrence236e5e82019-06-25 14:44:33 -0700293
Paul Crowley0fd26262018-01-30 09:48:19 -0800294 // FIXME handle the corrupt case
295 if (needs_encrypt) {
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800296 uint64_t nr_sec;
297 if (!get_number_of_sectors(data_rec->blk_device, &nr_sec)) return false;
Paul Crowley0fd26262018-01-30 09:48:19 -0800298 LOG(INFO) << "Beginning inplace encryption, nr_sec: " << nr_sec;
299 off64_t size_already_done = 0;
Paul Lawrence236e5e82019-06-25 14:44:33 -0700300 auto rc = cryptfs_enable_inplace(crypto_blkdev.data(), blk_device.data(), nr_sec,
Tom Cherry4c5bde22019-01-29 14:34:01 -0800301 &size_already_done, nr_sec, 0, false);
Paul Crowley0fd26262018-01-30 09:48:19 -0800302 if (rc != 0) {
303 LOG(ERROR) << "Inplace crypto failed with code: " << rc;
304 return false;
305 }
306 if (static_cast<uint64_t>(size_already_done) != nr_sec) {
307 LOG(ERROR) << "Inplace crypto only got up to sector: " << size_already_done;
308 return false;
309 }
310 LOG(INFO) << "Inplace encryption complete";
Paul Crowleyd5759812016-06-02 11:04:27 -0700311 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700312
Paul Crowley0fd26262018-01-30 09:48:19 -0800313 LOG(DEBUG) << "Mounting metadata-encrypted filesystem:" << mount_point;
Tom Cherry4c5bde22019-01-29 14:34:01 -0800314 mount_via_fs_mgr(data_rec->mount_point.c_str(), crypto_blkdev.c_str());
Paul Crowleyd5759812016-06-02 11:04:27 -0700315 return true;
316}
Paul Crowley220567c2020-02-07 12:45:20 -0800317
318} // namespace vold
319} // namespace android