blob: 477db7cbee05d820f2625d2be0a24505df3b2890 [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
Eric Biggers4cf16912022-10-26 19:05:10 +000099// The file encryption options to use on the /data filesystem
100EncryptionOptions s_data_options;
101
Eric Biggersce50a432022-10-19 19:38:50 +0000102// Some users are ephemeral; don't try to store or wipe their keys on disk.
Paul Crowleydf528a72016-03-09 09:31:37 -0800103std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800104
Eric Biggers8c1659e2022-09-06 21:29:14 +0000105// New CE keys that haven't been committed to disk yet
106std::map<userid_t, KeyBuffer> s_new_ce_keys;
107
Eric Biggers9ea53442022-05-11 05:33:25 +0000108// The system DE encryption policy
109EncryptionPolicy s_device_policy;
110
Paul Crowley77df7f22020-01-23 15:29:30 -0800111// Map user ids to encryption policies
112std::map<userid_t, EncryptionPolicy> s_de_policies;
113std::map<userid_t, EncryptionPolicy> s_ce_policies;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000114
Paul Crowley14c8c072018-09-18 13:30:21 -0700115} // namespace
Paul Lawrence731a7a22015-04-28 22:14:15 +0000116
Paul Crowley249c2fb2020-02-07 12:51:56 -0800117// Returns KeyGeneration suitable for key as described in EncryptionOptions
118static KeyGeneration makeGen(const EncryptionOptions& options) {
Eric Biggers4cf16912022-10-26 19:05:10 +0000119 if (options.version == 0) {
120 LOG(ERROR) << "EncryptionOptions not initialized";
121 return android::vold::neverGen();
122 }
Paul Crowley249c2fb2020-02-07 12:51:56 -0800123 return KeyGeneration{FSCRYPT_MAX_KEY_SIZE, true, options.use_hw_wrapped_key};
124}
125
Paul Crowley3b71fc52017-10-09 10:55:21 -0700126static const char* escape_empty(const std::string& value) {
127 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000128}
129
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000130static std::string get_de_key_path(userid_t user_id) {
131 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
132}
133
Paul Crowleya3630362016-05-17 14:17:56 -0700134static std::string get_ce_key_directory_path(userid_t user_id) {
135 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
136}
137
138// Returns the keys newest first
139static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
140 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
141 if (!dirp) {
142 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
143 return std::vector<std::string>();
144 }
145 std::vector<std::string> result;
146 for (;;) {
147 errno = 0;
148 auto const entry = readdir(dirp.get());
149 if (!entry) {
150 if (errno) {
151 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
152 return std::vector<std::string>();
153 }
154 break;
155 }
Eric Biggers6b840392020-11-02 15:11:06 -0800156 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleya3630362016-05-17 14:17:56 -0700157 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
158 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
159 continue;
160 }
161 result.emplace_back(directory_path + "/" + entry->d_name);
162 }
163 std::sort(result.begin(), result.end());
164 std::reverse(result.begin(), result.end());
165 return result;
166}
167
168static std::string get_ce_key_current_path(const std::string& directory_path) {
169 return directory_path + "/current";
170}
171
172static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700173 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700174 if (paths.empty()) {
175 *ce_key_path = get_ce_key_current_path(directory_path);
176 return true;
177 }
178 for (unsigned int i = 0; i < UINT_MAX; i++) {
179 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
180 if (paths[0] < candidate) {
181 *ce_key_path = candidate;
182 return true;
183 }
184 }
185 return false;
186}
187
188// Discard all keys but the named one; rename it to canonical name.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000189static bool fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700190 const std::vector<std::string>& paths) {
Eric Biggers11409cb2022-10-26 19:02:43 +0000191 bool need_sync = false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700192 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700193 if (other_path != to_fix) {
194 android::vold::destroyKey(other_path);
Eric Biggers11409cb2022-10-26 19:02:43 +0000195 need_sync = true;
Paul Crowleya3630362016-05-17 14:17:56 -0700196 }
197 }
198 auto const current_path = get_ce_key_current_path(directory_path);
199 if (to_fix != current_path) {
200 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000201 if (!android::vold::RenameKeyDir(to_fix, current_path)) return false;
Eric Biggers11409cb2022-10-26 19:02:43 +0000202 need_sync = true;
Paul Crowleya3630362016-05-17 14:17:56 -0700203 }
Eric Biggers11409cb2022-10-26 19:02:43 +0000204 if (need_sync && !android::vold::FsyncDirectory(directory_path)) return false;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000205 return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700206}
207
208static bool read_and_fixate_user_ce_key(userid_t user_id,
209 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700210 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700211 auto const directory_path = get_ce_key_directory_path(user_id);
212 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700213 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700214 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
Eric Biggersf74373b2020-11-05 19:58:26 -0800215 if (retrieveKey(ce_key_path, auth, ce_key)) {
Paul Crowleya3630362016-05-17 14:17:56 -0700216 LOG(DEBUG) << "Successfully retrieved key";
217 fixate_user_ce_key(directory_path, ce_key_path, paths);
218 return true;
219 }
220 }
221 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
222 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100223}
224
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800225static bool MightBeEmmcStorage(const std::string& blk_device) {
Eric Biggerseb566d02020-07-06 13:46:38 -0700226 // Handle symlinks.
227 std::string real_path;
228 if (!Realpath(blk_device, &real_path)) {
229 real_path = blk_device;
230 }
231
232 // Handle logical volumes.
233 auto& dm = DeviceMapper::Instance();
234 for (;;) {
235 auto parent = dm.GetParentBlockDeviceByPath(real_path);
236 if (!parent.has_value()) break;
237 real_path = *parent;
238 }
239
240 // Now we should have the "real" block device.
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800241 LOG(DEBUG) << "MightBeEmmcStorage(): blk_device = " << blk_device
242 << ", real_path=" << real_path;
243 std::string name = Basename(real_path);
244 return StartsWith(name, "mmcblk") ||
245 // virtio devices may provide inline encryption support that is
246 // backed by eMMC inline encryption on the host, thus inheriting the
247 // DUN size limitation. So virtio devices must be allowed here too.
248 // TODO(b/207390665): check the maximum DUN size directly instead.
249 StartsWith(name, "vd");
Eric Biggerseb566d02020-07-06 13:46:38 -0700250}
251
Eric Biggers4cf16912022-10-26 19:05:10 +0000252// Sets s_data_options to the file encryption options for the /data filesystem.
253static bool init_data_file_encryption_options() {
Eric Biggers83a73d72019-09-30 13:06:47 -0700254 auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT);
255 if (entry == nullptr) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800256 LOG(ERROR) << "No mount point entry for " << DATA_MNT_POINT;
257 return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700258 }
Eric Biggers4cf16912022-10-26 19:05:10 +0000259 if (!ParseOptions(entry->encryption_options, &s_data_options)) {
Paul Crowleya50f6c32019-10-24 23:21:44 -0700260 LOG(ERROR) << "Unable to parse encryption options for " << DATA_MNT_POINT ": "
261 << entry->encryption_options;
Paul Crowley77df7f22020-01-23 15:29:30 -0800262 return false;
Paul Crowleya50f6c32019-10-24 23:21:44 -0700263 }
Eric Biggers4cf16912022-10-26 19:05:10 +0000264 if ((s_data_options.flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) &&
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800265 !MightBeEmmcStorage(entry->blk_device)) {
Eric Biggerseb566d02020-07-06 13:46:38 -0700266 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
267 "this flag from the device's fstab";
268 return false;
269 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800270 return true;
Eric Biggers83a73d72019-09-30 13:06:47 -0700271}
272
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800273static bool install_storage_key(const std::string& mountpoint, const EncryptionOptions& options,
274 const KeyBuffer& key, EncryptionPolicy* policy) {
Eric Biggers4cf16912022-10-26 19:05:10 +0000275 if (options.version == 0) {
276 LOG(ERROR) << "EncryptionOptions not initialized";
277 return false;
278 }
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800279 KeyBuffer ephemeral_wrapped_key;
280 if (options.use_hw_wrapped_key) {
281 if (!exportWrappedStorageKey(key, &ephemeral_wrapped_key)) {
282 LOG(ERROR) << "Failed to get ephemeral wrapped key";
283 return false;
284 }
285 }
286 return installKey(mountpoint, options, options.use_hw_wrapped_key ? ephemeral_wrapped_key : key,
287 policy);
288}
289
Eric Biggers83a73d72019-09-30 13:06:47 -0700290// Retrieve the options to use for encryption policies on adoptable storage.
Paul Crowley5e53ff62019-10-24 14:55:17 -0700291static bool get_volume_file_encryption_options(EncryptionOptions* options) {
Paul Crowleyeb241a12020-02-18 10:10:08 -0800292 // If we give the empty string, libfscrypt will use the default (currently XTS)
293 auto contents_mode = android::base::GetProperty("ro.crypto.volume.contents_mode", "");
294 // HEH as default was always a mistake. Use the libfscrypt default (CTS)
295 // for devices launching on versions above Android 10.
296 auto first_api_level = GetFirstApiLevel();
Paul Crowleyf612b8b2019-10-24 22:52:02 -0700297 auto filenames_mode =
Paul Crowleyeb241a12020-02-18 10:10:08 -0800298 android::base::GetProperty("ro.crypto.volume.filenames_mode",
Eric Biggers72d07132020-08-10 10:55:56 -0700299 first_api_level > __ANDROID_API_Q__ ? "" : "aes-256-heh");
Paul Crowley77df7f22020-01-23 15:29:30 -0800300 auto options_string = android::base::GetProperty("ro.crypto.volume.options",
Paul Crowleyeb241a12020-02-18 10:10:08 -0800301 contents_mode + ":" + filenames_mode);
302 if (!ParseOptionsForApiLevel(first_api_level, options_string, options)) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800303 LOG(ERROR) << "Unable to parse volume encryption options: " << options_string;
304 return false;
305 }
Eric Biggerseb566d02020-07-06 13:46:38 -0700306 if (options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) {
307 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
308 "this flag from ro.crypto.volume.options";
309 return false;
310 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800311 return true;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700312}
313
Paul Crowleydf528a72016-03-09 09:31:37 -0800314static bool read_and_install_user_ce_key(userid_t user_id,
315 const android::vold::KeyAuthentication& auth) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800316 if (s_ce_policies.count(user_id) != 0) return true;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100317 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700318 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800319 EncryptionPolicy ce_policy;
Eric Biggers4cf16912022-10-26 19:05:10 +0000320 if (!install_storage_key(DATA_MNT_POINT, s_data_options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800321 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000322 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000323 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000324}
325
Eric Biggersca9a97e2022-05-12 19:17:15 +0000326// Prepare a directory without assigning it an encryption policy. The directory
327// will inherit the encryption policy of its parent directory, or will be
328// unencrypted if the parent directory is unencrypted.
Paul Crowleydf528a72016-03-09 09:31:37 -0800329static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000330 LOG(DEBUG) << "Preparing: " << dir;
Eric Biggers39704e72022-05-04 22:17:54 +0000331 if (android::vold::PrepareDir(dir, mode, uid, gid, 0) != 0) {
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000332 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000333 return false;
334 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000335 return true;
336}
337
Eric Biggersca9a97e2022-05-12 19:17:15 +0000338// Prepare a directory and assign it the given encryption policy.
339static bool prepare_dir_with_policy(const std::string& dir, mode_t mode, uid_t uid, gid_t gid,
340 const EncryptionPolicy& policy) {
341 if (!prepare_dir(dir, mode, uid, gid)) return false;
Eric Biggersa6957c02022-06-15 18:52:18 +0000342 if (IsFbeEnabled() && !EnsurePolicy(policy, dir)) return false;
Eric Biggersca9a97e2022-05-12 19:17:15 +0000343 return true;
344}
345
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600346static bool destroy_dir(const std::string& dir) {
347 LOG(DEBUG) << "Destroying: " << dir;
348 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
349 PLOG(ERROR) << "Failed to destroy " << dir;
350 return false;
351 }
352 return true;
353}
354
Eric Biggersce50a432022-10-19 19:38:50 +0000355// Checks whether the DE key directory exists for the given user.
356static bool de_key_exists(userid_t user_id) {
357 return android::vold::pathExists(get_de_key_path(user_id));
358}
359
360// Checks whether at least one CE key subdirectory exists for the given user.
361static bool ce_key_exists(userid_t user_id) {
362 auto directory_path = get_ce_key_directory_path(user_id);
Eric Biggers9544f8c2022-10-07 19:07:23 +0000363 // The common case is that "$dir/current" exists, so check for that first.
364 if (android::vold::pathExists(get_ce_key_current_path(directory_path))) return true;
365
366 // Else, there could still be another subdirectory of $dir (if a crash
367 // occurred during fixate_user_ce_key()), so check for one.
368 return android::vold::pathExists(directory_path) && !get_ce_key_paths(directory_path).empty();
369}
370
Eric Biggersce50a432022-10-19 19:38:50 +0000371static bool create_de_key(userid_t user_id, bool ephemeral) {
Eric Biggersce50a432022-10-19 19:38:50 +0000372 KeyBuffer de_key;
Eric Biggers4cf16912022-10-26 19:05:10 +0000373 if (!generateStorageKey(makeGen(s_data_options), &de_key)) return false;
Eric Biggersce50a432022-10-19 19:38:50 +0000374 if (!ephemeral && !android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
375 kEmptyAuthentication, de_key))
376 return false;
377 EncryptionPolicy de_policy;
Eric Biggers4cf16912022-10-26 19:05:10 +0000378 if (!install_storage_key(DATA_MNT_POINT, s_data_options, de_key, &de_policy)) return false;
Eric Biggersce50a432022-10-19 19:38:50 +0000379 s_de_policies[user_id] = de_policy;
380 LOG(INFO) << "Created DE key for user " << user_id;
381 return true;
382}
Eric Biggers9544f8c2022-10-07 19:07:23 +0000383
Eric Biggersce50a432022-10-19 19:38:50 +0000384static bool create_ce_key(userid_t user_id, bool ephemeral) {
Eric Biggersce50a432022-10-19 19:38:50 +0000385 KeyBuffer ce_key;
Eric Biggers4cf16912022-10-26 19:05:10 +0000386 if (!generateStorageKey(makeGen(s_data_options), &ce_key)) return false;
Eric Biggersce50a432022-10-19 19:38:50 +0000387 if (!ephemeral) {
388 if (!prepare_dir(get_ce_key_directory_path(user_id), 0700, AID_ROOT, AID_ROOT))
389 return false;
390 // We don't store the CE key on disk here, since here we don't have the
391 // secret needed to do so securely. Instead, we cache it in memory for
392 // now, and we store it later in fscrypt_set_user_key_protection().
393 s_new_ce_keys.insert({user_id, ce_key});
Eric Biggers9544f8c2022-10-07 19:07:23 +0000394 }
Eric Biggersce50a432022-10-19 19:38:50 +0000395 EncryptionPolicy ce_policy;
Eric Biggers4cf16912022-10-26 19:05:10 +0000396 if (!install_storage_key(DATA_MNT_POINT, s_data_options, ce_key, &ce_policy)) return false;
Eric Biggersce50a432022-10-19 19:38:50 +0000397 s_ce_policies[user_id] = ce_policy;
398 LOG(INFO) << "Created CE key for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000399 return true;
400}
401
Paul Crowley77df7f22020-01-23 15:29:30 -0800402static bool lookup_policy(const std::map<userid_t, EncryptionPolicy>& key_map, userid_t user_id,
403 EncryptionPolicy* policy) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000404 auto refi = key_map.find(user_id);
405 if (refi == key_map.end()) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000406 return false;
407 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800408 *policy = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000409 return true;
410}
411
Paul Crowleydf528a72016-03-09 09:31:37 -0800412static bool is_numeric(const char* name) {
413 for (const char* p = name; *p != '\0'; p++) {
414 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000415 }
416 return true;
417}
418
419static bool load_all_de_keys() {
420 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800421 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000422 if (!dirp) {
423 PLOG(ERROR) << "Unable to read de key directory";
424 return false;
425 }
426 for (;;) {
427 errno = 0;
428 auto entry = readdir(dirp.get());
429 if (!entry) {
430 if (errno) {
431 PLOG(ERROR) << "Unable to read de key directory";
432 return false;
433 }
434 break;
435 }
Eric Biggers6b840392020-11-02 15:11:06 -0800436 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000437 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
438 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
439 continue;
440 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600441 userid_t user_id = std::stoi(entry->d_name);
Nikita Ioffef0550af2020-02-27 18:21:55 +0000442 auto key_path = de_dir + "/" + entry->d_name;
443 KeyBuffer de_key;
Eric Biggersf74373b2020-11-05 19:58:26 -0800444 if (!retrieveKey(key_path, kEmptyAuthentication, &de_key)) return false;
Nikita Ioffef0550af2020-02-27 18:21:55 +0000445 EncryptionPolicy de_policy;
Eric Biggers4cf16912022-10-26 19:05:10 +0000446 if (!install_storage_key(DATA_MNT_POINT, s_data_options, de_key, &de_policy)) return false;
Nikita Ioffef0550af2020-02-27 18:21:55 +0000447 auto ret = s_de_policies.insert({user_id, de_policy});
448 if (!ret.second && ret.first->second != de_policy) {
449 LOG(ERROR) << "DE policy for user" << user_id << " changed";
450 return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000451 }
Nikita Ioffef0550af2020-02-27 18:21:55 +0000452 LOG(DEBUG) << "Installed de key for user " << user_id;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000453 }
Eric Biggersa701c452018-10-23 13:06:55 -0700454 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000455 // correct policy set on them, and that no rogue ones exist.
456 return true;
457}
458
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000459// Attempt to reinstall CE keys for users that we think are unlocked.
460static bool try_reload_ce_keys() {
461 for (const auto& it : s_ce_policies) {
462 if (!android::vold::reloadKeyFromSessionKeyring(DATA_MNT_POINT, it.second)) {
463 LOG(ERROR) << "Failed to load CE key from session keyring for user " << it.first;
464 return false;
465 }
466 }
467 return true;
468}
469
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700470bool fscrypt_initialize_systemwide_keys() {
471 LOG(INFO) << "fscrypt_initialize_systemwide_keys";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800472
Eric Biggers4cf16912022-10-26 19:05:10 +0000473 if (!init_data_file_encryption_options()) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800474
475 KeyBuffer device_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800476 if (!retrieveOrGenerateKey(device_key_path, device_key_temp, kEmptyAuthentication,
Eric Biggers4cf16912022-10-26 19:05:10 +0000477 makeGen(s_data_options), &device_key))
Paul Crowley77df7f22020-01-23 15:29:30 -0800478 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800479
Eric Biggers9ea53442022-05-11 05:33:25 +0000480 // This initializes s_device_policy, which is a global variable so that
481 // fscrypt_init_user0() can access it later.
Eric Biggers4cf16912022-10-26 19:05:10 +0000482 if (!install_storage_key(DATA_MNT_POINT, s_data_options, device_key, &s_device_policy))
483 return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700484
Paul Crowley5e53ff62019-10-24 14:55:17 -0700485 std::string options_string;
Eric Biggers9ea53442022-05-11 05:33:25 +0000486 if (!OptionsToString(s_device_policy.options, &options_string)) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700487 LOG(ERROR) << "Unable to serialize options";
488 return false;
489 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800490 std::string options_filename = std::string(DATA_MNT_POINT) + fscrypt_key_mode;
Eric Biggers83a73d72019-09-30 13:06:47 -0700491 if (!android::vold::writeStringToFile(options_string, options_filename)) return false;
Paul Lawrence6e410592016-05-24 14:20:38 -0700492
Paul Crowley77df7f22020-01-23 15:29:30 -0800493 std::string ref_filename = std::string(DATA_MNT_POINT) + fscrypt_key_ref;
Eric Biggers9ea53442022-05-11 05:33:25 +0000494 if (!android::vold::writeStringToFile(s_device_policy.key_raw_ref, ref_filename)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700495 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800496
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700497 KeyBuffer per_boot_key;
Eric Biggers4cf16912022-10-26 19:05:10 +0000498 if (!generateStorageKey(makeGen(s_data_options), &per_boot_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800499 EncryptionPolicy per_boot_policy;
Eric Biggers4cf16912022-10-26 19:05:10 +0000500 if (!install_storage_key(DATA_MNT_POINT, s_data_options, per_boot_key, &per_boot_policy))
501 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700502 std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref;
Paul Crowley77df7f22020-01-23 15:29:30 -0800503 if (!android::vold::writeStringToFile(per_boot_policy.key_raw_ref, per_boot_ref_filename))
504 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700505 LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename;
506
Paul Crowley76107cb2016-02-09 10:04:39 +0000507 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800508}
509
Eric Biggers9ea53442022-05-11 05:33:25 +0000510static bool prepare_special_dirs() {
Eric Biggersca9a97e2022-05-12 19:17:15 +0000511 // Ensure that /data/data and its "alias" /data/user/0 exist, and create the
512 // bind mount of /data/data onto /data/user/0. This *should* happen in
513 // fscrypt_prepare_user_storage(). However, it actually must be done early,
514 // before the rest of user 0's CE storage is prepared. This is because
515 // zygote may need to set up app data isolation before then, which requires
516 // mounting a tmpfs over /data/data to ensure it remains hidden. This issue
517 // arises due to /data/data being in the top-level directory.
518
Eric Biggers9ea53442022-05-11 05:33:25 +0000519 // /data/user/0 used to be a symlink to /data/data, so we must first delete
520 // the old symlink if present.
521 if (android::vold::IsSymlink(data_user_0_dir) && android::vold::Unlink(data_user_0_dir) != 0)
522 return false;
Eric Biggersca9a97e2022-05-12 19:17:15 +0000523 // On first boot, we'll be creating /data/data for the first time, and user
524 // 0's CE key will be installed already since it was just created. Take the
525 // opportunity to also set the encryption policy of /data/data right away.
526 EncryptionPolicy ce_policy;
527 if (lookup_policy(s_ce_policies, 0, &ce_policy)) {
Eric Biggers9544f8c2022-10-07 19:07:23 +0000528 if (!prepare_dir_with_policy(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy)) {
529 // Preparing /data/data failed, yet we had just generated a new CE
530 // key because one wasn't stored. Before erroring out, try deleting
531 // the directory and retrying, as it's possible that the directory
532 // exists with different CE policy from an interrupted first boot.
533 if (rmdir(data_data_dir.c_str()) != 0) {
534 PLOG(ERROR) << "rmdir " << data_data_dir << " failed";
535 }
536 if (!prepare_dir_with_policy(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy))
537 return false;
538 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000539 } else {
540 if (!prepare_dir(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
541 // EnsurePolicy() will have to happen later, in fscrypt_prepare_user_storage().
542 }
Eric Biggers9ea53442022-05-11 05:33:25 +0000543 if (!prepare_dir(data_user_0_dir, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
544 if (android::vold::BindMount(data_data_dir, data_user_0_dir) != 0) return false;
545
546 // If /data/media/obb doesn't exist, create it and encrypt it with the
547 // device policy. Normally, device-policy-encrypted directories are created
548 // and encrypted by init; /data/media/obb is special because it is located
549 // in /data/media. Since /data/media also contains per-user encrypted
550 // directories, by design only vold can write to it. As a side effect of
551 // that, vold must create /data/media/obb.
552 //
553 // We must tolerate /data/media/obb being unencrypted if it already exists
554 // on-disk, since it used to be unencrypted (b/64566063).
Eric Biggersca9a97e2022-05-12 19:17:15 +0000555 if (android::vold::pathExists(media_obb_dir)) {
556 if (!prepare_dir(media_obb_dir, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
557 } else {
558 if (!prepare_dir_with_policy(media_obb_dir, 0770, AID_MEDIA_RW, AID_MEDIA_RW,
559 s_device_policy))
560 return false;
561 }
Eric Biggers9ea53442022-05-11 05:33:25 +0000562 return true;
563}
564
Eric Biggersfb486662022-03-22 00:33:52 +0000565bool fscrypt_init_user0_done;
566
Eric Biggersa701c452018-10-23 13:06:55 -0700567bool fscrypt_init_user0() {
568 LOG(DEBUG) << "fscrypt_init_user0";
Eric Biggers9ea53442022-05-11 05:33:25 +0000569
Eric Biggersa6957c02022-06-15 18:52:18 +0000570 if (IsFbeEnabled()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000571 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
572 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
573 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Eric Biggersce50a432022-10-19 19:38:50 +0000574
575 // Create user 0's DE and CE keys if they don't already exist. Check
576 // each key independently, since if the first boot was interrupted it is
577 // possible that the DE key exists but the CE key does not.
578 if (!de_key_exists(0) && !create_de_key(0, false)) return false;
579 if (!ce_key_exists(0) && !create_ce_key(0, false)) return false;
580
Jeff Sharkey47695b22016-02-01 17:02:29 -0700581 // TODO: switch to loading only DE_0 here once framework makes
582 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000583 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000584 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000585
586 // Now that user 0's CE key has been created, we can prepare /data/data.
587 if (!prepare_special_dirs()) return false;
588
589 // With the exception of what is done by prepare_special_dirs() above, we
590 // only prepare DE storage here, since user 0's CE key won't be installed
Eric Biggers9ea53442022-05-11 05:33:25 +0000591 // yet unless it was just created. The framework will prepare the user's CE
592 // storage later, once their CE key is installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700593 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700594 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000595 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700596 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700597
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000598 // In some scenarios (e.g. userspace reboot) we might unmount userdata
599 // without doing a hard reboot. If CE keys were stored in fs keyring then
600 // they will be lost after unmount. Attempt to re-install them.
Eric Biggersa6957c02022-06-15 18:52:18 +0000601 if (IsFbeEnabled() && android::vold::isFsKeyringSupported()) {
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000602 if (!try_reload_ce_keys()) return false;
603 }
604
Eric Biggersfb486662022-03-22 00:33:52 +0000605 fscrypt_init_user0_done = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000606 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000607}
608
Eric Biggersa701c452018-10-23 13:06:55 -0700609bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
610 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
Eric Biggersa6957c02022-06-15 18:52:18 +0000611 if (!IsFbeEnabled()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000612 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000613 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000614 // FIXME test for existence of key that is not loaded yet
Paul Crowley77df7f22020-01-23 15:29:30 -0800615 if (s_ce_policies.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700616 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800617 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000618 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000619 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800620 }
Eric Biggersce50a432022-10-19 19:38:50 +0000621 if (!create_de_key(user_id, ephemeral)) return false;
622 if (!create_ce_key(user_id, ephemeral)) return false;
623 if (ephemeral) s_ephemeral_users.insert(user_id);
Paul Crowley76107cb2016-02-09 10:04:39 +0000624 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800625}
626
Eric Biggersce368682019-04-03 15:44:06 -0700627// "Lock" all encrypted directories whose key has been removed. This is needed
Eric Biggersf3dc4202019-09-30 13:05:58 -0700628// in the case where the keys are being put in the session keyring (rather in
629// the newer filesystem-level keyrings), because removing a key from the session
630// keyring doesn't affect inodes in the kernel's inode cache whose per-file key
631// was already set up. So to remove the per-file keys and make the files
632// "appear encrypted", these inodes must be evicted.
Eric Biggersce368682019-04-03 15:44:06 -0700633//
634// To do this, sync() to clean all dirty inodes, then drop all reclaimable slab
635// objects systemwide. This is overkill, but it's the best available method
636// currently. Don't use drop_caches mode "3" because that also evicts pagecache
637// for in-use files; all files relevant here are already closed and sync'ed.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700638static void drop_caches_if_needed() {
639 if (android::vold::isFsKeyringSupported()) {
640 return;
641 }
Pavel Grafovb350ed02017-07-27 17:34:57 +0100642 sync();
Eric Biggersce368682019-04-03 15:44:06 -0700643 if (!writeStringToFile("2", "/proc/sys/vm/drop_caches")) {
Pavel Grafovb350ed02017-07-27 17:34:57 +0100644 PLOG(ERROR) << "Failed to drop caches during key eviction";
645 }
646}
647
Andrew Scull7ec25c72016-10-31 10:28:25 +0000648static bool evict_ce_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000649 bool success = true;
Paul Crowley77df7f22020-01-23 15:29:30 -0800650 EncryptionPolicy policy;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000651 // If we haven't loaded the CE key, no need to evict it.
Paul Crowley77df7f22020-01-23 15:29:30 -0800652 if (lookup_policy(s_ce_policies, user_id, &policy)) {
653 success &= android::vold::evictKey(DATA_MNT_POINT, policy);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700654 drop_caches_if_needed();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000655 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800656 s_ce_policies.erase(user_id);
Eric Biggers8c1659e2022-09-06 21:29:14 +0000657 s_new_ce_keys.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000658 return success;
659}
660
Eric Biggersa701c452018-10-23 13:06:55 -0700661bool fscrypt_destroy_user_key(userid_t user_id) {
662 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
Eric Biggersa6957c02022-06-15 18:52:18 +0000663 if (!IsFbeEnabled()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000664 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000665 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000666 bool success = true;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000667 success &= evict_ce_key(user_id);
Paul Crowley77df7f22020-01-23 15:29:30 -0800668 EncryptionPolicy de_policy;
669 success &= lookup_policy(s_de_policies, user_id, &de_policy) &&
670 android::vold::evictKey(DATA_MNT_POINT, de_policy);
671 s_de_policies.erase(user_id);
Eric Biggers8c1659e2022-09-06 21:29:14 +0000672 if (!s_ephemeral_users.erase(user_id)) {
Eric Biggersd863b2c2021-05-27 17:29:10 -0700673 auto ce_path = get_ce_key_directory_path(user_id);
Eric Biggers8c1659e2022-09-06 21:29:14 +0000674 if (!s_new_ce_keys.erase(user_id)) {
675 for (auto const path : get_ce_key_paths(ce_path)) {
676 success &= android::vold::destroyKey(path);
677 }
Paul Crowleya3630362016-05-17 14:17:56 -0700678 }
Eric Biggersd863b2c2021-05-27 17:29:10 -0700679 success &= destroy_dir(ce_path);
680
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700681 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700682 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700683 success &= android::vold::destroyKey(de_key_path);
684 } else {
685 LOG(INFO) << "Not present so not erasing: " << de_key_path;
686 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100687 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000688 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100689}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800690
Paul Crowley3b71fc52017-10-09 10:55:21 -0700691static bool parse_hex(const std::string& hex, std::string* result) {
692 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800693 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000694 return true;
695 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800696 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800697 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000698 return false;
699 }
700 return true;
701}
702
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700703static std::optional<android::vold::KeyAuthentication> authentication_from_hex(
Satya Tangiralae1361712021-03-15 15:33:08 -0700704 const std::string& secret_hex) {
705 std::string secret;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700706 if (!parse_hex(secret_hex, &secret)) return std::optional<android::vold::KeyAuthentication>();
707 if (secret.empty()) {
708 return kEmptyAuthentication;
709 } else {
Satya Tangiralae1361712021-03-15 15:33:08 -0700710 return android::vold::KeyAuthentication(secret);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700711 }
712}
713
Paul Crowley3aa914d2017-10-09 16:35:51 -0700714static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
715 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
716}
717
Paul Crowley26a53882017-10-26 11:16:39 -0700718static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
719 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
720}
721
Paul Crowley3aa914d2017-10-09 16:35:51 -0700722static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
Paul Crowley5e53ff62019-10-24 14:55:17 -0700723 EncryptionPolicy* policy) {
Paul Crowley26a53882017-10-26 11:16:39 -0700724 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
725 std::string secdiscardable_hash;
726 if (android::vold::pathExists(secdiscardable_path)) {
727 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
728 return false;
729 } else {
Eric Biggersfec0c0e2021-02-16 15:59:17 -0800730 if (!android::vold::MkdirsSync(secdiscardable_path, 0700)) return false;
Paul Crowley26a53882017-10-26 11:16:39 -0700731 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
732 return false;
733 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700734 auto key_path = volkey_path(misc_path, volume_uuid);
Eric Biggersfec0c0e2021-02-16 15:59:17 -0800735 if (!android::vold::MkdirsSync(key_path, 0700)) return false;
Satya Tangiralae1361712021-03-15 15:33:08 -0700736 android::vold::KeyAuthentication auth(secdiscardable_hash);
Eric Biggers83a73d72019-09-30 13:06:47 -0700737
Paul Crowley77df7f22020-01-23 15:29:30 -0800738 EncryptionOptions options;
739 if (!get_volume_file_encryption_options(&options)) return false;
740 KeyBuffer key;
Eric Biggersf74373b2020-11-05 19:58:26 -0800741 if (!retrieveOrGenerateKey(key_path, key_path + "_tmp", auth, makeGen(options), &key))
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800742 return false;
743 if (!install_storage_key(BuildDataPath(volume_uuid), options, key, policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800744 return true;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700745}
746
747static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700748 auto path = volkey_path(misc_path, volume_uuid);
749 if (!android::vold::pathExists(path)) return true;
750 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700751}
752
Eric Biggersce50a432022-10-19 19:38:50 +0000753// (Re-)encrypts the user's CE key with the given secret. This function handles
754// storing the CE key for a new user for the first time. It also handles
755// re-encrypting the CE key upon upgrade from an Android version where the CE
756// key was stored with kEmptyAuthentication when the user didn't have an LSKF.
757// See the comments below for the different cases handled.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000758bool fscrypt_set_user_key_protection(userid_t user_id, const std::string& secret_hex) {
759 LOG(DEBUG) << "fscrypt_set_user_key_protection " << user_id;
760 if (!IsFbeEnabled()) return true;
761 auto auth = authentication_from_hex(secret_hex);
762 if (!auth) return false;
763 if (auth->secret.empty()) {
764 LOG(ERROR) << "fscrypt_set_user_key_protection: secret must be nonempty";
765 return false;
766 }
Eric Biggersce50a432022-10-19 19:38:50 +0000767 // We shouldn't store any keys for ephemeral users.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000768 if (s_ephemeral_users.count(user_id) != 0) {
769 LOG(DEBUG) << "Not storing key because user is ephemeral";
770 return true;
771 }
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700772 KeyBuffer ce_key;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000773 auto it = s_new_ce_keys.find(user_id);
774 if (it != s_new_ce_keys.end()) {
Eric Biggersce50a432022-10-19 19:38:50 +0000775 // If the key exists in s_new_ce_keys, then the key is a
776 // not-yet-committed key for a new user, and we are committing it here.
777 // This happens when the user's synthetic password is created.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000778 ce_key = it->second;
Eric Biggersce50a432022-10-19 19:38:50 +0000779 } else if (ce_key_exists(user_id)) {
780 // If the key doesn't exist in s_new_ce_keys but does exist on-disk,
781 // then we are setting the protection on an existing key. This happens
782 // at upgrade time, when CE keys that were previously protected by
Eric Biggers8c1659e2022-09-06 21:29:14 +0000783 // kEmptyAuthentication are encrypted by the user's synthetic password.
Eric Biggersce50a432022-10-19 19:38:50 +0000784 LOG(DEBUG) << "CE key already exists on-disk; re-protecting it with the given secret";
Eric Biggers8c1659e2022-09-06 21:29:14 +0000785 if (!read_and_fixate_user_ce_key(user_id, kEmptyAuthentication, &ce_key)) {
Eric Biggersce50a432022-10-19 19:38:50 +0000786 LOG(ERROR) << "Failed to retrieve CE key for user " << user_id << " using empty auth";
Eric Biggers8c1659e2022-09-06 21:29:14 +0000787 // Before failing, also check whether the key is already protected
788 // with the given secret. This isn't expected, but in theory it
789 // could happen if an upgrade is requested for a user more than once
790 // due to a power-off or other interruption.
791 if (read_and_fixate_user_ce_key(user_id, *auth, &ce_key)) {
Eric Biggersce50a432022-10-19 19:38:50 +0000792 LOG(WARNING) << "CE key is already protected by given secret";
Eric Biggers8c1659e2022-09-06 21:29:14 +0000793 return true;
794 }
Eric Biggersce50a432022-10-19 19:38:50 +0000795 // The key isn't protected by either kEmptyAuthentication or by
796 // |auth|. This should never happen, and there's nothing we can do
797 // besides return an error.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000798 return false;
799 }
Eric Biggersce50a432022-10-19 19:38:50 +0000800 } else {
801 // If the key doesn't exist in memory or on-disk, then we need to
802 // generate it here, then commit it to disk. This is needed after the
803 // unusual case where a non-system user was created during early boot,
804 // and then the device was force-rebooted before the boot completed. In
805 // that case, the Android user record was committed but the CE key was
806 // not. So the CE key was lost, and we need to regenerate it. This
807 // should be fine, since the key should not have been used yet.
808 LOG(WARNING) << "CE key not found! Regenerating it";
809 if (!create_ce_key(user_id, false)) return false;
810 ce_key = s_new_ce_keys.find(user_id)->second;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700811 }
Eric Biggersce50a432022-10-19 19:38:50 +0000812
813 auto const directory_path = get_ce_key_directory_path(user_id);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700814 auto const paths = get_ce_key_paths(directory_path);
815 std::string ce_key_path;
816 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000817 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, *auth, ce_key)) return false;
818 if (!fixate_user_ce_key(directory_path, ce_key_path, paths)) return false;
819 if (s_new_ce_keys.erase(user_id)) {
820 LOG(INFO) << "Stored CE key for new user " << user_id;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000821 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000822 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000823}
824
Eric Biggers18ba1522021-04-06 12:02:56 -0700825std::vector<int> fscrypt_get_unlocked_users() {
826 std::vector<int> user_ids;
827 for (const auto& it : s_ce_policies) {
828 user_ids.push_back(it.first);
829 }
830 return user_ids;
831}
832
Jeff Sharkey47695b22016-02-01 17:02:29 -0700833// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Satya Tangiralae1361712021-03-15 15:33:08 -0700834bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& secret_hex) {
835 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial;
Eric Biggersa6957c02022-06-15 18:52:18 +0000836 if (IsFbeEnabled()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800837 if (s_ce_policies.count(user_id) != 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000838 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000839 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000840 }
Satya Tangiralae1361712021-03-15 15:33:08 -0700841 auto auth = authentication_from_hex(secret_hex);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700842 if (!auth) return false;
843 if (!read_and_install_user_ce_key(user_id, *auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000844 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000845 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800846 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800847 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000848 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800849}
850
Jeff Sharkey47695b22016-02-01 17:02:29 -0700851// TODO: rename to 'evict' for consistency
Eric Biggersa701c452018-10-23 13:06:55 -0700852bool fscrypt_lock_user_key(userid_t user_id) {
853 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
Eric Biggersa6957c02022-06-15 18:52:18 +0000854 if (IsFbeEnabled()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000855 return evict_ce_key(user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800856 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000857 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800858}
859
Paul Crowley82b41ff2017-10-20 08:17:54 -0700860static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
861 userid_t user_id, int flags) {
862 if (0 != android::vold::ForkExecvp(
863 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
864 std::to_string(user_id), std::to_string(flags)})) {
865 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700866 return false;
867 }
868 return true;
869}
870
Eric Biggersa701c452018-10-23 13:06:55 -0700871bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700872 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700873 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800874 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700875
Eric Biggersc66c2e32022-05-04 04:39:50 +0000876 // Internal storage must be prepared before adoptable storage, since the
877 // user's volume keys are stored in their internal storage.
878 if (!volume_uuid.empty()) {
879 if ((flags & android::os::IVold::STORAGE_FLAG_DE) &&
880 !android::vold::pathExists(android::vold::BuildDataMiscDePath("", user_id))) {
881 LOG(ERROR) << "Cannot prepare DE storage for user " << user_id << " on volume "
882 << volume_uuid << " before internal storage";
883 return false;
884 }
885 if ((flags & android::os::IVold::STORAGE_FLAG_CE) &&
886 !android::vold::pathExists(android::vold::BuildDataMiscCePath("", user_id))) {
887 LOG(ERROR) << "Cannot prepare CE storage for user " << user_id << " on volume "
888 << volume_uuid << " before internal storage";
889 return false;
890 }
891 }
892
Paul Crowley82b41ff2017-10-20 08:17:54 -0700893 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600894 // DE_sys key
895 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
896 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
897 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600898
899 // DE_n key
Eric Biggersca9a97e2022-05-12 19:17:15 +0000900 EncryptionPolicy de_policy;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700901 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000902 auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800903 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700904 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
905
Eric Biggersa6957c02022-06-15 18:52:18 +0000906 if (IsFbeEnabled()) {
Eric Biggersca9a97e2022-05-12 19:17:15 +0000907 if (volume_uuid.empty()) {
908 if (!lookup_policy(s_de_policies, user_id, &de_policy)) {
909 LOG(ERROR) << "Cannot find DE policy for user " << user_id;
910 return false;
911 }
912 } else {
913 auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id);
914 if (!read_or_create_volkey(misc_de_empty_volume_path, volume_uuid, &de_policy)) {
915 return false;
916 }
917 }
918 }
919
Paul Crowley3b71fc52017-10-09 10:55:21 -0700920 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700921 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600922#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700923 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700924 multiuser_get_uid(user_id, AID_EVERYBODY)))
925 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600926#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700927 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600928
Eric Biggersca9a97e2022-05-12 19:17:15 +0000929 if (!prepare_dir_with_policy(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM, de_policy))
930 return false;
931 if (!prepare_dir_with_policy(vendor_de_path, 0771, AID_ROOT, AID_ROOT, de_policy))
932 return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700933 }
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000934
Eric Biggersca9a97e2022-05-12 19:17:15 +0000935 if (!prepare_dir_with_policy(misc_de_path, 01771, AID_SYSTEM, AID_MISC, de_policy))
936 return false;
937 if (!prepare_dir_with_policy(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM, de_policy))
938 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000939 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800940
Paul Crowley82b41ff2017-10-20 08:17:54 -0700941 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600942 // CE_n key
Eric Biggersca9a97e2022-05-12 19:17:15 +0000943 EncryptionPolicy ce_policy;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700944 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000945 auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800946 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600947 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
948 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800949
Eric Biggersa6957c02022-06-15 18:52:18 +0000950 if (IsFbeEnabled()) {
Eric Biggersca9a97e2022-05-12 19:17:15 +0000951 if (volume_uuid.empty()) {
952 if (!lookup_policy(s_ce_policies, user_id, &ce_policy)) {
953 LOG(ERROR) << "Cannot find CE policy for user " << user_id;
954 return false;
955 }
956 } else {
957 auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id);
958 if (!read_or_create_volkey(misc_ce_empty_volume_path, volume_uuid, &ce_policy)) {
959 return false;
960 }
961 }
Paul Crowley6b756ce2017-10-05 14:07:09 -0700962 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000963
964 if (volume_uuid.empty()) {
965 if (!prepare_dir_with_policy(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM, ce_policy))
966 return false;
967 if (!prepare_dir_with_policy(vendor_ce_path, 0771, AID_ROOT, AID_ROOT, ce_policy))
968 return false;
969 }
970 if (!prepare_dir_with_policy(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW, ce_policy))
971 return false;
Martijn Coenen5adf92a2021-02-01 07:57:02 +0000972 // On devices without sdcardfs (kernel 5.4+), the path permissions aren't fixed
973 // up automatically; therefore, use a default ACL, to ensure apps with MEDIA_RW
974 // can keep reading external storage; in particular, this allows app cloning
975 // scenarios to work correctly on such devices.
976 int ret = SetDefaultAcl(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW, {AID_MEDIA_RW});
977 if (ret != android::OK) {
978 return false;
979 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000980 if (!prepare_dir_with_policy(misc_ce_path, 01771, AID_SYSTEM, AID_MISC, ce_policy))
981 return false;
982 if (!prepare_dir_with_policy(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy))
983 return false;
Paul Crowley1a965262017-10-13 13:49:50 -0700984
985 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700986 // Now that credentials have been installed, we can run restorecon
987 // over these paths
988 // NOTE: these paths need to be kept in sync with libselinux
989 android::vold::RestoreconRecursive(system_ce_path);
Nick Kralevich6a3ef482019-05-14 09:30:29 -0700990 android::vold::RestoreconRecursive(vendor_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -0700991 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700992 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800993 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700994 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800995
Paul Crowley76107cb2016-02-09 10:04:39 +0000996 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800997}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600998
Eric Biggersa701c452018-10-23 13:06:55 -0700999bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
1000 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001001 << ", user " << user_id << ", flags " << flags;
1002 bool res = true;
1003
Paul Crowley82b41ff2017-10-20 08:17:54 -07001004 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
1005
1006 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -07001007 // CE_n key
1008 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001009 auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001010 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -07001011 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
1012 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
1013
1014 res &= destroy_dir(media_ce_path);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001015 res &= destroy_dir(misc_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -07001016 res &= destroy_dir(user_ce_path);
1017 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -07001018 res &= destroy_dir(system_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001019 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001020 } else {
Eric Biggersa6957c02022-06-15 18:52:18 +00001021 if (IsFbeEnabled()) {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001022 auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id);
1023 res &= destroy_volkey(misc_ce_empty_volume_path, volume_uuid);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001024 }
Paul Crowley8e550662017-10-16 17:01:44 -07001025 }
1026 }
1027
Paul Crowley82b41ff2017-10-20 08:17:54 -07001028 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001029 // DE_sys key
1030 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
1031 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
1032 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001033
1034 // DE_n key
1035 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001036 auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001037 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001038 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
1039
Paul Crowley8e550662017-10-16 17:01:44 -07001040 res &= destroy_dir(user_de_path);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001041 res &= destroy_dir(misc_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -07001042 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001043 res &= destroy_dir(system_legacy_path);
1044#if MANAGE_MISC_DIRS
1045 res &= destroy_dir(misc_legacy_path);
1046#endif
1047 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001048 res &= destroy_dir(system_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001049 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001050 } else {
Eric Biggersa6957c02022-06-15 18:52:18 +00001051 if (IsFbeEnabled()) {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001052 auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id);
1053 res &= destroy_volkey(misc_de_empty_volume_path, volume_uuid);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001054 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001055 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001056 }
1057
1058 return res;
1059}
Rubin Xu2436e272017-04-27 20:43:10 +01001060
Paul Crowleyc6433a22017-10-24 14:54:43 -07001061static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
1062 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
1063 if (!dirp) {
1064 PLOG(ERROR) << "Unable to open directory: " + directory_path;
1065 return false;
1066 }
1067 bool res = true;
1068 for (;;) {
1069 errno = 0;
1070 auto const entry = readdir(dirp.get());
1071 if (!entry) {
1072 if (errno) {
1073 PLOG(ERROR) << "Unable to read directory: " + directory_path;
1074 return false;
1075 }
1076 break;
1077 }
Eric Biggers6b840392020-11-02 15:11:06 -08001078 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleyc6433a22017-10-24 14:54:43 -07001079 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
1080 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
1081 continue;
1082 }
1083 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
1084 }
1085 return res;
1086}
1087
Eric Biggersa701c452018-10-23 13:06:55 -07001088bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -07001089 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -07001090 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -07001091 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
1092 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -07001093 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
1094 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
1095 return res;
1096}