blob: a94c97c79a804112c39e9be865c5154afdc3974e [file] [log] [blame]
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001/*
2 * Copyright (C) 2015 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
Eric Biggersa701c452018-10-23 13:06:55 -070017#include "FsCrypt.h"
Paul Lawrence731a7a22015-04-28 22:14:15 +000018
Paul Crowley1ef25582016-01-21 20:26:12 +000019#include "KeyStorage.h"
Paul Crowleyf71ace32016-06-02 11:01:19 -070020#include "KeyUtil.h"
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080021#include "Utils.h"
Paul Crowleya7ca40b2017-10-06 14:29:33 -070022#include "VoldUtil.h"
23
Paul Crowleya3630362016-05-17 14:17:56 -070024#include <algorithm>
Paul Lawrence731a7a22015-04-28 22:14:15 +000025#include <map>
Barani Muthukumaranb1927c22019-10-31 22:59:34 -070026#include <optional>
Paul Crowleyb1f3d242016-01-28 10:09:46 +000027#include <set>
Paul Lawrencefd7db732015-04-10 07:48:51 -070028#include <sstream>
Paul Crowleydf528a72016-03-09 09:31:37 -080029#include <string>
Paul Crowleyf71ace32016-06-02 11:01:19 -070030#include <vector>
Paul Lawrence731a7a22015-04-28 22:14:15 +000031
Paul Crowleydf528a72016-03-09 09:31:37 -080032#include <dirent.h>
33#include <errno.h>
34#include <fcntl.h>
Paul Crowleya3630362016-05-17 14:17:56 -070035#include <limits.h>
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070036#include <selinux/android.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080037#include <sys/mount.h>
38#include <sys/stat.h>
39#include <sys/types.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070040#include <unistd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000041
Paul Crowley480fcd22015-08-24 14:53:28 +010042#include <private/android_filesystem_config.h>
43
Paul Crowley82b41ff2017-10-20 08:17:54 -070044#include "android/os/IVold.h"
45
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070046#define EMULATED_USES_SELINUX 0
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -060047#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070048
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080049#include <cutils/fs.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070050#include <cutils/properties.h>
51
Eric Biggersa701c452018-10-23 13:06:55 -070052#include <fscrypt/fscrypt.h>
Elliott Hughesc3bda182017-05-09 17:01:04 -070053#include <keyutils.h>
Eric Biggerseb566d02020-07-06 13:46:38 -070054#include <libdm/dm.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080055
Elliott Hughes7e128fb2015-12-04 15:50:53 -080056#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080057#include <android-base/logging.h>
Paul Crowley3aa914d2017-10-09 16:35:51 -070058#include <android-base/properties.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080059#include <android-base/stringprintf.h>
Eric Biggers83a73d72019-09-30 13:06:47 -070060#include <android-base/strings.h>
Jieb6698d52018-11-12 15:26:02 +080061#include <android-base/unique_fd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000062
Eric Biggerseb566d02020-07-06 13:46:38 -070063using android::base::Basename;
64using android::base::Realpath;
65using android::base::StartsWith;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080066using android::base::StringPrintf;
Tom Cherry4c5bde22019-01-29 14:34:01 -080067using android::fs_mgr::GetEntryForMountPoint;
Paul Crowley77df7f22020-01-23 15:29:30 -080068using android::vold::BuildDataPath;
Paul Crowley05720802016-02-08 15:55:41 +000069using android::vold::kEmptyAuthentication;
Pavel Grafove2e2d302017-08-01 17:15:53 +010070using android::vold::KeyBuffer;
Paul Crowley249c2fb2020-02-07 12:51:56 -080071using android::vold::KeyGeneration;
Paul Crowley4eac2642020-02-12 11:04:05 -080072using android::vold::retrieveKey;
73using android::vold::retrieveOrGenerateKey;
Tommy Chiua98464f2019-03-26 14:14:19 +080074using android::vold::writeStringToFile;
Paul Crowley5e53ff62019-10-24 14:55:17 -070075using namespace android::fscrypt;
Eric Biggerseb566d02020-07-06 13:46:38 -070076using namespace android::dm;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080077
Paul Lawrence731a7a22015-04-28 22:14:15 +000078namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000079
Eric Biggersa701c452018-10-23 13:06:55 -070080const std::string device_key_dir = std::string() + DATA_MNT_POINT + fscrypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080081const std::string device_key_path = device_key_dir + "/key";
82const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080083
Paul Crowleydf528a72016-03-09 09:31:37 -080084const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
85const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley82b41ff2017-10-20 08:17:54 -070086const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs";
Paul Crowley285956f2016-01-20 13:12:38 +000087
Paul Crowley26a53882017-10-26 11:16:39 -070088const std::string systemwide_volume_key_dir =
89 std::string() + DATA_MNT_POINT + "/misc/vold/volume_keys";
90
Paul Crowleydf528a72016-03-09 09:31:37 -080091// Some users are ephemeral, don't try to wipe their keys from disk
92std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080093
Paul Crowley77df7f22020-01-23 15:29:30 -080094// Map user ids to encryption policies
95std::map<userid_t, EncryptionPolicy> s_de_policies;
96std::map<userid_t, EncryptionPolicy> s_ce_policies;
Paul Lawrence731a7a22015-04-28 22:14:15 +000097
Paul Crowley14c8c072018-09-18 13:30:21 -070098} // namespace
Paul Lawrence731a7a22015-04-28 22:14:15 +000099
Paul Crowley249c2fb2020-02-07 12:51:56 -0800100// Returns KeyGeneration suitable for key as described in EncryptionOptions
101static KeyGeneration makeGen(const EncryptionOptions& options) {
102 return KeyGeneration{FSCRYPT_MAX_KEY_SIZE, true, options.use_hw_wrapped_key};
103}
104
Eric Biggersa701c452018-10-23 13:06:55 -0700105static bool fscrypt_is_emulated() {
Paul Crowley38132a12016-02-09 09:50:32 +0000106 return property_get_bool("persist.sys.emulate_fbe", false);
107}
108
Paul Crowley3b71fc52017-10-09 10:55:21 -0700109static const char* escape_empty(const std::string& value) {
110 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000111}
112
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000113static std::string get_de_key_path(userid_t user_id) {
114 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
115}
116
Paul Crowleya3630362016-05-17 14:17:56 -0700117static std::string get_ce_key_directory_path(userid_t user_id) {
118 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
119}
120
121// Returns the keys newest first
122static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
123 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
124 if (!dirp) {
125 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
126 return std::vector<std::string>();
127 }
128 std::vector<std::string> result;
129 for (;;) {
130 errno = 0;
131 auto const entry = readdir(dirp.get());
132 if (!entry) {
133 if (errno) {
134 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
135 return std::vector<std::string>();
136 }
137 break;
138 }
139 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
140 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
141 continue;
142 }
143 result.emplace_back(directory_path + "/" + entry->d_name);
144 }
145 std::sort(result.begin(), result.end());
146 std::reverse(result.begin(), result.end());
147 return result;
148}
149
150static std::string get_ce_key_current_path(const std::string& directory_path) {
151 return directory_path + "/current";
152}
153
154static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700155 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700156 if (paths.empty()) {
157 *ce_key_path = get_ce_key_current_path(directory_path);
158 return true;
159 }
160 for (unsigned int i = 0; i < UINT_MAX; i++) {
161 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
162 if (paths[0] < candidate) {
163 *ce_key_path = candidate;
164 return true;
165 }
166 }
167 return false;
168}
169
170// Discard all keys but the named one; rename it to canonical name.
171// No point in acting on errors in this; ignore them.
Paul Crowley14c8c072018-09-18 13:30:21 -0700172static void fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700173 const std::vector<std::string>& paths) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700174 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700175 if (other_path != to_fix) {
176 android::vold::destroyKey(other_path);
177 }
178 }
179 auto const current_path = get_ce_key_current_path(directory_path);
180 if (to_fix != current_path) {
181 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
182 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
183 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
Jieb6698d52018-11-12 15:26:02 +0800184 return;
Paul Crowleya3630362016-05-17 14:17:56 -0700185 }
186 }
Paul Crowley621d9b92018-12-07 15:36:09 -0800187 android::vold::FsyncDirectory(directory_path);
Paul Crowleya3630362016-05-17 14:17:56 -0700188}
189
190static bool read_and_fixate_user_ce_key(userid_t user_id,
191 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700192 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700193 auto const directory_path = get_ce_key_directory_path(user_id);
194 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700195 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700196 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
Paul Crowley4eac2642020-02-12 11:04:05 -0800197 if (retrieveKey(ce_key_path, auth, ce_key)) {
Paul Crowleya3630362016-05-17 14:17:56 -0700198 LOG(DEBUG) << "Successfully retrieved key";
199 fixate_user_ce_key(directory_path, ce_key_path, paths);
200 return true;
201 }
202 }
203 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
204 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100205}
206
Eric Biggerseb566d02020-07-06 13:46:38 -0700207static bool IsEmmcStorage(const std::string& blk_device) {
208 // Handle symlinks.
209 std::string real_path;
210 if (!Realpath(blk_device, &real_path)) {
211 real_path = blk_device;
212 }
213
214 // Handle logical volumes.
215 auto& dm = DeviceMapper::Instance();
216 for (;;) {
217 auto parent = dm.GetParentBlockDeviceByPath(real_path);
218 if (!parent.has_value()) break;
219 real_path = *parent;
220 }
221
222 // Now we should have the "real" block device.
223 LOG(DEBUG) << "IsEmmcStorage(): blk_device = " << blk_device << ", real_path=" << real_path;
224 return StartsWith(Basename(real_path), "mmcblk");
225}
226
Eric Biggers83a73d72019-09-30 13:06:47 -0700227// Retrieve the options to use for encryption policies on the /data filesystem.
Paul Crowley77df7f22020-01-23 15:29:30 -0800228static bool get_data_file_encryption_options(EncryptionOptions* options) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700229 auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT);
230 if (entry == nullptr) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800231 LOG(ERROR) << "No mount point entry for " << DATA_MNT_POINT;
232 return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700233 }
Paul Crowleya50f6c32019-10-24 23:21:44 -0700234 if (!ParseOptions(entry->encryption_options, options)) {
235 LOG(ERROR) << "Unable to parse encryption options for " << DATA_MNT_POINT ": "
236 << entry->encryption_options;
Paul Crowley77df7f22020-01-23 15:29:30 -0800237 return false;
Paul Crowleya50f6c32019-10-24 23:21:44 -0700238 }
Eric Biggerseb566d02020-07-06 13:46:38 -0700239 if ((options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) &&
240 !IsEmmcStorage(entry->blk_device)) {
241 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
242 "this flag from the device's fstab";
243 return false;
244 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800245 return true;
Eric Biggers83a73d72019-09-30 13:06:47 -0700246}
247
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800248static bool install_storage_key(const std::string& mountpoint, const EncryptionOptions& options,
249 const KeyBuffer& key, EncryptionPolicy* policy) {
250 KeyBuffer ephemeral_wrapped_key;
251 if (options.use_hw_wrapped_key) {
252 if (!exportWrappedStorageKey(key, &ephemeral_wrapped_key)) {
253 LOG(ERROR) << "Failed to get ephemeral wrapped key";
254 return false;
255 }
256 }
257 return installKey(mountpoint, options, options.use_hw_wrapped_key ? ephemeral_wrapped_key : key,
258 policy);
259}
260
Eric Biggers83a73d72019-09-30 13:06:47 -0700261// Retrieve the options to use for encryption policies on adoptable storage.
Paul Crowley5e53ff62019-10-24 14:55:17 -0700262static bool get_volume_file_encryption_options(EncryptionOptions* options) {
Paul Crowleyeb241a12020-02-18 10:10:08 -0800263 // If we give the empty string, libfscrypt will use the default (currently XTS)
264 auto contents_mode = android::base::GetProperty("ro.crypto.volume.contents_mode", "");
265 // HEH as default was always a mistake. Use the libfscrypt default (CTS)
266 // for devices launching on versions above Android 10.
267 auto first_api_level = GetFirstApiLevel();
Paul Crowleyf612b8b2019-10-24 22:52:02 -0700268 auto filenames_mode =
Paul Crowleyeb241a12020-02-18 10:10:08 -0800269 android::base::GetProperty("ro.crypto.volume.filenames_mode",
Eric Biggers72d07132020-08-10 10:55:56 -0700270 first_api_level > __ANDROID_API_Q__ ? "" : "aes-256-heh");
Paul Crowley77df7f22020-01-23 15:29:30 -0800271 auto options_string = android::base::GetProperty("ro.crypto.volume.options",
Paul Crowleyeb241a12020-02-18 10:10:08 -0800272 contents_mode + ":" + filenames_mode);
273 if (!ParseOptionsForApiLevel(first_api_level, options_string, options)) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800274 LOG(ERROR) << "Unable to parse volume encryption options: " << options_string;
275 return false;
276 }
Eric Biggerseb566d02020-07-06 13:46:38 -0700277 if (options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) {
278 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
279 "this flag from ro.crypto.volume.options";
280 return false;
281 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800282 return true;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700283}
284
Paul Crowleydf528a72016-03-09 09:31:37 -0800285static bool read_and_install_user_ce_key(userid_t user_id,
286 const android::vold::KeyAuthentication& auth) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800287 if (s_ce_policies.count(user_id) != 0) return true;
288 EncryptionOptions options;
289 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100290 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700291 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800292 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800293 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800294 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000295 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000296 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000297}
298
Paul Crowleydf528a72016-03-09 09:31:37 -0800299static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000300 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000301 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
302 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000303 return false;
304 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000305 return true;
306}
307
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600308static bool destroy_dir(const std::string& dir) {
309 LOG(DEBUG) << "Destroying: " << dir;
310 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
311 PLOG(ERROR) << "Failed to destroy " << dir;
312 return false;
313 }
314 return true;
315}
316
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000317// NB this assumes that there is only one thread listening for crypt commands, because
318// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000319static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800320 EncryptionOptions options;
321 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100322 KeyBuffer de_key, ce_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800323 if (!generateStorageKey(makeGen(options), &de_key)) return false;
324 if (!generateStorageKey(makeGen(options), &ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000325 if (create_ephemeral) {
326 // If the key should be created as ephemeral, don't store it.
327 s_ephemeral_users.insert(user_id);
328 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700329 auto const directory_path = get_ce_key_directory_path(user_id);
330 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
331 auto const paths = get_ce_key_paths(directory_path);
332 std::string ce_key_path;
333 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700334 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, kEmptyAuthentication,
335 ce_key))
336 return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700337 fixate_user_ce_key(directory_path, ce_key_path, paths);
338 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700339 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley14c8c072018-09-18 13:30:21 -0700340 kEmptyAuthentication, de_key))
341 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100342 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800343 EncryptionPolicy de_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800344 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800345 s_de_policies[user_id] = de_policy;
346 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800347 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800348 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000349 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000350 return true;
351}
352
Paul Crowley77df7f22020-01-23 15:29:30 -0800353static bool lookup_policy(const std::map<userid_t, EncryptionPolicy>& key_map, userid_t user_id,
354 EncryptionPolicy* policy) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000355 auto refi = key_map.find(user_id);
356 if (refi == key_map.end()) {
Eric Biggersd1034042019-04-02 10:38:15 -0700357 LOG(DEBUG) << "Cannot find key for " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000358 return false;
359 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800360 *policy = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000361 return true;
362}
363
Paul Crowleydf528a72016-03-09 09:31:37 -0800364static bool is_numeric(const char* name) {
365 for (const char* p = name; *p != '\0'; p++) {
366 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000367 }
368 return true;
369}
370
371static bool load_all_de_keys() {
Paul Crowley77df7f22020-01-23 15:29:30 -0800372 EncryptionOptions options;
373 if (!get_data_file_encryption_options(&options)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000374 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800375 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000376 if (!dirp) {
377 PLOG(ERROR) << "Unable to read de key directory";
378 return false;
379 }
380 for (;;) {
381 errno = 0;
382 auto entry = readdir(dirp.get());
383 if (!entry) {
384 if (errno) {
385 PLOG(ERROR) << "Unable to read de key directory";
386 return false;
387 }
388 break;
389 }
390 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
391 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
392 continue;
393 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600394 userid_t user_id = std::stoi(entry->d_name);
Nikita Ioffef0550af2020-02-27 18:21:55 +0000395 auto key_path = de_dir + "/" + entry->d_name;
396 KeyBuffer de_key;
397 if (!retrieveKey(key_path, kEmptyAuthentication, &de_key)) return false;
398 EncryptionPolicy de_policy;
399 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
400 auto ret = s_de_policies.insert({user_id, de_policy});
401 if (!ret.second && ret.first->second != de_policy) {
402 LOG(ERROR) << "DE policy for user" << user_id << " changed";
403 return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000404 }
Nikita Ioffef0550af2020-02-27 18:21:55 +0000405 LOG(DEBUG) << "Installed de key for user " << user_id;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000406 }
Eric Biggersa701c452018-10-23 13:06:55 -0700407 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000408 // correct policy set on them, and that no rogue ones exist.
409 return true;
410}
411
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000412// Attempt to reinstall CE keys for users that we think are unlocked.
413static bool try_reload_ce_keys() {
414 for (const auto& it : s_ce_policies) {
415 if (!android::vold::reloadKeyFromSessionKeyring(DATA_MNT_POINT, it.second)) {
416 LOG(ERROR) << "Failed to load CE key from session keyring for user " << it.first;
417 return false;
418 }
419 }
420 return true;
421}
422
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700423bool fscrypt_initialize_systemwide_keys() {
424 LOG(INFO) << "fscrypt_initialize_systemwide_keys";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800425
Paul Crowley77df7f22020-01-23 15:29:30 -0800426 EncryptionOptions options;
427 if (!get_data_file_encryption_options(&options)) return false;
428
429 KeyBuffer device_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800430 if (!retrieveOrGenerateKey(device_key_path, device_key_temp, kEmptyAuthentication,
431 makeGen(options), &device_key))
Paul Crowley77df7f22020-01-23 15:29:30 -0800432 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800433
Paul Crowley5e53ff62019-10-24 14:55:17 -0700434 EncryptionPolicy device_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800435 if (!install_storage_key(DATA_MNT_POINT, options, device_key, &device_policy)) return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700436
Paul Crowley5e53ff62019-10-24 14:55:17 -0700437 std::string options_string;
438 if (!OptionsToString(device_policy.options, &options_string)) {
439 LOG(ERROR) << "Unable to serialize options";
440 return false;
441 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800442 std::string options_filename = std::string(DATA_MNT_POINT) + fscrypt_key_mode;
Eric Biggers83a73d72019-09-30 13:06:47 -0700443 if (!android::vold::writeStringToFile(options_string, options_filename)) return false;
Paul Lawrence6e410592016-05-24 14:20:38 -0700444
Paul Crowley77df7f22020-01-23 15:29:30 -0800445 std::string ref_filename = std::string(DATA_MNT_POINT) + fscrypt_key_ref;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700446 if (!android::vold::writeStringToFile(device_policy.key_raw_ref, ref_filename)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700447 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800448
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700449 KeyBuffer per_boot_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800450 if (!generateStorageKey(makeGen(options), &per_boot_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800451 EncryptionPolicy per_boot_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800452 if (!install_storage_key(DATA_MNT_POINT, options, per_boot_key, &per_boot_policy)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700453 std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref;
Paul Crowley77df7f22020-01-23 15:29:30 -0800454 if (!android::vold::writeStringToFile(per_boot_policy.key_raw_ref, per_boot_ref_filename))
455 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700456 LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename;
457
Tommy Chiua98464f2019-03-26 14:14:19 +0800458 if (!android::vold::FsyncDirectory(device_key_dir)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000459 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800460}
461
Eric Biggersa701c452018-10-23 13:06:55 -0700462bool fscrypt_init_user0() {
463 LOG(DEBUG) << "fscrypt_init_user0";
464 if (fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000465 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
466 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
467 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700468 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000469 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000470 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700471 // TODO: switch to loading only DE_0 here once framework makes
472 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000473 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000474 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700475 // We can only safely prepare DE storage here, since CE keys are probably
476 // entangled with user credentials. The framework will always prepare CE
477 // storage once CE keys are installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700478 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700479 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000480 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700481 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700482
483 // If this is a non-FBE device that recently left an emulated mode,
484 // restore user data directories to known-good state.
Eric Biggersa701c452018-10-23 13:06:55 -0700485 if (!fscrypt_is_native() && !fscrypt_is_emulated()) {
486 fscrypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700487 }
488
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000489 // In some scenarios (e.g. userspace reboot) we might unmount userdata
490 // without doing a hard reboot. If CE keys were stored in fs keyring then
491 // they will be lost after unmount. Attempt to re-install them.
492 if (fscrypt_is_native() && android::vold::isFsKeyringSupported()) {
493 if (!try_reload_ce_keys()) return false;
494 }
495
Paul Crowley76107cb2016-02-09 10:04:39 +0000496 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000497}
498
Eric Biggersa701c452018-10-23 13:06:55 -0700499bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
500 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
501 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000502 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000503 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000504 // FIXME test for existence of key that is not loaded yet
Paul Crowley77df7f22020-01-23 15:29:30 -0800505 if (s_ce_policies.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700506 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800507 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000508 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000509 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800510 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000511 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000512 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000513 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000514 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800515}
516
Eric Biggersce368682019-04-03 15:44:06 -0700517// "Lock" all encrypted directories whose key has been removed. This is needed
Eric Biggersf3dc4202019-09-30 13:05:58 -0700518// in the case where the keys are being put in the session keyring (rather in
519// the newer filesystem-level keyrings), because removing a key from the session
520// keyring doesn't affect inodes in the kernel's inode cache whose per-file key
521// was already set up. So to remove the per-file keys and make the files
522// "appear encrypted", these inodes must be evicted.
Eric Biggersce368682019-04-03 15:44:06 -0700523//
524// To do this, sync() to clean all dirty inodes, then drop all reclaimable slab
525// objects systemwide. This is overkill, but it's the best available method
526// currently. Don't use drop_caches mode "3" because that also evicts pagecache
527// for in-use files; all files relevant here are already closed and sync'ed.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700528static void drop_caches_if_needed() {
529 if (android::vold::isFsKeyringSupported()) {
530 return;
531 }
Pavel Grafovb350ed02017-07-27 17:34:57 +0100532 sync();
Eric Biggersce368682019-04-03 15:44:06 -0700533 if (!writeStringToFile("2", "/proc/sys/vm/drop_caches")) {
Pavel Grafovb350ed02017-07-27 17:34:57 +0100534 PLOG(ERROR) << "Failed to drop caches during key eviction";
535 }
536}
537
Andrew Scull7ec25c72016-10-31 10:28:25 +0000538static bool evict_ce_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000539 bool success = true;
Paul Crowley77df7f22020-01-23 15:29:30 -0800540 EncryptionPolicy policy;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000541 // If we haven't loaded the CE key, no need to evict it.
Paul Crowley77df7f22020-01-23 15:29:30 -0800542 if (lookup_policy(s_ce_policies, user_id, &policy)) {
543 success &= android::vold::evictKey(DATA_MNT_POINT, policy);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700544 drop_caches_if_needed();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000545 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800546 s_ce_policies.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000547 return success;
548}
549
Eric Biggersa701c452018-10-23 13:06:55 -0700550bool fscrypt_destroy_user_key(userid_t user_id) {
551 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
552 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000553 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000554 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000555 bool success = true;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000556 success &= evict_ce_key(user_id);
Paul Crowley77df7f22020-01-23 15:29:30 -0800557 EncryptionPolicy de_policy;
558 success &= lookup_policy(s_de_policies, user_id, &de_policy) &&
559 android::vold::evictKey(DATA_MNT_POINT, de_policy);
560 s_de_policies.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000561 auto it = s_ephemeral_users.find(user_id);
562 if (it != s_ephemeral_users.end()) {
563 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000564 } else {
Paul Crowley14c8c072018-09-18 13:30:21 -0700565 for (auto const path : get_ce_key_paths(get_ce_key_directory_path(user_id))) {
Paul Crowleya3630362016-05-17 14:17:56 -0700566 success &= android::vold::destroyKey(path);
567 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700568 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700569 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700570 success &= android::vold::destroyKey(de_key_path);
571 } else {
572 LOG(INFO) << "Not present so not erasing: " << de_key_path;
573 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100574 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000575 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100576}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800577
Paul Crowley76107cb2016-02-09 10:04:39 +0000578static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700579 if (chmod(path.c_str(), 0000) != 0) {
580 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000581 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700582 }
583#if EMULATED_USES_SELINUX
584 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
585 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000586 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700587 }
588#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000589 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700590}
591
Paul Crowley76107cb2016-02-09 10:04:39 +0000592static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700593 if (chmod(path.c_str(), mode) != 0) {
594 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000595 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700596 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700597 }
598#if EMULATED_USES_SELINUX
599 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
600 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000601 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700602 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700603 }
604#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000605 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700606}
607
Paul Crowley3b71fc52017-10-09 10:55:21 -0700608static bool parse_hex(const std::string& hex, std::string* result) {
609 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800610 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000611 return true;
612 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800613 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800614 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000615 return false;
616 }
617 return true;
618}
619
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700620static std::optional<android::vold::KeyAuthentication> authentication_from_hex(
621 const std::string& token_hex, const std::string& secret_hex) {
622 std::string token, secret;
623 if (!parse_hex(token_hex, &token)) return std::optional<android::vold::KeyAuthentication>();
624 if (!parse_hex(secret_hex, &secret)) return std::optional<android::vold::KeyAuthentication>();
625 if (secret.empty()) {
626 return kEmptyAuthentication;
627 } else {
628 return android::vold::KeyAuthentication(token, secret);
629 }
630}
631
Paul Crowley3aa914d2017-10-09 16:35:51 -0700632static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
633 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
634}
635
Paul Crowley26a53882017-10-26 11:16:39 -0700636static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
637 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
638}
639
Paul Crowley3aa914d2017-10-09 16:35:51 -0700640static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
Paul Crowley5e53ff62019-10-24 14:55:17 -0700641 EncryptionPolicy* policy) {
Paul Crowley26a53882017-10-26 11:16:39 -0700642 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
643 std::string secdiscardable_hash;
644 if (android::vold::pathExists(secdiscardable_path)) {
645 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
646 return false;
647 } else {
648 if (fs_mkdirs(secdiscardable_path.c_str(), 0700) != 0) {
649 PLOG(ERROR) << "Creating directories for: " << secdiscardable_path;
650 return false;
651 }
652 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
653 return false;
654 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700655 auto key_path = volkey_path(misc_path, volume_uuid);
656 if (fs_mkdirs(key_path.c_str(), 0700) != 0) {
657 PLOG(ERROR) << "Creating directories for: " << key_path;
658 return false;
659 }
Paul Crowley26a53882017-10-26 11:16:39 -0700660 android::vold::KeyAuthentication auth("", secdiscardable_hash);
Eric Biggers83a73d72019-09-30 13:06:47 -0700661
Paul Crowley77df7f22020-01-23 15:29:30 -0800662 EncryptionOptions options;
663 if (!get_volume_file_encryption_options(&options)) return false;
664 KeyBuffer key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800665 if (!retrieveOrGenerateKey(key_path, key_path + "_tmp", auth, makeGen(options), &key))
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800666 return false;
667 if (!install_storage_key(BuildDataPath(volume_uuid), options, key, policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800668 return true;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700669}
670
671static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700672 auto path = volkey_path(misc_path, volume_uuid);
673 if (!android::vold::pathExists(path)) return true;
674 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700675}
676
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700677static bool fscrypt_rewrap_user_key(userid_t user_id, int serial,
678 const android::vold::KeyAuthentication& retrieve_auth,
679 const android::vold::KeyAuthentication& store_auth) {
680 if (s_ephemeral_users.count(user_id) != 0) return true;
681 auto const directory_path = get_ce_key_directory_path(user_id);
682 KeyBuffer ce_key;
683 std::string ce_key_current_path = get_ce_key_current_path(directory_path);
Paul Crowley4eac2642020-02-12 11:04:05 -0800684 if (retrieveKey(ce_key_current_path, retrieve_auth, &ce_key)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700685 LOG(DEBUG) << "Successfully retrieved key";
686 // TODO(147732812): Remove this once Locksettingservice is fixed.
687 // Currently it calls fscrypt_clear_user_key_auth with a secret when lockscreen is
688 // changed from swipe to none or vice-versa
Paul Crowley4eac2642020-02-12 11:04:05 -0800689 } else if (retrieveKey(ce_key_current_path, kEmptyAuthentication, &ce_key)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700690 LOG(DEBUG) << "Successfully retrieved key with empty auth";
691 } else {
692 LOG(ERROR) << "Failed to retrieve key for user " << user_id;
693 return false;
694 }
695 auto const paths = get_ce_key_paths(directory_path);
696 std::string ce_key_path;
697 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
698 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, store_auth, ce_key))
699 return false;
700 if (!android::vold::FsyncDirectory(directory_path)) return false;
701 return true;
702}
703
Eric Biggersa701c452018-10-23 13:06:55 -0700704bool fscrypt_add_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700705 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700706 LOG(DEBUG) << "fscrypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700707 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700708 if (!fscrypt_is_native()) return true;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700709 auto auth = authentication_from_hex(token_hex, secret_hex);
710 if (!auth) return false;
711 return fscrypt_rewrap_user_key(user_id, serial, kEmptyAuthentication, *auth);
712}
713
714bool fscrypt_clear_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
715 const std::string& secret_hex) {
716 LOG(DEBUG) << "fscrypt_clear_user_key_auth " << user_id << " serial=" << serial
717 << " token_present=" << (token_hex != "!");
718 if (!fscrypt_is_native()) return true;
719 auto auth = authentication_from_hex(token_hex, secret_hex);
720 if (!auth) return false;
721 return fscrypt_rewrap_user_key(user_id, serial, *auth, kEmptyAuthentication);
Paul Crowleya3630362016-05-17 14:17:56 -0700722}
723
Eric Biggersa701c452018-10-23 13:06:55 -0700724bool fscrypt_fixate_newest_user_key_auth(userid_t user_id) {
725 LOG(DEBUG) << "fscrypt_fixate_newest_user_key_auth " << user_id;
726 if (!fscrypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700727 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700728 auto const directory_path = get_ce_key_directory_path(user_id);
729 auto const paths = get_ce_key_paths(directory_path);
730 if (paths.empty()) {
731 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
732 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000733 }
Paul Crowleya3630362016-05-17 14:17:56 -0700734 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000735 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000736}
737
Jeff Sharkey47695b22016-02-01 17:02:29 -0700738// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Eric Biggersa701c452018-10-23 13:06:55 -0700739bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700740 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700741 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700742 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700743 if (fscrypt_is_native()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800744 if (s_ce_policies.count(user_id) != 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000745 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000746 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000747 }
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700748 auto auth = authentication_from_hex(token_hex, secret_hex);
749 if (!auth) return false;
750 if (!read_and_install_user_ce_key(user_id, *auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000751 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000752 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800753 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700754 } else {
755 // When in emulation mode, we just use chmod. However, we also
756 // unlock directories when not in emulation mode, to bring devices
757 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000758 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800759 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700760 !emulated_unlock(android::vold::BuildDataMediaCePath("", user_id), 0770) ||
761 !emulated_unlock(android::vold::BuildDataUserCePath("", user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700762 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000763 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700764 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800765 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000766 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800767}
768
Jeff Sharkey47695b22016-02-01 17:02:29 -0700769// TODO: rename to 'evict' for consistency
Eric Biggersa701c452018-10-23 13:06:55 -0700770bool fscrypt_lock_user_key(userid_t user_id) {
771 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
772 if (fscrypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000773 return evict_ce_key(user_id);
Eric Biggersa701c452018-10-23 13:06:55 -0700774 } else if (fscrypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800775 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000776 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800777 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700778 !emulated_lock(android::vold::BuildDataMediaCePath("", user_id)) ||
779 !emulated_lock(android::vold::BuildDataUserCePath("", user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000780 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000781 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800782 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800783 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700784
Paul Crowley76107cb2016-02-09 10:04:39 +0000785 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800786}
787
Paul Crowley82b41ff2017-10-20 08:17:54 -0700788static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
789 userid_t user_id, int flags) {
790 if (0 != android::vold::ForkExecvp(
791 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
792 std::to_string(user_id), std::to_string(flags)})) {
793 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700794 return false;
795 }
796 return true;
797}
798
Eric Biggersa701c452018-10-23 13:06:55 -0700799bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700800 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700801 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800802 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700803
Paul Crowley82b41ff2017-10-20 08:17:54 -0700804 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600805 // DE_sys key
806 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
807 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
808 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600809
810 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700811 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
812 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800813 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700814 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
815
Paul Crowley3b71fc52017-10-09 10:55:21 -0700816 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700817 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600818#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700819 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700820 multiuser_get_uid(user_id, AID_EVERYBODY)))
821 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600822#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700823 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600824
Paul Crowley6b756ce2017-10-05 14:07:09 -0700825 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
826 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800827 if (!prepare_dir(vendor_de_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700828 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000829 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000830
Eric Biggersa701c452018-10-23 13:06:55 -0700831 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700832 EncryptionPolicy de_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700833 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800834 if (!lookup_policy(s_de_policies, user_id, &de_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700835 if (!EnsurePolicy(de_policy, system_de_path)) return false;
836 if (!EnsurePolicy(de_policy, misc_de_path)) return false;
837 if (!EnsurePolicy(de_policy, vendor_de_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700838 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700839 if (!read_or_create_volkey(misc_de_path, volume_uuid, &de_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700840 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700841 if (!EnsurePolicy(de_policy, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700842 }
Paul Crowley285956f2016-01-20 13:12:38 +0000843 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800844
Paul Crowley82b41ff2017-10-20 08:17:54 -0700845 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600846 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700847 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
848 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800849 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600850 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
851 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800852
Paul Crowley3b71fc52017-10-09 10:55:21 -0700853 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700854 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
855 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800856 if (!prepare_dir(vendor_ce_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700857 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000858 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
859 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700860
Eric Biggersa701c452018-10-23 13:06:55 -0700861 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700862 EncryptionPolicy ce_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700863 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800864 if (!lookup_policy(s_ce_policies, user_id, &ce_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700865 if (!EnsurePolicy(ce_policy, system_ce_path)) return false;
866 if (!EnsurePolicy(ce_policy, misc_ce_path)) return false;
867 if (!EnsurePolicy(ce_policy, vendor_ce_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700868 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700869 if (!read_or_create_volkey(misc_ce_path, volume_uuid, &ce_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700870 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700871 if (!EnsurePolicy(ce_policy, media_ce_path)) return false;
872 if (!EnsurePolicy(ce_policy, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700873 }
Paul Crowley1a965262017-10-13 13:49:50 -0700874
875 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700876 // Now that credentials have been installed, we can run restorecon
877 // over these paths
878 // NOTE: these paths need to be kept in sync with libselinux
879 android::vold::RestoreconRecursive(system_ce_path);
Nick Kralevich6a3ef482019-05-14 09:30:29 -0700880 android::vold::RestoreconRecursive(vendor_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -0700881 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700882 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800883 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700884 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800885
Paul Crowley76107cb2016-02-09 10:04:39 +0000886 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800887}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600888
Eric Biggersa701c452018-10-23 13:06:55 -0700889bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
890 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600891 << ", user " << user_id << ", flags " << flags;
892 bool res = true;
893
Paul Crowley82b41ff2017-10-20 08:17:54 -0700894 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
895
896 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -0700897 // CE_n key
898 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
899 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800900 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -0700901 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
902 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
903
904 res &= destroy_dir(media_ce_path);
905 res &= destroy_dir(user_ce_path);
906 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700907 res &= destroy_dir(system_ce_path);
908 res &= destroy_dir(misc_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800909 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700910 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700911 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700912 res &= destroy_volkey(misc_ce_path, volume_uuid);
913 }
Paul Crowley8e550662017-10-16 17:01:44 -0700914 }
915 }
916
Paul Crowley82b41ff2017-10-20 08:17:54 -0700917 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600918 // DE_sys key
919 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
920 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
921 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600922
923 // DE_n key
924 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
925 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800926 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600927 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
928
Paul Crowley8e550662017-10-16 17:01:44 -0700929 res &= destroy_dir(user_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -0700930 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600931 res &= destroy_dir(system_legacy_path);
932#if MANAGE_MISC_DIRS
933 res &= destroy_dir(misc_legacy_path);
934#endif
935 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600936 res &= destroy_dir(system_de_path);
937 res &= destroy_dir(misc_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800938 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700939 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700940 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700941 res &= destroy_volkey(misc_de_path, volume_uuid);
942 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600943 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600944 }
945
946 return res;
947}
Rubin Xu2436e272017-04-27 20:43:10 +0100948
Paul Crowleyc6433a22017-10-24 14:54:43 -0700949static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
950 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
951 if (!dirp) {
952 PLOG(ERROR) << "Unable to open directory: " + directory_path;
953 return false;
954 }
955 bool res = true;
956 for (;;) {
957 errno = 0;
958 auto const entry = readdir(dirp.get());
959 if (!entry) {
960 if (errno) {
961 PLOG(ERROR) << "Unable to read directory: " + directory_path;
962 return false;
963 }
964 break;
965 }
966 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
967 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
968 continue;
969 }
970 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
971 }
972 return res;
973}
974
Eric Biggersa701c452018-10-23 13:06:55 -0700975bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700976 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -0700977 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -0700978 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
979 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -0700980 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
981 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
982 return res;
983}