blob: 4f42dd81bc5e0a18eeddfe7a8086f2ab971ae08d [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
Eric Biggersb615f3b2022-11-09 05:48:45 +000019#include "Checkpoint.h"
Paul Crowley1ef25582016-01-21 20:26:12 +000020#include "KeyStorage.h"
Paul Crowleyf71ace32016-06-02 11:01:19 -070021#include "KeyUtil.h"
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080022#include "Utils.h"
Paul Crowleya7ca40b2017-10-06 14:29:33 -070023#include "VoldUtil.h"
24
Paul Crowleya3630362016-05-17 14:17:56 -070025#include <algorithm>
Paul Lawrence731a7a22015-04-28 22:14:15 +000026#include <map>
Barani Muthukumaranb1927c22019-10-31 22:59:34 -070027#include <optional>
Paul Crowleyb1f3d242016-01-28 10:09:46 +000028#include <set>
Paul Lawrencefd7db732015-04-10 07:48:51 -070029#include <sstream>
Paul Crowleydf528a72016-03-09 09:31:37 -080030#include <string>
Paul Crowleyf71ace32016-06-02 11:01:19 -070031#include <vector>
Paul Lawrence731a7a22015-04-28 22:14:15 +000032
Paul Crowleydf528a72016-03-09 09:31:37 -080033#include <dirent.h>
34#include <errno.h>
35#include <fcntl.h>
Paul Crowleya3630362016-05-17 14:17:56 -070036#include <limits.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080037#include <sys/mount.h>
38#include <sys/stat.h>
39#include <sys/types.h>
Eric Biggers7bdf7992024-10-18 16:51:27 +000040#include <sys/utsname.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070041#include <unistd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000042
Paul Crowley480fcd22015-08-24 14:53:28 +010043#include <private/android_filesystem_config.h>
Martijn Coenenaee40512020-02-18 16:29:25 +010044#include <private/android_projectid_config.h>
Paul Crowley480fcd22015-08-24 14:53:28 +010045
Paul Crowley82b41ff2017-10-20 08:17:54 -070046#include "android/os/IVold.h"
47
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>
Eric Biggerseb566d02020-07-06 13:46:38 -070052#include <libdm/dm.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080053
Elliott Hughes7e128fb2015-12-04 15:50:53 -080054#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080055#include <android-base/logging.h>
Paul Crowley3aa914d2017-10-09 16:35:51 -070056#include <android-base/properties.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080057#include <android-base/stringprintf.h>
Eric Biggers83a73d72019-09-30 13:06:47 -070058#include <android-base/strings.h>
Jieb6698d52018-11-12 15:26:02 +080059#include <android-base/unique_fd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000060
Eric Biggerseb566d02020-07-06 13:46:38 -070061using android::base::Basename;
62using android::base::Realpath;
63using android::base::StartsWith;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080064using android::base::StringPrintf;
Tom Cherry4c5bde22019-01-29 14:34:01 -080065using android::fs_mgr::GetEntryForMountPoint;
Paul Crowley77df7f22020-01-23 15:29:30 -080066using android::vold::BuildDataPath;
Eric Biggers6b840392020-11-02 15:11:06 -080067using android::vold::IsDotOrDotDot;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +010068using android::vold::IsFilesystemSupported;
Paul Crowley05720802016-02-08 15:55:41 +000069using android::vold::kEmptyAuthentication;
Pavel Grafove2e2d302017-08-01 17:15:53 +010070using android::vold::KeyBuffer;
Paul Crowley249c2fb2020-02-07 12:51:56 -080071using android::vold::KeyGeneration;
Paul Crowley4eac2642020-02-12 11:04:05 -080072using android::vold::retrieveKey;
73using android::vold::retrieveOrGenerateKey;
Martijn Coenen5adf92a2021-02-01 07:57:02 +000074using android::vold::SetDefaultAcl;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +010075using android::vold::SetQuotaInherit;
76using android::vold::SetQuotaProjectId;
Paul Crowley5e53ff62019-10-24 14:55:17 -070077using namespace android::fscrypt;
Eric Biggerseb566d02020-07-06 13:46:38 -070078using namespace android::dm;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080079
Paul Lawrence731a7a22015-04-28 22:14:15 +000080namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000081
Eric Biggersa701c452018-10-23 13:06:55 -070082const std::string device_key_dir = std::string() + DATA_MNT_POINT + fscrypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080083const std::string device_key_path = device_key_dir + "/key";
84const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080085
Paul Crowleydf528a72016-03-09 09:31:37 -080086const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
87const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley82b41ff2017-10-20 08:17:54 -070088const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs";
Paul Crowley285956f2016-01-20 13:12:38 +000089
Paul Crowley26a53882017-10-26 11:16:39 -070090const std::string systemwide_volume_key_dir =
91 std::string() + DATA_MNT_POINT + "/misc/vold/volume_keys";
92
Eric Biggers9ea53442022-05-11 05:33:25 +000093const std::string data_data_dir = std::string() + DATA_MNT_POINT + "/data";
94const std::string data_user_0_dir = std::string() + DATA_MNT_POINT + "/user/0";
95const std::string media_obb_dir = std::string() + DATA_MNT_POINT + "/media/obb";
96
Eric Biggers4cf16912022-10-26 19:05:10 +000097// The file encryption options to use on the /data filesystem
98EncryptionOptions s_data_options;
99
Eric Biggersce50a432022-10-19 19:38:50 +0000100// Some users are ephemeral; don't try to store or wipe their keys on disk.
Paul Crowleydf528a72016-03-09 09:31:37 -0800101std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800102
Eric Biggers8c1659e2022-09-06 21:29:14 +0000103// New CE keys that haven't been committed to disk yet
104std::map<userid_t, KeyBuffer> s_new_ce_keys;
105
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000106// CE key fixation operations that have been deferred to checkpoint commit
107std::map<std::string, std::string> s_deferred_fixations;
108
Eric Biggers9ea53442022-05-11 05:33:25 +0000109// The system DE encryption policy
110EncryptionPolicy s_device_policy;
111
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000112// Struct that holds the EncryptionPolicy for each CE or DE key that is currently installed
113// (added to the kernel) for a particular user
114struct UserPolicies {
115 // Internal storage policy. Exists whenever a user's UserPolicies exists at all, and used
116 // instead of a map entry keyed by an empty UUID to make this invariant explicit.
117 EncryptionPolicy internal;
118 // Adoptable storage policies, indexed by (nonempty) volume UUID
119 std::map<std::string, EncryptionPolicy> adoptable;
120};
Paul Lawrence731a7a22015-04-28 22:14:15 +0000121
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000122// The currently installed CE and DE keys for each user. Protected by VolumeManager::mCryptLock.
123std::map<userid_t, UserPolicies> s_ce_policies;
124std::map<userid_t, UserPolicies> s_de_policies;
Eric Biggersb615f3b2022-11-09 05:48:45 +0000125
Paul Crowley14c8c072018-09-18 13:30:21 -0700126} // namespace
Paul Lawrence731a7a22015-04-28 22:14:15 +0000127
Paul Crowley249c2fb2020-02-07 12:51:56 -0800128// Returns KeyGeneration suitable for key as described in EncryptionOptions
129static KeyGeneration makeGen(const EncryptionOptions& options) {
Eric Biggers4cf16912022-10-26 19:05:10 +0000130 if (options.version == 0) {
131 LOG(ERROR) << "EncryptionOptions not initialized";
132 return android::vold::neverGen();
133 }
Paul Crowley249c2fb2020-02-07 12:51:56 -0800134 return KeyGeneration{FSCRYPT_MAX_KEY_SIZE, true, options.use_hw_wrapped_key};
135}
136
Paul Crowley3b71fc52017-10-09 10:55:21 -0700137static const char* escape_empty(const std::string& value) {
138 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000139}
140
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000141static std::string get_de_key_path(userid_t user_id) {
142 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
143}
144
Paul Crowleya3630362016-05-17 14:17:56 -0700145static std::string get_ce_key_directory_path(userid_t user_id) {
146 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
147}
148
149// Returns the keys newest first
150static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
151 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
152 if (!dirp) {
153 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
154 return std::vector<std::string>();
155 }
156 std::vector<std::string> result;
157 for (;;) {
158 errno = 0;
159 auto const entry = readdir(dirp.get());
160 if (!entry) {
161 if (errno) {
162 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
163 return std::vector<std::string>();
164 }
165 break;
166 }
Eric Biggers6b840392020-11-02 15:11:06 -0800167 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleya3630362016-05-17 14:17:56 -0700168 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
169 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
170 continue;
171 }
172 result.emplace_back(directory_path + "/" + entry->d_name);
173 }
174 std::sort(result.begin(), result.end());
175 std::reverse(result.begin(), result.end());
176 return result;
177}
178
179static std::string get_ce_key_current_path(const std::string& directory_path) {
180 return directory_path + "/current";
181}
182
183static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700184 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700185 if (paths.empty()) {
186 *ce_key_path = get_ce_key_current_path(directory_path);
187 return true;
188 }
189 for (unsigned int i = 0; i < UINT_MAX; i++) {
190 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
191 if (paths[0] < candidate) {
192 *ce_key_path = candidate;
193 return true;
194 }
195 }
196 return false;
197}
198
199// Discard all keys but the named one; rename it to canonical name.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000200static bool fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700201 const std::vector<std::string>& paths) {
Eric Biggers11409cb2022-10-26 19:02:43 +0000202 bool need_sync = false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700203 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700204 if (other_path != to_fix) {
205 android::vold::destroyKey(other_path);
Eric Biggers11409cb2022-10-26 19:02:43 +0000206 need_sync = true;
Paul Crowleya3630362016-05-17 14:17:56 -0700207 }
208 }
209 auto const current_path = get_ce_key_current_path(directory_path);
210 if (to_fix != current_path) {
211 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000212 if (!android::vold::RenameKeyDir(to_fix, current_path)) return false;
Eric Biggers11409cb2022-10-26 19:02:43 +0000213 need_sync = true;
Paul Crowleya3630362016-05-17 14:17:56 -0700214 }
Eric Biggers11409cb2022-10-26 19:02:43 +0000215 if (need_sync && !android::vold::FsyncDirectory(directory_path)) return false;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000216 return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700217}
218
219static bool read_and_fixate_user_ce_key(userid_t user_id,
220 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700221 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700222 auto const directory_path = get_ce_key_directory_path(user_id);
223 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700224 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700225 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
Eric Biggersf74373b2020-11-05 19:58:26 -0800226 if (retrieveKey(ce_key_path, auth, ce_key)) {
Paul Crowleya3630362016-05-17 14:17:56 -0700227 LOG(DEBUG) << "Successfully retrieved key";
Eric Biggersb615f3b2022-11-09 05:48:45 +0000228 s_deferred_fixations.erase(directory_path);
Paul Crowleya3630362016-05-17 14:17:56 -0700229 fixate_user_ce_key(directory_path, ce_key_path, paths);
230 return true;
231 }
232 }
233 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
234 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100235}
236
Eric Biggers7bdf7992024-10-18 16:51:27 +0000237// Checks whether the kernel definitely supports the sysfs files that describe the storage
238// hardware's inline encryption capabilities. They are supported in upstream 5.18 and later, and in
239// android14-5.15 and later (but not android13-5.15). For simplicity we just check for 5.18.
240static bool DoesKernelSupportBlkCryptoSysfsFiles() {
241 struct utsname uts;
242 unsigned int major = 0, minor = 0;
243 if (uname(&uts) != 0 || sscanf(uts.release, "%u.%u", &major, &minor) != 2) {
244 return true; // This should never happen; assume new rather than old.
245 }
246 return major > 5 || (major == 5 && minor >= 18);
247}
248
249// Checks whether the storage hardware might support only 32-bit data unit numbers.
250static bool DoesHardwareSupportOnly32DunBits(const std::string& blk_device) {
Eric Biggerseb566d02020-07-06 13:46:38 -0700251 // Handle symlinks.
252 std::string real_path;
253 if (!Realpath(blk_device, &real_path)) {
254 real_path = blk_device;
255 }
256
257 // Handle logical volumes.
258 auto& dm = DeviceMapper::Instance();
259 for (;;) {
260 auto parent = dm.GetParentBlockDeviceByPath(real_path);
261 if (!parent.has_value()) break;
262 real_path = *parent;
263 }
264
265 // Now we should have the "real" block device.
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800266 std::string name = Basename(real_path);
Eric Biggers7bdf7992024-10-18 16:51:27 +0000267
268 // If possible, do the check precisely via sysfs.
269 // Exclude older devices, just in case they are broken by doing the check correctly...
270 if (GetFirstApiLevel() >= __ANDROID_API_V__) {
271 std::string sysfs_path = "/sys/class/block/" + name + "/queue/crypto/max_dun_bits";
272 if (!android::vold::pathExists(sysfs_path)) {
273 // For a partition, "queue" is in the parent directory which represents the disk.
274 sysfs_path = "/sys/class/block/" + name + "/../queue/crypto/max_dun_bits";
275 }
276 if (android::vold::pathExists(sysfs_path)) {
277 std::string max_dun_bits;
278 if (!android::base::ReadFileToString(sysfs_path, &max_dun_bits)) {
279 PLOG(ERROR) << "Error reading " << sysfs_path;
280 return false;
281 }
282 max_dun_bits = android::base::Trim(max_dun_bits);
283 if (max_dun_bits != "32") {
284 LOG(ERROR) << sysfs_path << " = " << max_dun_bits;
285 // In this case, using emmc_optimized is not appropriate because the hardware
286 // supports inline encryption but does not have the 32-bit DUN limit.
287 return false;
288 }
289 LOG(DEBUG) << sysfs_path << " = " << max_dun_bits;
290 return true;
291 }
292 if (DoesKernelSupportBlkCryptoSysfsFiles()) {
293 // In this case, using emmc_optimized is not appropriate because the hardware does not
294 // support inline encryption.
295 LOG(ERROR) << sysfs_path << " does not exist";
296 return false;
297 }
298 // In this case, the kernel might be too old to support the sysfs files.
299 }
300
301 // Fallback method for older kernels that don't have the crypto capabilities in sysfs. The
302 // 32-bit DUN limit is only known to exist on eMMC storage, and also on virtio storage that
303 // inherits the limit from eMMC on the host. So allow either of those storage types. Note that
304 // this can be overly lenient compared to actually checking max_dun_bits.
305 if (StartsWith(name, "mmcblk") || StartsWith(name, "vd")) {
306 LOG(DEBUG) << __func__ << "(): << blk_device = " << blk_device
307 << ", real_path = " << real_path;
308 return true;
309 }
310 // Log at ERROR level here so that it shows up in the kernel log.
311 LOG(ERROR) << __func__ << "(): << blk_device = " << blk_device << ", real_path = " << real_path;
312 return false;
Eric Biggerseb566d02020-07-06 13:46:38 -0700313}
314
Eric Biggers4cf16912022-10-26 19:05:10 +0000315// Sets s_data_options to the file encryption options for the /data filesystem.
316static bool init_data_file_encryption_options() {
Eric Biggers83a73d72019-09-30 13:06:47 -0700317 auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT);
318 if (entry == nullptr) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800319 LOG(ERROR) << "No mount point entry for " << DATA_MNT_POINT;
320 return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700321 }
Eric Biggers4cf16912022-10-26 19:05:10 +0000322 if (!ParseOptions(entry->encryption_options, &s_data_options)) {
Paul Crowleya50f6c32019-10-24 23:21:44 -0700323 LOG(ERROR) << "Unable to parse encryption options for " << DATA_MNT_POINT ": "
324 << entry->encryption_options;
Paul Crowley77df7f22020-01-23 15:29:30 -0800325 return false;
Paul Crowleya50f6c32019-10-24 23:21:44 -0700326 }
Eric Biggers4cf16912022-10-26 19:05:10 +0000327 if ((s_data_options.flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) &&
Eric Biggers7bdf7992024-10-18 16:51:27 +0000328 !DoesHardwareSupportOnly32DunBits(entry->blk_device)) {
329 // This would unnecessarily reduce security and not be compliant with the CDD.
330 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on hardware limited to "
331 "32-bit DUNs. Remove this flag from the device's fstab";
Eric Biggerseb566d02020-07-06 13:46:38 -0700332 return false;
333 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800334 return true;
Eric Biggers83a73d72019-09-30 13:06:47 -0700335}
336
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800337static bool install_storage_key(const std::string& mountpoint, const EncryptionOptions& options,
338 const KeyBuffer& key, EncryptionPolicy* policy) {
Eric Biggers4cf16912022-10-26 19:05:10 +0000339 if (options.version == 0) {
340 LOG(ERROR) << "EncryptionOptions not initialized";
341 return false;
342 }
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800343 KeyBuffer ephemeral_wrapped_key;
344 if (options.use_hw_wrapped_key) {
345 if (!exportWrappedStorageKey(key, &ephemeral_wrapped_key)) {
346 LOG(ERROR) << "Failed to get ephemeral wrapped key";
347 return false;
348 }
349 }
350 return installKey(mountpoint, options, options.use_hw_wrapped_key ? ephemeral_wrapped_key : key,
351 policy);
352}
353
Eric Biggers83a73d72019-09-30 13:06:47 -0700354// Retrieve the options to use for encryption policies on adoptable storage.
Paul Crowley5e53ff62019-10-24 14:55:17 -0700355static bool get_volume_file_encryption_options(EncryptionOptions* options) {
Paul Crowleyeb241a12020-02-18 10:10:08 -0800356 // If we give the empty string, libfscrypt will use the default (currently XTS)
357 auto contents_mode = android::base::GetProperty("ro.crypto.volume.contents_mode", "");
358 // HEH as default was always a mistake. Use the libfscrypt default (CTS)
359 // for devices launching on versions above Android 10.
360 auto first_api_level = GetFirstApiLevel();
Paul Crowleyf612b8b2019-10-24 22:52:02 -0700361 auto filenames_mode =
Paul Crowleyeb241a12020-02-18 10:10:08 -0800362 android::base::GetProperty("ro.crypto.volume.filenames_mode",
Eric Biggers72d07132020-08-10 10:55:56 -0700363 first_api_level > __ANDROID_API_Q__ ? "" : "aes-256-heh");
Paul Crowley77df7f22020-01-23 15:29:30 -0800364 auto options_string = android::base::GetProperty("ro.crypto.volume.options",
Paul Crowleyeb241a12020-02-18 10:10:08 -0800365 contents_mode + ":" + filenames_mode);
366 if (!ParseOptionsForApiLevel(first_api_level, options_string, options)) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800367 LOG(ERROR) << "Unable to parse volume encryption options: " << options_string;
368 return false;
369 }
Eric Biggerseb566d02020-07-06 13:46:38 -0700370 if (options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) {
371 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
372 "this flag from ro.crypto.volume.options";
373 return false;
374 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800375 return true;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700376}
377
Eric Biggersca9a97e2022-05-12 19:17:15 +0000378// Prepare a directory without assigning it an encryption policy. The directory
379// will inherit the encryption policy of its parent directory, or will be
380// unencrypted if the parent directory is unencrypted.
Paul Crowleydf528a72016-03-09 09:31:37 -0800381static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000382 LOG(DEBUG) << "Preparing: " << dir;
Eric Biggers39704e72022-05-04 22:17:54 +0000383 if (android::vold::PrepareDir(dir, mode, uid, gid, 0) != 0) {
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000384 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000385 return false;
386 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000387 return true;
388}
389
Eric Biggersca9a97e2022-05-12 19:17:15 +0000390// Prepare a directory and assign it the given encryption policy.
391static bool prepare_dir_with_policy(const std::string& dir, mode_t mode, uid_t uid, gid_t gid,
392 const EncryptionPolicy& policy) {
Eric Biggersc6f004a2023-06-08 16:15:52 +0000393 if (android::vold::pathExists(dir)) {
394 if (!prepare_dir(dir, mode, uid, gid)) return false;
395 if (IsFbeEnabled() && !EnsurePolicy(policy, dir)) return false;
396 } else {
397 // If the directory does not yet exist, then create it under a temporary name, and only move
398 // it to the final name after it is fully prepared with an encryption policy and the desired
399 // file permissions. This prevents the directory from being accessed before it is ready.
400 //
401 // Note: this relies on the SELinux file_contexts assigning the same type to the file path
402 // with the ".new" suffix as to the file path without the ".new" suffix.
403
404 const std::string tmp_dir = dir + ".new";
405 if (android::vold::pathExists(tmp_dir)) {
406 android::vold::DeleteDirContentsAndDir(tmp_dir);
407 }
408 if (!prepare_dir(tmp_dir, mode, uid, gid)) return false;
409 if (IsFbeEnabled() && !EnsurePolicy(policy, tmp_dir)) return false;
410
411 // On some buggy kernels, renaming a directory that is both encrypted and case-insensitive
412 // fails in some specific circumstances. Unfortunately, these circumstances happen here
413 // when processing the "media" directory. This was already fixed by kernel commit
414 // https://git.kernel.org/linus/b5639bb4313b9d45 ('f2fs: don't use casefolded comparison for
415 // "." and ".."'). But to support kernels that lack that fix, we use the below workaround.
416 // It bypasses the bug by making the encryption key of tmp_dir be loaded before the rename.
417 android::vold::pathExists(tmp_dir + "/subdir");
418
419 if (rename(tmp_dir.c_str(), dir.c_str()) != 0) {
420 PLOG(ERROR) << "Failed to rename " << tmp_dir << " to " << dir;
421 return false;
422 }
423 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000424 return true;
425}
426
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600427static bool destroy_dir(const std::string& dir) {
428 LOG(DEBUG) << "Destroying: " << dir;
429 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
430 PLOG(ERROR) << "Failed to destroy " << dir;
431 return false;
432 }
433 return true;
434}
435
Eric Biggersce50a432022-10-19 19:38:50 +0000436// Checks whether the DE key directory exists for the given user.
437static bool de_key_exists(userid_t user_id) {
438 return android::vold::pathExists(get_de_key_path(user_id));
439}
440
441// Checks whether at least one CE key subdirectory exists for the given user.
442static bool ce_key_exists(userid_t user_id) {
443 auto directory_path = get_ce_key_directory_path(user_id);
Eric Biggers9544f8c2022-10-07 19:07:23 +0000444 // The common case is that "$dir/current" exists, so check for that first.
445 if (android::vold::pathExists(get_ce_key_current_path(directory_path))) return true;
446
447 // Else, there could still be another subdirectory of $dir (if a crash
448 // occurred during fixate_user_ce_key()), so check for one.
449 return android::vold::pathExists(directory_path) && !get_ce_key_paths(directory_path).empty();
450}
451
Eric Biggersce50a432022-10-19 19:38:50 +0000452static bool create_de_key(userid_t user_id, bool ephemeral) {
Eric Biggersce50a432022-10-19 19:38:50 +0000453 KeyBuffer de_key;
Eric Biggers4cf16912022-10-26 19:05:10 +0000454 if (!generateStorageKey(makeGen(s_data_options), &de_key)) return false;
Eric Biggersce50a432022-10-19 19:38:50 +0000455 if (!ephemeral && !android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
456 kEmptyAuthentication, de_key))
457 return false;
458 EncryptionPolicy de_policy;
Eric Biggers4cf16912022-10-26 19:05:10 +0000459 if (!install_storage_key(DATA_MNT_POINT, s_data_options, de_key, &de_policy)) return false;
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000460 s_de_policies[user_id].internal = de_policy;
Eric Biggersce50a432022-10-19 19:38:50 +0000461 LOG(INFO) << "Created DE key for user " << user_id;
462 return true;
463}
Eric Biggers9544f8c2022-10-07 19:07:23 +0000464
Eric Biggersce50a432022-10-19 19:38:50 +0000465static bool create_ce_key(userid_t user_id, bool ephemeral) {
Eric Biggersce50a432022-10-19 19:38:50 +0000466 KeyBuffer ce_key;
Eric Biggers4cf16912022-10-26 19:05:10 +0000467 if (!generateStorageKey(makeGen(s_data_options), &ce_key)) return false;
Eric Biggersce50a432022-10-19 19:38:50 +0000468 if (!ephemeral) {
469 if (!prepare_dir(get_ce_key_directory_path(user_id), 0700, AID_ROOT, AID_ROOT))
470 return false;
471 // We don't store the CE key on disk here, since here we don't have the
472 // secret needed to do so securely. Instead, we cache it in memory for
Eric Biggersa53a66c2023-10-19 19:47:20 +0000473 // now, and we store it later in fscrypt_set_ce_key_protection().
Eric Biggersce50a432022-10-19 19:38:50 +0000474 s_new_ce_keys.insert({user_id, ce_key});
Eric Biggers9544f8c2022-10-07 19:07:23 +0000475 }
Eric Biggersce50a432022-10-19 19:38:50 +0000476 EncryptionPolicy ce_policy;
Eric Biggers4cf16912022-10-26 19:05:10 +0000477 if (!install_storage_key(DATA_MNT_POINT, s_data_options, ce_key, &ce_policy)) return false;
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000478 s_ce_policies[user_id].internal = ce_policy;
Eric Biggersce50a432022-10-19 19:38:50 +0000479 LOG(INFO) << "Created CE key for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000480 return true;
481}
482
Paul Crowleydf528a72016-03-09 09:31:37 -0800483static bool is_numeric(const char* name) {
484 for (const char* p = name; *p != '\0'; p++) {
485 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000486 }
487 return true;
488}
489
490static bool load_all_de_keys() {
491 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800492 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000493 if (!dirp) {
494 PLOG(ERROR) << "Unable to read de key directory";
495 return false;
496 }
497 for (;;) {
498 errno = 0;
499 auto entry = readdir(dirp.get());
500 if (!entry) {
501 if (errno) {
502 PLOG(ERROR) << "Unable to read de key directory";
503 return false;
504 }
505 break;
506 }
Eric Biggers6b840392020-11-02 15:11:06 -0800507 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000508 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
509 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
510 continue;
511 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600512 userid_t user_id = std::stoi(entry->d_name);
Nikita Ioffef0550af2020-02-27 18:21:55 +0000513 auto key_path = de_dir + "/" + entry->d_name;
514 KeyBuffer de_key;
liulvping69b04852022-10-10 19:16:23 +0800515 if (!retrieveKey(key_path, kEmptyAuthentication, &de_key)) {
516 // This is probably a partially removed user, so ignore
517 if (user_id != 0) continue;
518 return false;
519 }
Nikita Ioffef0550af2020-02-27 18:21:55 +0000520 EncryptionPolicy de_policy;
Eric Biggers4cf16912022-10-26 19:05:10 +0000521 if (!install_storage_key(DATA_MNT_POINT, s_data_options, de_key, &de_policy)) return false;
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000522 const auto& [existing, is_new] = s_de_policies.insert({user_id, {de_policy, {}}});
523 if (!is_new && existing->second.internal != de_policy) {
Nikita Ioffef0550af2020-02-27 18:21:55 +0000524 LOG(ERROR) << "DE policy for user" << user_id << " changed";
525 return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000526 }
Nikita Ioffef0550af2020-02-27 18:21:55 +0000527 LOG(DEBUG) << "Installed de key for user " << user_id;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000528 }
Eric Biggersa701c452018-10-23 13:06:55 -0700529 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000530 // correct policy set on them, and that no rogue ones exist.
531 return true;
532}
533
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700534bool fscrypt_initialize_systemwide_keys() {
535 LOG(INFO) << "fscrypt_initialize_systemwide_keys";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800536
Eric Biggers4cf16912022-10-26 19:05:10 +0000537 if (!init_data_file_encryption_options()) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800538
539 KeyBuffer device_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800540 if (!retrieveOrGenerateKey(device_key_path, device_key_temp, kEmptyAuthentication,
Eric Biggers4cf16912022-10-26 19:05:10 +0000541 makeGen(s_data_options), &device_key))
Paul Crowley77df7f22020-01-23 15:29:30 -0800542 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800543
Eric Biggers9ea53442022-05-11 05:33:25 +0000544 // This initializes s_device_policy, which is a global variable so that
545 // fscrypt_init_user0() can access it later.
Eric Biggers4cf16912022-10-26 19:05:10 +0000546 if (!install_storage_key(DATA_MNT_POINT, s_data_options, device_key, &s_device_policy))
547 return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700548
Paul Crowley5e53ff62019-10-24 14:55:17 -0700549 std::string options_string;
Eric Biggers9ea53442022-05-11 05:33:25 +0000550 if (!OptionsToString(s_device_policy.options, &options_string)) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700551 LOG(ERROR) << "Unable to serialize options";
552 return false;
553 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800554 std::string options_filename = std::string(DATA_MNT_POINT) + fscrypt_key_mode;
Eric Biggers83a73d72019-09-30 13:06:47 -0700555 if (!android::vold::writeStringToFile(options_string, options_filename)) return false;
Paul Lawrence6e410592016-05-24 14:20:38 -0700556
Paul Crowley77df7f22020-01-23 15:29:30 -0800557 std::string ref_filename = std::string(DATA_MNT_POINT) + fscrypt_key_ref;
Eric Biggers9ea53442022-05-11 05:33:25 +0000558 if (!android::vold::writeStringToFile(s_device_policy.key_raw_ref, ref_filename)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700559 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800560
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700561 KeyBuffer per_boot_key;
Eric Biggers4cf16912022-10-26 19:05:10 +0000562 if (!generateStorageKey(makeGen(s_data_options), &per_boot_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800563 EncryptionPolicy per_boot_policy;
Eric Biggers4cf16912022-10-26 19:05:10 +0000564 if (!install_storage_key(DATA_MNT_POINT, s_data_options, per_boot_key, &per_boot_policy))
565 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700566 std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref;
Paul Crowley77df7f22020-01-23 15:29:30 -0800567 if (!android::vold::writeStringToFile(per_boot_policy.key_raw_ref, per_boot_ref_filename))
568 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700569 LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename;
570
Paul Crowley76107cb2016-02-09 10:04:39 +0000571 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800572}
573
Eric Biggers9ea53442022-05-11 05:33:25 +0000574static bool prepare_special_dirs() {
Eric Biggersca9a97e2022-05-12 19:17:15 +0000575 // Ensure that /data/data and its "alias" /data/user/0 exist, and create the
576 // bind mount of /data/data onto /data/user/0. This *should* happen in
577 // fscrypt_prepare_user_storage(). However, it actually must be done early,
578 // before the rest of user 0's CE storage is prepared. This is because
579 // zygote may need to set up app data isolation before then, which requires
580 // mounting a tmpfs over /data/data to ensure it remains hidden. This issue
581 // arises due to /data/data being in the top-level directory.
582
Eric Biggers9ea53442022-05-11 05:33:25 +0000583 // /data/user/0 used to be a symlink to /data/data, so we must first delete
584 // the old symlink if present.
585 if (android::vold::IsSymlink(data_user_0_dir) && android::vold::Unlink(data_user_0_dir) != 0)
586 return false;
Eric Biggersca9a97e2022-05-12 19:17:15 +0000587 // On first boot, we'll be creating /data/data for the first time, and user
588 // 0's CE key will be installed already since it was just created. Take the
589 // opportunity to also set the encryption policy of /data/data right away.
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000590 if (s_ce_policies.count(0) != 0) {
591 const EncryptionPolicy& ce_policy = s_ce_policies[0].internal;
Eric Biggers9544f8c2022-10-07 19:07:23 +0000592 if (!prepare_dir_with_policy(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy)) {
593 // Preparing /data/data failed, yet we had just generated a new CE
594 // key because one wasn't stored. Before erroring out, try deleting
595 // the directory and retrying, as it's possible that the directory
596 // exists with different CE policy from an interrupted first boot.
597 if (rmdir(data_data_dir.c_str()) != 0) {
598 PLOG(ERROR) << "rmdir " << data_data_dir << " failed";
599 }
600 if (!prepare_dir_with_policy(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy))
601 return false;
602 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000603 } else {
604 if (!prepare_dir(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
605 // EnsurePolicy() will have to happen later, in fscrypt_prepare_user_storage().
606 }
Eric Biggers9ea53442022-05-11 05:33:25 +0000607 if (!prepare_dir(data_user_0_dir, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
608 if (android::vold::BindMount(data_data_dir, data_user_0_dir) != 0) return false;
609
610 // If /data/media/obb doesn't exist, create it and encrypt it with the
611 // device policy. Normally, device-policy-encrypted directories are created
612 // and encrypted by init; /data/media/obb is special because it is located
613 // in /data/media. Since /data/media also contains per-user encrypted
614 // directories, by design only vold can write to it. As a side effect of
615 // that, vold must create /data/media/obb.
616 //
617 // We must tolerate /data/media/obb being unencrypted if it already exists
618 // on-disk, since it used to be unencrypted (b/64566063).
Eric Biggersca9a97e2022-05-12 19:17:15 +0000619 if (android::vold::pathExists(media_obb_dir)) {
620 if (!prepare_dir(media_obb_dir, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
621 } else {
622 if (!prepare_dir_with_policy(media_obb_dir, 0770, AID_MEDIA_RW, AID_MEDIA_RW,
623 s_device_policy))
624 return false;
625 }
Eric Biggers9ea53442022-05-11 05:33:25 +0000626 return true;
627}
628
Eric Biggersfb486662022-03-22 00:33:52 +0000629bool fscrypt_init_user0_done;
630
Eric Biggersa701c452018-10-23 13:06:55 -0700631bool fscrypt_init_user0() {
632 LOG(DEBUG) << "fscrypt_init_user0";
Eric Biggers9ea53442022-05-11 05:33:25 +0000633
Eric Biggersa6957c02022-06-15 18:52:18 +0000634 if (IsFbeEnabled()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000635 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
636 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
637 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Eric Biggersce50a432022-10-19 19:38:50 +0000638
639 // Create user 0's DE and CE keys if they don't already exist. Check
640 // each key independently, since if the first boot was interrupted it is
641 // possible that the DE key exists but the CE key does not.
642 if (!de_key_exists(0) && !create_de_key(0, false)) return false;
643 if (!ce_key_exists(0) && !create_ce_key(0, false)) return false;
644
Jeff Sharkey47695b22016-02-01 17:02:29 -0700645 // TODO: switch to loading only DE_0 here once framework makes
646 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000647 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000648 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000649
650 // Now that user 0's CE key has been created, we can prepare /data/data.
651 if (!prepare_special_dirs()) return false;
652
653 // With the exception of what is done by prepare_special_dirs() above, we
654 // only prepare DE storage here, since user 0's CE key won't be installed
Eric Biggers9ea53442022-05-11 05:33:25 +0000655 // yet unless it was just created. The framework will prepare the user's CE
656 // storage later, once their CE key is installed.
Eric Biggersa5a468c2023-12-12 23:53:55 +0000657 if (!fscrypt_prepare_user_storage("", 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700658 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000659 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700660 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700661
Eric Biggersfb486662022-03-22 00:33:52 +0000662 fscrypt_init_user0_done = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000663 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000664}
665
Eric Biggersa53a66c2023-10-19 19:47:20 +0000666// Creates the CE and DE keys for a new user.
Eric Biggersa5a468c2023-12-12 23:53:55 +0000667bool fscrypt_create_user_keys(userid_t user_id, bool ephemeral) {
668 LOG(DEBUG) << "fscrypt_create_user_keys for " << user_id;
Eric Biggersa6957c02022-06-15 18:52:18 +0000669 if (!IsFbeEnabled()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000670 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000671 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000672 // FIXME test for existence of key that is not loaded yet
Paul Crowley77df7f22020-01-23 15:29:30 -0800673 if (s_ce_policies.count(user_id) != 0) {
Eric Biggersa5a468c2023-12-12 23:53:55 +0000674 LOG(ERROR) << "Already exists, can't create keys for " << user_id;
Paul Crowley285956f2016-01-20 13:12:38 +0000675 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000676 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800677 }
Eric Biggersce50a432022-10-19 19:38:50 +0000678 if (!create_de_key(user_id, ephemeral)) return false;
679 if (!create_ce_key(user_id, ephemeral)) return false;
680 if (ephemeral) s_ephemeral_users.insert(user_id);
Paul Crowley76107cb2016-02-09 10:04:39 +0000681 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800682}
683
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000684// Evicts all the user's keys of one type from all volumes (internal and adoptable).
685// This evicts either CE keys or DE keys, depending on which map is passed.
686static bool evict_user_keys(std::map<userid_t, UserPolicies>& policy_map, userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000687 bool success = true;
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000688 auto it = policy_map.find(user_id);
689 if (it != policy_map.end()) {
690 const UserPolicies& policies = it->second;
691 success &= android::vold::evictKey(BuildDataPath(""), policies.internal);
692 for (const auto& [volume_uuid, policy] : policies.adoptable) {
693 success &= android::vold::evictKey(BuildDataPath(volume_uuid), policy);
694 }
695 policy_map.erase(it);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000696 }
Andrew Scull7ec25c72016-10-31 10:28:25 +0000697 return success;
698}
699
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000700// Evicts and destroys all CE and DE keys for a user. This is called when the user is removed.
Eric Biggersa53a66c2023-10-19 19:47:20 +0000701bool fscrypt_destroy_user_keys(userid_t user_id) {
702 LOG(DEBUG) << "fscrypt_destroy_user_keys(" << user_id << ")";
Eric Biggersa6957c02022-06-15 18:52:18 +0000703 if (!IsFbeEnabled()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000704 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000705 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000706 bool success = true;
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000707
708 success &= evict_user_keys(s_ce_policies, user_id);
709 success &= evict_user_keys(s_de_policies, user_id);
710
Eric Biggers8c1659e2022-09-06 21:29:14 +0000711 if (!s_ephemeral_users.erase(user_id)) {
Eric Biggersd863b2c2021-05-27 17:29:10 -0700712 auto ce_path = get_ce_key_directory_path(user_id);
Eric Biggers8c1659e2022-09-06 21:29:14 +0000713 if (!s_new_ce_keys.erase(user_id)) {
714 for (auto const path : get_ce_key_paths(ce_path)) {
715 success &= android::vold::destroyKey(path);
716 }
Paul Crowleya3630362016-05-17 14:17:56 -0700717 }
Eric Biggersb615f3b2022-11-09 05:48:45 +0000718 s_deferred_fixations.erase(ce_path);
Eric Biggersd863b2c2021-05-27 17:29:10 -0700719 success &= destroy_dir(ce_path);
720
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700721 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700722 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700723 success &= android::vold::destroyKey(de_key_path);
724 } else {
725 LOG(INFO) << "Not present so not erasing: " << de_key_path;
726 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100727 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000728 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100729}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800730
Ellen Arteca5177ed22024-04-03 21:18:01 +0000731static android::vold::KeyAuthentication authentication_from_secret(
732 const std::vector<uint8_t>& secret) {
733 std::string secret_str(secret.begin(), secret.end());
734 if (secret_str.empty()) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700735 return kEmptyAuthentication;
736 } else {
Ellen Arteca5177ed22024-04-03 21:18:01 +0000737 return android::vold::KeyAuthentication(secret_str);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700738 }
739}
740
Paul Crowley3aa914d2017-10-09 16:35:51 -0700741static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
742 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
743}
744
Paul Crowley26a53882017-10-26 11:16:39 -0700745static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
746 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
747}
748
Paul Crowley3aa914d2017-10-09 16:35:51 -0700749static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000750 UserPolicies& user_policies, EncryptionPolicy* policy) {
Paul Crowley26a53882017-10-26 11:16:39 -0700751 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
752 std::string secdiscardable_hash;
753 if (android::vold::pathExists(secdiscardable_path)) {
754 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
755 return false;
756 } else {
Eric Biggersfec0c0e2021-02-16 15:59:17 -0800757 if (!android::vold::MkdirsSync(secdiscardable_path, 0700)) return false;
Paul Crowley26a53882017-10-26 11:16:39 -0700758 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
759 return false;
760 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700761 auto key_path = volkey_path(misc_path, volume_uuid);
Eric Biggersfec0c0e2021-02-16 15:59:17 -0800762 if (!android::vold::MkdirsSync(key_path, 0700)) return false;
Satya Tangiralae1361712021-03-15 15:33:08 -0700763 android::vold::KeyAuthentication auth(secdiscardable_hash);
Eric Biggers83a73d72019-09-30 13:06:47 -0700764
Paul Crowley77df7f22020-01-23 15:29:30 -0800765 EncryptionOptions options;
766 if (!get_volume_file_encryption_options(&options)) return false;
767 KeyBuffer key;
Eric Biggersf74373b2020-11-05 19:58:26 -0800768 if (!retrieveOrGenerateKey(key_path, key_path + "_tmp", auth, makeGen(options), &key))
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800769 return false;
770 if (!install_storage_key(BuildDataPath(volume_uuid), options, key, policy)) return false;
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000771 user_policies.adoptable[volume_uuid] = *policy;
Paul Crowley77df7f22020-01-23 15:29:30 -0800772 return true;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700773}
774
775static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700776 auto path = volkey_path(misc_path, volume_uuid);
777 if (!android::vold::pathExists(path)) return true;
778 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700779}
780
Eric Biggersce50a432022-10-19 19:38:50 +0000781// (Re-)encrypts the user's CE key with the given secret. This function handles
782// storing the CE key for a new user for the first time. It also handles
783// re-encrypting the CE key upon upgrade from an Android version where the CE
784// key was stored with kEmptyAuthentication when the user didn't have an LSKF.
785// See the comments below for the different cases handled.
Ellen Arteca5177ed22024-04-03 21:18:01 +0000786bool fscrypt_set_ce_key_protection(userid_t user_id, const std::vector<uint8_t>& secret) {
Eric Biggersa53a66c2023-10-19 19:47:20 +0000787 LOG(DEBUG) << "fscrypt_set_ce_key_protection " << user_id;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000788 if (!IsFbeEnabled()) return true;
Ellen Arteca5177ed22024-04-03 21:18:01 +0000789 auto auth = authentication_from_secret(secret);
790 if (auth.secret.empty()) {
Eric Biggersa53a66c2023-10-19 19:47:20 +0000791 LOG(ERROR) << "fscrypt_set_ce_key_protection: secret must be nonempty";
Eric Biggers8c1659e2022-09-06 21:29:14 +0000792 return false;
793 }
Eric Biggersce50a432022-10-19 19:38:50 +0000794 // We shouldn't store any keys for ephemeral users.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000795 if (s_ephemeral_users.count(user_id) != 0) {
796 LOG(DEBUG) << "Not storing key because user is ephemeral";
797 return true;
798 }
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700799 KeyBuffer ce_key;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000800 auto it = s_new_ce_keys.find(user_id);
801 if (it != s_new_ce_keys.end()) {
Eric Biggersce50a432022-10-19 19:38:50 +0000802 // If the key exists in s_new_ce_keys, then the key is a
803 // not-yet-committed key for a new user, and we are committing it here.
804 // This happens when the user's synthetic password is created.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000805 ce_key = it->second;
Eric Biggersce50a432022-10-19 19:38:50 +0000806 } else if (ce_key_exists(user_id)) {
807 // If the key doesn't exist in s_new_ce_keys but does exist on-disk,
808 // then we are setting the protection on an existing key. This happens
809 // at upgrade time, when CE keys that were previously protected by
Eric Biggers8c1659e2022-09-06 21:29:14 +0000810 // kEmptyAuthentication are encrypted by the user's synthetic password.
Eric Biggersce50a432022-10-19 19:38:50 +0000811 LOG(DEBUG) << "CE key already exists on-disk; re-protecting it with the given secret";
Eric Biggers8c1659e2022-09-06 21:29:14 +0000812 if (!read_and_fixate_user_ce_key(user_id, kEmptyAuthentication, &ce_key)) {
Eric Biggersce50a432022-10-19 19:38:50 +0000813 LOG(ERROR) << "Failed to retrieve CE key for user " << user_id << " using empty auth";
Eric Biggers8c1659e2022-09-06 21:29:14 +0000814 // Before failing, also check whether the key is already protected
815 // with the given secret. This isn't expected, but in theory it
816 // could happen if an upgrade is requested for a user more than once
817 // due to a power-off or other interruption.
Ellen Arteca5177ed22024-04-03 21:18:01 +0000818 if (read_and_fixate_user_ce_key(user_id, auth, &ce_key)) {
Eric Biggersce50a432022-10-19 19:38:50 +0000819 LOG(WARNING) << "CE key is already protected by given secret";
Eric Biggers8c1659e2022-09-06 21:29:14 +0000820 return true;
821 }
Eric Biggersce50a432022-10-19 19:38:50 +0000822 // The key isn't protected by either kEmptyAuthentication or by
823 // |auth|. This should never happen, and there's nothing we can do
824 // besides return an error.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000825 return false;
826 }
Eric Biggersce50a432022-10-19 19:38:50 +0000827 } else {
828 // If the key doesn't exist in memory or on-disk, then we need to
829 // generate it here, then commit it to disk. This is needed after the
830 // unusual case where a non-system user was created during early boot,
831 // and then the device was force-rebooted before the boot completed. In
832 // that case, the Android user record was committed but the CE key was
833 // not. So the CE key was lost, and we need to regenerate it. This
834 // should be fine, since the key should not have been used yet.
835 LOG(WARNING) << "CE key not found! Regenerating it";
836 if (!create_ce_key(user_id, false)) return false;
837 ce_key = s_new_ce_keys.find(user_id)->second;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700838 }
Eric Biggersce50a432022-10-19 19:38:50 +0000839
840 auto const directory_path = get_ce_key_directory_path(user_id);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700841 auto const paths = get_ce_key_paths(directory_path);
842 std::string ce_key_path;
843 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Ellen Arteca5177ed22024-04-03 21:18:01 +0000844 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, auth, ce_key)) return false;
Eric Biggersb615f3b2022-11-09 05:48:45 +0000845
846 // Fixate the key, i.e. delete all other bindings of it. (In practice this
847 // just means the kEmptyAuthentication binding, if there is one.) However,
848 // if a userdata filesystem checkpoint is pending, then we need to delay the
849 // fixation until the checkpoint has been committed, since deleting keys
850 // from Keystore cannot be rolled back.
851 if (android::vold::cp_needsCheckpoint()) {
852 LOG(INFO) << "Deferring fixation of " << directory_path << " until checkpoint is committed";
853 s_deferred_fixations[directory_path] = ce_key_path;
854 } else {
855 s_deferred_fixations.erase(directory_path);
856 if (!fixate_user_ce_key(directory_path, ce_key_path, paths)) return false;
857 }
858
Eric Biggers8c1659e2022-09-06 21:29:14 +0000859 if (s_new_ce_keys.erase(user_id)) {
860 LOG(INFO) << "Stored CE key for new user " << user_id;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000861 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000862 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000863}
864
Eric Biggersb615f3b2022-11-09 05:48:45 +0000865void fscrypt_deferred_fixate_ce_keys() {
866 for (const auto& it : s_deferred_fixations) {
867 const auto& directory_path = it.first;
868 const auto& to_fix = it.second;
869 LOG(INFO) << "Doing deferred fixation of " << directory_path;
870 fixate_user_ce_key(directory_path, to_fix, get_ce_key_paths(directory_path));
871 // Continue on error.
872 }
873 s_deferred_fixations.clear();
874}
875
Eric Biggers18ba1522021-04-06 12:02:56 -0700876std::vector<int> fscrypt_get_unlocked_users() {
877 std::vector<int> user_ids;
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000878 for (const auto& [user_id, user_policies] : s_ce_policies) {
879 user_ids.push_back(user_id);
Eric Biggers18ba1522021-04-06 12:02:56 -0700880 }
881 return user_ids;
882}
883
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000884// Unlocks internal CE storage for the given user. This only unlocks internal storage, since
885// fscrypt_prepare_user_storage() has to be called for each adoptable storage volume anyway (since
886// the volume might have been absent when the user was created), and that handles the unlocking.
Ellen Arteca5177ed22024-04-03 21:18:01 +0000887bool fscrypt_unlock_ce_storage(userid_t user_id, const std::vector<uint8_t>& secret) {
Eric Biggersa5a468c2023-12-12 23:53:55 +0000888 LOG(DEBUG) << "fscrypt_unlock_ce_storage " << user_id;
Eric Biggersfc1df0e2023-08-01 19:34:53 +0000889 if (!IsFbeEnabled()) return true;
890 if (s_ce_policies.count(user_id) != 0) {
Eric Biggersa53a66c2023-10-19 19:47:20 +0000891 LOG(WARNING) << "CE storage for user " << user_id << " is already unlocked";
Eric Biggersfc1df0e2023-08-01 19:34:53 +0000892 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800893 }
Ellen Arteca5177ed22024-04-03 21:18:01 +0000894 auto auth = authentication_from_secret(secret);
Eric Biggersfc1df0e2023-08-01 19:34:53 +0000895 KeyBuffer ce_key;
Ellen Arteca5177ed22024-04-03 21:18:01 +0000896 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Eric Biggersfc1df0e2023-08-01 19:34:53 +0000897 EncryptionPolicy ce_policy;
898 if (!install_storage_key(DATA_MNT_POINT, s_data_options, ce_key, &ce_policy)) return false;
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000899 s_ce_policies[user_id].internal = ce_policy;
Eric Biggersa53a66c2023-10-19 19:47:20 +0000900 LOG(DEBUG) << "Installed CE key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000901 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800902}
903
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000904// Locks CE storage for the given user. This locks both internal and adoptable storage.
Eric Biggersa53a66c2023-10-19 19:47:20 +0000905bool fscrypt_lock_ce_storage(userid_t user_id) {
906 LOG(DEBUG) << "fscrypt_lock_ce_storage " << user_id;
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000907 if (!IsFbeEnabled()) return true;
908 return evict_user_keys(s_ce_policies, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800909}
910
Paul Crowley82b41ff2017-10-20 08:17:54 -0700911static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
912 userid_t user_id, int flags) {
913 if (0 != android::vold::ForkExecvp(
914 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
915 std::to_string(user_id), std::to_string(flags)})) {
916 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700917 return false;
918 }
919 return true;
920}
921
Eric Biggersa5a468c2023-12-12 23:53:55 +0000922bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700923 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Eric Biggersa5a468c2023-12-12 23:53:55 +0000924 << ", user " << user_id << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700925
Eric Biggersc66c2e32022-05-04 04:39:50 +0000926 // Internal storage must be prepared before adoptable storage, since the
927 // user's volume keys are stored in their internal storage.
928 if (!volume_uuid.empty()) {
929 if ((flags & android::os::IVold::STORAGE_FLAG_DE) &&
930 !android::vold::pathExists(android::vold::BuildDataMiscDePath("", user_id))) {
931 LOG(ERROR) << "Cannot prepare DE storage for user " << user_id << " on volume "
932 << volume_uuid << " before internal storage";
933 return false;
934 }
935 if ((flags & android::os::IVold::STORAGE_FLAG_CE) &&
936 !android::vold::pathExists(android::vold::BuildDataMiscCePath("", user_id))) {
937 LOG(ERROR) << "Cannot prepare CE storage for user " << user_id << " on volume "
938 << volume_uuid << " before internal storage";
939 return false;
940 }
941 }
942
Paul Crowley82b41ff2017-10-20 08:17:54 -0700943 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600944 // DE_sys key
945 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600946 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600947
948 // DE_n key
Eric Biggersca9a97e2022-05-12 19:17:15 +0000949 EncryptionPolicy de_policy;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700950 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000951 auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800952 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700953 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
954
Eric Biggersa6957c02022-06-15 18:52:18 +0000955 if (IsFbeEnabled()) {
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000956 auto it = s_de_policies.find(user_id);
957 if (it == s_de_policies.end()) {
958 LOG(ERROR) << "Cannot find DE policy for user " << user_id;
959 return false;
960 }
961 UserPolicies& user_de_policies = it->second;
Eric Biggersca9a97e2022-05-12 19:17:15 +0000962 if (volume_uuid.empty()) {
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000963 de_policy = user_de_policies.internal;
Eric Biggersca9a97e2022-05-12 19:17:15 +0000964 } else {
965 auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id);
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000966 if (!read_or_create_volkey(misc_de_empty_volume_path, volume_uuid, user_de_policies,
967 &de_policy)) {
Eric Biggersca9a97e2022-05-12 19:17:15 +0000968 return false;
969 }
970 }
971 }
972
Paul Crowley3b71fc52017-10-09 10:55:21 -0700973 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700974 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700975 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600976
Eric Biggersca9a97e2022-05-12 19:17:15 +0000977 if (!prepare_dir_with_policy(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM, de_policy))
978 return false;
979 if (!prepare_dir_with_policy(vendor_de_path, 0771, AID_ROOT, AID_ROOT, de_policy))
980 return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700981 }
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000982
Eric Biggersca9a97e2022-05-12 19:17:15 +0000983 if (!prepare_dir_with_policy(misc_de_path, 01771, AID_SYSTEM, AID_MISC, de_policy))
984 return false;
985 if (!prepare_dir_with_policy(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM, de_policy))
986 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000987 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800988
Paul Crowley82b41ff2017-10-20 08:17:54 -0700989 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600990 // CE_n key
Eric Biggersca9a97e2022-05-12 19:17:15 +0000991 EncryptionPolicy ce_policy;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700992 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000993 auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800994 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600995 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
996 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800997
Eric Biggersa6957c02022-06-15 18:52:18 +0000998 if (IsFbeEnabled()) {
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000999 auto it = s_ce_policies.find(user_id);
1000 if (it == s_ce_policies.end()) {
1001 LOG(ERROR) << "Cannot find CE policy for user " << user_id;
1002 return false;
1003 }
1004 UserPolicies& user_ce_policies = it->second;
Eric Biggersca9a97e2022-05-12 19:17:15 +00001005 if (volume_uuid.empty()) {
Eric Biggers1eddb7c2023-08-02 23:02:22 +00001006 ce_policy = user_ce_policies.internal;
Eric Biggersca9a97e2022-05-12 19:17:15 +00001007 } else {
1008 auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id);
Eric Biggers1eddb7c2023-08-02 23:02:22 +00001009 if (!read_or_create_volkey(misc_ce_empty_volume_path, volume_uuid, user_ce_policies,
1010 &ce_policy)) {
Eric Biggersca9a97e2022-05-12 19:17:15 +00001011 return false;
1012 }
1013 }
Paul Crowley6b756ce2017-10-05 14:07:09 -07001014 }
Eric Biggersca9a97e2022-05-12 19:17:15 +00001015
1016 if (volume_uuid.empty()) {
1017 if (!prepare_dir_with_policy(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM, ce_policy))
1018 return false;
1019 if (!prepare_dir_with_policy(vendor_ce_path, 0771, AID_ROOT, AID_ROOT, ce_policy))
1020 return false;
1021 }
1022 if (!prepare_dir_with_policy(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW, ce_policy))
1023 return false;
Martijn Coenen5adf92a2021-02-01 07:57:02 +00001024 // On devices without sdcardfs (kernel 5.4+), the path permissions aren't fixed
1025 // up automatically; therefore, use a default ACL, to ensure apps with MEDIA_RW
1026 // can keep reading external storage; in particular, this allows app cloning
1027 // scenarios to work correctly on such devices.
1028 int ret = SetDefaultAcl(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW, {AID_MEDIA_RW});
1029 if (ret != android::OK) {
1030 return false;
1031 }
Eric Biggersca9a97e2022-05-12 19:17:15 +00001032 if (!prepare_dir_with_policy(misc_ce_path, 01771, AID_SYSTEM, AID_MISC, ce_policy))
1033 return false;
1034 if (!prepare_dir_with_policy(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy))
1035 return false;
Paul Crowley1a965262017-10-13 13:49:50 -07001036
1037 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -07001038 // Now that credentials have been installed, we can run restorecon
1039 // over these paths
1040 // NOTE: these paths need to be kept in sync with libselinux
1041 android::vold::RestoreconRecursive(system_ce_path);
Nick Kralevich6a3ef482019-05-14 09:30:29 -07001042 android::vold::RestoreconRecursive(vendor_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -07001043 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -07001044 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001045 }
Paul Crowley82b41ff2017-10-20 08:17:54 -07001046 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001047
Paul Crowley76107cb2016-02-09 10:04:39 +00001048 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001049}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001050
Eric Biggersa701c452018-10-23 13:06:55 -07001051bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
1052 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001053 << ", user " << user_id << ", flags " << flags;
1054 bool res = true;
1055
Paul Crowley82b41ff2017-10-20 08:17:54 -07001056 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
1057
1058 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -07001059 // CE_n key
1060 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001061 auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001062 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -07001063 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
1064 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
1065
1066 res &= destroy_dir(media_ce_path);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001067 res &= destroy_dir(misc_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -07001068 res &= destroy_dir(user_ce_path);
1069 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -07001070 res &= destroy_dir(system_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001071 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001072 } else {
Eric Biggersa6957c02022-06-15 18:52:18 +00001073 if (IsFbeEnabled()) {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001074 auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id);
1075 res &= destroy_volkey(misc_ce_empty_volume_path, volume_uuid);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001076 }
Paul Crowley8e550662017-10-16 17:01:44 -07001077 }
1078 }
1079
Paul Crowley82b41ff2017-10-20 08:17:54 -07001080 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001081 // DE_sys key
1082 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001083 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001084
1085 // DE_n key
1086 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001087 auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001088 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001089 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
1090
Paul Crowley8e550662017-10-16 17:01:44 -07001091 res &= destroy_dir(user_de_path);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001092 res &= destroy_dir(misc_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -07001093 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001094 res &= destroy_dir(system_legacy_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001095 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001096 res &= destroy_dir(system_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001097 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001098 } else {
Eric Biggersa6957c02022-06-15 18:52:18 +00001099 if (IsFbeEnabled()) {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001100 auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id);
1101 res &= destroy_volkey(misc_de_empty_volume_path, volume_uuid);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001102 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001103 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001104 }
1105
1106 return res;
1107}
Rubin Xu2436e272017-04-27 20:43:10 +01001108
Paul Crowleyc6433a22017-10-24 14:54:43 -07001109static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
1110 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
1111 if (!dirp) {
1112 PLOG(ERROR) << "Unable to open directory: " + directory_path;
1113 return false;
1114 }
1115 bool res = true;
1116 for (;;) {
1117 errno = 0;
1118 auto const entry = readdir(dirp.get());
1119 if (!entry) {
1120 if (errno) {
1121 PLOG(ERROR) << "Unable to read directory: " + directory_path;
1122 return false;
1123 }
1124 break;
1125 }
Eric Biggers6b840392020-11-02 15:11:06 -08001126 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleyc6433a22017-10-24 14:54:43 -07001127 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
1128 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
1129 continue;
1130 }
1131 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
1132 }
1133 return res;
1134}
1135
Eric Biggers1eddb7c2023-08-02 23:02:22 +00001136static void erase_volume_policies(std::map<userid_t, UserPolicies>& policy_map,
1137 const std::string& volume_uuid) {
1138 for (auto& [user_id, user_policies] : policy_map) {
1139 user_policies.adoptable.erase(volume_uuid);
1140 }
1141}
1142
Eric Biggers78627292023-08-01 22:36:55 +00001143// Destroys all CE and DE keys for an adoptable storage volume that is permanently going away.
1144// Requires VolumeManager::mCryptLock.
Eric Biggersa701c452018-10-23 13:06:55 -07001145bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Eric Biggers78627292023-08-01 22:36:55 +00001146 if (!IsFbeEnabled()) return true;
Paul Crowleyc6433a22017-10-24 14:54:43 -07001147 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -07001148 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -07001149 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
1150 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -07001151 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
1152 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
Eric Biggers1eddb7c2023-08-02 23:02:22 +00001153 // Drop the CE and DE policies stored in memory, as they are not needed anymore. Note that it's
1154 // not necessary to also evict the corresponding keys from the kernel, as that happens
1155 // automatically as a result of the volume being unmounted.
1156 erase_volume_policies(s_ce_policies, volume_uuid);
1157 erase_volume_policies(s_de_policies, volume_uuid);
Paul Crowleyc6433a22017-10-24 14:54:43 -07001158 return res;
1159}