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"
18 #include "KeyBuffer.h"
19
20 #include <string>
21
22 #include <fcntl.h>
23 #include <sys/param.h>
24 #include <sys/stat.h>
25 #include <sys/types.h>
26
27 #include <android-base/logging.h>
28 #include <android-base/properties.h>
29 #include <android-base/strings.h>
30 #include <android-base/unique_fd.h>
31 #include <cutils/fs.h>
32 #include <fs_mgr.h>
33 #include <libdm/dm.h>
34 #include <libgsi/libgsi.h>
35
36 #include "Checkpoint.h"
37 #include "CryptoType.h"
38 #include "EncryptInplace.h"
39 #include "KeyStorage.h"
40 #include "KeyUtil.h"
41 #include "Keystore.h"
42 #include "Utils.h"
43 #include "VoldUtil.h"
44 #include "fs/Ext4.h"
45 #include "fs/F2fs.h"
46
47 namespace android {
48 namespace vold {
49
50 using android::fs_mgr::FstabEntry;
51 using android::fs_mgr::GetEntryForMountPoint;
52 using android::fscrypt::GetFirstApiLevel;
53 using android::vold::KeyBuffer;
54 using namespace android::dm;
55 using namespace std::chrono_literals;
56
57 // Parsed from metadata options
58 struct CryptoOptions {
59 struct CryptoType cipher = invalid_crypto_type;
60 bool use_legacy_options_format = false;
61 bool set_dun = true; // Non-legacy driver always sets DUN
62 bool use_hw_wrapped_key = false;
63 };
64
65 static const std::string kDmNameUserdata = "userdata";
66
67 // The first entry in this table is the default crypto type.
68 constexpr CryptoType supported_crypto_types[] = {aes_256_xts, adiantum};
69
70 static_assert(validateSupportedCryptoTypes(64, supported_crypto_types,
71 array_length(supported_crypto_types)),
72 "We have a CryptoType which was incompletely constructed.");
73
74 constexpr CryptoType legacy_aes_256_xts =
75 CryptoType().set_config_name("aes-256-xts").set_kernel_name("AES-256-XTS").set_keysize(64);
76
77 static_assert(isValidCryptoType(64, legacy_aes_256_xts),
78 "We have a CryptoType which was incompletely constructed.");
79
80 // Returns KeyGeneration suitable for key as described in CryptoOptions
makeGen(const CryptoOptions & options)81 const KeyGeneration makeGen(const CryptoOptions& options) {
82 return KeyGeneration{options.cipher.get_keysize(), true, options.use_hw_wrapped_key};
83 }
84
defaultkey_precreate_dm_device()85 void defaultkey_precreate_dm_device() {
86 auto& dm = DeviceMapper::Instance();
87 if (dm.GetState(kDmNameUserdata) != DmDeviceState::INVALID) {
88 LOG(INFO) << "Not pre-creating userdata encryption device; device already exists";
89 return;
90 }
91 if (!dm.CreateEmptyDevice(kDmNameUserdata)) {
92 LOG(ERROR) << "Failed to pre-create userdata metadata encryption device";
93 }
94 }
95
mount_via_fs_mgr(const char * mount_point,const char * blk_device)96 static bool mount_via_fs_mgr(const char* mount_point, const char* blk_device) {
97 // fs_mgr_do_mount runs fsck. Use setexeccon to run trusted
98 // partitions in the fsck domain.
99 if (setexeccon(android::vold::sFsckContext)) {
100 PLOG(ERROR) << "Failed to setexeccon";
101 return false;
102 }
103 auto mount_rc = fs_mgr_do_mount(&fstab_default, const_cast<char*>(mount_point),
104 const_cast<char*>(blk_device), nullptr,
105 android::vold::cp_needsCheckpoint(), true);
106 if (setexeccon(nullptr)) {
107 PLOG(ERROR) << "Failed to clear setexeccon";
108 return false;
109 }
110 if (mount_rc != 0) {
111 LOG(ERROR) << "fs_mgr_do_mount failed with rc " << mount_rc;
112 return false;
113 }
114 LOG(DEBUG) << "Mounted " << mount_point;
115 return true;
116 }
117
read_key(const std::string & metadata_key_dir,const KeyGeneration & gen,KeyBuffer * key)118 static bool read_key(const std::string& metadata_key_dir, const KeyGeneration& gen,
119 KeyBuffer* key) {
120 if (metadata_key_dir.empty()) {
121 LOG(ERROR) << "Failed to get metadata_key_dir";
122 return false;
123 }
124 std::string sKey;
125 auto dir = metadata_key_dir + "/key";
126 LOG(DEBUG) << "metadata_key_dir/key: " << dir;
127 if (!MkdirsSync(dir, 0700)) return false;
128 auto in_dsu = android::base::GetBoolProperty("ro.gsid.image_running", false);
129 // !pathExists(dir) does not imply there's a factory reset when in DSU mode.
130 if (!pathExists(dir) && !in_dsu) {
131 auto delete_all = android::base::GetBoolProperty(
132 "ro.crypto.metadata_init_delete_all_keys.enabled", false);
133 if (delete_all) {
134 LOG(INFO) << "Metadata key does not exist, calling deleteAllKeys";
135 Keystore::deleteAllKeys();
136 } else {
137 LOG(DEBUG) << "Metadata key does not exist but "
138 "ro.crypto.metadata_init_delete_all_keys.enabled is false";
139 }
140 }
141 auto temp = metadata_key_dir + "/tmp";
142 return retrieveOrGenerateKey(dir, temp, kEmptyAuthentication, gen, key);
143 }
144
get_number_of_sectors(const std::string & real_blkdev,uint64_t * nr_sec)145 static bool get_number_of_sectors(const std::string& real_blkdev, uint64_t* nr_sec) {
146 if (android::vold::GetBlockDev512Sectors(real_blkdev, nr_sec) != android::OK) {
147 PLOG(ERROR) << "Unable to measure size of " << real_blkdev;
148 return false;
149 }
150 return true;
151 }
152
create_crypto_blk_dev(const std::string & dm_name,const std::string & blk_device,const KeyBuffer & key,const CryptoOptions & options,std::string * crypto_blkdev,uint64_t * nr_sec)153 static bool create_crypto_blk_dev(const std::string& dm_name, const std::string& blk_device,
154 const KeyBuffer& key, const CryptoOptions& options,
155 std::string* crypto_blkdev, uint64_t* nr_sec) {
156 if (!get_number_of_sectors(blk_device, nr_sec)) return false;
157 // TODO(paulcrowley): don't hardcode that DmTargetDefaultKey uses 4096-byte
158 // sectors
159 *nr_sec &= ~7;
160
161 KeyBuffer module_key;
162 if (options.use_hw_wrapped_key) {
163 if (!exportWrappedStorageKey(key, &module_key)) {
164 LOG(ERROR) << "Failed to get ephemeral wrapped key";
165 return false;
166 }
167 } else {
168 module_key = key;
169 }
170
171 KeyBuffer hex_key_buffer;
172 if (android::vold::StrToHex(module_key, hex_key_buffer) != android::OK) {
173 LOG(ERROR) << "Failed to turn key to hex";
174 return false;
175 }
176 std::string hex_key(hex_key_buffer.data(), hex_key_buffer.size());
177
178 auto target = std::make_unique<DmTargetDefaultKey>(0, *nr_sec, options.cipher.get_kernel_name(),
179 hex_key, blk_device, 0);
180 if (options.use_legacy_options_format) target->SetUseLegacyOptionsFormat();
181 if (options.set_dun) target->SetSetDun();
182 if (options.use_hw_wrapped_key) target->SetWrappedKeyV0();
183
184 DmTable table;
185 table.AddTarget(std::move(target));
186
187 auto& dm = DeviceMapper::Instance();
188 if (dm_name == kDmNameUserdata && dm.GetState(dm_name) == DmDeviceState::SUSPENDED) {
189 // The device was created in advance, populate it now.
190 if (!dm.LoadTableAndActivate(dm_name, table)) {
191 LOG(ERROR) << "Failed to populate default-key device " << dm_name;
192 return false;
193 }
194 if (!dm.WaitForDevice(dm_name, 5s, crypto_blkdev)) {
195 LOG(ERROR) << "Failed to wait for default-key device " << dm_name;
196 return false;
197 }
198 } else if (!dm.CreateDevice(dm_name, table, crypto_blkdev, 5s)) {
199 LOG(ERROR) << "Could not create default-key device " << dm_name;
200 return false;
201 }
202 return true;
203 }
204
lookup_cipher(const std::string & cipher_name)205 static const CryptoType& lookup_cipher(const std::string& cipher_name) {
206 if (cipher_name.empty()) return supported_crypto_types[0];
207 for (size_t i = 0; i < array_length(supported_crypto_types); i++) {
208 if (cipher_name == supported_crypto_types[i].get_config_name()) {
209 return supported_crypto_types[i];
210 }
211 }
212 return invalid_crypto_type;
213 }
214
parse_options(const std::string & options_string,CryptoOptions * options)215 static bool parse_options(const std::string& options_string, CryptoOptions* options) {
216 auto parts = android::base::Split(options_string, ":");
217 if (parts.size() < 1 || parts.size() > 2) {
218 LOG(ERROR) << "Invalid metadata encryption option: " << options_string;
219 return false;
220 }
221 std::string cipher_name = parts[0];
222 options->cipher = lookup_cipher(cipher_name);
223 if (options->cipher.get_kernel_name() == nullptr) {
224 LOG(ERROR) << "No metadata cipher named " << cipher_name << " found";
225 return false;
226 }
227
228 if (parts.size() == 2) {
229 if (parts[1] == "wrappedkey_v0") {
230 options->use_hw_wrapped_key = true;
231 } else {
232 LOG(ERROR) << "Invalid metadata encryption flag: " << parts[1];
233 return false;
234 }
235 }
236 return true;
237 }
238
fscrypt_mount_metadata_encrypted(const std::string & blk_device,const std::string & mount_point,bool needs_encrypt,bool should_format,const std::string & fs_type)239 bool fscrypt_mount_metadata_encrypted(const std::string& blk_device, const std::string& mount_point,
240 bool needs_encrypt, bool should_format,
241 const std::string& fs_type) {
242 LOG(DEBUG) << "fscrypt_mount_metadata_encrypted: " << mount_point
243 << " encrypt: " << needs_encrypt << " format: " << should_format << " with "
244 << fs_type;
245 auto encrypted_state = android::base::GetProperty("ro.crypto.state", "");
246 if (encrypted_state != "" && encrypted_state != "encrypted") {
247 LOG(ERROR) << "fscrypt_mount_metadata_encrypted got unexpected starting state: "
248 << encrypted_state;
249 return false;
250 }
251
252 auto data_rec = GetEntryForMountPoint(&fstab_default, mount_point);
253 if (!data_rec) {
254 LOG(ERROR) << "Failed to get data_rec for " << mount_point;
255 return false;
256 }
257
258 unsigned int options_format_version = android::base::GetUintProperty<unsigned int>(
259 "ro.crypto.dm_default_key.options_format.version",
260 (GetFirstApiLevel() <= __ANDROID_API_Q__ ? 1 : 2));
261
262 CryptoOptions options;
263 if (options_format_version == 1) {
264 if (!data_rec->metadata_encryption_options.empty()) {
265 LOG(ERROR) << "metadata_encryption options cannot be set in legacy mode";
266 return false;
267 }
268 options.cipher = legacy_aes_256_xts;
269 options.use_legacy_options_format = true;
270 options.set_dun = android::base::GetBoolProperty("ro.crypto.set_dun", false);
271 if (!options.set_dun && data_rec->fs_mgr_flags.checkpoint_blk) {
272 LOG(ERROR)
273 << "Block checkpoints and metadata encryption require ro.crypto.set_dun option";
274 return false;
275 }
276 } else if (options_format_version == 2) {
277 if (!parse_options(data_rec->metadata_encryption_options, &options)) return false;
278 } else {
279 LOG(ERROR) << "Unknown options_format_version: " << options_format_version;
280 return false;
281 }
282
283 auto gen = needs_encrypt ? makeGen(options) : neverGen();
284 KeyBuffer key;
285 if (!read_key(data_rec->metadata_key_dir, gen, &key)) {
286 LOG(ERROR) << "read_key failed in mountFstab";
287 return false;
288 }
289
290 std::string crypto_blkdev;
291 uint64_t nr_sec;
292 if (!create_crypto_blk_dev(kDmNameUserdata, blk_device, key, options, &crypto_blkdev,
293 &nr_sec)) {
294 LOG(ERROR) << "create_crypto_blk_dev failed in mountFstab";
295 return false;
296 }
297
298 if (needs_encrypt) {
299 if (should_format) {
300 status_t error;
301
302 if (fs_type == "ext4") {
303 error = ext4::Format(crypto_blkdev, 0, mount_point);
304 } else if (fs_type == "f2fs") {
305 error = f2fs::Format(crypto_blkdev);
306 } else {
307 LOG(ERROR) << "Unknown filesystem type: " << fs_type;
308 return false;
309 }
310 if (error != 0) {
311 LOG(ERROR) << "Format of " << crypto_blkdev << " for " << mount_point
312 << " failed (err=" << error << ").";
313 return false;
314 }
315 LOG(DEBUG) << "Format of " << crypto_blkdev << " for " << mount_point << " succeeded.";
316 } else {
317 if (!encrypt_inplace(crypto_blkdev, blk_device, nr_sec)) {
318 LOG(ERROR) << "encrypt_inplace failed in mountFstab";
319 return false;
320 }
321 }
322 }
323
324 LOG(DEBUG) << "Mounting metadata-encrypted filesystem:" << mount_point;
325 mount_via_fs_mgr(mount_point.c_str(), crypto_blkdev.c_str());
326
327 // Record that there's at least one fstab entry with metadata encryption
328 if (!android::base::SetProperty("ro.crypto.metadata.enabled", "true")) {
329 LOG(WARNING) << "failed to set ro.crypto.metadata.enabled"; // This isn't fatal
330 }
331 return true;
332 }
333
get_volume_options(CryptoOptions * options)334 static bool get_volume_options(CryptoOptions* options) {
335 return parse_options(android::base::GetProperty("ro.crypto.volume.metadata.encryption", ""),
336 options);
337 }
338
defaultkey_volume_keygen(KeyGeneration * gen)339 bool defaultkey_volume_keygen(KeyGeneration* gen) {
340 CryptoOptions options;
341 if (!get_volume_options(&options)) return false;
342 *gen = makeGen(options);
343 return true;
344 }
345
defaultkey_setup_ext_volume(const std::string & label,const std::string & blk_device,const KeyBuffer & key,std::string * out_crypto_blkdev)346 bool defaultkey_setup_ext_volume(const std::string& label, const std::string& blk_device,
347 const KeyBuffer& key, std::string* out_crypto_blkdev) {
348 LOG(DEBUG) << "defaultkey_setup_ext_volume: " << label << " " << blk_device;
349
350 CryptoOptions options;
351 if (!get_volume_options(&options)) return false;
352 uint64_t nr_sec;
353 return create_crypto_blk_dev(label, blk_device, key, options, out_crypto_blkdev, &nr_sec);
354 }
355
destroy_dsu_metadata_key(const std::string & dsu_slot)356 bool destroy_dsu_metadata_key(const std::string& dsu_slot) {
357 LOG(DEBUG) << "destroy_dsu_metadata_key: " << dsu_slot;
358
359 const auto dsu_metadata_key_dir = android::gsi::GetDsuMetadataKeyDir(dsu_slot);
360 if (!pathExists(dsu_metadata_key_dir)) {
361 LOG(DEBUG) << "DSU metadata_key_dir doesn't exist, nothing to remove: "
362 << dsu_metadata_key_dir;
363 return true;
364 }
365
366 // Ensure that the DSU key directory is different from the host OS'.
367 // Under normal circumstances, this should never happen, but handle it just in case.
368 if (auto data_rec = GetEntryForMountPoint(&fstab_default, "/data")) {
369 if (dsu_metadata_key_dir == data_rec->metadata_key_dir) {
370 LOG(ERROR) << "DSU metadata_key_dir is same as host OS: " << dsu_metadata_key_dir;
371 return false;
372 }
373 }
374
375 bool ok = true;
376 for (auto suffix : {"/key", "/tmp"}) {
377 const auto key_path = dsu_metadata_key_dir + suffix;
378 if (pathExists(key_path)) {
379 LOG(DEBUG) << "Destroy key: " << key_path;
380 if (!android::vold::destroyKey(key_path)) {
381 LOG(ERROR) << "Failed to destroyKey(): " << key_path;
382 ok = false;
383 }
384 }
385 }
386 if (!ok) {
387 return false;
388 }
389
390 LOG(DEBUG) << "Remove DSU metadata_key_dir: " << dsu_metadata_key_dir;
391 // DeleteDirContentsAndDir() already logged any error, so don't log repeatedly.
392 return android::vold::DeleteDirContentsAndDir(dsu_metadata_key_dir) == android::OK;
393 }
394
395 } // namespace vold
396 } // namespace android
397