blob: acd5b59dc4742e8b3760c6d3b6f2a741477d4ecf [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 Crowleyd5759812016-06-02 11:04:27 -070039#include "EncryptInplace.h"
40#include "KeyStorage.h"
41#include "KeyUtil.h"
Daniel Rosenberg690d6de2018-12-14 01:08:10 -080042#include "Keymaster.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070043#include "Utils.h"
44#include "VoldUtil.h"
45
Paul Crowleyd5759812016-06-02 11:04:27 -070046#define TABLE_LOAD_RETRIES 10
Paul Crowleyd5759812016-06-02 11:04:27 -070047
Tom Cherry4c5bde22019-01-29 14:34:01 -080048using android::fs_mgr::FstabEntry;
49using android::fs_mgr::GetEntryForMountPoint;
Pavel Grafove2e2d302017-08-01 17:15:53 +010050using android::vold::KeyBuffer;
David Andersonb9224732019-05-13 13:02:54 -070051using namespace android::dm;
Pavel Grafove2e2d302017-08-01 17:15:53 +010052
Paul Crowleyd5759812016-06-02 11:04:27 -070053static const std::string kDmNameUserdata = "userdata";
54
Daniel Rosenberg690d6de2018-12-14 01:08:10 -080055static const char* kFn_keymaster_key_blob = "keymaster_key_blob";
56static const char* kFn_keymaster_key_blob_upgraded = "keymaster_key_blob_upgraded";
57
Paul Crowleyd5759812016-06-02 11:04:27 -070058static bool mount_via_fs_mgr(const char* mount_point, const char* blk_device) {
Shawn Willden2b1ff5a2020-01-16 14:08:36 -070059 // We're about to mount data not verified by verified boot. Tell Keymaster that early boot has
60 // ended.
61 //
62 // TODO(paulcrowley): Make a Keymaster singleton or something, so we don't have to repeatedly
63 // open and initialize the service.
64 ::android::vold::Keymaster keymaster;
65 keymaster.earlyBootEnded();
66
Paul Crowleyd5759812016-06-02 11:04:27 -070067 // fs_mgr_do_mount runs fsck. Use setexeccon to run trusted
68 // partitions in the fsck domain.
LongPing Wei7f3ab952019-01-30 16:03:14 +080069 if (setexeccon(android::vold::sFsckContext)) {
Paul Crowleyd5759812016-06-02 11:04:27 -070070 PLOG(ERROR) << "Failed to setexeccon";
71 return false;
72 }
Tom Cherry4c5bde22019-01-29 14:34:01 -080073 auto mount_rc = fs_mgr_do_mount(&fstab_default, const_cast<char*>(mount_point),
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070074 const_cast<char*>(blk_device), nullptr,
75 android::vold::cp_needsCheckpoint());
Paul Crowleyd5759812016-06-02 11:04:27 -070076 if (setexeccon(nullptr)) {
77 PLOG(ERROR) << "Failed to clear setexeccon";
78 return false;
79 }
80 if (mount_rc != 0) {
81 LOG(ERROR) << "fs_mgr_do_mount failed with rc " << mount_rc;
82 return false;
83 }
84 LOG(DEBUG) << "Mounted " << mount_point;
85 return true;
86}
87
Daniel Rosenberg690d6de2018-12-14 01:08:10 -080088namespace android {
89namespace vold {
90
91// Note: It is possible to orphan a key if it is removed before deleting
92// Update this once keymaster APIs change, and we have a proper commit.
Greg Kaiser8ae16db2018-12-18 11:10:31 -080093static void commit_key(const std::string& dir) {
Daniel Rosenberg690d6de2018-12-14 01:08:10 -080094 while (!android::base::WaitForProperty("vold.checkpoint_committed", "1")) {
95 LOG(ERROR) << "Wait for boot timed out";
96 }
97 Keymaster keymaster;
98 auto keyPath = dir + "/" + kFn_keymaster_key_blob;
99 auto newKeyPath = dir + "/" + kFn_keymaster_key_blob_upgraded;
100 std::string key;
101
102 if (!android::base::ReadFileToString(keyPath, &key)) {
103 LOG(ERROR) << "Failed to read old key: " << dir;
104 return;
105 }
106 if (rename(newKeyPath.c_str(), keyPath.c_str()) != 0) {
107 PLOG(ERROR) << "Unable to move upgraded key to location: " << keyPath;
108 return;
109 }
110 if (!keymaster.deleteKey(key)) {
111 LOG(ERROR) << "Key deletion failed during upgrade, continuing anyway: " << dir;
112 }
113 LOG(INFO) << "Old Key deleted: " << dir;
114}
115
Tom Cherry4c5bde22019-01-29 14:34:01 -0800116static bool read_key(const FstabEntry& data_rec, bool create_if_absent, KeyBuffer* key) {
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800117 if (data_rec.metadata_key_dir.empty()) {
118 LOG(ERROR) << "Failed to get metadata_key_dir";
Paul Crowleyd5759812016-06-02 11:04:27 -0700119 return false;
120 }
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800121 std::string metadata_key_dir = data_rec.metadata_key_dir;
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800122 std::string sKey;
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800123 auto dir = metadata_key_dir + "/key";
124 LOG(DEBUG) << "metadata_key_dir/key: " << dir;
Paul Crowley98a23a12018-05-09 13:01:16 -0700125 if (fs_mkdirs(dir.c_str(), 0700)) {
Paul Crowley0fd26262018-01-30 09:48:19 -0800126 PLOG(ERROR) << "Creating directories: " << dir;
Paul Crowley98a23a12018-05-09 13:01:16 -0700127 return false;
Paul Crowley0fd26262018-01-30 09:48:19 -0800128 }
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800129 auto temp = metadata_key_dir + "/tmp";
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800130 auto newKeyPath = dir + "/" + kFn_keymaster_key_blob_upgraded;
131 /* If we have a leftover upgraded key, delete it.
132 * We either failed an update and must return to the old key,
133 * or we rebooted before commiting the keys in a freak accident.
134 * Either way, we can re-upgrade the key if we need to.
135 */
136 Keymaster keymaster;
137 if (pathExists(newKeyPath)) {
138 if (!android::base::ReadFileToString(newKeyPath, &sKey))
139 LOG(ERROR) << "Failed to read old key: " << dir;
140 else if (!keymaster.deleteKey(sKey))
141 LOG(ERROR) << "Old key deletion failed, continuing anyway: " << dir;
142 else
143 unlink(newKeyPath.c_str());
144 }
145 bool needs_cp = cp_needsCheckpoint();
Paul Crowley77df7f22020-01-23 15:29:30 -0800146 if (!android::vold::retrieveKey(create_if_absent, kEmptyAuthentication, dir, temp, key,
147 needs_cp))
148 return false;
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800149 if (needs_cp && pathExists(newKeyPath)) std::thread(commit_key, dir).detach();
Paul Crowleyd5759812016-06-02 11:04:27 -0700150 return true;
151}
152
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800153} // namespace vold
154} // namespace android
155
Paul Crowley14c8c072018-09-18 13:30:21 -0700156static bool get_number_of_sectors(const std::string& real_blkdev, uint64_t* nr_sec) {
Oleksiy Avramchenko625dc782018-05-23 10:50:46 +0200157 if (android::vold::GetBlockDev512Sectors(real_blkdev, nr_sec) != android::OK) {
Paul Crowleyd5759812016-06-02 11:04:27 -0700158 PLOG(ERROR) << "Unable to measure size of " << real_blkdev;
159 return false;
160 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700161 return true;
162}
163
Paul Crowley84e84c52020-01-29 16:09:19 -0800164static std::string lookup_cipher(const std::string& cipher_name, bool is_legacy) {
165 if (is_legacy) {
166 if (cipher_name.empty() || cipher_name == "aes-256-xts") {
167 return "AES-256-XTS";
168 }
169 } else {
170 if (cipher_name.empty() || cipher_name == "aes-256-xts") {
171 return "aes-xts-plain64";
172 } else if (cipher_name == "adiantum") {
173 return "xchacha12,aes-adiantum-plain64";
174 }
175 }
176 LOG(ERROR) << "No metadata cipher named " << cipher_name << " found, is_legacy=" << is_legacy;
177 return "";
178}
179
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800180static bool create_crypto_blk_dev(const std::string& dm_name, const FstabEntry* data_rec,
181 const KeyBuffer& key, std::string* crypto_blkdev) {
182 uint64_t nr_sec;
183 if (!get_number_of_sectors(data_rec->blk_device, &nr_sec)) return false;
David Andersonb9224732019-05-13 13:02:54 -0700184
Paul Crowley92a14b62020-01-28 10:37:39 -0800185 bool is_legacy;
186 if (!DmTargetDefaultKey::IsLegacy(&is_legacy)) return false;
187
Paul Crowley84e84c52020-01-29 16:09:19 -0800188 auto cipher = lookup_cipher(data_rec->metadata_cipher, is_legacy);
189 if (cipher.empty()) return false;
190
David Andersonb9224732019-05-13 13:02:54 -0700191 KeyBuffer hex_key_buffer;
192 if (android::vold::StrToHex(key, hex_key_buffer) != android::OK) {
193 LOG(ERROR) << "Failed to turn key to hex";
Paul Crowleyd5759812016-06-02 11:04:27 -0700194 return false;
195 }
David Andersonb9224732019-05-13 13:02:54 -0700196 std::string hex_key(hex_key_buffer.data(), hex_key_buffer.size());
Paul Crowleyd5759812016-06-02 11:04:27 -0700197
Paul Crowley92a14b62020-01-28 10:37:39 -0800198 // Non-legacy driver always sets DUN
199 bool set_dun = !is_legacy || android::base::GetBoolProperty("ro.crypto.set_dun", false);
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800200 if (!set_dun && data_rec->fs_mgr_flags.checkpoint_blk) {
201 LOG(ERROR) << "Block checkpoints and metadata encryption require ro.crypto.set_dun option";
202 return false;
203 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700204
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800205 DmTable table;
Paul Crowley84e84c52020-01-29 16:09:19 -0800206 table.Emplace<DmTargetDefaultKey>(0, nr_sec, cipher, hex_key, data_rec->blk_device, 0,
207 is_legacy, set_dun);
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800208
209 auto& dm = DeviceMapper::Instance();
Paul Crowley14c8c072018-09-18 13:30:21 -0700210 for (int i = 0;; i++) {
David Andersonb9224732019-05-13 13:02:54 -0700211 if (dm.CreateDevice(dm_name, table)) {
Paul Crowleyd5759812016-06-02 11:04:27 -0700212 break;
213 }
Paul Crowley14c8c072018-09-18 13:30:21 -0700214 if (i + 1 >= TABLE_LOAD_RETRIES) {
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800215 PLOG(ERROR) << "Could not create default-key device " << dm_name;
Paul Crowleyd5759812016-06-02 11:04:27 -0700216 return false;
217 }
David Andersonb9224732019-05-13 13:02:54 -0700218 PLOG(INFO) << "Could not create default-key device, retrying";
Paul Crowleyd5759812016-06-02 11:04:27 -0700219 usleep(500000);
220 }
221
David Andersonb9224732019-05-13 13:02:54 -0700222 if (!dm.GetDmDevicePathByName(dm_name, crypto_blkdev)) {
223 LOG(ERROR) << "Cannot retrieve default-key device status " << dm_name;
Paul Crowleyd5759812016-06-02 11:04:27 -0700224 return false;
225 }
226 return true;
227}
228
Paul Lawrence236e5e82019-06-25 14:44:33 -0700229bool fscrypt_mount_metadata_encrypted(const std::string& blk_device, const std::string& mount_point,
230 bool needs_encrypt) {
Eric Biggersa701c452018-10-23 13:06:55 -0700231 LOG(DEBUG) << "fscrypt_mount_metadata_encrypted: " << mount_point << " " << needs_encrypt;
Paul Crowley0fd26262018-01-30 09:48:19 -0800232 auto encrypted_state = android::base::GetProperty("ro.crypto.state", "");
Nikita Ioffef850e6e2019-12-09 21:19:11 +0000233 if (encrypted_state != "" && encrypted_state != "encrypted") {
Eric Biggersa701c452018-10-23 13:06:55 -0700234 LOG(DEBUG) << "fscrypt_enable_crypto got unexpected starting state: " << encrypted_state;
Paul Crowleyd5759812016-06-02 11:04:27 -0700235 return false;
236 }
Tom Cherry4c5bde22019-01-29 14:34:01 -0800237
238 auto data_rec = GetEntryForMountPoint(&fstab_default, mount_point);
Paul Crowleyd5759812016-06-02 11:04:27 -0700239 if (!data_rec) {
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800240 LOG(ERROR) << "Failed to get data_rec for " << mount_point;
241 return false;
242 }
243 if (blk_device != data_rec->blk_device) {
244 LOG(ERROR) << "blk_device " << blk_device << " does not match fstab entry "
245 << data_rec->blk_device << " for " << mount_point;
Paul Crowleyd5759812016-06-02 11:04:27 -0700246 return false;
247 }
Paul Crowley0fd26262018-01-30 09:48:19 -0800248 KeyBuffer key;
Tom Cherry4c5bde22019-01-29 14:34:01 -0800249 if (!read_key(*data_rec, needs_encrypt, &key)) return false;
Paul Lawrence4b140d32019-08-07 15:22:57 -0700250
Paul Crowleyd5759812016-06-02 11:04:27 -0700251 std::string crypto_blkdev;
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800252 if (!create_crypto_blk_dev(kDmNameUserdata, data_rec, key, &crypto_blkdev)) return false;
Paul Lawrence236e5e82019-06-25 14:44:33 -0700253
Paul Crowley0fd26262018-01-30 09:48:19 -0800254 // FIXME handle the corrupt case
255 if (needs_encrypt) {
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800256 uint64_t nr_sec;
257 if (!get_number_of_sectors(data_rec->blk_device, &nr_sec)) return false;
Paul Crowley0fd26262018-01-30 09:48:19 -0800258 LOG(INFO) << "Beginning inplace encryption, nr_sec: " << nr_sec;
259 off64_t size_already_done = 0;
Paul Lawrence236e5e82019-06-25 14:44:33 -0700260 auto rc = cryptfs_enable_inplace(crypto_blkdev.data(), blk_device.data(), nr_sec,
Tom Cherry4c5bde22019-01-29 14:34:01 -0800261 &size_already_done, nr_sec, 0, false);
Paul Crowley0fd26262018-01-30 09:48:19 -0800262 if (rc != 0) {
263 LOG(ERROR) << "Inplace crypto failed with code: " << rc;
264 return false;
265 }
266 if (static_cast<uint64_t>(size_already_done) != nr_sec) {
267 LOG(ERROR) << "Inplace crypto only got up to sector: " << size_already_done;
268 return false;
269 }
270 LOG(INFO) << "Inplace encryption complete";
Paul Crowleyd5759812016-06-02 11:04:27 -0700271 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700272
Paul Crowley0fd26262018-01-30 09:48:19 -0800273 LOG(DEBUG) << "Mounting metadata-encrypted filesystem:" << mount_point;
Tom Cherry4c5bde22019-01-29 14:34:01 -0800274 mount_via_fs_mgr(data_rec->mount_point.c_str(), crypto_blkdev.c_str());
Paul Crowleyd5759812016-06-02 11:04:27 -0700275 return true;
276}