blob: cf7c5f7992c89ef00838b32c0ba2cbd14a829b40 [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
20#include <string>
Paul Crowleyd5759812016-06-02 11:04:27 -070021
22#include <fcntl.h>
Paul Crowleyd5759812016-06-02 11:04:27 -070023#include <sys/param.h>
24#include <sys/stat.h>
25#include <sys/types.h>
26
Paul Crowleyd5759812016-06-02 11:04:27 -070027#include <android-base/logging.h>
Paul Crowley0fd26262018-01-30 09:48:19 -080028#include <android-base/properties.h>
Barani Muthukumaran312b7df2020-02-06 22:56:27 -080029#include <android-base/strings.h>
Paul Crowleye4c93da2017-06-16 09:21:18 -070030#include <android-base/unique_fd.h>
Paul Crowley0fd26262018-01-30 09:48:19 -080031#include <cutils/fs.h>
Paul Crowleyd5759812016-06-02 11:04:27 -070032#include <fs_mgr.h>
David Andersonb9224732019-05-13 13:02:54 -070033#include <libdm/dm.h>
Yo Chiang0af25a32020-10-07 14:20:00 +080034#include <libgsi/libgsi.h>
Paul Crowleyd5759812016-06-02 11:04:27 -070035
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070036#include "Checkpoint.h"
Paul Crowley220567c2020-02-07 12:45:20 -080037#include "CryptoType.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070038#include "EncryptInplace.h"
39#include "KeyStorage.h"
40#include "KeyUtil.h"
Daniel Rosenberg690d6de2018-12-14 01:08:10 -080041#include "Keymaster.h"
Paul Crowleyd5759812016-06-02 11:04:27 -070042#include "Utils.h"
43#include "VoldUtil.h"
44
Paul Crowley220567c2020-02-07 12:45:20 -080045namespace android {
46namespace vold {
47
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 Crowley249c2fb2020-02-07 12:51:56 -080053// Parsed from metadata options
54struct CryptoOptions {
55 struct CryptoType cipher = invalid_crypto_type;
Paul Crowleyf56d5532020-03-22 08:02:06 -070056 bool use_legacy_options_format = false;
Paul Crowley249c2fb2020-02-07 12:51:56 -080057 bool set_dun = true; // Non-legacy driver always sets DUN
Barani Muthukumaran312b7df2020-02-06 22:56:27 -080058 bool use_hw_wrapped_key = false;
Paul Crowley249c2fb2020-02-07 12:51:56 -080059};
60
Paul Crowleyd5759812016-06-02 11:04:27 -070061static const std::string kDmNameUserdata = "userdata";
62
Paul Crowley249c2fb2020-02-07 12:51:56 -080063// The first entry in this table is the default crypto type.
Paul Crowley220567c2020-02-07 12:45:20 -080064constexpr CryptoType supported_crypto_types[] = {aes_256_xts, adiantum};
65
66static_assert(validateSupportedCryptoTypes(64, supported_crypto_types,
67 array_length(supported_crypto_types)),
68 "We have a CryptoType which was incompletely constructed.");
69
70constexpr CryptoType legacy_aes_256_xts =
71 CryptoType().set_config_name("aes-256-xts").set_kernel_name("AES-256-XTS").set_keysize(64);
72
Paul Crowley249c2fb2020-02-07 12:51:56 -080073static_assert(isValidCryptoType(64, legacy_aes_256_xts),
Paul Crowley220567c2020-02-07 12:45:20 -080074 "We have a CryptoType which was incompletely constructed.");
75
Paul Crowley249c2fb2020-02-07 12:51:56 -080076// Returns KeyGeneration suitable for key as described in CryptoOptions
77const KeyGeneration makeGen(const CryptoOptions& options) {
Barani Muthukumaran312b7df2020-02-06 22:56:27 -080078 return KeyGeneration{options.cipher.get_keysize(), true, options.use_hw_wrapped_key};
Paul Crowley249c2fb2020-02-07 12:51:56 -080079}
80
Paul Crowleyd5759812016-06-02 11:04:27 -070081static bool mount_via_fs_mgr(const char* mount_point, const char* blk_device) {
82 // fs_mgr_do_mount runs fsck. Use setexeccon to run trusted
83 // partitions in the fsck domain.
LongPing Wei7f3ab952019-01-30 16:03:14 +080084 if (setexeccon(android::vold::sFsckContext)) {
Paul Crowleyd5759812016-06-02 11:04:27 -070085 PLOG(ERROR) << "Failed to setexeccon";
86 return false;
87 }
Tom Cherry4c5bde22019-01-29 14:34:01 -080088 auto mount_rc = fs_mgr_do_mount(&fstab_default, const_cast<char*>(mount_point),
Daniel Rosenberg65f99c92018-08-28 01:58:49 -070089 const_cast<char*>(blk_device), nullptr,
Paul Lawrence3fe93112020-06-12 08:12:48 -070090 android::vold::cp_needsCheckpoint(), true);
Paul Crowleyd5759812016-06-02 11:04:27 -070091 if (setexeccon(nullptr)) {
92 PLOG(ERROR) << "Failed to clear setexeccon";
93 return false;
94 }
95 if (mount_rc != 0) {
96 LOG(ERROR) << "fs_mgr_do_mount failed with rc " << mount_rc;
97 return false;
98 }
99 LOG(DEBUG) << "Mounted " << mount_point;
100 return true;
101}
102
Paul Crowley4eac2642020-02-12 11:04:05 -0800103static bool read_key(const std::string& metadata_key_dir, const KeyGeneration& gen,
104 KeyBuffer* key) {
Paul Crowley572c0242020-02-14 01:15:35 -0800105 if (metadata_key_dir.empty()) {
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800106 LOG(ERROR) << "Failed to get metadata_key_dir";
Paul Crowleyd5759812016-06-02 11:04:27 -0700107 return false;
108 }
Daniel Rosenberg690d6de2018-12-14 01:08:10 -0800109 std::string sKey;
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800110 auto dir = metadata_key_dir + "/key";
111 LOG(DEBUG) << "metadata_key_dir/key: " << dir;
Paul Crowley98a23a12018-05-09 13:01:16 -0700112 if (fs_mkdirs(dir.c_str(), 0700)) {
Paul Crowley0fd26262018-01-30 09:48:19 -0800113 PLOG(ERROR) << "Creating directories: " << dir;
Paul Crowley98a23a12018-05-09 13:01:16 -0700114 return false;
Paul Crowley0fd26262018-01-30 09:48:19 -0800115 }
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800116 auto temp = metadata_key_dir + "/tmp";
Eric Biggersf74373b2020-11-05 19:58:26 -0800117 return retrieveOrGenerateKey(dir, temp, kEmptyAuthentication, gen, key);
Paul Crowleyd5759812016-06-02 11:04:27 -0700118}
119
Paul Crowley14c8c072018-09-18 13:30:21 -0700120static bool get_number_of_sectors(const std::string& real_blkdev, uint64_t* nr_sec) {
Oleksiy Avramchenko625dc782018-05-23 10:50:46 +0200121 if (android::vold::GetBlockDev512Sectors(real_blkdev, nr_sec) != android::OK) {
Paul Crowleyd5759812016-06-02 11:04:27 -0700122 PLOG(ERROR) << "Unable to measure size of " << real_blkdev;
123 return false;
124 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700125 return true;
126}
127
Paul Crowley572c0242020-02-14 01:15:35 -0800128static bool create_crypto_blk_dev(const std::string& dm_name, const std::string& blk_device,
Paul Crowley249c2fb2020-02-07 12:51:56 -0800129 const KeyBuffer& key, const CryptoOptions& options,
Paul Crowley886e5722020-02-07 12:51:56 -0800130 std::string* crypto_blkdev, uint64_t* nr_sec) {
131 if (!get_number_of_sectors(blk_device, nr_sec)) return false;
132 // TODO(paulcrowley): don't hardcode that DmTargetDefaultKey uses 4096-byte
133 // sectors
134 *nr_sec &= ~7;
Paul Crowley84e84c52020-01-29 16:09:19 -0800135
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800136 KeyBuffer module_key;
137 if (options.use_hw_wrapped_key) {
138 if (!exportWrappedStorageKey(key, &module_key)) {
139 LOG(ERROR) << "Failed to get ephemeral wrapped key";
140 return false;
141 }
142 } else {
143 module_key = key;
144 }
145
David Andersonb9224732019-05-13 13:02:54 -0700146 KeyBuffer hex_key_buffer;
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800147 if (android::vold::StrToHex(module_key, hex_key_buffer) != android::OK) {
David Andersonb9224732019-05-13 13:02:54 -0700148 LOG(ERROR) << "Failed to turn key to hex";
Paul Crowleyd5759812016-06-02 11:04:27 -0700149 return false;
150 }
David Andersonb9224732019-05-13 13:02:54 -0700151 std::string hex_key(hex_key_buffer.data(), hex_key_buffer.size());
Paul Crowleyd5759812016-06-02 11:04:27 -0700152
Paul Crowley886e5722020-02-07 12:51:56 -0800153 auto target = std::make_unique<DmTargetDefaultKey>(0, *nr_sec, options.cipher.get_kernel_name(),
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800154 hex_key, blk_device, 0);
Paul Crowleyf56d5532020-03-22 08:02:06 -0700155 if (options.use_legacy_options_format) target->SetUseLegacyOptionsFormat();
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800156 if (options.set_dun) target->SetSetDun();
157 if (options.use_hw_wrapped_key) target->SetWrappedKeyV0();
158
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800159 DmTable table;
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800160 table.AddTarget(std::move(target));
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800161
162 auto& dm = DeviceMapper::Instance();
Eric Biggers836b51b2020-10-15 14:39:34 -0700163 if (!dm.CreateDevice(dm_name, table, crypto_blkdev, std::chrono::seconds(5))) {
164 PLOG(ERROR) << "Could not create default-key device " << dm_name;
165 return false;
Paul Crowleyd5759812016-06-02 11:04:27 -0700166 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700167 return true;
168}
169
Paul Crowley249c2fb2020-02-07 12:51:56 -0800170static const CryptoType& lookup_cipher(const std::string& cipher_name) {
171 if (cipher_name.empty()) return supported_crypto_types[0];
172 for (size_t i = 0; i < array_length(supported_crypto_types); i++) {
173 if (cipher_name == supported_crypto_types[i].get_config_name()) {
174 return supported_crypto_types[i];
Paul Crowley572c0242020-02-14 01:15:35 -0800175 }
176 }
177 return invalid_crypto_type;
178}
179
Paul Crowley249c2fb2020-02-07 12:51:56 -0800180static bool parse_options(const std::string& options_string, CryptoOptions* options) {
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800181 auto parts = android::base::Split(options_string, ":");
182 if (parts.size() < 1 || parts.size() > 2) {
183 LOG(ERROR) << "Invalid metadata encryption option: " << options_string;
Paul Crowley249c2fb2020-02-07 12:51:56 -0800184 return false;
Paul Crowley572c0242020-02-14 01:15:35 -0800185 }
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800186 std::string cipher_name = parts[0];
187 options->cipher = lookup_cipher(cipher_name);
188 if (options->cipher.get_kernel_name() == nullptr) {
189 LOG(ERROR) << "No metadata cipher named " << cipher_name << " found";
190 return false;
191 }
192
193 if (parts.size() == 2) {
194 if (parts[1] == "wrappedkey_v0") {
195 options->use_hw_wrapped_key = true;
196 } else {
197 LOG(ERROR) << "Invalid metadata encryption flag: " << parts[1];
198 return false;
199 }
200 }
Paul Crowley249c2fb2020-02-07 12:51:56 -0800201 return true;
Paul Crowley572c0242020-02-14 01:15:35 -0800202}
203
Paul Lawrence236e5e82019-06-25 14:44:33 -0700204bool fscrypt_mount_metadata_encrypted(const std::string& blk_device, const std::string& mount_point,
205 bool needs_encrypt) {
Eric Biggersa701c452018-10-23 13:06:55 -0700206 LOG(DEBUG) << "fscrypt_mount_metadata_encrypted: " << mount_point << " " << needs_encrypt;
Paul Crowley0fd26262018-01-30 09:48:19 -0800207 auto encrypted_state = android::base::GetProperty("ro.crypto.state", "");
Nikita Ioffef850e6e2019-12-09 21:19:11 +0000208 if (encrypted_state != "" && encrypted_state != "encrypted") {
Eric Biggersa701c452018-10-23 13:06:55 -0700209 LOG(DEBUG) << "fscrypt_enable_crypto got unexpected starting state: " << encrypted_state;
Paul Crowleyd5759812016-06-02 11:04:27 -0700210 return false;
211 }
Tom Cherry4c5bde22019-01-29 14:34:01 -0800212
213 auto data_rec = GetEntryForMountPoint(&fstab_default, mount_point);
Paul Crowleyd5759812016-06-02 11:04:27 -0700214 if (!data_rec) {
Paul Crowleyc9b92f02020-01-30 15:26:15 -0800215 LOG(ERROR) << "Failed to get data_rec for " << mount_point;
216 return false;
217 }
Paul Crowley572c0242020-02-14 01:15:35 -0800218
Paul Crowleyf56d5532020-03-22 08:02:06 -0700219 unsigned int options_format_version = android::base::GetUintProperty<unsigned int>(
220 "ro.crypto.dm_default_key.options_format.version",
Eric Biggers72d07132020-08-10 10:55:56 -0700221 (GetFirstApiLevel() <= __ANDROID_API_Q__ ? 1 : 2));
Paul Crowley572c0242020-02-14 01:15:35 -0800222
Paul Crowley249c2fb2020-02-07 12:51:56 -0800223 CryptoOptions options;
Paul Crowleyf56d5532020-03-22 08:02:06 -0700224 if (options_format_version == 1) {
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800225 if (!data_rec->metadata_encryption.empty()) {
226 LOG(ERROR) << "metadata_encryption options cannot be set in legacy mode";
Paul Crowley249c2fb2020-02-07 12:51:56 -0800227 return false;
228 }
229 options.cipher = legacy_aes_256_xts;
Paul Crowleyf56d5532020-03-22 08:02:06 -0700230 options.use_legacy_options_format = true;
Paul Crowley249c2fb2020-02-07 12:51:56 -0800231 options.set_dun = android::base::GetBoolProperty("ro.crypto.set_dun", false);
232 if (!options.set_dun && data_rec->fs_mgr_flags.checkpoint_blk) {
233 LOG(ERROR)
234 << "Block checkpoints and metadata encryption require ro.crypto.set_dun option";
235 return false;
236 }
Paul Crowleyf56d5532020-03-22 08:02:06 -0700237 } else if (options_format_version == 2) {
Barani Muthukumaran312b7df2020-02-06 22:56:27 -0800238 if (!parse_options(data_rec->metadata_encryption, &options)) return false;
Paul Crowleyf56d5532020-03-22 08:02:06 -0700239 } else {
240 LOG(ERROR) << "Unknown options_format_version: " << options_format_version;
241 return false;
Paul Crowley572c0242020-02-14 01:15:35 -0800242 }
243
Paul Crowley249c2fb2020-02-07 12:51:56 -0800244 auto gen = needs_encrypt ? makeGen(options) : neverGen();
Paul Crowley0fd26262018-01-30 09:48:19 -0800245 KeyBuffer key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800246 if (!read_key(data_rec->metadata_key_dir, gen, &key)) return false;
Paul Lawrence4b140d32019-08-07 15:22:57 -0700247
Paul Crowleyd5759812016-06-02 11:04:27 -0700248 std::string crypto_blkdev;
Paul Crowley886e5722020-02-07 12:51:56 -0800249 uint64_t nr_sec;
Paul Crowley48aa90c2020-03-02 12:57:58 -0800250 if (!create_crypto_blk_dev(kDmNameUserdata, blk_device, key, options, &crypto_blkdev, &nr_sec))
Paul Crowley572c0242020-02-14 01:15:35 -0800251 return false;
Paul Lawrence236e5e82019-06-25 14:44:33 -0700252
Paul Crowley0fd26262018-01-30 09:48:19 -0800253 // FIXME handle the corrupt case
Eric Biggersf038c5f2020-11-03 14:11:02 -0800254 if (needs_encrypt && !encrypt_inplace(crypto_blkdev, blk_device, nr_sec, false)) return false;
Paul Crowleyd5759812016-06-02 11:04:27 -0700255
Paul Crowley0fd26262018-01-30 09:48:19 -0800256 LOG(DEBUG) << "Mounting metadata-encrypted filesystem:" << mount_point;
Paul Crowley48aa90c2020-03-02 12:57:58 -0800257 mount_via_fs_mgr(mount_point.c_str(), crypto_blkdev.c_str());
Paul Crowley7fbd8d42020-03-23 08:59:12 -0700258
259 // Record that there's at least one fstab entry with metadata encryption
260 if (!android::base::SetProperty("ro.crypto.metadata.enabled", "true")) {
261 LOG(WARNING) << "failed to set ro.crypto.metadata.enabled"; // This isn't fatal
262 }
Paul Crowleyd5759812016-06-02 11:04:27 -0700263 return true;
264}
Paul Crowley220567c2020-02-07 12:45:20 -0800265
Paul Crowley886e5722020-02-07 12:51:56 -0800266static bool get_volume_options(CryptoOptions* options) {
267 return parse_options(android::base::GetProperty("ro.crypto.volume.metadata.encryption", ""),
268 options);
269}
270
271bool defaultkey_volume_keygen(KeyGeneration* gen) {
272 CryptoOptions options;
273 if (!get_volume_options(&options)) return false;
274 *gen = makeGen(options);
275 return true;
276}
277
278bool defaultkey_setup_ext_volume(const std::string& label, const std::string& blk_device,
279 const KeyBuffer& key, std::string* out_crypto_blkdev) {
280 LOG(DEBUG) << "defaultkey_setup_ext_volume: " << label << " " << blk_device;
281
282 CryptoOptions options;
283 if (!get_volume_options(&options)) return false;
284 uint64_t nr_sec;
285 return create_crypto_blk_dev(label, blk_device, key, options, out_crypto_blkdev, &nr_sec);
286}
287
Yo Chiang0af25a32020-10-07 14:20:00 +0800288bool destroy_dsu_metadata_key(const std::string& dsu_slot) {
289 LOG(DEBUG) << "destroy_dsu_metadata_key: " << dsu_slot;
290
291 const auto dsu_metadata_key_dir = android::gsi::GetDsuMetadataKeyDir(dsu_slot);
292 if (!pathExists(dsu_metadata_key_dir)) {
293 LOG(DEBUG) << "DSU metadata_key_dir doesn't exist, nothing to remove: "
294 << dsu_metadata_key_dir;
295 return true;
296 }
297
298 // Ensure that the DSU key directory is different from the host OS'.
299 // Under normal circumstances, this should never happen, but handle it just in case.
300 if (auto data_rec = GetEntryForMountPoint(&fstab_default, "/data")) {
301 if (dsu_metadata_key_dir == data_rec->metadata_key_dir) {
302 LOG(ERROR) << "DSU metadata_key_dir is same as host OS: " << dsu_metadata_key_dir;
303 return false;
304 }
305 }
306
307 bool ok = true;
308 for (auto suffix : {"/key", "/tmp"}) {
309 const auto key_path = dsu_metadata_key_dir + suffix;
310 if (pathExists(key_path)) {
311 LOG(DEBUG) << "Destroy key: " << key_path;
312 if (!android::vold::destroyKey(key_path)) {
313 LOG(ERROR) << "Failed to destroyKey(): " << key_path;
314 ok = false;
315 }
316 }
317 }
318 if (!ok) {
319 return false;
320 }
321
322 LOG(DEBUG) << "Remove DSU metadata_key_dir: " << dsu_metadata_key_dir;
323 // DeleteDirContentsAndDir() already logged any error, so don't log repeatedly.
324 return android::vold::DeleteDirContentsAndDir(dsu_metadata_key_dir) == android::OK;
325}
326
Paul Crowley220567c2020-02-07 12:45:20 -0800327} // namespace vold
328} // namespace android