blob: 91899538c38699e36a72bf06b4f2c544ad87ba59 [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 Crowley4eac2642020-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;
Eric Biggersc4939032020-10-29 12:59:28 -0700201 if (retrieveKey(ce_key_path, auth, ce_key, false)) {
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();
Paul Crowleyf612b8b2019-10-24 22:52:02 -0700272 auto filenames_mode =
Paul Crowleyeb241a12020-02-18 10:10:08 -0800273 android::base::GetProperty("ro.crypto.volume.filenames_mode",
Eric Biggers72d07132020-08-10 10:55:56 -0700274 first_api_level > __ANDROID_API_Q__ ? "" : "aes-256-heh");
Paul Crowley77df7f22020-01-23 15:29:30 -0800275 auto options_string = android::base::GetProperty("ro.crypto.volume.options",
Paul Crowleyeb241a12020-02-18 10:10:08 -0800276 contents_mode + ":" + filenames_mode);
277 if (!ParseOptionsForApiLevel(first_api_level, options_string, options)) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800278 LOG(ERROR) << "Unable to parse volume encryption options: " << options_string;
279 return false;
280 }
Eric Biggerseb566d02020-07-06 13:46:38 -0700281 if (options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) {
282 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
283 "this flag from ro.crypto.volume.options";
284 return false;
285 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800286 return true;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700287}
288
Paul Crowleydf528a72016-03-09 09:31:37 -0800289static bool read_and_install_user_ce_key(userid_t user_id,
290 const android::vold::KeyAuthentication& auth) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800291 if (s_ce_policies.count(user_id) != 0) return true;
292 EncryptionOptions options;
293 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100294 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700295 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800296 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800297 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800298 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000299 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000300 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000301}
302
Paul Crowleydf528a72016-03-09 09:31:37 -0800303static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000304 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000305 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
306 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000307 return false;
308 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000309 return true;
310}
311
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600312static bool destroy_dir(const std::string& dir) {
313 LOG(DEBUG) << "Destroying: " << dir;
314 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
315 PLOG(ERROR) << "Failed to destroy " << dir;
316 return false;
317 }
318 return true;
319}
320
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000321// NB this assumes that there is only one thread listening for crypt commands, because
322// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000323static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800324 EncryptionOptions options;
325 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100326 KeyBuffer de_key, ce_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800327 if (!generateStorageKey(makeGen(options), &de_key)) return false;
328 if (!generateStorageKey(makeGen(options), &ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000329 if (create_ephemeral) {
330 // If the key should be created as ephemeral, don't store it.
331 s_ephemeral_users.insert(user_id);
332 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700333 auto const directory_path = get_ce_key_directory_path(user_id);
334 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
335 auto const paths = get_ce_key_paths(directory_path);
336 std::string ce_key_path;
337 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700338 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, kEmptyAuthentication,
339 ce_key))
340 return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700341 fixate_user_ce_key(directory_path, ce_key_path, paths);
342 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700343 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley14c8c072018-09-18 13:30:21 -0700344 kEmptyAuthentication, de_key))
345 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100346 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800347 EncryptionPolicy de_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800348 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800349 s_de_policies[user_id] = de_policy;
350 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800351 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800352 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000353 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000354 return true;
355}
356
Paul Crowley77df7f22020-01-23 15:29:30 -0800357static bool lookup_policy(const std::map<userid_t, EncryptionPolicy>& key_map, userid_t user_id,
358 EncryptionPolicy* policy) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000359 auto refi = key_map.find(user_id);
360 if (refi == key_map.end()) {
Eric Biggersd1034042019-04-02 10:38:15 -0700361 LOG(DEBUG) << "Cannot find key for " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000362 return false;
363 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800364 *policy = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000365 return true;
366}
367
Paul Crowleydf528a72016-03-09 09:31:37 -0800368static bool is_numeric(const char* name) {
369 for (const char* p = name; *p != '\0'; p++) {
370 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000371 }
372 return true;
373}
374
375static bool load_all_de_keys() {
Paul Crowley77df7f22020-01-23 15:29:30 -0800376 EncryptionOptions options;
377 if (!get_data_file_encryption_options(&options)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000378 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800379 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000380 if (!dirp) {
381 PLOG(ERROR) << "Unable to read de key directory";
382 return false;
383 }
384 for (;;) {
385 errno = 0;
386 auto entry = readdir(dirp.get());
387 if (!entry) {
388 if (errno) {
389 PLOG(ERROR) << "Unable to read de key directory";
390 return false;
391 }
392 break;
393 }
394 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
395 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
396 continue;
397 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600398 userid_t user_id = std::stoi(entry->d_name);
Nikita Ioffef0550af2020-02-27 18:21:55 +0000399 auto key_path = de_dir + "/" + entry->d_name;
400 KeyBuffer de_key;
Eric Biggersc4939032020-10-29 12:59:28 -0700401 if (!retrieveKey(key_path, kEmptyAuthentication, &de_key, false)) return false;
Nikita Ioffef0550af2020-02-27 18:21:55 +0000402 EncryptionPolicy de_policy;
403 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
404 auto ret = s_de_policies.insert({user_id, de_policy});
405 if (!ret.second && ret.first->second != de_policy) {
406 LOG(ERROR) << "DE policy for user" << user_id << " changed";
407 return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000408 }
Nikita Ioffef0550af2020-02-27 18:21:55 +0000409 LOG(DEBUG) << "Installed de key for user " << user_id;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000410 }
Eric Biggersa701c452018-10-23 13:06:55 -0700411 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000412 // correct policy set on them, and that no rogue ones exist.
413 return true;
414}
415
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000416// Attempt to reinstall CE keys for users that we think are unlocked.
417static bool try_reload_ce_keys() {
418 for (const auto& it : s_ce_policies) {
419 if (!android::vold::reloadKeyFromSessionKeyring(DATA_MNT_POINT, it.second)) {
420 LOG(ERROR) << "Failed to load CE key from session keyring for user " << it.first;
421 return false;
422 }
423 }
424 return true;
425}
426
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700427bool fscrypt_initialize_systemwide_keys() {
428 LOG(INFO) << "fscrypt_initialize_systemwide_keys";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800429
Paul Crowley77df7f22020-01-23 15:29:30 -0800430 EncryptionOptions options;
431 if (!get_data_file_encryption_options(&options)) return false;
432
433 KeyBuffer device_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800434 if (!retrieveOrGenerateKey(device_key_path, device_key_temp, kEmptyAuthentication,
Eric Biggersc4939032020-10-29 12:59:28 -0700435 makeGen(options), &device_key, false))
Paul Crowley77df7f22020-01-23 15:29:30 -0800436 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800437
Paul Crowley5e53ff62019-10-24 14:55:17 -0700438 EncryptionPolicy device_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800439 if (!install_storage_key(DATA_MNT_POINT, options, device_key, &device_policy)) return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700440
Paul Crowley5e53ff62019-10-24 14:55:17 -0700441 std::string options_string;
442 if (!OptionsToString(device_policy.options, &options_string)) {
443 LOG(ERROR) << "Unable to serialize options";
444 return false;
445 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800446 std::string options_filename = std::string(DATA_MNT_POINT) + fscrypt_key_mode;
Eric Biggers83a73d72019-09-30 13:06:47 -0700447 if (!android::vold::writeStringToFile(options_string, options_filename)) return false;
Paul Lawrence6e410592016-05-24 14:20:38 -0700448
Paul Crowley77df7f22020-01-23 15:29:30 -0800449 std::string ref_filename = std::string(DATA_MNT_POINT) + fscrypt_key_ref;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700450 if (!android::vold::writeStringToFile(device_policy.key_raw_ref, ref_filename)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700451 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800452
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700453 KeyBuffer per_boot_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800454 if (!generateStorageKey(makeGen(options), &per_boot_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800455 EncryptionPolicy per_boot_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800456 if (!install_storage_key(DATA_MNT_POINT, options, per_boot_key, &per_boot_policy)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700457 std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref;
Paul Crowley77df7f22020-01-23 15:29:30 -0800458 if (!android::vold::writeStringToFile(per_boot_policy.key_raw_ref, per_boot_ref_filename))
459 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700460 LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename;
461
Tommy Chiua98464f2019-03-26 14:14:19 +0800462 if (!android::vold::FsyncDirectory(device_key_dir)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000463 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800464}
465
Eric Biggersa701c452018-10-23 13:06:55 -0700466bool fscrypt_init_user0() {
467 LOG(DEBUG) << "fscrypt_init_user0";
468 if (fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000469 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
470 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
471 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700472 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000473 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000474 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700475 // TODO: switch to loading only DE_0 here once framework makes
476 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000477 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000478 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700479 // We can only safely prepare DE storage here, since CE keys are probably
480 // entangled with user credentials. The framework will always prepare CE
481 // storage once CE keys are installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700482 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700483 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000484 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700485 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700486
487 // If this is a non-FBE device that recently left an emulated mode,
488 // restore user data directories to known-good state.
Eric Biggersa701c452018-10-23 13:06:55 -0700489 if (!fscrypt_is_native() && !fscrypt_is_emulated()) {
490 fscrypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700491 }
492
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000493 // In some scenarios (e.g. userspace reboot) we might unmount userdata
494 // without doing a hard reboot. If CE keys were stored in fs keyring then
495 // they will be lost after unmount. Attempt to re-install them.
496 if (fscrypt_is_native() && android::vold::isFsKeyringSupported()) {
497 if (!try_reload_ce_keys()) return false;
498 }
499
Paul Crowley76107cb2016-02-09 10:04:39 +0000500 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000501}
502
Eric Biggersa701c452018-10-23 13:06:55 -0700503bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
504 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
505 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000506 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000507 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000508 // FIXME test for existence of key that is not loaded yet
Paul Crowley77df7f22020-01-23 15:29:30 -0800509 if (s_ce_policies.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700510 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800511 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000512 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000513 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800514 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000515 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000516 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000517 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000518 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800519}
520
Eric Biggersce368682019-04-03 15:44:06 -0700521// "Lock" all encrypted directories whose key has been removed. This is needed
Eric Biggersf3dc4202019-09-30 13:05:58 -0700522// in the case where the keys are being put in the session keyring (rather in
523// the newer filesystem-level keyrings), because removing a key from the session
524// keyring doesn't affect inodes in the kernel's inode cache whose per-file key
525// was already set up. So to remove the per-file keys and make the files
526// "appear encrypted", these inodes must be evicted.
Eric Biggersce368682019-04-03 15:44:06 -0700527//
528// To do this, sync() to clean all dirty inodes, then drop all reclaimable slab
529// objects systemwide. This is overkill, but it's the best available method
530// currently. Don't use drop_caches mode "3" because that also evicts pagecache
531// for in-use files; all files relevant here are already closed and sync'ed.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700532static void drop_caches_if_needed() {
533 if (android::vold::isFsKeyringSupported()) {
534 return;
535 }
Pavel Grafovb350ed02017-07-27 17:34:57 +0100536 sync();
Eric Biggersce368682019-04-03 15:44:06 -0700537 if (!writeStringToFile("2", "/proc/sys/vm/drop_caches")) {
Pavel Grafovb350ed02017-07-27 17:34:57 +0100538 PLOG(ERROR) << "Failed to drop caches during key eviction";
539 }
540}
541
Andrew Scull7ec25c72016-10-31 10:28:25 +0000542static bool evict_ce_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000543 bool success = true;
Paul Crowley77df7f22020-01-23 15:29:30 -0800544 EncryptionPolicy policy;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000545 // If we haven't loaded the CE key, no need to evict it.
Paul Crowley77df7f22020-01-23 15:29:30 -0800546 if (lookup_policy(s_ce_policies, user_id, &policy)) {
547 success &= android::vold::evictKey(DATA_MNT_POINT, policy);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700548 drop_caches_if_needed();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000549 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800550 s_ce_policies.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000551 return success;
552}
553
Eric Biggersa701c452018-10-23 13:06:55 -0700554bool fscrypt_destroy_user_key(userid_t user_id) {
555 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
556 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000557 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000558 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000559 bool success = true;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000560 success &= evict_ce_key(user_id);
Paul Crowley77df7f22020-01-23 15:29:30 -0800561 EncryptionPolicy de_policy;
562 success &= lookup_policy(s_de_policies, user_id, &de_policy) &&
563 android::vold::evictKey(DATA_MNT_POINT, de_policy);
564 s_de_policies.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000565 auto it = s_ephemeral_users.find(user_id);
566 if (it != s_ephemeral_users.end()) {
567 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000568 } else {
Paul Crowley14c8c072018-09-18 13:30:21 -0700569 for (auto const path : get_ce_key_paths(get_ce_key_directory_path(user_id))) {
Paul Crowleya3630362016-05-17 14:17:56 -0700570 success &= android::vold::destroyKey(path);
571 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700572 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700573 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700574 success &= android::vold::destroyKey(de_key_path);
575 } else {
576 LOG(INFO) << "Not present so not erasing: " << de_key_path;
577 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100578 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000579 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100580}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800581
Paul Crowley76107cb2016-02-09 10:04:39 +0000582static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700583 if (chmod(path.c_str(), 0000) != 0) {
584 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000585 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700586 }
587#if EMULATED_USES_SELINUX
588 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
589 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000590 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700591 }
592#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000593 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700594}
595
Paul Crowley76107cb2016-02-09 10:04:39 +0000596static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700597 if (chmod(path.c_str(), mode) != 0) {
598 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000599 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700600 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700601 }
602#if EMULATED_USES_SELINUX
603 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
604 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000605 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700606 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700607 }
608#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000609 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700610}
611
Paul Crowley3b71fc52017-10-09 10:55:21 -0700612static bool parse_hex(const std::string& hex, std::string* result) {
613 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800614 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000615 return true;
616 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800617 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800618 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000619 return false;
620 }
621 return true;
622}
623
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700624static std::optional<android::vold::KeyAuthentication> authentication_from_hex(
625 const std::string& token_hex, const std::string& secret_hex) {
626 std::string token, secret;
627 if (!parse_hex(token_hex, &token)) return std::optional<android::vold::KeyAuthentication>();
628 if (!parse_hex(secret_hex, &secret)) return std::optional<android::vold::KeyAuthentication>();
629 if (secret.empty()) {
630 return kEmptyAuthentication;
631 } else {
632 return android::vold::KeyAuthentication(token, secret);
633 }
634}
635
Paul Crowley3aa914d2017-10-09 16:35:51 -0700636static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
637 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
638}
639
Paul Crowley26a53882017-10-26 11:16:39 -0700640static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
641 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
642}
643
Paul Crowley3aa914d2017-10-09 16:35:51 -0700644static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
Paul Crowley5e53ff62019-10-24 14:55:17 -0700645 EncryptionPolicy* policy) {
Paul Crowley26a53882017-10-26 11:16:39 -0700646 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
647 std::string secdiscardable_hash;
648 if (android::vold::pathExists(secdiscardable_path)) {
649 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
650 return false;
651 } else {
652 if (fs_mkdirs(secdiscardable_path.c_str(), 0700) != 0) {
653 PLOG(ERROR) << "Creating directories for: " << secdiscardable_path;
654 return false;
655 }
656 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
657 return false;
658 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700659 auto key_path = volkey_path(misc_path, volume_uuid);
660 if (fs_mkdirs(key_path.c_str(), 0700) != 0) {
661 PLOG(ERROR) << "Creating directories for: " << key_path;
662 return false;
663 }
Paul Crowley26a53882017-10-26 11:16:39 -0700664 android::vold::KeyAuthentication auth("", secdiscardable_hash);
Eric Biggers83a73d72019-09-30 13:06:47 -0700665
Paul Crowley77df7f22020-01-23 15:29:30 -0800666 EncryptionOptions options;
667 if (!get_volume_file_encryption_options(&options)) return false;
668 KeyBuffer key;
Eric Biggersc4939032020-10-29 12:59:28 -0700669 if (!retrieveOrGenerateKey(key_path, key_path + "_tmp", auth, makeGen(options), &key, false))
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800670 return false;
671 if (!install_storage_key(BuildDataPath(volume_uuid), options, key, policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800672 return true;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700673}
674
675static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700676 auto path = volkey_path(misc_path, volume_uuid);
677 if (!android::vold::pathExists(path)) return true;
678 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700679}
680
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700681static bool fscrypt_rewrap_user_key(userid_t user_id, int serial,
682 const android::vold::KeyAuthentication& retrieve_auth,
683 const android::vold::KeyAuthentication& store_auth) {
684 if (s_ephemeral_users.count(user_id) != 0) return true;
685 auto const directory_path = get_ce_key_directory_path(user_id);
686 KeyBuffer ce_key;
687 std::string ce_key_current_path = get_ce_key_current_path(directory_path);
Eric Biggersc4939032020-10-29 12:59:28 -0700688 if (retrieveKey(ce_key_current_path, retrieve_auth, &ce_key, false)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700689 LOG(DEBUG) << "Successfully retrieved key";
690 // TODO(147732812): Remove this once Locksettingservice is fixed.
691 // Currently it calls fscrypt_clear_user_key_auth with a secret when lockscreen is
692 // changed from swipe to none or vice-versa
Eric Biggersc4939032020-10-29 12:59:28 -0700693 } else if (retrieveKey(ce_key_current_path, kEmptyAuthentication, &ce_key, false)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700694 LOG(DEBUG) << "Successfully retrieved key with empty auth";
695 } else {
696 LOG(ERROR) << "Failed to retrieve key for user " << user_id;
697 return false;
698 }
699 auto const paths = get_ce_key_paths(directory_path);
700 std::string ce_key_path;
701 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
702 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, store_auth, ce_key))
703 return false;
704 if (!android::vold::FsyncDirectory(directory_path)) return false;
705 return true;
706}
707
Eric Biggersa701c452018-10-23 13:06:55 -0700708bool fscrypt_add_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700709 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700710 LOG(DEBUG) << "fscrypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700711 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700712 if (!fscrypt_is_native()) return true;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700713 auto auth = authentication_from_hex(token_hex, secret_hex);
714 if (!auth) return false;
715 return fscrypt_rewrap_user_key(user_id, serial, kEmptyAuthentication, *auth);
716}
717
718bool fscrypt_clear_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
719 const std::string& secret_hex) {
720 LOG(DEBUG) << "fscrypt_clear_user_key_auth " << user_id << " serial=" << serial
721 << " token_present=" << (token_hex != "!");
722 if (!fscrypt_is_native()) return true;
723 auto auth = authentication_from_hex(token_hex, secret_hex);
724 if (!auth) return false;
725 return fscrypt_rewrap_user_key(user_id, serial, *auth, kEmptyAuthentication);
Paul Crowleya3630362016-05-17 14:17:56 -0700726}
727
Eric Biggersa701c452018-10-23 13:06:55 -0700728bool fscrypt_fixate_newest_user_key_auth(userid_t user_id) {
729 LOG(DEBUG) << "fscrypt_fixate_newest_user_key_auth " << user_id;
730 if (!fscrypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700731 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700732 auto const directory_path = get_ce_key_directory_path(user_id);
733 auto const paths = get_ce_key_paths(directory_path);
734 if (paths.empty()) {
735 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
736 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000737 }
Paul Crowleya3630362016-05-17 14:17:56 -0700738 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000739 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000740}
741
Jeff Sharkey47695b22016-02-01 17:02:29 -0700742// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Eric Biggersa701c452018-10-23 13:06:55 -0700743bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700744 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700745 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700746 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700747 if (fscrypt_is_native()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800748 if (s_ce_policies.count(user_id) != 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000749 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000750 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000751 }
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700752 auto auth = authentication_from_hex(token_hex, secret_hex);
753 if (!auth) return false;
754 if (!read_and_install_user_ce_key(user_id, *auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000755 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000756 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800757 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700758 } else {
759 // When in emulation mode, we just use chmod. However, we also
760 // unlock directories when not in emulation mode, to bring devices
761 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000762 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800763 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700764 !emulated_unlock(android::vold::BuildDataMediaCePath("", user_id), 0770) ||
765 !emulated_unlock(android::vold::BuildDataUserCePath("", user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700766 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000767 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700768 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800769 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000770 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800771}
772
Jeff Sharkey47695b22016-02-01 17:02:29 -0700773// TODO: rename to 'evict' for consistency
Eric Biggersa701c452018-10-23 13:06:55 -0700774bool fscrypt_lock_user_key(userid_t user_id) {
775 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
776 if (fscrypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000777 return evict_ce_key(user_id);
Eric Biggersa701c452018-10-23 13:06:55 -0700778 } else if (fscrypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800779 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000780 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800781 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700782 !emulated_lock(android::vold::BuildDataMediaCePath("", user_id)) ||
783 !emulated_lock(android::vold::BuildDataUserCePath("", user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000784 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000785 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800786 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800787 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700788
Paul Crowley76107cb2016-02-09 10:04:39 +0000789 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800790}
791
Paul Crowley82b41ff2017-10-20 08:17:54 -0700792static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
793 userid_t user_id, int flags) {
Alan Stokesbe3db7b2020-02-07 09:29:38 +0000794 // TODO(b/141677108): Remove this & make it the default behavior
795 if (android::base::GetProperty("ro.vold.level_from_user", "0") == "1") {
796 flags |= android::os::IVold::STORAGE_FLAG_LEVEL_FROM_USER;
797 }
798
Paul Crowley82b41ff2017-10-20 08:17:54 -0700799 if (0 != android::vold::ForkExecvp(
800 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
801 std::to_string(user_id), std::to_string(flags)})) {
802 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700803 return false;
804 }
805 return true;
806}
807
Eric Biggersa701c452018-10-23 13:06:55 -0700808bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700809 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700810 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800811 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700812
Paul Crowley82b41ff2017-10-20 08:17:54 -0700813 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600814 // DE_sys key
815 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
816 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
817 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600818
819 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700820 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
821 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800822 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700823 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
824
Paul Crowley3b71fc52017-10-09 10:55:21 -0700825 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700826 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600827#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700828 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700829 multiuser_get_uid(user_id, AID_EVERYBODY)))
830 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600831#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700832 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600833
Paul Crowley6b756ce2017-10-05 14:07:09 -0700834 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
835 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800836 if (!prepare_dir(vendor_de_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700837 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000838 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000839
Eric Biggersa701c452018-10-23 13:06:55 -0700840 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700841 EncryptionPolicy de_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700842 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800843 if (!lookup_policy(s_de_policies, user_id, &de_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700844 if (!EnsurePolicy(de_policy, system_de_path)) return false;
845 if (!EnsurePolicy(de_policy, misc_de_path)) return false;
846 if (!EnsurePolicy(de_policy, vendor_de_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700847 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700848 if (!read_or_create_volkey(misc_de_path, volume_uuid, &de_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700849 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700850 if (!EnsurePolicy(de_policy, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700851 }
Paul Crowley285956f2016-01-20 13:12:38 +0000852 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800853
Paul Crowley82b41ff2017-10-20 08:17:54 -0700854 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600855 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700856 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
857 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800858 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600859 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
860 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800861
Paul Crowley3b71fc52017-10-09 10:55:21 -0700862 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700863 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
864 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800865 if (!prepare_dir(vendor_ce_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700866 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000867 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +0100868
Paul Crowley76107cb2016-02-09 10:04:39 +0000869 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700870
Eric Biggersa701c452018-10-23 13:06:55 -0700871 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700872 EncryptionPolicy ce_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700873 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800874 if (!lookup_policy(s_ce_policies, user_id, &ce_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700875 if (!EnsurePolicy(ce_policy, system_ce_path)) return false;
876 if (!EnsurePolicy(ce_policy, misc_ce_path)) return false;
877 if (!EnsurePolicy(ce_policy, vendor_ce_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700878 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700879 if (!read_or_create_volkey(misc_ce_path, volume_uuid, &ce_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700880 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700881 if (!EnsurePolicy(ce_policy, media_ce_path)) return false;
882 if (!EnsurePolicy(ce_policy, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700883 }
Paul Crowley1a965262017-10-13 13:49:50 -0700884
885 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700886 // Now that credentials have been installed, we can run restorecon
887 // over these paths
888 // NOTE: these paths need to be kept in sync with libselinux
889 android::vold::RestoreconRecursive(system_ce_path);
Nick Kralevich6a3ef482019-05-14 09:30:29 -0700890 android::vold::RestoreconRecursive(vendor_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -0700891 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700892 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800893 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700894 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800895
Paul Crowley76107cb2016-02-09 10:04:39 +0000896 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800897}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600898
Eric Biggersa701c452018-10-23 13:06:55 -0700899bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
900 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600901 << ", user " << user_id << ", flags " << flags;
902 bool res = true;
903
Paul Crowley82b41ff2017-10-20 08:17:54 -0700904 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
905
906 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -0700907 // CE_n key
908 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
909 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800910 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -0700911 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
912 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
913
914 res &= destroy_dir(media_ce_path);
915 res &= destroy_dir(user_ce_path);
916 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700917 res &= destroy_dir(system_ce_path);
918 res &= destroy_dir(misc_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800919 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700920 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700921 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700922 res &= destroy_volkey(misc_ce_path, volume_uuid);
923 }
Paul Crowley8e550662017-10-16 17:01:44 -0700924 }
925 }
926
Paul Crowley82b41ff2017-10-20 08:17:54 -0700927 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600928 // DE_sys key
929 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
930 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
931 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600932
933 // DE_n key
934 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
935 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800936 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600937 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
938
Paul Crowley8e550662017-10-16 17:01:44 -0700939 res &= destroy_dir(user_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -0700940 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600941 res &= destroy_dir(system_legacy_path);
942#if MANAGE_MISC_DIRS
943 res &= destroy_dir(misc_legacy_path);
944#endif
945 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600946 res &= destroy_dir(system_de_path);
947 res &= destroy_dir(misc_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800948 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700949 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700950 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700951 res &= destroy_volkey(misc_de_path, volume_uuid);
952 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600953 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600954 }
955
956 return res;
957}
Rubin Xu2436e272017-04-27 20:43:10 +0100958
Paul Crowleyc6433a22017-10-24 14:54:43 -0700959static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
960 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
961 if (!dirp) {
962 PLOG(ERROR) << "Unable to open directory: " + directory_path;
963 return false;
964 }
965 bool res = true;
966 for (;;) {
967 errno = 0;
968 auto const entry = readdir(dirp.get());
969 if (!entry) {
970 if (errno) {
971 PLOG(ERROR) << "Unable to read directory: " + directory_path;
972 return false;
973 }
974 break;
975 }
976 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
977 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
978 continue;
979 }
980 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
981 }
982 return res;
983}
984
Eric Biggersa701c452018-10-23 13:06:55 -0700985bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700986 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -0700987 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -0700988 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
989 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -0700990 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
991 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
992 return res;
993}