blob: f871a32cebdae66d06d26622e195e58e2c6b9c64 [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>
Paul Crowleydf528a72016-03-09 09:31:37 -080036#include <sys/mount.h>
37#include <sys/stat.h>
38#include <sys/types.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070039#include <unistd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000040
Paul Crowley480fcd22015-08-24 14:53:28 +010041#include <private/android_filesystem_config.h>
Martijn Coenenaee40512020-02-18 16:29:25 +010042#include <private/android_projectid_config.h>
Paul Crowley480fcd22015-08-24 14:53:28 +010043
Paul Crowley82b41ff2017-10-20 08:17:54 -070044#include "android/os/IVold.h"
45
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -060046#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070047
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080048#include <cutils/fs.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070049#include <cutils/properties.h>
50
Eric Biggersa701c452018-10-23 13:06:55 -070051#include <fscrypt/fscrypt.h>
Elliott Hughesc3bda182017-05-09 17:01:04 -070052#include <keyutils.h>
Eric Biggerseb566d02020-07-06 13:46:38 -070053#include <libdm/dm.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080054
Elliott Hughes7e128fb2015-12-04 15:50:53 -080055#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080056#include <android-base/logging.h>
Paul Crowley3aa914d2017-10-09 16:35:51 -070057#include <android-base/properties.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080058#include <android-base/stringprintf.h>
Eric Biggers83a73d72019-09-30 13:06:47 -070059#include <android-base/strings.h>
Jieb6698d52018-11-12 15:26:02 +080060#include <android-base/unique_fd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000061
Eric Biggerseb566d02020-07-06 13:46:38 -070062using android::base::Basename;
63using android::base::Realpath;
64using android::base::StartsWith;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080065using android::base::StringPrintf;
Tom Cherry4c5bde22019-01-29 14:34:01 -080066using android::fs_mgr::GetEntryForMountPoint;
Paul Crowley77df7f22020-01-23 15:29:30 -080067using android::vold::BuildDataPath;
Eric Biggers6b840392020-11-02 15:11:06 -080068using android::vold::IsDotOrDotDot;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +010069using android::vold::IsFilesystemSupported;
Paul Crowley05720802016-02-08 15:55:41 +000070using android::vold::kEmptyAuthentication;
Pavel Grafove2e2d302017-08-01 17:15:53 +010071using android::vold::KeyBuffer;
Paul Crowley249c2fb2020-02-07 12:51:56 -080072using android::vold::KeyGeneration;
Paul Crowley4eac2642020-02-12 11:04:05 -080073using android::vold::retrieveKey;
74using android::vold::retrieveOrGenerateKey;
Martijn Coenen5adf92a2021-02-01 07:57:02 +000075using android::vold::SetDefaultAcl;
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
Eric Biggers9ea53442022-05-11 05:33:25 +000095const std::string data_data_dir = std::string() + DATA_MNT_POINT + "/data";
96const std::string data_user_0_dir = std::string() + DATA_MNT_POINT + "/user/0";
97const std::string media_obb_dir = std::string() + DATA_MNT_POINT + "/media/obb";
98
Paul Crowleydf528a72016-03-09 09:31:37 -080099// Some users are ephemeral, don't try to wipe their keys from disk
100std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800101
Eric Biggers9ea53442022-05-11 05:33:25 +0000102// The system DE encryption policy
103EncryptionPolicy s_device_policy;
104
Paul Crowley77df7f22020-01-23 15:29:30 -0800105// Map user ids to encryption policies
106std::map<userid_t, EncryptionPolicy> s_de_policies;
107std::map<userid_t, EncryptionPolicy> s_ce_policies;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000108
Paul Crowley14c8c072018-09-18 13:30:21 -0700109} // namespace
Paul Lawrence731a7a22015-04-28 22:14:15 +0000110
Paul Crowley249c2fb2020-02-07 12:51:56 -0800111// Returns KeyGeneration suitable for key as described in EncryptionOptions
112static KeyGeneration makeGen(const EncryptionOptions& options) {
113 return KeyGeneration{FSCRYPT_MAX_KEY_SIZE, true, options.use_hw_wrapped_key};
114}
115
Paul Crowley3b71fc52017-10-09 10:55:21 -0700116static const char* escape_empty(const std::string& value) {
117 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000118}
119
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000120static std::string get_de_key_path(userid_t user_id) {
121 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
122}
123
Paul Crowleya3630362016-05-17 14:17:56 -0700124static std::string get_ce_key_directory_path(userid_t user_id) {
125 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
126}
127
128// Returns the keys newest first
129static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
130 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
131 if (!dirp) {
132 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
133 return std::vector<std::string>();
134 }
135 std::vector<std::string> result;
136 for (;;) {
137 errno = 0;
138 auto const entry = readdir(dirp.get());
139 if (!entry) {
140 if (errno) {
141 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
142 return std::vector<std::string>();
143 }
144 break;
145 }
Eric Biggers6b840392020-11-02 15:11:06 -0800146 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleya3630362016-05-17 14:17:56 -0700147 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
148 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
149 continue;
150 }
151 result.emplace_back(directory_path + "/" + entry->d_name);
152 }
153 std::sort(result.begin(), result.end());
154 std::reverse(result.begin(), result.end());
155 return result;
156}
157
158static std::string get_ce_key_current_path(const std::string& directory_path) {
159 return directory_path + "/current";
160}
161
162static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700163 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700164 if (paths.empty()) {
165 *ce_key_path = get_ce_key_current_path(directory_path);
166 return true;
167 }
168 for (unsigned int i = 0; i < UINT_MAX; i++) {
169 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
170 if (paths[0] < candidate) {
171 *ce_key_path = candidate;
172 return true;
173 }
174 }
175 return false;
176}
177
178// Discard all keys but the named one; rename it to canonical name.
179// No point in acting on errors in this; ignore them.
Paul Crowley14c8c072018-09-18 13:30:21 -0700180static void fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700181 const std::vector<std::string>& paths) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700182 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700183 if (other_path != to_fix) {
184 android::vold::destroyKey(other_path);
185 }
186 }
187 auto const current_path = get_ce_key_current_path(directory_path);
188 if (to_fix != current_path) {
189 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
Satya Tangirala0f890a92021-06-08 12:55:24 -0700190 if (!android::vold::RenameKeyDir(to_fix, current_path)) return;
Paul Crowleya3630362016-05-17 14:17:56 -0700191 }
Paul Crowley621d9b92018-12-07 15:36:09 -0800192 android::vold::FsyncDirectory(directory_path);
Paul Crowleya3630362016-05-17 14:17:56 -0700193}
194
195static bool read_and_fixate_user_ce_key(userid_t user_id,
196 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700197 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700198 auto const directory_path = get_ce_key_directory_path(user_id);
199 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700200 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700201 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
Eric Biggersf74373b2020-11-05 19:58:26 -0800202 if (retrieveKey(ce_key_path, auth, ce_key)) {
Paul Crowleya3630362016-05-17 14:17:56 -0700203 LOG(DEBUG) << "Successfully retrieved key";
204 fixate_user_ce_key(directory_path, ce_key_path, paths);
205 return true;
206 }
207 }
208 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
209 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100210}
211
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800212static bool MightBeEmmcStorage(const std::string& blk_device) {
Eric Biggerseb566d02020-07-06 13:46:38 -0700213 // Handle symlinks.
214 std::string real_path;
215 if (!Realpath(blk_device, &real_path)) {
216 real_path = blk_device;
217 }
218
219 // Handle logical volumes.
220 auto& dm = DeviceMapper::Instance();
221 for (;;) {
222 auto parent = dm.GetParentBlockDeviceByPath(real_path);
223 if (!parent.has_value()) break;
224 real_path = *parent;
225 }
226
227 // Now we should have the "real" block device.
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800228 LOG(DEBUG) << "MightBeEmmcStorage(): blk_device = " << blk_device
229 << ", real_path=" << real_path;
230 std::string name = Basename(real_path);
231 return StartsWith(name, "mmcblk") ||
232 // virtio devices may provide inline encryption support that is
233 // backed by eMMC inline encryption on the host, thus inheriting the
234 // DUN size limitation. So virtio devices must be allowed here too.
235 // TODO(b/207390665): check the maximum DUN size directly instead.
236 StartsWith(name, "vd");
Eric Biggerseb566d02020-07-06 13:46:38 -0700237}
238
Eric Biggers83a73d72019-09-30 13:06:47 -0700239// Retrieve the options to use for encryption policies on the /data filesystem.
Paul Crowley77df7f22020-01-23 15:29:30 -0800240static bool get_data_file_encryption_options(EncryptionOptions* options) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700241 auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT);
242 if (entry == nullptr) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800243 LOG(ERROR) << "No mount point entry for " << DATA_MNT_POINT;
244 return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700245 }
Paul Crowleya50f6c32019-10-24 23:21:44 -0700246 if (!ParseOptions(entry->encryption_options, options)) {
247 LOG(ERROR) << "Unable to parse encryption options for " << DATA_MNT_POINT ": "
248 << entry->encryption_options;
Paul Crowley77df7f22020-01-23 15:29:30 -0800249 return false;
Paul Crowleya50f6c32019-10-24 23:21:44 -0700250 }
Eric Biggerseb566d02020-07-06 13:46:38 -0700251 if ((options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) &&
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800252 !MightBeEmmcStorage(entry->blk_device)) {
Eric Biggerseb566d02020-07-06 13:46:38 -0700253 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
254 "this flag from the device's fstab";
255 return false;
256 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800257 return true;
Eric Biggers83a73d72019-09-30 13:06:47 -0700258}
259
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800260static bool install_storage_key(const std::string& mountpoint, const EncryptionOptions& options,
261 const KeyBuffer& key, EncryptionPolicy* policy) {
262 KeyBuffer ephemeral_wrapped_key;
263 if (options.use_hw_wrapped_key) {
264 if (!exportWrappedStorageKey(key, &ephemeral_wrapped_key)) {
265 LOG(ERROR) << "Failed to get ephemeral wrapped key";
266 return false;
267 }
268 }
269 return installKey(mountpoint, options, options.use_hw_wrapped_key ? ephemeral_wrapped_key : key,
270 policy);
271}
272
Eric Biggers83a73d72019-09-30 13:06:47 -0700273// Retrieve the options to use for encryption policies on adoptable storage.
Paul Crowley5e53ff62019-10-24 14:55:17 -0700274static bool get_volume_file_encryption_options(EncryptionOptions* options) {
Paul Crowleyeb241a12020-02-18 10:10:08 -0800275 // If we give the empty string, libfscrypt will use the default (currently XTS)
276 auto contents_mode = android::base::GetProperty("ro.crypto.volume.contents_mode", "");
277 // HEH as default was always a mistake. Use the libfscrypt default (CTS)
278 // for devices launching on versions above Android 10.
279 auto first_api_level = GetFirstApiLevel();
Paul Crowleyf612b8b2019-10-24 22:52:02 -0700280 auto filenames_mode =
Paul Crowleyeb241a12020-02-18 10:10:08 -0800281 android::base::GetProperty("ro.crypto.volume.filenames_mode",
Eric Biggers72d07132020-08-10 10:55:56 -0700282 first_api_level > __ANDROID_API_Q__ ? "" : "aes-256-heh");
Paul Crowley77df7f22020-01-23 15:29:30 -0800283 auto options_string = android::base::GetProperty("ro.crypto.volume.options",
Paul Crowleyeb241a12020-02-18 10:10:08 -0800284 contents_mode + ":" + filenames_mode);
285 if (!ParseOptionsForApiLevel(first_api_level, options_string, options)) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800286 LOG(ERROR) << "Unable to parse volume encryption options: " << options_string;
287 return false;
288 }
Eric Biggerseb566d02020-07-06 13:46:38 -0700289 if (options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) {
290 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
291 "this flag from ro.crypto.volume.options";
292 return false;
293 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800294 return true;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700295}
296
Paul Crowleydf528a72016-03-09 09:31:37 -0800297static bool read_and_install_user_ce_key(userid_t user_id,
298 const android::vold::KeyAuthentication& auth) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800299 if (s_ce_policies.count(user_id) != 0) return true;
300 EncryptionOptions options;
301 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100302 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700303 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800304 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800305 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800306 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000307 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000308 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000309}
310
Eric Biggersca9a97e2022-05-12 19:17:15 +0000311// Prepare a directory without assigning it an encryption policy. The directory
312// will inherit the encryption policy of its parent directory, or will be
313// unencrypted if the parent directory is unencrypted.
Paul Crowleydf528a72016-03-09 09:31:37 -0800314static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000315 LOG(DEBUG) << "Preparing: " << dir;
Eric Biggers39704e72022-05-04 22:17:54 +0000316 if (android::vold::PrepareDir(dir, mode, uid, gid, 0) != 0) {
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000317 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000318 return false;
319 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000320 return true;
321}
322
Eric Biggersca9a97e2022-05-12 19:17:15 +0000323// Prepare a directory and assign it the given encryption policy.
324static bool prepare_dir_with_policy(const std::string& dir, mode_t mode, uid_t uid, gid_t gid,
325 const EncryptionPolicy& policy) {
326 if (!prepare_dir(dir, mode, uid, gid)) return false;
Eric Biggersa6957c02022-06-15 18:52:18 +0000327 if (IsFbeEnabled() && !EnsurePolicy(policy, dir)) return false;
Eric Biggersca9a97e2022-05-12 19:17:15 +0000328 return true;
329}
330
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600331static bool destroy_dir(const std::string& dir) {
332 LOG(DEBUG) << "Destroying: " << dir;
333 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
334 PLOG(ERROR) << "Failed to destroy " << dir;
335 return false;
336 }
337 return true;
338}
339
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000340// NB this assumes that there is only one thread listening for crypt commands, because
341// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000342static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800343 EncryptionOptions options;
344 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100345 KeyBuffer de_key, ce_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800346 if (!generateStorageKey(makeGen(options), &de_key)) return false;
347 if (!generateStorageKey(makeGen(options), &ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000348 if (create_ephemeral) {
349 // If the key should be created as ephemeral, don't store it.
350 s_ephemeral_users.insert(user_id);
351 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700352 auto const directory_path = get_ce_key_directory_path(user_id);
353 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
354 auto const paths = get_ce_key_paths(directory_path);
355 std::string ce_key_path;
356 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700357 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, kEmptyAuthentication,
358 ce_key))
359 return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700360 fixate_user_ce_key(directory_path, ce_key_path, paths);
361 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700362 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley14c8c072018-09-18 13:30:21 -0700363 kEmptyAuthentication, de_key))
364 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100365 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800366 EncryptionPolicy de_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800367 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800368 s_de_policies[user_id] = de_policy;
369 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800370 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800371 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000372 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000373 return true;
374}
375
Paul Crowley77df7f22020-01-23 15:29:30 -0800376static bool lookup_policy(const std::map<userid_t, EncryptionPolicy>& key_map, userid_t user_id,
377 EncryptionPolicy* policy) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000378 auto refi = key_map.find(user_id);
379 if (refi == key_map.end()) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000380 return false;
381 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800382 *policy = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000383 return true;
384}
385
Paul Crowleydf528a72016-03-09 09:31:37 -0800386static bool is_numeric(const char* name) {
387 for (const char* p = name; *p != '\0'; p++) {
388 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000389 }
390 return true;
391}
392
393static bool load_all_de_keys() {
Paul Crowley77df7f22020-01-23 15:29:30 -0800394 EncryptionOptions options;
395 if (!get_data_file_encryption_options(&options)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000396 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800397 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000398 if (!dirp) {
399 PLOG(ERROR) << "Unable to read de key directory";
400 return false;
401 }
402 for (;;) {
403 errno = 0;
404 auto entry = readdir(dirp.get());
405 if (!entry) {
406 if (errno) {
407 PLOG(ERROR) << "Unable to read de key directory";
408 return false;
409 }
410 break;
411 }
Eric Biggers6b840392020-11-02 15:11:06 -0800412 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000413 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
414 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
415 continue;
416 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600417 userid_t user_id = std::stoi(entry->d_name);
Nikita Ioffef0550af2020-02-27 18:21:55 +0000418 auto key_path = de_dir + "/" + entry->d_name;
419 KeyBuffer de_key;
liulvping69b04852022-10-10 19:16:23 +0800420 if (!retrieveKey(key_path, kEmptyAuthentication, &de_key)) {
421 // This is probably a partially removed user, so ignore
422 if (user_id != 0) continue;
423 return false;
424 }
Nikita Ioffef0550af2020-02-27 18:21:55 +0000425 EncryptionPolicy de_policy;
426 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
427 auto ret = s_de_policies.insert({user_id, de_policy});
428 if (!ret.second && ret.first->second != de_policy) {
429 LOG(ERROR) << "DE policy for user" << user_id << " changed";
430 return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000431 }
Nikita Ioffef0550af2020-02-27 18:21:55 +0000432 LOG(DEBUG) << "Installed de key for user " << user_id;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000433 }
Eric Biggersa701c452018-10-23 13:06:55 -0700434 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000435 // correct policy set on them, and that no rogue ones exist.
436 return true;
437}
438
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000439// Attempt to reinstall CE keys for users that we think are unlocked.
440static bool try_reload_ce_keys() {
441 for (const auto& it : s_ce_policies) {
442 if (!android::vold::reloadKeyFromSessionKeyring(DATA_MNT_POINT, it.second)) {
443 LOG(ERROR) << "Failed to load CE key from session keyring for user " << it.first;
444 return false;
445 }
446 }
447 return true;
448}
449
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700450bool fscrypt_initialize_systemwide_keys() {
451 LOG(INFO) << "fscrypt_initialize_systemwide_keys";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800452
Paul Crowley77df7f22020-01-23 15:29:30 -0800453 EncryptionOptions options;
454 if (!get_data_file_encryption_options(&options)) return false;
455
456 KeyBuffer device_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800457 if (!retrieveOrGenerateKey(device_key_path, device_key_temp, kEmptyAuthentication,
Eric Biggersf74373b2020-11-05 19:58:26 -0800458 makeGen(options), &device_key))
Paul Crowley77df7f22020-01-23 15:29:30 -0800459 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800460
Eric Biggers9ea53442022-05-11 05:33:25 +0000461 // This initializes s_device_policy, which is a global variable so that
462 // fscrypt_init_user0() can access it later.
463 if (!install_storage_key(DATA_MNT_POINT, options, device_key, &s_device_policy)) return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700464
Paul Crowley5e53ff62019-10-24 14:55:17 -0700465 std::string options_string;
Eric Biggers9ea53442022-05-11 05:33:25 +0000466 if (!OptionsToString(s_device_policy.options, &options_string)) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700467 LOG(ERROR) << "Unable to serialize options";
468 return false;
469 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800470 std::string options_filename = std::string(DATA_MNT_POINT) + fscrypt_key_mode;
Eric Biggers83a73d72019-09-30 13:06:47 -0700471 if (!android::vold::writeStringToFile(options_string, options_filename)) return false;
Paul Lawrence6e410592016-05-24 14:20:38 -0700472
Paul Crowley77df7f22020-01-23 15:29:30 -0800473 std::string ref_filename = std::string(DATA_MNT_POINT) + fscrypt_key_ref;
Eric Biggers9ea53442022-05-11 05:33:25 +0000474 if (!android::vold::writeStringToFile(s_device_policy.key_raw_ref, ref_filename)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700475 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800476
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700477 KeyBuffer per_boot_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800478 if (!generateStorageKey(makeGen(options), &per_boot_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800479 EncryptionPolicy per_boot_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800480 if (!install_storage_key(DATA_MNT_POINT, options, per_boot_key, &per_boot_policy)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700481 std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref;
Paul Crowley77df7f22020-01-23 15:29:30 -0800482 if (!android::vold::writeStringToFile(per_boot_policy.key_raw_ref, per_boot_ref_filename))
483 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700484 LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename;
485
Paul Crowley76107cb2016-02-09 10:04:39 +0000486 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800487}
488
Eric Biggers9ea53442022-05-11 05:33:25 +0000489static bool prepare_special_dirs() {
Eric Biggersca9a97e2022-05-12 19:17:15 +0000490 // Ensure that /data/data and its "alias" /data/user/0 exist, and create the
491 // bind mount of /data/data onto /data/user/0. This *should* happen in
492 // fscrypt_prepare_user_storage(). However, it actually must be done early,
493 // before the rest of user 0's CE storage is prepared. This is because
494 // zygote may need to set up app data isolation before then, which requires
495 // mounting a tmpfs over /data/data to ensure it remains hidden. This issue
496 // arises due to /data/data being in the top-level directory.
497
Eric Biggers9ea53442022-05-11 05:33:25 +0000498 // /data/user/0 used to be a symlink to /data/data, so we must first delete
499 // the old symlink if present.
500 if (android::vold::IsSymlink(data_user_0_dir) && android::vold::Unlink(data_user_0_dir) != 0)
501 return false;
Eric Biggersca9a97e2022-05-12 19:17:15 +0000502 // On first boot, we'll be creating /data/data for the first time, and user
503 // 0's CE key will be installed already since it was just created. Take the
504 // opportunity to also set the encryption policy of /data/data right away.
505 EncryptionPolicy ce_policy;
506 if (lookup_policy(s_ce_policies, 0, &ce_policy)) {
507 if (!prepare_dir_with_policy(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy))
508 return false;
509 } else {
510 if (!prepare_dir(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
511 // EnsurePolicy() will have to happen later, in fscrypt_prepare_user_storage().
512 }
Eric Biggers9ea53442022-05-11 05:33:25 +0000513 if (!prepare_dir(data_user_0_dir, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
514 if (android::vold::BindMount(data_data_dir, data_user_0_dir) != 0) return false;
515
516 // If /data/media/obb doesn't exist, create it and encrypt it with the
517 // device policy. Normally, device-policy-encrypted directories are created
518 // and encrypted by init; /data/media/obb is special because it is located
519 // in /data/media. Since /data/media also contains per-user encrypted
520 // directories, by design only vold can write to it. As a side effect of
521 // that, vold must create /data/media/obb.
522 //
523 // We must tolerate /data/media/obb being unencrypted if it already exists
524 // on-disk, since it used to be unencrypted (b/64566063).
Eric Biggersca9a97e2022-05-12 19:17:15 +0000525 if (android::vold::pathExists(media_obb_dir)) {
526 if (!prepare_dir(media_obb_dir, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
527 } else {
528 if (!prepare_dir_with_policy(media_obb_dir, 0770, AID_MEDIA_RW, AID_MEDIA_RW,
529 s_device_policy))
530 return false;
531 }
Eric Biggers9ea53442022-05-11 05:33:25 +0000532 return true;
533}
534
Eric Biggersfb486662022-03-22 00:33:52 +0000535bool fscrypt_init_user0_done;
536
Eric Biggersa701c452018-10-23 13:06:55 -0700537bool fscrypt_init_user0() {
538 LOG(DEBUG) << "fscrypt_init_user0";
Eric Biggers9ea53442022-05-11 05:33:25 +0000539
Eric Biggersa6957c02022-06-15 18:52:18 +0000540 if (IsFbeEnabled()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000541 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
542 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
543 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700544 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000545 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000546 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700547 // TODO: switch to loading only DE_0 here once framework makes
548 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000549 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000550 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000551
552 // Now that user 0's CE key has been created, we can prepare /data/data.
553 if (!prepare_special_dirs()) return false;
554
555 // With the exception of what is done by prepare_special_dirs() above, we
556 // only prepare DE storage here, since user 0's CE key won't be installed
Eric Biggers9ea53442022-05-11 05:33:25 +0000557 // yet unless it was just created. The framework will prepare the user's CE
558 // storage later, once their CE key is installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700559 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700560 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000561 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700562 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700563
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000564 // In some scenarios (e.g. userspace reboot) we might unmount userdata
565 // without doing a hard reboot. If CE keys were stored in fs keyring then
566 // they will be lost after unmount. Attempt to re-install them.
Eric Biggersa6957c02022-06-15 18:52:18 +0000567 if (IsFbeEnabled() && android::vold::isFsKeyringSupported()) {
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000568 if (!try_reload_ce_keys()) return false;
569 }
570
Eric Biggersfb486662022-03-22 00:33:52 +0000571 fscrypt_init_user0_done = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000572 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000573}
574
Eric Biggersa701c452018-10-23 13:06:55 -0700575bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
576 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
Eric Biggersa6957c02022-06-15 18:52:18 +0000577 if (!IsFbeEnabled()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000578 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000579 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000580 // FIXME test for existence of key that is not loaded yet
Paul Crowley77df7f22020-01-23 15:29:30 -0800581 if (s_ce_policies.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700582 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800583 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000584 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000585 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800586 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000587 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000588 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000589 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000590 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800591}
592
Eric Biggersce368682019-04-03 15:44:06 -0700593// "Lock" all encrypted directories whose key has been removed. This is needed
Eric Biggersf3dc4202019-09-30 13:05:58 -0700594// in the case where the keys are being put in the session keyring (rather in
595// the newer filesystem-level keyrings), because removing a key from the session
596// keyring doesn't affect inodes in the kernel's inode cache whose per-file key
597// was already set up. So to remove the per-file keys and make the files
598// "appear encrypted", these inodes must be evicted.
Eric Biggersce368682019-04-03 15:44:06 -0700599//
600// To do this, sync() to clean all dirty inodes, then drop all reclaimable slab
601// objects systemwide. This is overkill, but it's the best available method
602// currently. Don't use drop_caches mode "3" because that also evicts pagecache
603// for in-use files; all files relevant here are already closed and sync'ed.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700604static void drop_caches_if_needed() {
605 if (android::vold::isFsKeyringSupported()) {
606 return;
607 }
Pavel Grafovb350ed02017-07-27 17:34:57 +0100608 sync();
Eric Biggersce368682019-04-03 15:44:06 -0700609 if (!writeStringToFile("2", "/proc/sys/vm/drop_caches")) {
Pavel Grafovb350ed02017-07-27 17:34:57 +0100610 PLOG(ERROR) << "Failed to drop caches during key eviction";
611 }
612}
613
Andrew Scull7ec25c72016-10-31 10:28:25 +0000614static bool evict_ce_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000615 bool success = true;
Paul Crowley77df7f22020-01-23 15:29:30 -0800616 EncryptionPolicy policy;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000617 // If we haven't loaded the CE key, no need to evict it.
Paul Crowley77df7f22020-01-23 15:29:30 -0800618 if (lookup_policy(s_ce_policies, user_id, &policy)) {
619 success &= android::vold::evictKey(DATA_MNT_POINT, policy);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700620 drop_caches_if_needed();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000621 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800622 s_ce_policies.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000623 return success;
624}
625
Eric Biggersa701c452018-10-23 13:06:55 -0700626bool fscrypt_destroy_user_key(userid_t user_id) {
627 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
Eric Biggersa6957c02022-06-15 18:52:18 +0000628 if (!IsFbeEnabled()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000629 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000630 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000631 bool success = true;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000632 success &= evict_ce_key(user_id);
Paul Crowley77df7f22020-01-23 15:29:30 -0800633 EncryptionPolicy de_policy;
634 success &= lookup_policy(s_de_policies, user_id, &de_policy) &&
635 android::vold::evictKey(DATA_MNT_POINT, de_policy);
636 s_de_policies.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000637 auto it = s_ephemeral_users.find(user_id);
638 if (it != s_ephemeral_users.end()) {
639 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000640 } else {
Eric Biggersd863b2c2021-05-27 17:29:10 -0700641 auto ce_path = get_ce_key_directory_path(user_id);
642 for (auto const path : get_ce_key_paths(ce_path)) {
Paul Crowleya3630362016-05-17 14:17:56 -0700643 success &= android::vold::destroyKey(path);
644 }
Eric Biggersd863b2c2021-05-27 17:29:10 -0700645 success &= destroy_dir(ce_path);
646
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700647 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700648 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700649 success &= android::vold::destroyKey(de_key_path);
650 } else {
651 LOG(INFO) << "Not present so not erasing: " << de_key_path;
652 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100653 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000654 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100655}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800656
Paul Crowley3b71fc52017-10-09 10:55:21 -0700657static bool parse_hex(const std::string& hex, std::string* result) {
658 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800659 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000660 return true;
661 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800662 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800663 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000664 return false;
665 }
666 return true;
667}
668
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700669static std::optional<android::vold::KeyAuthentication> authentication_from_hex(
Satya Tangiralae1361712021-03-15 15:33:08 -0700670 const std::string& secret_hex) {
671 std::string secret;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700672 if (!parse_hex(secret_hex, &secret)) return std::optional<android::vold::KeyAuthentication>();
673 if (secret.empty()) {
674 return kEmptyAuthentication;
675 } else {
Satya Tangiralae1361712021-03-15 15:33:08 -0700676 return android::vold::KeyAuthentication(secret);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700677 }
678}
679
Paul Crowley3aa914d2017-10-09 16:35:51 -0700680static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
681 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
682}
683
Paul Crowley26a53882017-10-26 11:16:39 -0700684static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
685 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
686}
687
Paul Crowley3aa914d2017-10-09 16:35:51 -0700688static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
Paul Crowley5e53ff62019-10-24 14:55:17 -0700689 EncryptionPolicy* policy) {
Paul Crowley26a53882017-10-26 11:16:39 -0700690 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
691 std::string secdiscardable_hash;
692 if (android::vold::pathExists(secdiscardable_path)) {
693 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
694 return false;
695 } else {
Eric Biggersfec0c0e2021-02-16 15:59:17 -0800696 if (!android::vold::MkdirsSync(secdiscardable_path, 0700)) return false;
Paul Crowley26a53882017-10-26 11:16:39 -0700697 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
698 return false;
699 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700700 auto key_path = volkey_path(misc_path, volume_uuid);
Eric Biggersfec0c0e2021-02-16 15:59:17 -0800701 if (!android::vold::MkdirsSync(key_path, 0700)) return false;
Satya Tangiralae1361712021-03-15 15:33:08 -0700702 android::vold::KeyAuthentication auth(secdiscardable_hash);
Eric Biggers83a73d72019-09-30 13:06:47 -0700703
Paul Crowley77df7f22020-01-23 15:29:30 -0800704 EncryptionOptions options;
705 if (!get_volume_file_encryption_options(&options)) return false;
706 KeyBuffer key;
Eric Biggersf74373b2020-11-05 19:58:26 -0800707 if (!retrieveOrGenerateKey(key_path, key_path + "_tmp", auth, makeGen(options), &key))
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800708 return false;
709 if (!install_storage_key(BuildDataPath(volume_uuid), options, key, policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800710 return true;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700711}
712
713static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700714 auto path = volkey_path(misc_path, volume_uuid);
715 if (!android::vold::pathExists(path)) return true;
716 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700717}
718
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700719static bool fscrypt_rewrap_user_key(userid_t user_id, int serial,
720 const android::vold::KeyAuthentication& retrieve_auth,
721 const android::vold::KeyAuthentication& store_auth) {
722 if (s_ephemeral_users.count(user_id) != 0) return true;
723 auto const directory_path = get_ce_key_directory_path(user_id);
724 KeyBuffer ce_key;
725 std::string ce_key_current_path = get_ce_key_current_path(directory_path);
Eric Biggersf74373b2020-11-05 19:58:26 -0800726 if (retrieveKey(ce_key_current_path, retrieve_auth, &ce_key)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700727 LOG(DEBUG) << "Successfully retrieved key";
728 // TODO(147732812): Remove this once Locksettingservice is fixed.
729 // Currently it calls fscrypt_clear_user_key_auth with a secret when lockscreen is
730 // changed from swipe to none or vice-versa
Eric Biggersf74373b2020-11-05 19:58:26 -0800731 } else if (retrieveKey(ce_key_current_path, kEmptyAuthentication, &ce_key)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700732 LOG(DEBUG) << "Successfully retrieved key with empty auth";
733 } else {
734 LOG(ERROR) << "Failed to retrieve key for user " << user_id;
735 return false;
736 }
737 auto const paths = get_ce_key_paths(directory_path);
738 std::string ce_key_path;
739 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
740 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, store_auth, ce_key))
741 return false;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700742 return true;
743}
744
Satya Tangiralae1361712021-03-15 15:33:08 -0700745bool fscrypt_add_user_key_auth(userid_t user_id, int serial, const std::string& secret_hex) {
746 LOG(DEBUG) << "fscrypt_add_user_key_auth " << user_id << " serial=" << serial;
Eric Biggersa6957c02022-06-15 18:52:18 +0000747 if (!IsFbeEnabled()) return true;
Satya Tangiralae1361712021-03-15 15:33:08 -0700748 auto auth = authentication_from_hex(secret_hex);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700749 if (!auth) return false;
750 return fscrypt_rewrap_user_key(user_id, serial, kEmptyAuthentication, *auth);
751}
752
Satya Tangiralae1361712021-03-15 15:33:08 -0700753bool fscrypt_clear_user_key_auth(userid_t user_id, int serial, const std::string& secret_hex) {
754 LOG(DEBUG) << "fscrypt_clear_user_key_auth " << user_id << " serial=" << serial;
Eric Biggersa6957c02022-06-15 18:52:18 +0000755 if (!IsFbeEnabled()) return true;
Satya Tangiralae1361712021-03-15 15:33:08 -0700756 auto auth = authentication_from_hex(secret_hex);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700757 if (!auth) return false;
758 return fscrypt_rewrap_user_key(user_id, serial, *auth, kEmptyAuthentication);
Paul Crowleya3630362016-05-17 14:17:56 -0700759}
760
Eric Biggersa701c452018-10-23 13:06:55 -0700761bool fscrypt_fixate_newest_user_key_auth(userid_t user_id) {
762 LOG(DEBUG) << "fscrypt_fixate_newest_user_key_auth " << user_id;
Eric Biggersa6957c02022-06-15 18:52:18 +0000763 if (!IsFbeEnabled()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700764 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700765 auto const directory_path = get_ce_key_directory_path(user_id);
766 auto const paths = get_ce_key_paths(directory_path);
767 if (paths.empty()) {
768 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
769 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000770 }
Paul Crowleya3630362016-05-17 14:17:56 -0700771 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000772 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000773}
774
Eric Biggers18ba1522021-04-06 12:02:56 -0700775std::vector<int> fscrypt_get_unlocked_users() {
776 std::vector<int> user_ids;
777 for (const auto& it : s_ce_policies) {
778 user_ids.push_back(it.first);
779 }
780 return user_ids;
781}
782
Jeff Sharkey47695b22016-02-01 17:02:29 -0700783// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Satya Tangiralae1361712021-03-15 15:33:08 -0700784bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& secret_hex) {
785 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial;
Eric Biggersa6957c02022-06-15 18:52:18 +0000786 if (IsFbeEnabled()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800787 if (s_ce_policies.count(user_id) != 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000788 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000789 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000790 }
Satya Tangiralae1361712021-03-15 15:33:08 -0700791 auto auth = authentication_from_hex(secret_hex);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700792 if (!auth) return false;
793 if (!read_and_install_user_ce_key(user_id, *auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000794 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000795 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800796 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800797 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000798 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800799}
800
Jeff Sharkey47695b22016-02-01 17:02:29 -0700801// TODO: rename to 'evict' for consistency
Eric Biggersa701c452018-10-23 13:06:55 -0700802bool fscrypt_lock_user_key(userid_t user_id) {
803 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
Eric Biggersa6957c02022-06-15 18:52:18 +0000804 if (IsFbeEnabled()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000805 return evict_ce_key(user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800806 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000807 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800808}
809
Paul Crowley82b41ff2017-10-20 08:17:54 -0700810static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
811 userid_t user_id, int flags) {
812 if (0 != android::vold::ForkExecvp(
813 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
814 std::to_string(user_id), std::to_string(flags)})) {
815 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700816 return false;
817 }
818 return true;
819}
820
Eric Biggersa701c452018-10-23 13:06:55 -0700821bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700822 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700823 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800824 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700825
Eric Biggersc66c2e32022-05-04 04:39:50 +0000826 // Internal storage must be prepared before adoptable storage, since the
827 // user's volume keys are stored in their internal storage.
828 if (!volume_uuid.empty()) {
829 if ((flags & android::os::IVold::STORAGE_FLAG_DE) &&
830 !android::vold::pathExists(android::vold::BuildDataMiscDePath("", user_id))) {
831 LOG(ERROR) << "Cannot prepare DE storage for user " << user_id << " on volume "
832 << volume_uuid << " before internal storage";
833 return false;
834 }
835 if ((flags & android::os::IVold::STORAGE_FLAG_CE) &&
836 !android::vold::pathExists(android::vold::BuildDataMiscCePath("", user_id))) {
837 LOG(ERROR) << "Cannot prepare CE storage for user " << user_id << " on volume "
838 << volume_uuid << " before internal storage";
839 return false;
840 }
841 }
842
Paul Crowley82b41ff2017-10-20 08:17:54 -0700843 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600844 // DE_sys key
845 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
846 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
847 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600848
849 // DE_n key
Eric Biggersca9a97e2022-05-12 19:17:15 +0000850 EncryptionPolicy de_policy;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700851 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000852 auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800853 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700854 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
855
Eric Biggersa6957c02022-06-15 18:52:18 +0000856 if (IsFbeEnabled()) {
Eric Biggersca9a97e2022-05-12 19:17:15 +0000857 if (volume_uuid.empty()) {
858 if (!lookup_policy(s_de_policies, user_id, &de_policy)) {
859 LOG(ERROR) << "Cannot find DE policy for user " << user_id;
860 return false;
861 }
862 } else {
863 auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id);
864 if (!read_or_create_volkey(misc_de_empty_volume_path, volume_uuid, &de_policy)) {
865 return false;
866 }
867 }
868 }
869
Paul Crowley3b71fc52017-10-09 10:55:21 -0700870 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700871 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600872#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700873 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700874 multiuser_get_uid(user_id, AID_EVERYBODY)))
875 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600876#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700877 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600878
Eric Biggersca9a97e2022-05-12 19:17:15 +0000879 if (!prepare_dir_with_policy(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM, de_policy))
880 return false;
881 if (!prepare_dir_with_policy(vendor_de_path, 0771, AID_ROOT, AID_ROOT, de_policy))
882 return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700883 }
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000884
Eric Biggersca9a97e2022-05-12 19:17:15 +0000885 if (!prepare_dir_with_policy(misc_de_path, 01771, AID_SYSTEM, AID_MISC, de_policy))
886 return false;
887 if (!prepare_dir_with_policy(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM, de_policy))
888 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000889 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800890
Paul Crowley82b41ff2017-10-20 08:17:54 -0700891 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600892 // CE_n key
Eric Biggersca9a97e2022-05-12 19:17:15 +0000893 EncryptionPolicy ce_policy;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700894 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000895 auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800896 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600897 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
898 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800899
Eric Biggersa6957c02022-06-15 18:52:18 +0000900 if (IsFbeEnabled()) {
Eric Biggersca9a97e2022-05-12 19:17:15 +0000901 if (volume_uuid.empty()) {
902 if (!lookup_policy(s_ce_policies, user_id, &ce_policy)) {
903 LOG(ERROR) << "Cannot find CE policy for user " << user_id;
904 return false;
905 }
906 } else {
907 auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id);
908 if (!read_or_create_volkey(misc_ce_empty_volume_path, volume_uuid, &ce_policy)) {
909 return false;
910 }
911 }
Paul Crowley6b756ce2017-10-05 14:07:09 -0700912 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000913
914 if (volume_uuid.empty()) {
915 if (!prepare_dir_with_policy(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM, ce_policy))
916 return false;
917 if (!prepare_dir_with_policy(vendor_ce_path, 0771, AID_ROOT, AID_ROOT, ce_policy))
918 return false;
919 }
920 if (!prepare_dir_with_policy(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW, ce_policy))
921 return false;
Martijn Coenen5adf92a2021-02-01 07:57:02 +0000922 // On devices without sdcardfs (kernel 5.4+), the path permissions aren't fixed
923 // up automatically; therefore, use a default ACL, to ensure apps with MEDIA_RW
924 // can keep reading external storage; in particular, this allows app cloning
925 // scenarios to work correctly on such devices.
926 int ret = SetDefaultAcl(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW, {AID_MEDIA_RW});
927 if (ret != android::OK) {
928 return false;
929 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000930 if (!prepare_dir_with_policy(misc_ce_path, 01771, AID_SYSTEM, AID_MISC, ce_policy))
931 return false;
932 if (!prepare_dir_with_policy(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy))
933 return false;
Paul Crowley1a965262017-10-13 13:49:50 -0700934
935 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700936 // Now that credentials have been installed, we can run restorecon
937 // over these paths
938 // NOTE: these paths need to be kept in sync with libselinux
939 android::vold::RestoreconRecursive(system_ce_path);
Nick Kralevich6a3ef482019-05-14 09:30:29 -0700940 android::vold::RestoreconRecursive(vendor_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -0700941 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700942 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800943 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700944 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800945
Paul Crowley76107cb2016-02-09 10:04:39 +0000946 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800947}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600948
Eric Biggersa701c452018-10-23 13:06:55 -0700949bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
950 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600951 << ", user " << user_id << ", flags " << flags;
952 bool res = true;
953
Paul Crowley82b41ff2017-10-20 08:17:54 -0700954 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
955
956 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -0700957 // CE_n key
958 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000959 auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800960 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -0700961 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
962 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
963
964 res &= destroy_dir(media_ce_path);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000965 res &= destroy_dir(misc_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -0700966 res &= destroy_dir(user_ce_path);
967 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700968 res &= destroy_dir(system_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800969 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700970 } else {
Eric Biggersa6957c02022-06-15 18:52:18 +0000971 if (IsFbeEnabled()) {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000972 auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id);
973 res &= destroy_volkey(misc_ce_empty_volume_path, volume_uuid);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700974 }
Paul Crowley8e550662017-10-16 17:01:44 -0700975 }
976 }
977
Paul Crowley82b41ff2017-10-20 08:17:54 -0700978 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600979 // DE_sys key
980 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
981 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
982 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600983
984 // DE_n key
985 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000986 auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800987 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600988 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
989
Paul Crowley8e550662017-10-16 17:01:44 -0700990 res &= destroy_dir(user_de_path);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000991 res &= destroy_dir(misc_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -0700992 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600993 res &= destroy_dir(system_legacy_path);
994#if MANAGE_MISC_DIRS
995 res &= destroy_dir(misc_legacy_path);
996#endif
997 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600998 res &= destroy_dir(system_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800999 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001000 } else {
Eric Biggersa6957c02022-06-15 18:52:18 +00001001 if (IsFbeEnabled()) {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001002 auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id);
1003 res &= destroy_volkey(misc_de_empty_volume_path, volume_uuid);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001004 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001005 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001006 }
1007
1008 return res;
1009}
Rubin Xu2436e272017-04-27 20:43:10 +01001010
Paul Crowleyc6433a22017-10-24 14:54:43 -07001011static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
1012 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
1013 if (!dirp) {
1014 PLOG(ERROR) << "Unable to open directory: " + directory_path;
1015 return false;
1016 }
1017 bool res = true;
1018 for (;;) {
1019 errno = 0;
1020 auto const entry = readdir(dirp.get());
1021 if (!entry) {
1022 if (errno) {
1023 PLOG(ERROR) << "Unable to read directory: " + directory_path;
1024 return false;
1025 }
1026 break;
1027 }
Eric Biggers6b840392020-11-02 15:11:06 -08001028 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleyc6433a22017-10-24 14:54:43 -07001029 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
1030 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
1031 continue;
1032 }
1033 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
1034 }
1035 return res;
1036}
1037
Eric Biggersa701c452018-10-23 13:06:55 -07001038bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -07001039 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -07001040 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -07001041 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
1042 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -07001043 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
1044 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
1045 return res;
1046}