blob: e21524ac90e6730a1f5dd6d5f6d2832decdf29ab [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>
Martijn Coenenaee40512020-02-18 16:29:25 +010043#include <private/android_projectid_config.h>
Paul Crowley480fcd22015-08-24 14:53:28 +010044
Paul Crowley82b41ff2017-10-20 08:17:54 -070045#include "android/os/IVold.h"
46
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070047#define EMULATED_USES_SELINUX 0
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -060048#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070049
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080050#include <cutils/fs.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070051#include <cutils/properties.h>
52
Eric Biggersa701c452018-10-23 13:06:55 -070053#include <fscrypt/fscrypt.h>
Elliott Hughesc3bda182017-05-09 17:01:04 -070054#include <keyutils.h>
Eric Biggerseb566d02020-07-06 13:46:38 -070055#include <libdm/dm.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080056
Elliott Hughes7e128fb2015-12-04 15:50:53 -080057#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080058#include <android-base/logging.h>
Paul Crowley3aa914d2017-10-09 16:35:51 -070059#include <android-base/properties.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080060#include <android-base/stringprintf.h>
Eric Biggers83a73d72019-09-30 13:06:47 -070061#include <android-base/strings.h>
Jieb6698d52018-11-12 15:26:02 +080062#include <android-base/unique_fd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000063
Eric Biggerseb566d02020-07-06 13:46:38 -070064using android::base::Basename;
65using android::base::Realpath;
66using android::base::StartsWith;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080067using android::base::StringPrintf;
Tom Cherry4c5bde22019-01-29 14:34:01 -080068using android::fs_mgr::GetEntryForMountPoint;
Paul Crowley77df7f22020-01-23 15:29:30 -080069using android::vold::BuildDataPath;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +010070using android::vold::IsFilesystemSupported;
Paul Crowley05720802016-02-08 15:55:41 +000071using android::vold::kEmptyAuthentication;
Pavel Grafove2e2d302017-08-01 17:15:53 +010072using android::vold::KeyBuffer;
Paul Crowley249c2fb2020-02-07 12:51:56 -080073using android::vold::KeyGeneration;
Paul Crowleyb3d018a2020-02-12 11:04:05 -080074using android::vold::retrieveKey;
75using android::vold::retrieveOrGenerateKey;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +010076using android::vold::SetQuotaInherit;
77using android::vold::SetQuotaProjectId;
Tommy Chiua98464f2019-03-26 14:14:19 +080078using android::vold::writeStringToFile;
Paul Crowley5e53ff62019-10-24 14:55:17 -070079using namespace android::fscrypt;
Eric Biggerseb566d02020-07-06 13:46:38 -070080using namespace android::dm;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080081
Paul Lawrence731a7a22015-04-28 22:14:15 +000082namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000083
Eric Biggersa701c452018-10-23 13:06:55 -070084const std::string device_key_dir = std::string() + DATA_MNT_POINT + fscrypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080085const std::string device_key_path = device_key_dir + "/key";
86const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080087
Paul Crowleydf528a72016-03-09 09:31:37 -080088const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
89const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley82b41ff2017-10-20 08:17:54 -070090const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs";
Paul Crowley285956f2016-01-20 13:12:38 +000091
Paul Crowley26a53882017-10-26 11:16:39 -070092const std::string systemwide_volume_key_dir =
93 std::string() + DATA_MNT_POINT + "/misc/vold/volume_keys";
94
Paul Crowleydf528a72016-03-09 09:31:37 -080095// Some users are ephemeral, don't try to wipe their keys from disk
96std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080097
Paul Crowley77df7f22020-01-23 15:29:30 -080098// Map user ids to encryption policies
99std::map<userid_t, EncryptionPolicy> s_de_policies;
100std::map<userid_t, EncryptionPolicy> s_ce_policies;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000101
Paul Crowley14c8c072018-09-18 13:30:21 -0700102} // namespace
Paul Lawrence731a7a22015-04-28 22:14:15 +0000103
Paul Crowley249c2fb2020-02-07 12:51:56 -0800104// Returns KeyGeneration suitable for key as described in EncryptionOptions
105static KeyGeneration makeGen(const EncryptionOptions& options) {
106 return KeyGeneration{FSCRYPT_MAX_KEY_SIZE, true, options.use_hw_wrapped_key};
107}
108
Eric Biggersa701c452018-10-23 13:06:55 -0700109static bool fscrypt_is_emulated() {
Paul Crowley38132a12016-02-09 09:50:32 +0000110 return property_get_bool("persist.sys.emulate_fbe", false);
111}
112
Paul Crowley3b71fc52017-10-09 10:55:21 -0700113static const char* escape_empty(const std::string& value) {
114 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000115}
116
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000117static std::string get_de_key_path(userid_t user_id) {
118 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
119}
120
Paul Crowleya3630362016-05-17 14:17:56 -0700121static std::string get_ce_key_directory_path(userid_t user_id) {
122 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
123}
124
125// Returns the keys newest first
126static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
127 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
128 if (!dirp) {
129 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
130 return std::vector<std::string>();
131 }
132 std::vector<std::string> result;
133 for (;;) {
134 errno = 0;
135 auto const entry = readdir(dirp.get());
136 if (!entry) {
137 if (errno) {
138 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
139 return std::vector<std::string>();
140 }
141 break;
142 }
143 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
144 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
145 continue;
146 }
147 result.emplace_back(directory_path + "/" + entry->d_name);
148 }
149 std::sort(result.begin(), result.end());
150 std::reverse(result.begin(), result.end());
151 return result;
152}
153
154static std::string get_ce_key_current_path(const std::string& directory_path) {
155 return directory_path + "/current";
156}
157
158static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700159 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700160 if (paths.empty()) {
161 *ce_key_path = get_ce_key_current_path(directory_path);
162 return true;
163 }
164 for (unsigned int i = 0; i < UINT_MAX; i++) {
165 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
166 if (paths[0] < candidate) {
167 *ce_key_path = candidate;
168 return true;
169 }
170 }
171 return false;
172}
173
174// Discard all keys but the named one; rename it to canonical name.
175// No point in acting on errors in this; ignore them.
Paul Crowley14c8c072018-09-18 13:30:21 -0700176static void fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700177 const std::vector<std::string>& paths) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700178 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700179 if (other_path != to_fix) {
180 android::vold::destroyKey(other_path);
181 }
182 }
183 auto const current_path = get_ce_key_current_path(directory_path);
184 if (to_fix != current_path) {
185 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
186 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
187 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
Jieb6698d52018-11-12 15:26:02 +0800188 return;
Paul Crowleya3630362016-05-17 14:17:56 -0700189 }
190 }
Paul Crowley621d9b92018-12-07 15:36:09 -0800191 android::vold::FsyncDirectory(directory_path);
Paul Crowleya3630362016-05-17 14:17:56 -0700192}
193
194static bool read_and_fixate_user_ce_key(userid_t user_id,
195 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700196 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700197 auto const directory_path = get_ce_key_directory_path(user_id);
198 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700199 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700200 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800201 if (retrieveKey(ce_key_path, auth, ce_key)) {
Paul Crowleya3630362016-05-17 14:17:56 -0700202 LOG(DEBUG) << "Successfully retrieved key";
203 fixate_user_ce_key(directory_path, ce_key_path, paths);
204 return true;
205 }
206 }
207 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
208 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100209}
210
Eric Biggerseb566d02020-07-06 13:46:38 -0700211static bool IsEmmcStorage(const std::string& blk_device) {
212 // Handle symlinks.
213 std::string real_path;
214 if (!Realpath(blk_device, &real_path)) {
215 real_path = blk_device;
216 }
217
218 // Handle logical volumes.
219 auto& dm = DeviceMapper::Instance();
220 for (;;) {
221 auto parent = dm.GetParentBlockDeviceByPath(real_path);
222 if (!parent.has_value()) break;
223 real_path = *parent;
224 }
225
226 // Now we should have the "real" block device.
227 LOG(DEBUG) << "IsEmmcStorage(): blk_device = " << blk_device << ", real_path=" << real_path;
228 return StartsWith(Basename(real_path), "mmcblk");
229}
230
Eric Biggers83a73d72019-09-30 13:06:47 -0700231// Retrieve the options to use for encryption policies on the /data filesystem.
Paul Crowley77df7f22020-01-23 15:29:30 -0800232static bool get_data_file_encryption_options(EncryptionOptions* options) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700233 auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT);
234 if (entry == nullptr) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800235 LOG(ERROR) << "No mount point entry for " << DATA_MNT_POINT;
236 return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700237 }
Paul Crowleya50f6c32019-10-24 23:21:44 -0700238 if (!ParseOptions(entry->encryption_options, options)) {
239 LOG(ERROR) << "Unable to parse encryption options for " << DATA_MNT_POINT ": "
240 << entry->encryption_options;
Paul Crowley77df7f22020-01-23 15:29:30 -0800241 return false;
Paul Crowleya50f6c32019-10-24 23:21:44 -0700242 }
Eric Biggerseb566d02020-07-06 13:46:38 -0700243 if ((options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) &&
244 !IsEmmcStorage(entry->blk_device)) {
245 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
246 "this flag from the device's fstab";
247 return false;
248 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800249 return true;
Eric Biggers83a73d72019-09-30 13:06:47 -0700250}
251
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800252static bool install_storage_key(const std::string& mountpoint, const EncryptionOptions& options,
253 const KeyBuffer& key, EncryptionPolicy* policy) {
254 KeyBuffer ephemeral_wrapped_key;
255 if (options.use_hw_wrapped_key) {
256 if (!exportWrappedStorageKey(key, &ephemeral_wrapped_key)) {
257 LOG(ERROR) << "Failed to get ephemeral wrapped key";
258 return false;
259 }
260 }
261 return installKey(mountpoint, options, options.use_hw_wrapped_key ? ephemeral_wrapped_key : key,
262 policy);
263}
264
Eric Biggers83a73d72019-09-30 13:06:47 -0700265// Retrieve the options to use for encryption policies on adoptable storage.
Paul Crowley5e53ff62019-10-24 14:55:17 -0700266static bool get_volume_file_encryption_options(EncryptionOptions* options) {
Paul Crowleyeb241a12020-02-18 10:10:08 -0800267 // If we give the empty string, libfscrypt will use the default (currently XTS)
268 auto contents_mode = android::base::GetProperty("ro.crypto.volume.contents_mode", "");
269 // HEH as default was always a mistake. Use the libfscrypt default (CTS)
270 // for devices launching on versions above Android 10.
271 auto first_api_level = GetFirstApiLevel();
272 constexpr uint64_t pre_gki_level = 29;
Paul Crowleyf612b8b2019-10-24 22:52:02 -0700273 auto filenames_mode =
Paul Crowleyeb241a12020-02-18 10:10:08 -0800274 android::base::GetProperty("ro.crypto.volume.filenames_mode",
275 first_api_level > pre_gki_level ? "" : "aes-256-heh");
Paul Crowley77df7f22020-01-23 15:29:30 -0800276 auto options_string = android::base::GetProperty("ro.crypto.volume.options",
Paul Crowleyeb241a12020-02-18 10:10:08 -0800277 contents_mode + ":" + filenames_mode);
278 if (!ParseOptionsForApiLevel(first_api_level, options_string, options)) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800279 LOG(ERROR) << "Unable to parse volume encryption options: " << options_string;
280 return false;
281 }
Eric Biggerseb566d02020-07-06 13:46:38 -0700282 if (options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) {
283 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
284 "this flag from ro.crypto.volume.options";
285 return false;
286 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800287 return true;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700288}
289
Paul Crowleydf528a72016-03-09 09:31:37 -0800290static bool read_and_install_user_ce_key(userid_t user_id,
291 const android::vold::KeyAuthentication& auth) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800292 if (s_ce_policies.count(user_id) != 0) return true;
293 EncryptionOptions options;
294 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100295 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700296 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800297 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800298 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800299 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000300 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000301 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000302}
303
Paul Crowleydf528a72016-03-09 09:31:37 -0800304static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000305 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000306 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
307 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000308 return false;
309 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000310 return true;
311}
312
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600313static bool destroy_dir(const std::string& dir) {
314 LOG(DEBUG) << "Destroying: " << dir;
315 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
316 PLOG(ERROR) << "Failed to destroy " << dir;
317 return false;
318 }
319 return true;
320}
321
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000322// NB this assumes that there is only one thread listening for crypt commands, because
323// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000324static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800325 EncryptionOptions options;
326 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100327 KeyBuffer de_key, ce_key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800328 if (!generateStorageKey(makeGen(options), &de_key)) return false;
329 if (!generateStorageKey(makeGen(options), &ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000330 if (create_ephemeral) {
331 // If the key should be created as ephemeral, don't store it.
332 s_ephemeral_users.insert(user_id);
333 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700334 auto const directory_path = get_ce_key_directory_path(user_id);
335 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
336 auto const paths = get_ce_key_paths(directory_path);
337 std::string ce_key_path;
338 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700339 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, kEmptyAuthentication,
340 ce_key))
341 return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700342 fixate_user_ce_key(directory_path, ce_key_path, paths);
343 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700344 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley14c8c072018-09-18 13:30:21 -0700345 kEmptyAuthentication, de_key))
346 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100347 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800348 EncryptionPolicy de_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800349 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800350 s_de_policies[user_id] = de_policy;
351 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800352 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800353 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000354 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000355 return true;
356}
357
Paul Crowley77df7f22020-01-23 15:29:30 -0800358static bool lookup_policy(const std::map<userid_t, EncryptionPolicy>& key_map, userid_t user_id,
359 EncryptionPolicy* policy) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000360 auto refi = key_map.find(user_id);
361 if (refi == key_map.end()) {
Eric Biggersd1034042019-04-02 10:38:15 -0700362 LOG(DEBUG) << "Cannot find key for " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000363 return false;
364 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800365 *policy = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000366 return true;
367}
368
Paul Crowleydf528a72016-03-09 09:31:37 -0800369static bool is_numeric(const char* name) {
370 for (const char* p = name; *p != '\0'; p++) {
371 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000372 }
373 return true;
374}
375
376static bool load_all_de_keys() {
Paul Crowley77df7f22020-01-23 15:29:30 -0800377 EncryptionOptions options;
378 if (!get_data_file_encryption_options(&options)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000379 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800380 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000381 if (!dirp) {
382 PLOG(ERROR) << "Unable to read de key directory";
383 return false;
384 }
385 for (;;) {
386 errno = 0;
387 auto entry = readdir(dirp.get());
388 if (!entry) {
389 if (errno) {
390 PLOG(ERROR) << "Unable to read de key directory";
391 return false;
392 }
393 break;
394 }
395 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
396 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
397 continue;
398 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600399 userid_t user_id = std::stoi(entry->d_name);
Nikita Ioffe1eaea5a2020-02-27 18:21:55 +0000400 auto key_path = de_dir + "/" + entry->d_name;
401 KeyBuffer de_key;
402 if (!retrieveKey(key_path, kEmptyAuthentication, &de_key)) return false;
403 EncryptionPolicy de_policy;
404 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
405 auto ret = s_de_policies.insert({user_id, de_policy});
406 if (!ret.second && ret.first->second != de_policy) {
407 LOG(ERROR) << "DE policy for user" << user_id << " changed";
408 return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000409 }
Nikita Ioffe1eaea5a2020-02-27 18:21:55 +0000410 LOG(DEBUG) << "Installed de key for user " << user_id;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000411 }
Eric Biggersa701c452018-10-23 13:06:55 -0700412 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000413 // correct policy set on them, and that no rogue ones exist.
414 return true;
415}
416
Nikita Ioffe1ee35cf2020-02-28 19:50:31 +0000417// Attempt to reinstall CE keys for users that we think are unlocked.
418static bool try_reload_ce_keys() {
419 for (const auto& it : s_ce_policies) {
420 if (!android::vold::reloadKeyFromSessionKeyring(DATA_MNT_POINT, it.second)) {
421 LOG(ERROR) << "Failed to load CE key from session keyring for user " << it.first;
422 return false;
423 }
424 }
425 return true;
426}
427
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700428bool fscrypt_initialize_systemwide_keys() {
429 LOG(INFO) << "fscrypt_initialize_systemwide_keys";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800430
Paul Crowley77df7f22020-01-23 15:29:30 -0800431 EncryptionOptions options;
432 if (!get_data_file_encryption_options(&options)) return false;
433
434 KeyBuffer device_key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800435 if (!retrieveOrGenerateKey(device_key_path, device_key_temp, kEmptyAuthentication,
436 makeGen(options), &device_key))
Paul Crowley77df7f22020-01-23 15:29:30 -0800437 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800438
Paul Crowley5e53ff62019-10-24 14:55:17 -0700439 EncryptionPolicy device_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800440 if (!install_storage_key(DATA_MNT_POINT, options, device_key, &device_policy)) return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700441
Paul Crowley5e53ff62019-10-24 14:55:17 -0700442 std::string options_string;
443 if (!OptionsToString(device_policy.options, &options_string)) {
444 LOG(ERROR) << "Unable to serialize options";
445 return false;
446 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800447 std::string options_filename = std::string(DATA_MNT_POINT) + fscrypt_key_mode;
Eric Biggers83a73d72019-09-30 13:06:47 -0700448 if (!android::vold::writeStringToFile(options_string, options_filename)) return false;
Paul Lawrence6e410592016-05-24 14:20:38 -0700449
Paul Crowley77df7f22020-01-23 15:29:30 -0800450 std::string ref_filename = std::string(DATA_MNT_POINT) + fscrypt_key_ref;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700451 if (!android::vold::writeStringToFile(device_policy.key_raw_ref, ref_filename)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700452 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800453
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700454 KeyBuffer per_boot_key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800455 if (!generateStorageKey(makeGen(options), &per_boot_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800456 EncryptionPolicy per_boot_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800457 if (!install_storage_key(DATA_MNT_POINT, options, per_boot_key, &per_boot_policy)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700458 std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref;
Paul Crowley77df7f22020-01-23 15:29:30 -0800459 if (!android::vold::writeStringToFile(per_boot_policy.key_raw_ref, per_boot_ref_filename))
460 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700461 LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename;
462
Tommy Chiua98464f2019-03-26 14:14:19 +0800463 if (!android::vold::FsyncDirectory(device_key_dir)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000464 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800465}
466
Eric Biggersa701c452018-10-23 13:06:55 -0700467bool fscrypt_init_user0() {
468 LOG(DEBUG) << "fscrypt_init_user0";
469 if (fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000470 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
471 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
472 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700473 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000474 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000475 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700476 // TODO: switch to loading only DE_0 here once framework makes
477 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000478 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000479 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700480 // We can only safely prepare DE storage here, since CE keys are probably
481 // entangled with user credentials. The framework will always prepare CE
482 // storage once CE keys are installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700483 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700484 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000485 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700486 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700487
488 // If this is a non-FBE device that recently left an emulated mode,
489 // restore user data directories to known-good state.
Eric Biggersa701c452018-10-23 13:06:55 -0700490 if (!fscrypt_is_native() && !fscrypt_is_emulated()) {
491 fscrypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700492 }
493
Nikita Ioffe1ee35cf2020-02-28 19:50:31 +0000494 // In some scenarios (e.g. userspace reboot) we might unmount userdata
495 // without doing a hard reboot. If CE keys were stored in fs keyring then
496 // they will be lost after unmount. Attempt to re-install them.
497 if (fscrypt_is_native() && android::vold::isFsKeyringSupported()) {
498 if (!try_reload_ce_keys()) return false;
499 }
500
Paul Crowley76107cb2016-02-09 10:04:39 +0000501 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000502}
503
Eric Biggersa701c452018-10-23 13:06:55 -0700504bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
505 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
506 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000507 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000508 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000509 // FIXME test for existence of key that is not loaded yet
Paul Crowley77df7f22020-01-23 15:29:30 -0800510 if (s_ce_policies.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700511 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800512 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000513 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000514 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800515 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000516 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000517 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000518 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000519 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800520}
521
Eric Biggersce368682019-04-03 15:44:06 -0700522// "Lock" all encrypted directories whose key has been removed. This is needed
Eric Biggersf3dc4202019-09-30 13:05:58 -0700523// in the case where the keys are being put in the session keyring (rather in
524// the newer filesystem-level keyrings), because removing a key from the session
525// keyring doesn't affect inodes in the kernel's inode cache whose per-file key
526// was already set up. So to remove the per-file keys and make the files
527// "appear encrypted", these inodes must be evicted.
Eric Biggersce368682019-04-03 15:44:06 -0700528//
529// To do this, sync() to clean all dirty inodes, then drop all reclaimable slab
530// objects systemwide. This is overkill, but it's the best available method
531// currently. Don't use drop_caches mode "3" because that also evicts pagecache
532// for in-use files; all files relevant here are already closed and sync'ed.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700533static void drop_caches_if_needed() {
534 if (android::vold::isFsKeyringSupported()) {
535 return;
536 }
Pavel Grafovb350ed02017-07-27 17:34:57 +0100537 sync();
Eric Biggersce368682019-04-03 15:44:06 -0700538 if (!writeStringToFile("2", "/proc/sys/vm/drop_caches")) {
Pavel Grafovb350ed02017-07-27 17:34:57 +0100539 PLOG(ERROR) << "Failed to drop caches during key eviction";
540 }
541}
542
Andrew Scull7ec25c72016-10-31 10:28:25 +0000543static bool evict_ce_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000544 bool success = true;
Paul Crowley77df7f22020-01-23 15:29:30 -0800545 EncryptionPolicy policy;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000546 // If we haven't loaded the CE key, no need to evict it.
Paul Crowley77df7f22020-01-23 15:29:30 -0800547 if (lookup_policy(s_ce_policies, user_id, &policy)) {
548 success &= android::vold::evictKey(DATA_MNT_POINT, policy);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700549 drop_caches_if_needed();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000550 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800551 s_ce_policies.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000552 return success;
553}
554
Eric Biggersa701c452018-10-23 13:06:55 -0700555bool fscrypt_destroy_user_key(userid_t user_id) {
556 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
557 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000558 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000559 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000560 bool success = true;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000561 success &= evict_ce_key(user_id);
Paul Crowley77df7f22020-01-23 15:29:30 -0800562 EncryptionPolicy de_policy;
563 success &= lookup_policy(s_de_policies, user_id, &de_policy) &&
564 android::vold::evictKey(DATA_MNT_POINT, de_policy);
565 s_de_policies.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000566 auto it = s_ephemeral_users.find(user_id);
567 if (it != s_ephemeral_users.end()) {
568 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000569 } else {
Paul Crowley14c8c072018-09-18 13:30:21 -0700570 for (auto const path : get_ce_key_paths(get_ce_key_directory_path(user_id))) {
Paul Crowleya3630362016-05-17 14:17:56 -0700571 success &= android::vold::destroyKey(path);
572 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700573 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700574 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700575 success &= android::vold::destroyKey(de_key_path);
576 } else {
577 LOG(INFO) << "Not present so not erasing: " << de_key_path;
578 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100579 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000580 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100581}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800582
Paul Crowley76107cb2016-02-09 10:04:39 +0000583static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700584 if (chmod(path.c_str(), 0000) != 0) {
585 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000586 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700587 }
588#if EMULATED_USES_SELINUX
589 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
590 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000591 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700592 }
593#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000594 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700595}
596
Paul Crowley76107cb2016-02-09 10:04:39 +0000597static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700598 if (chmod(path.c_str(), mode) != 0) {
599 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000600 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700601 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700602 }
603#if EMULATED_USES_SELINUX
604 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
605 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000606 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700607 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700608 }
609#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000610 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700611}
612
Paul Crowley3b71fc52017-10-09 10:55:21 -0700613static bool parse_hex(const std::string& hex, std::string* result) {
614 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800615 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000616 return true;
617 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800618 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800619 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000620 return false;
621 }
622 return true;
623}
624
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700625static std::optional<android::vold::KeyAuthentication> authentication_from_hex(
626 const std::string& token_hex, const std::string& secret_hex) {
627 std::string token, secret;
628 if (!parse_hex(token_hex, &token)) return std::optional<android::vold::KeyAuthentication>();
629 if (!parse_hex(secret_hex, &secret)) return std::optional<android::vold::KeyAuthentication>();
630 if (secret.empty()) {
631 return kEmptyAuthentication;
632 } else {
633 return android::vold::KeyAuthentication(token, secret);
634 }
635}
636
Paul Crowley3aa914d2017-10-09 16:35:51 -0700637static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
638 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
639}
640
Paul Crowley26a53882017-10-26 11:16:39 -0700641static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
642 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
643}
644
Paul Crowley3aa914d2017-10-09 16:35:51 -0700645static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
Paul Crowley5e53ff62019-10-24 14:55:17 -0700646 EncryptionPolicy* policy) {
Paul Crowley26a53882017-10-26 11:16:39 -0700647 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
648 std::string secdiscardable_hash;
649 if (android::vold::pathExists(secdiscardable_path)) {
650 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
651 return false;
652 } else {
653 if (fs_mkdirs(secdiscardable_path.c_str(), 0700) != 0) {
654 PLOG(ERROR) << "Creating directories for: " << secdiscardable_path;
655 return false;
656 }
657 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
658 return false;
659 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700660 auto key_path = volkey_path(misc_path, volume_uuid);
661 if (fs_mkdirs(key_path.c_str(), 0700) != 0) {
662 PLOG(ERROR) << "Creating directories for: " << key_path;
663 return false;
664 }
Paul Crowley26a53882017-10-26 11:16:39 -0700665 android::vold::KeyAuthentication auth("", secdiscardable_hash);
Eric Biggers83a73d72019-09-30 13:06:47 -0700666
Paul Crowley77df7f22020-01-23 15:29:30 -0800667 EncryptionOptions options;
668 if (!get_volume_file_encryption_options(&options)) return false;
669 KeyBuffer key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800670 if (!retrieveOrGenerateKey(key_path, key_path + "_tmp", auth, makeGen(options), &key))
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800671 return false;
672 if (!install_storage_key(BuildDataPath(volume_uuid), options, key, policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800673 return true;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700674}
675
676static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700677 auto path = volkey_path(misc_path, volume_uuid);
678 if (!android::vold::pathExists(path)) return true;
679 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700680}
681
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700682static bool fscrypt_rewrap_user_key(userid_t user_id, int serial,
683 const android::vold::KeyAuthentication& retrieve_auth,
684 const android::vold::KeyAuthentication& store_auth) {
685 if (s_ephemeral_users.count(user_id) != 0) return true;
686 auto const directory_path = get_ce_key_directory_path(user_id);
687 KeyBuffer ce_key;
688 std::string ce_key_current_path = get_ce_key_current_path(directory_path);
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800689 if (retrieveKey(ce_key_current_path, retrieve_auth, &ce_key)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700690 LOG(DEBUG) << "Successfully retrieved key";
691 // TODO(147732812): Remove this once Locksettingservice is fixed.
692 // Currently it calls fscrypt_clear_user_key_auth with a secret when lockscreen is
693 // changed from swipe to none or vice-versa
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800694 } else if (retrieveKey(ce_key_current_path, kEmptyAuthentication, &ce_key)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700695 LOG(DEBUG) << "Successfully retrieved key with empty auth";
696 } else {
697 LOG(ERROR) << "Failed to retrieve key for user " << user_id;
698 return false;
699 }
700 auto const paths = get_ce_key_paths(directory_path);
701 std::string ce_key_path;
702 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
703 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, store_auth, ce_key))
704 return false;
705 if (!android::vold::FsyncDirectory(directory_path)) return false;
706 return true;
707}
708
Eric Biggersa701c452018-10-23 13:06:55 -0700709bool fscrypt_add_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700710 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700711 LOG(DEBUG) << "fscrypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700712 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700713 if (!fscrypt_is_native()) return true;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700714 auto auth = authentication_from_hex(token_hex, secret_hex);
715 if (!auth) return false;
716 return fscrypt_rewrap_user_key(user_id, serial, kEmptyAuthentication, *auth);
717}
718
719bool fscrypt_clear_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
720 const std::string& secret_hex) {
721 LOG(DEBUG) << "fscrypt_clear_user_key_auth " << user_id << " serial=" << serial
722 << " token_present=" << (token_hex != "!");
723 if (!fscrypt_is_native()) return true;
724 auto auth = authentication_from_hex(token_hex, secret_hex);
725 if (!auth) return false;
726 return fscrypt_rewrap_user_key(user_id, serial, *auth, kEmptyAuthentication);
Paul Crowleya3630362016-05-17 14:17:56 -0700727}
728
Eric Biggersa701c452018-10-23 13:06:55 -0700729bool fscrypt_fixate_newest_user_key_auth(userid_t user_id) {
730 LOG(DEBUG) << "fscrypt_fixate_newest_user_key_auth " << user_id;
731 if (!fscrypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700732 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700733 auto const directory_path = get_ce_key_directory_path(user_id);
734 auto const paths = get_ce_key_paths(directory_path);
735 if (paths.empty()) {
736 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
737 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000738 }
Paul Crowleya3630362016-05-17 14:17:56 -0700739 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000740 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000741}
742
Jeff Sharkey47695b22016-02-01 17:02:29 -0700743// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Eric Biggersa701c452018-10-23 13:06:55 -0700744bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700745 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700746 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700747 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700748 if (fscrypt_is_native()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800749 if (s_ce_policies.count(user_id) != 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000750 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000751 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000752 }
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700753 auto auth = authentication_from_hex(token_hex, secret_hex);
754 if (!auth) return false;
755 if (!read_and_install_user_ce_key(user_id, *auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000756 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000757 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800758 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700759 } else {
760 // When in emulation mode, we just use chmod. However, we also
761 // unlock directories when not in emulation mode, to bring devices
762 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000763 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800764 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700765 !emulated_unlock(android::vold::BuildDataMediaCePath("", user_id), 0770) ||
766 !emulated_unlock(android::vold::BuildDataUserCePath("", user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700767 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000768 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700769 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800770 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000771 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800772}
773
Jeff Sharkey47695b22016-02-01 17:02:29 -0700774// TODO: rename to 'evict' for consistency
Eric Biggersa701c452018-10-23 13:06:55 -0700775bool fscrypt_lock_user_key(userid_t user_id) {
776 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
777 if (fscrypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000778 return evict_ce_key(user_id);
Eric Biggersa701c452018-10-23 13:06:55 -0700779 } else if (fscrypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800780 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000781 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800782 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700783 !emulated_lock(android::vold::BuildDataMediaCePath("", user_id)) ||
784 !emulated_lock(android::vold::BuildDataUserCePath("", user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000785 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000786 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800787 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800788 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700789
Paul Crowley76107cb2016-02-09 10:04:39 +0000790 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800791}
792
Paul Crowley82b41ff2017-10-20 08:17:54 -0700793static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
794 userid_t user_id, int flags) {
795 if (0 != android::vold::ForkExecvp(
796 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
797 std::to_string(user_id), std::to_string(flags)})) {
798 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700799 return false;
800 }
801 return true;
802}
803
Eric Biggersa701c452018-10-23 13:06:55 -0700804bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700805 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700806 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800807 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700808
Paul Crowley82b41ff2017-10-20 08:17:54 -0700809 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600810 // DE_sys key
811 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
812 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
813 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600814
815 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700816 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
817 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800818 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700819 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
820
Paul Crowley3b71fc52017-10-09 10:55:21 -0700821 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700822 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600823#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700824 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700825 multiuser_get_uid(user_id, AID_EVERYBODY)))
826 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600827#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700828 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600829
Paul Crowley6b756ce2017-10-05 14:07:09 -0700830 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
831 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800832 if (!prepare_dir(vendor_de_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700833 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000834 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000835
Eric Biggersa701c452018-10-23 13:06:55 -0700836 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700837 EncryptionPolicy de_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700838 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800839 if (!lookup_policy(s_de_policies, user_id, &de_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700840 if (!EnsurePolicy(de_policy, system_de_path)) return false;
841 if (!EnsurePolicy(de_policy, misc_de_path)) return false;
842 if (!EnsurePolicy(de_policy, vendor_de_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700843 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700844 if (!read_or_create_volkey(misc_de_path, volume_uuid, &de_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700845 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700846 if (!EnsurePolicy(de_policy, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700847 }
Paul Crowley285956f2016-01-20 13:12:38 +0000848 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800849
Paul Crowley82b41ff2017-10-20 08:17:54 -0700850 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600851 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700852 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
853 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800854 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600855 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
856 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800857
Paul Crowley3b71fc52017-10-09 10:55:21 -0700858 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700859 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
860 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800861 if (!prepare_dir(vendor_ce_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700862 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000863 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +0100864
Paul Crowley76107cb2016-02-09 10:04:39 +0000865 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700866
Eric Biggersa701c452018-10-23 13:06:55 -0700867 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700868 EncryptionPolicy ce_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700869 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800870 if (!lookup_policy(s_ce_policies, user_id, &ce_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700871 if (!EnsurePolicy(ce_policy, system_ce_path)) return false;
872 if (!EnsurePolicy(ce_policy, misc_ce_path)) return false;
873 if (!EnsurePolicy(ce_policy, vendor_ce_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700874 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700875 if (!read_or_create_volkey(misc_ce_path, volume_uuid, &ce_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700876 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700877 if (!EnsurePolicy(ce_policy, media_ce_path)) return false;
878 if (!EnsurePolicy(ce_policy, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700879 }
Paul Crowley1a965262017-10-13 13:49:50 -0700880
881 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700882 // Now that credentials have been installed, we can run restorecon
883 // over these paths
884 // NOTE: these paths need to be kept in sync with libselinux
885 android::vold::RestoreconRecursive(system_ce_path);
Nick Kralevich6a3ef482019-05-14 09:30:29 -0700886 android::vold::RestoreconRecursive(vendor_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -0700887 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700888 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800889 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700890 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800891
Paul Crowley76107cb2016-02-09 10:04:39 +0000892 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800893}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600894
Eric Biggersa701c452018-10-23 13:06:55 -0700895bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
896 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600897 << ", user " << user_id << ", flags " << flags;
898 bool res = true;
899
Paul Crowley82b41ff2017-10-20 08:17:54 -0700900 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
901
902 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -0700903 // CE_n key
904 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
905 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800906 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -0700907 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
908 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
909
910 res &= destroy_dir(media_ce_path);
911 res &= destroy_dir(user_ce_path);
912 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700913 res &= destroy_dir(system_ce_path);
914 res &= destroy_dir(misc_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800915 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700916 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700917 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700918 res &= destroy_volkey(misc_ce_path, volume_uuid);
919 }
Paul Crowley8e550662017-10-16 17:01:44 -0700920 }
921 }
922
Paul Crowley82b41ff2017-10-20 08:17:54 -0700923 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600924 // DE_sys key
925 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
926 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
927 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600928
929 // DE_n key
930 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
931 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800932 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600933 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
934
Paul Crowley8e550662017-10-16 17:01:44 -0700935 res &= destroy_dir(user_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -0700936 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600937 res &= destroy_dir(system_legacy_path);
938#if MANAGE_MISC_DIRS
939 res &= destroy_dir(misc_legacy_path);
940#endif
941 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600942 res &= destroy_dir(system_de_path);
943 res &= destroy_dir(misc_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800944 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700945 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700946 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700947 res &= destroy_volkey(misc_de_path, volume_uuid);
948 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600949 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600950 }
951
952 return res;
953}
Rubin Xu2436e272017-04-27 20:43:10 +0100954
Paul Crowleyc6433a22017-10-24 14:54:43 -0700955static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
956 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
957 if (!dirp) {
958 PLOG(ERROR) << "Unable to open directory: " + directory_path;
959 return false;
960 }
961 bool res = true;
962 for (;;) {
963 errno = 0;
964 auto const entry = readdir(dirp.get());
965 if (!entry) {
966 if (errno) {
967 PLOG(ERROR) << "Unable to read directory: " + directory_path;
968 return false;
969 }
970 break;
971 }
972 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
973 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
974 continue;
975 }
976 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
977 }
978 return res;
979}
980
Eric Biggersa701c452018-10-23 13:06:55 -0700981bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700982 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -0700983 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -0700984 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
985 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -0700986 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
987 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
988 return res;
989}