blob: 481f6800b0046e08490d415ba6023a31fdc645d6 [file] [log] [blame]
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Eric Biggersa701c452018-10-23 13:06:55 -070017#include "FsCrypt.h"
Paul Lawrence731a7a22015-04-28 22:14:15 +000018
Paul Crowley1ef25582016-01-21 20:26:12 +000019#include "KeyStorage.h"
Paul Crowleyf71ace32016-06-02 11:01:19 -070020#include "KeyUtil.h"
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080021#include "Utils.h"
Paul Crowleya7ca40b2017-10-06 14:29:33 -070022#include "VoldUtil.h"
23
Paul Crowleya3630362016-05-17 14:17:56 -070024#include <algorithm>
Paul Lawrence731a7a22015-04-28 22:14:15 +000025#include <map>
Barani Muthukumaranb1927c22019-10-31 22:59:34 -070026#include <optional>
Paul Crowleyb1f3d242016-01-28 10:09:46 +000027#include <set>
Paul Lawrencefd7db732015-04-10 07:48:51 -070028#include <sstream>
Paul Crowleydf528a72016-03-09 09:31:37 -080029#include <string>
Paul Crowleyf71ace32016-06-02 11:01:19 -070030#include <vector>
Paul Lawrence731a7a22015-04-28 22:14:15 +000031
Paul Crowleydf528a72016-03-09 09:31:37 -080032#include <dirent.h>
33#include <errno.h>
34#include <fcntl.h>
Paul Crowleya3630362016-05-17 14:17:56 -070035#include <limits.h>
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070036#include <selinux/android.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080037#include <sys/mount.h>
38#include <sys/stat.h>
39#include <sys/types.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070040#include <unistd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000041
Paul Crowley480fcd22015-08-24 14:53:28 +010042#include <private/android_filesystem_config.h>
Martijn Coenenaee40512020-02-18 16:29:25 +010043#include <private/android_projectid_config.h>
Paul Crowley480fcd22015-08-24 14:53:28 +010044
Paul Crowley82b41ff2017-10-20 08:17:54 -070045#include "android/os/IVold.h"
46
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070047#define EMULATED_USES_SELINUX 0
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -060048#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070049
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080050#include <cutils/fs.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070051#include <cutils/properties.h>
52
Eric Biggersa701c452018-10-23 13:06:55 -070053#include <fscrypt/fscrypt.h>
Elliott Hughesc3bda182017-05-09 17:01:04 -070054#include <keyutils.h>
Eric Biggerseb566d02020-07-06 13:46:38 -070055#include <libdm/dm.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080056
Elliott Hughes7e128fb2015-12-04 15:50:53 -080057#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080058#include <android-base/logging.h>
Paul Crowley3aa914d2017-10-09 16:35:51 -070059#include <android-base/properties.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080060#include <android-base/stringprintf.h>
Eric Biggers83a73d72019-09-30 13:06:47 -070061#include <android-base/strings.h>
Jieb6698d52018-11-12 15:26:02 +080062#include <android-base/unique_fd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000063
Eric Biggerseb566d02020-07-06 13:46:38 -070064using android::base::Basename;
65using android::base::Realpath;
66using android::base::StartsWith;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080067using android::base::StringPrintf;
Tom Cherry4c5bde22019-01-29 14:34:01 -080068using android::fs_mgr::GetEntryForMountPoint;
Paul Crowley77df7f22020-01-23 15:29:30 -080069using android::vold::BuildDataPath;
Eric Biggers6b840392020-11-02 15:11:06 -080070using android::vold::IsDotOrDotDot;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +010071using android::vold::IsFilesystemSupported;
Paul Crowley05720802016-02-08 15:55:41 +000072using android::vold::kEmptyAuthentication;
Pavel Grafove2e2d302017-08-01 17:15:53 +010073using android::vold::KeyBuffer;
Paul Crowley249c2fb2020-02-07 12:51:56 -080074using android::vold::KeyGeneration;
Paul Crowley4eac2642020-02-12 11:04:05 -080075using android::vold::retrieveKey;
76using android::vold::retrieveOrGenerateKey;
Martijn Coenen5adf92a2021-02-01 07:57:02 +000077using android::vold::SetDefaultAcl;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +010078using android::vold::SetQuotaInherit;
79using android::vold::SetQuotaProjectId;
Tommy Chiua98464f2019-03-26 14:14:19 +080080using android::vold::writeStringToFile;
Paul Crowley5e53ff62019-10-24 14:55:17 -070081using namespace android::fscrypt;
Eric Biggerseb566d02020-07-06 13:46:38 -070082using namespace android::dm;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080083
Paul Lawrence731a7a22015-04-28 22:14:15 +000084namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000085
Eric Biggersa701c452018-10-23 13:06:55 -070086const std::string device_key_dir = std::string() + DATA_MNT_POINT + fscrypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080087const std::string device_key_path = device_key_dir + "/key";
88const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080089
Paul Crowleydf528a72016-03-09 09:31:37 -080090const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
91const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley82b41ff2017-10-20 08:17:54 -070092const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs";
Paul Crowley285956f2016-01-20 13:12:38 +000093
Paul Crowley26a53882017-10-26 11:16:39 -070094const std::string systemwide_volume_key_dir =
95 std::string() + DATA_MNT_POINT + "/misc/vold/volume_keys";
96
Paul Crowleydf528a72016-03-09 09:31:37 -080097// Some users are ephemeral, don't try to wipe their keys from disk
98std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080099
Paul Crowley77df7f22020-01-23 15:29:30 -0800100// Map user ids to encryption policies
101std::map<userid_t, EncryptionPolicy> s_de_policies;
102std::map<userid_t, EncryptionPolicy> s_ce_policies;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000103
Paul Crowley14c8c072018-09-18 13:30:21 -0700104} // namespace
Paul Lawrence731a7a22015-04-28 22:14:15 +0000105
Paul Crowley249c2fb2020-02-07 12:51:56 -0800106// Returns KeyGeneration suitable for key as described in EncryptionOptions
107static KeyGeneration makeGen(const EncryptionOptions& options) {
108 return KeyGeneration{FSCRYPT_MAX_KEY_SIZE, true, options.use_hw_wrapped_key};
109}
110
Eric Biggersa701c452018-10-23 13:06:55 -0700111static bool fscrypt_is_emulated() {
Paul Crowley38132a12016-02-09 09:50:32 +0000112 return property_get_bool("persist.sys.emulate_fbe", false);
113}
114
Paul Crowley3b71fc52017-10-09 10:55:21 -0700115static const char* escape_empty(const std::string& value) {
116 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000117}
118
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000119static std::string get_de_key_path(userid_t user_id) {
120 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
121}
122
Paul Crowleya3630362016-05-17 14:17:56 -0700123static std::string get_ce_key_directory_path(userid_t user_id) {
124 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
125}
126
127// Returns the keys newest first
128static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
129 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
130 if (!dirp) {
131 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
132 return std::vector<std::string>();
133 }
134 std::vector<std::string> result;
135 for (;;) {
136 errno = 0;
137 auto const entry = readdir(dirp.get());
138 if (!entry) {
139 if (errno) {
140 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
141 return std::vector<std::string>();
142 }
143 break;
144 }
Eric Biggers6b840392020-11-02 15:11:06 -0800145 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleya3630362016-05-17 14:17:56 -0700146 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
147 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
148 continue;
149 }
150 result.emplace_back(directory_path + "/" + entry->d_name);
151 }
152 std::sort(result.begin(), result.end());
153 std::reverse(result.begin(), result.end());
154 return result;
155}
156
157static std::string get_ce_key_current_path(const std::string& directory_path) {
158 return directory_path + "/current";
159}
160
161static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700162 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700163 if (paths.empty()) {
164 *ce_key_path = get_ce_key_current_path(directory_path);
165 return true;
166 }
167 for (unsigned int i = 0; i < UINT_MAX; i++) {
168 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
169 if (paths[0] < candidate) {
170 *ce_key_path = candidate;
171 return true;
172 }
173 }
174 return false;
175}
176
177// Discard all keys but the named one; rename it to canonical name.
178// No point in acting on errors in this; ignore them.
Paul Crowley14c8c072018-09-18 13:30:21 -0700179static void fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700180 const std::vector<std::string>& paths) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700181 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700182 if (other_path != to_fix) {
183 android::vold::destroyKey(other_path);
184 }
185 }
186 auto const current_path = get_ce_key_current_path(directory_path);
187 if (to_fix != current_path) {
188 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
Satya Tangirala0f890a92021-06-08 12:55:24 -0700189 if (!android::vold::RenameKeyDir(to_fix, current_path)) return;
Paul Crowleya3630362016-05-17 14:17:56 -0700190 }
Paul Crowley621d9b92018-12-07 15:36:09 -0800191 android::vold::FsyncDirectory(directory_path);
Paul Crowleya3630362016-05-17 14:17:56 -0700192}
193
194static bool read_and_fixate_user_ce_key(userid_t user_id,
195 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700196 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700197 auto const directory_path = get_ce_key_directory_path(user_id);
198 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700199 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700200 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
Eric Biggersf74373b2020-11-05 19:58:26 -0800201 if (retrieveKey(ce_key_path, auth, ce_key)) {
Paul Crowleya3630362016-05-17 14:17:56 -0700202 LOG(DEBUG) << "Successfully retrieved key";
203 fixate_user_ce_key(directory_path, ce_key_path, paths);
204 return true;
205 }
206 }
207 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
208 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100209}
210
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800211static bool MightBeEmmcStorage(const std::string& blk_device) {
Eric Biggerseb566d02020-07-06 13:46:38 -0700212 // Handle symlinks.
213 std::string real_path;
214 if (!Realpath(blk_device, &real_path)) {
215 real_path = blk_device;
216 }
217
218 // Handle logical volumes.
219 auto& dm = DeviceMapper::Instance();
220 for (;;) {
221 auto parent = dm.GetParentBlockDeviceByPath(real_path);
222 if (!parent.has_value()) break;
223 real_path = *parent;
224 }
225
226 // Now we should have the "real" block device.
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800227 LOG(DEBUG) << "MightBeEmmcStorage(): blk_device = " << blk_device
228 << ", real_path=" << real_path;
229 std::string name = Basename(real_path);
230 return StartsWith(name, "mmcblk") ||
231 // virtio devices may provide inline encryption support that is
232 // backed by eMMC inline encryption on the host, thus inheriting the
233 // DUN size limitation. So virtio devices must be allowed here too.
234 // TODO(b/207390665): check the maximum DUN size directly instead.
235 StartsWith(name, "vd");
Eric Biggerseb566d02020-07-06 13:46:38 -0700236}
237
Eric Biggers83a73d72019-09-30 13:06:47 -0700238// Retrieve the options to use for encryption policies on the /data filesystem.
Paul Crowley77df7f22020-01-23 15:29:30 -0800239static bool get_data_file_encryption_options(EncryptionOptions* options) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700240 auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT);
241 if (entry == nullptr) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800242 LOG(ERROR) << "No mount point entry for " << DATA_MNT_POINT;
243 return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700244 }
Paul Crowleya50f6c32019-10-24 23:21:44 -0700245 if (!ParseOptions(entry->encryption_options, options)) {
246 LOG(ERROR) << "Unable to parse encryption options for " << DATA_MNT_POINT ": "
247 << entry->encryption_options;
Paul Crowley77df7f22020-01-23 15:29:30 -0800248 return false;
Paul Crowleya50f6c32019-10-24 23:21:44 -0700249 }
Eric Biggerseb566d02020-07-06 13:46:38 -0700250 if ((options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) &&
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800251 !MightBeEmmcStorage(entry->blk_device)) {
Eric Biggerseb566d02020-07-06 13:46:38 -0700252 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
253 "this flag from the device's fstab";
254 return false;
255 }
Pigadb91992020-09-25 22:56:33 +0800256 if (options->version == 1) {
257 options->use_hw_wrapped_key =
258 GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT)->fs_mgr_flags.wrapped_key;
259 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800260 return true;
Eric Biggers83a73d72019-09-30 13:06:47 -0700261}
262
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800263static bool install_storage_key(const std::string& mountpoint, const EncryptionOptions& options,
264 const KeyBuffer& key, EncryptionPolicy* policy) {
265 KeyBuffer ephemeral_wrapped_key;
266 if (options.use_hw_wrapped_key) {
267 if (!exportWrappedStorageKey(key, &ephemeral_wrapped_key)) {
268 LOG(ERROR) << "Failed to get ephemeral wrapped key";
269 return false;
270 }
271 }
272 return installKey(mountpoint, options, options.use_hw_wrapped_key ? ephemeral_wrapped_key : key,
273 policy);
274}
275
Eric Biggers83a73d72019-09-30 13:06:47 -0700276// Retrieve the options to use for encryption policies on adoptable storage.
Paul Crowley5e53ff62019-10-24 14:55:17 -0700277static bool get_volume_file_encryption_options(EncryptionOptions* options) {
Paul Crowleyeb241a12020-02-18 10:10:08 -0800278 // If we give the empty string, libfscrypt will use the default (currently XTS)
279 auto contents_mode = android::base::GetProperty("ro.crypto.volume.contents_mode", "");
280 // HEH as default was always a mistake. Use the libfscrypt default (CTS)
281 // for devices launching on versions above Android 10.
282 auto first_api_level = GetFirstApiLevel();
Paul Crowleyf612b8b2019-10-24 22:52:02 -0700283 auto filenames_mode =
Paul Crowleyeb241a12020-02-18 10:10:08 -0800284 android::base::GetProperty("ro.crypto.volume.filenames_mode",
Eric Biggers72d07132020-08-10 10:55:56 -0700285 first_api_level > __ANDROID_API_Q__ ? "" : "aes-256-heh");
Paul Crowley77df7f22020-01-23 15:29:30 -0800286 auto options_string = android::base::GetProperty("ro.crypto.volume.options",
Paul Crowleyeb241a12020-02-18 10:10:08 -0800287 contents_mode + ":" + filenames_mode);
288 if (!ParseOptionsForApiLevel(first_api_level, options_string, options)) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800289 LOG(ERROR) << "Unable to parse volume encryption options: " << options_string;
290 return false;
291 }
Eric Biggerseb566d02020-07-06 13:46:38 -0700292 if (options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) {
293 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
294 "this flag from ro.crypto.volume.options";
295 return false;
296 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800297 return true;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700298}
299
Neeraj Sonibfb1d0e2018-12-14 15:18:15 +0530300bool is_metadata_wrapped_key_supported() {
301 return GetEntryForMountPoint(&fstab_default, METADATA_MNT_POINT)->fs_mgr_flags.wrapped_key;
302}
303
Paul Crowleydf528a72016-03-09 09:31:37 -0800304static bool read_and_install_user_ce_key(userid_t user_id,
305 const android::vold::KeyAuthentication& auth) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800306 if (s_ce_policies.count(user_id) != 0) return true;
307 EncryptionOptions options;
308 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100309 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700310 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800311 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800312 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800313 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000314 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000315 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000316}
317
Paul Crowleydf528a72016-03-09 09:31:37 -0800318static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000319 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000320 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
321 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000322 return false;
323 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000324 return true;
325}
326
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600327static bool destroy_dir(const std::string& dir) {
328 LOG(DEBUG) << "Destroying: " << dir;
329 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
330 PLOG(ERROR) << "Failed to destroy " << dir;
331 return false;
332 }
333 return true;
334}
335
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000336// NB this assumes that there is only one thread listening for crypt commands, because
337// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000338static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800339 EncryptionOptions options;
340 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100341 KeyBuffer de_key, ce_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800342 if (!generateStorageKey(makeGen(options), &de_key)) return false;
343 if (!generateStorageKey(makeGen(options), &ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000344 if (create_ephemeral) {
345 // If the key should be created as ephemeral, don't store it.
346 s_ephemeral_users.insert(user_id);
347 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700348 auto const directory_path = get_ce_key_directory_path(user_id);
349 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
350 auto const paths = get_ce_key_paths(directory_path);
351 std::string ce_key_path;
352 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700353 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, kEmptyAuthentication,
354 ce_key))
355 return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700356 fixate_user_ce_key(directory_path, ce_key_path, paths);
357 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700358 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley14c8c072018-09-18 13:30:21 -0700359 kEmptyAuthentication, de_key))
360 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100361 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800362 EncryptionPolicy de_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800363 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800364 s_de_policies[user_id] = de_policy;
365 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800366 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800367 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000368 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000369 return true;
370}
371
Paul Crowley77df7f22020-01-23 15:29:30 -0800372static bool lookup_policy(const std::map<userid_t, EncryptionPolicy>& key_map, userid_t user_id,
373 EncryptionPolicy* policy) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000374 auto refi = key_map.find(user_id);
375 if (refi == key_map.end()) {
Eric Biggersd1034042019-04-02 10:38:15 -0700376 LOG(DEBUG) << "Cannot find key for " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000377 return false;
378 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800379 *policy = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000380 return true;
381}
382
Paul Crowleydf528a72016-03-09 09:31:37 -0800383static bool is_numeric(const char* name) {
384 for (const char* p = name; *p != '\0'; p++) {
385 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000386 }
387 return true;
388}
389
390static bool load_all_de_keys() {
Paul Crowley77df7f22020-01-23 15:29:30 -0800391 EncryptionOptions options;
392 if (!get_data_file_encryption_options(&options)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000393 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800394 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000395 if (!dirp) {
396 PLOG(ERROR) << "Unable to read de key directory";
397 return false;
398 }
399 for (;;) {
400 errno = 0;
401 auto entry = readdir(dirp.get());
402 if (!entry) {
403 if (errno) {
404 PLOG(ERROR) << "Unable to read de key directory";
405 return false;
406 }
407 break;
408 }
Eric Biggers6b840392020-11-02 15:11:06 -0800409 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000410 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
411 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
412 continue;
413 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600414 userid_t user_id = std::stoi(entry->d_name);
Nikita Ioffef0550af2020-02-27 18:21:55 +0000415 auto key_path = de_dir + "/" + entry->d_name;
416 KeyBuffer de_key;
liulvping1c12c012022-10-10 19:16:23 +0800417 if (!retrieveKey(key_path, kEmptyAuthentication, &de_key)) {
418 // This is probably a partially removed user, so ignore
419 if (user_id != 0) continue;
420 return false;
421 }
Nikita Ioffef0550af2020-02-27 18:21:55 +0000422 EncryptionPolicy de_policy;
423 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
424 auto ret = s_de_policies.insert({user_id, de_policy});
425 if (!ret.second && ret.first->second != de_policy) {
426 LOG(ERROR) << "DE policy for user" << user_id << " changed";
427 return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000428 }
Nikita Ioffef0550af2020-02-27 18:21:55 +0000429 LOG(DEBUG) << "Installed de key for user " << user_id;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000430 }
Eric Biggersa701c452018-10-23 13:06:55 -0700431 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000432 // correct policy set on them, and that no rogue ones exist.
433 return true;
434}
435
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000436// Attempt to reinstall CE keys for users that we think are unlocked.
437static bool try_reload_ce_keys() {
438 for (const auto& it : s_ce_policies) {
439 if (!android::vold::reloadKeyFromSessionKeyring(DATA_MNT_POINT, it.second)) {
440 LOG(ERROR) << "Failed to load CE key from session keyring for user " << it.first;
441 return false;
442 }
443 }
444 return true;
445}
446
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700447bool fscrypt_initialize_systemwide_keys() {
448 LOG(INFO) << "fscrypt_initialize_systemwide_keys";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800449
Paul Crowley77df7f22020-01-23 15:29:30 -0800450 EncryptionOptions options;
451 if (!get_data_file_encryption_options(&options)) return false;
452
453 KeyBuffer device_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800454 if (!retrieveOrGenerateKey(device_key_path, device_key_temp, kEmptyAuthentication,
Eric Biggersf74373b2020-11-05 19:58:26 -0800455 makeGen(options), &device_key))
Paul Crowley77df7f22020-01-23 15:29:30 -0800456 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800457
Paul Crowley5e53ff62019-10-24 14:55:17 -0700458 EncryptionPolicy device_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800459 if (!install_storage_key(DATA_MNT_POINT, options, device_key, &device_policy)) return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700460
Paul Crowley5e53ff62019-10-24 14:55:17 -0700461 std::string options_string;
462 if (!OptionsToString(device_policy.options, &options_string)) {
463 LOG(ERROR) << "Unable to serialize options";
464 return false;
465 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800466 std::string options_filename = std::string(DATA_MNT_POINT) + fscrypt_key_mode;
Eric Biggers83a73d72019-09-30 13:06:47 -0700467 if (!android::vold::writeStringToFile(options_string, options_filename)) return false;
Paul Lawrence6e410592016-05-24 14:20:38 -0700468
Paul Crowley77df7f22020-01-23 15:29:30 -0800469 std::string ref_filename = std::string(DATA_MNT_POINT) + fscrypt_key_ref;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700470 if (!android::vold::writeStringToFile(device_policy.key_raw_ref, ref_filename)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700471 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800472
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700473 KeyBuffer per_boot_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800474 if (!generateStorageKey(makeGen(options), &per_boot_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800475 EncryptionPolicy per_boot_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800476 if (!install_storage_key(DATA_MNT_POINT, options, per_boot_key, &per_boot_policy)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700477 std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref;
Paul Crowley77df7f22020-01-23 15:29:30 -0800478 if (!android::vold::writeStringToFile(per_boot_policy.key_raw_ref, per_boot_ref_filename))
479 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700480 LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename;
481
Paul Crowley76107cb2016-02-09 10:04:39 +0000482 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800483}
484
Eric Biggersfb486662022-03-22 00:33:52 +0000485bool fscrypt_init_user0_done;
486
Eric Biggersa701c452018-10-23 13:06:55 -0700487bool fscrypt_init_user0() {
488 LOG(DEBUG) << "fscrypt_init_user0";
489 if (fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000490 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
491 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
492 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700493 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000494 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000495 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700496 // TODO: switch to loading only DE_0 here once framework makes
497 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000498 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000499 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700500 // We can only safely prepare DE storage here, since CE keys are probably
501 // entangled with user credentials. The framework will always prepare CE
502 // storage once CE keys are installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700503 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700504 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000505 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700506 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700507
508 // If this is a non-FBE device that recently left an emulated mode,
509 // restore user data directories to known-good state.
Eric Biggersa701c452018-10-23 13:06:55 -0700510 if (!fscrypt_is_native() && !fscrypt_is_emulated()) {
Satya Tangiralae1361712021-03-15 15:33:08 -0700511 fscrypt_unlock_user_key(0, 0, "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700512 }
513
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000514 // In some scenarios (e.g. userspace reboot) we might unmount userdata
515 // without doing a hard reboot. If CE keys were stored in fs keyring then
516 // they will be lost after unmount. Attempt to re-install them.
517 if (fscrypt_is_native() && android::vold::isFsKeyringSupported()) {
518 if (!try_reload_ce_keys()) return false;
519 }
520
Eric Biggersfb486662022-03-22 00:33:52 +0000521 fscrypt_init_user0_done = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000522 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000523}
524
Eric Biggersa701c452018-10-23 13:06:55 -0700525bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
526 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
527 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000528 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000529 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000530 // FIXME test for existence of key that is not loaded yet
Paul Crowley77df7f22020-01-23 15:29:30 -0800531 if (s_ce_policies.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700532 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800533 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000534 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000535 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800536 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000537 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000538 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000539 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000540 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800541}
542
Eric Biggersce368682019-04-03 15:44:06 -0700543// "Lock" all encrypted directories whose key has been removed. This is needed
Eric Biggersf3dc4202019-09-30 13:05:58 -0700544// in the case where the keys are being put in the session keyring (rather in
545// the newer filesystem-level keyrings), because removing a key from the session
546// keyring doesn't affect inodes in the kernel's inode cache whose per-file key
547// was already set up. So to remove the per-file keys and make the files
548// "appear encrypted", these inodes must be evicted.
Eric Biggersce368682019-04-03 15:44:06 -0700549//
550// To do this, sync() to clean all dirty inodes, then drop all reclaimable slab
551// objects systemwide. This is overkill, but it's the best available method
552// currently. Don't use drop_caches mode "3" because that also evicts pagecache
553// for in-use files; all files relevant here are already closed and sync'ed.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700554static void drop_caches_if_needed() {
555 if (android::vold::isFsKeyringSupported()) {
556 return;
557 }
Pavel Grafovb350ed02017-07-27 17:34:57 +0100558 sync();
Eric Biggersce368682019-04-03 15:44:06 -0700559 if (!writeStringToFile("2", "/proc/sys/vm/drop_caches")) {
Pavel Grafovb350ed02017-07-27 17:34:57 +0100560 PLOG(ERROR) << "Failed to drop caches during key eviction";
561 }
562}
563
Andrew Scull7ec25c72016-10-31 10:28:25 +0000564static bool evict_ce_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000565 bool success = true;
Paul Crowley77df7f22020-01-23 15:29:30 -0800566 EncryptionPolicy policy;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000567 // If we haven't loaded the CE key, no need to evict it.
Paul Crowley77df7f22020-01-23 15:29:30 -0800568 if (lookup_policy(s_ce_policies, user_id, &policy)) {
569 success &= android::vold::evictKey(DATA_MNT_POINT, policy);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700570 drop_caches_if_needed();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000571 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800572 s_ce_policies.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000573 return success;
574}
575
Eric Biggersa701c452018-10-23 13:06:55 -0700576bool fscrypt_destroy_user_key(userid_t user_id) {
577 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
578 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000579 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000580 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000581 bool success = true;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000582 success &= evict_ce_key(user_id);
Paul Crowley77df7f22020-01-23 15:29:30 -0800583 EncryptionPolicy de_policy;
584 success &= lookup_policy(s_de_policies, user_id, &de_policy) &&
585 android::vold::evictKey(DATA_MNT_POINT, de_policy);
586 s_de_policies.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000587 auto it = s_ephemeral_users.find(user_id);
588 if (it != s_ephemeral_users.end()) {
589 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000590 } else {
Eric Biggersd863b2c2021-05-27 17:29:10 -0700591 auto ce_path = get_ce_key_directory_path(user_id);
592 for (auto const path : get_ce_key_paths(ce_path)) {
Paul Crowleya3630362016-05-17 14:17:56 -0700593 success &= android::vold::destroyKey(path);
594 }
Eric Biggersd863b2c2021-05-27 17:29:10 -0700595 success &= destroy_dir(ce_path);
596
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700597 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700598 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700599 success &= android::vold::destroyKey(de_key_path);
600 } else {
601 LOG(INFO) << "Not present so not erasing: " << de_key_path;
602 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100603 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000604 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100605}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800606
Paul Crowley76107cb2016-02-09 10:04:39 +0000607static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700608 if (chmod(path.c_str(), 0000) != 0) {
609 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000610 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700611 }
612#if EMULATED_USES_SELINUX
613 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
614 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000615 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700616 }
617#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000618 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700619}
620
Paul Crowley76107cb2016-02-09 10:04:39 +0000621static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700622 if (chmod(path.c_str(), mode) != 0) {
623 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000624 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700625 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700626 }
627#if EMULATED_USES_SELINUX
628 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
629 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000630 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700631 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700632 }
633#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000634 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700635}
636
Paul Crowley3b71fc52017-10-09 10:55:21 -0700637static bool parse_hex(const std::string& hex, std::string* result) {
638 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800639 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000640 return true;
641 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800642 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800643 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000644 return false;
645 }
646 return true;
647}
648
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700649static std::optional<android::vold::KeyAuthentication> authentication_from_hex(
Satya Tangiralae1361712021-03-15 15:33:08 -0700650 const std::string& secret_hex) {
651 std::string secret;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700652 if (!parse_hex(secret_hex, &secret)) return std::optional<android::vold::KeyAuthentication>();
653 if (secret.empty()) {
654 return kEmptyAuthentication;
655 } else {
Satya Tangiralae1361712021-03-15 15:33:08 -0700656 return android::vold::KeyAuthentication(secret);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700657 }
658}
659
Paul Crowley3aa914d2017-10-09 16:35:51 -0700660static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
661 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
662}
663
Paul Crowley26a53882017-10-26 11:16:39 -0700664static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
665 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
666}
667
Paul Crowley3aa914d2017-10-09 16:35:51 -0700668static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
Paul Crowley5e53ff62019-10-24 14:55:17 -0700669 EncryptionPolicy* policy) {
Paul Crowley26a53882017-10-26 11:16:39 -0700670 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
671 std::string secdiscardable_hash;
672 if (android::vold::pathExists(secdiscardable_path)) {
673 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
674 return false;
675 } else {
Eric Biggersfec0c0e2021-02-16 15:59:17 -0800676 if (!android::vold::MkdirsSync(secdiscardable_path, 0700)) return false;
Paul Crowley26a53882017-10-26 11:16:39 -0700677 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
678 return false;
679 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700680 auto key_path = volkey_path(misc_path, volume_uuid);
Eric Biggersfec0c0e2021-02-16 15:59:17 -0800681 if (!android::vold::MkdirsSync(key_path, 0700)) return false;
Satya Tangiralae1361712021-03-15 15:33:08 -0700682 android::vold::KeyAuthentication auth(secdiscardable_hash);
Eric Biggers83a73d72019-09-30 13:06:47 -0700683
Paul Crowley77df7f22020-01-23 15:29:30 -0800684 EncryptionOptions options;
685 if (!get_volume_file_encryption_options(&options)) return false;
686 KeyBuffer key;
Eric Biggersf74373b2020-11-05 19:58:26 -0800687 if (!retrieveOrGenerateKey(key_path, key_path + "_tmp", auth, makeGen(options), &key))
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800688 return false;
689 if (!install_storage_key(BuildDataPath(volume_uuid), options, key, policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800690 return true;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700691}
692
693static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700694 auto path = volkey_path(misc_path, volume_uuid);
695 if (!android::vold::pathExists(path)) return true;
696 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700697}
698
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700699static bool fscrypt_rewrap_user_key(userid_t user_id, int serial,
700 const android::vold::KeyAuthentication& retrieve_auth,
701 const android::vold::KeyAuthentication& store_auth) {
702 if (s_ephemeral_users.count(user_id) != 0) return true;
703 auto const directory_path = get_ce_key_directory_path(user_id);
704 KeyBuffer ce_key;
705 std::string ce_key_current_path = get_ce_key_current_path(directory_path);
Eric Biggersf74373b2020-11-05 19:58:26 -0800706 if (retrieveKey(ce_key_current_path, retrieve_auth, &ce_key)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700707 LOG(DEBUG) << "Successfully retrieved key";
708 // TODO(147732812): Remove this once Locksettingservice is fixed.
709 // Currently it calls fscrypt_clear_user_key_auth with a secret when lockscreen is
710 // changed from swipe to none or vice-versa
Eric Biggersf74373b2020-11-05 19:58:26 -0800711 } else if (retrieveKey(ce_key_current_path, kEmptyAuthentication, &ce_key)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700712 LOG(DEBUG) << "Successfully retrieved key with empty auth";
713 } else {
714 LOG(ERROR) << "Failed to retrieve key for user " << user_id;
715 return false;
716 }
717 auto const paths = get_ce_key_paths(directory_path);
718 std::string ce_key_path;
719 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
720 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, store_auth, ce_key))
721 return false;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700722 return true;
723}
724
Satya Tangiralae1361712021-03-15 15:33:08 -0700725bool fscrypt_add_user_key_auth(userid_t user_id, int serial, const std::string& secret_hex) {
726 LOG(DEBUG) << "fscrypt_add_user_key_auth " << user_id << " serial=" << serial;
Eric Biggersa701c452018-10-23 13:06:55 -0700727 if (!fscrypt_is_native()) return true;
Satya Tangiralae1361712021-03-15 15:33:08 -0700728 auto auth = authentication_from_hex(secret_hex);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700729 if (!auth) return false;
730 return fscrypt_rewrap_user_key(user_id, serial, kEmptyAuthentication, *auth);
731}
732
Satya Tangiralae1361712021-03-15 15:33:08 -0700733bool fscrypt_clear_user_key_auth(userid_t user_id, int serial, const std::string& secret_hex) {
734 LOG(DEBUG) << "fscrypt_clear_user_key_auth " << user_id << " serial=" << serial;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700735 if (!fscrypt_is_native()) return true;
Satya Tangiralae1361712021-03-15 15:33:08 -0700736 auto auth = authentication_from_hex(secret_hex);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700737 if (!auth) return false;
738 return fscrypt_rewrap_user_key(user_id, serial, *auth, kEmptyAuthentication);
Paul Crowleya3630362016-05-17 14:17:56 -0700739}
740
Eric Biggersa701c452018-10-23 13:06:55 -0700741bool fscrypt_fixate_newest_user_key_auth(userid_t user_id) {
742 LOG(DEBUG) << "fscrypt_fixate_newest_user_key_auth " << user_id;
743 if (!fscrypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700744 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700745 auto const directory_path = get_ce_key_directory_path(user_id);
746 auto const paths = get_ce_key_paths(directory_path);
747 if (paths.empty()) {
748 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
749 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000750 }
Paul Crowleya3630362016-05-17 14:17:56 -0700751 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000752 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000753}
754
Eric Biggers18ba1522021-04-06 12:02:56 -0700755std::vector<int> fscrypt_get_unlocked_users() {
756 std::vector<int> user_ids;
757 for (const auto& it : s_ce_policies) {
758 user_ids.push_back(it.first);
759 }
760 return user_ids;
761}
762
Jeff Sharkey47695b22016-02-01 17:02:29 -0700763// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Satya Tangiralae1361712021-03-15 15:33:08 -0700764bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& secret_hex) {
765 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial;
Eric Biggersa701c452018-10-23 13:06:55 -0700766 if (fscrypt_is_native()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800767 if (s_ce_policies.count(user_id) != 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000768 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000769 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000770 }
Satya Tangiralae1361712021-03-15 15:33:08 -0700771 auto auth = authentication_from_hex(secret_hex);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700772 if (!auth) return false;
773 if (!read_and_install_user_ce_key(user_id, *auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000774 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000775 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800776 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700777 } else {
778 // When in emulation mode, we just use chmod. However, we also
779 // unlock directories when not in emulation mode, to bring devices
780 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000781 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000782 !emulated_unlock(android::vold::BuildDataMiscCePath("", user_id), 01771) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700783 !emulated_unlock(android::vold::BuildDataMediaCePath("", user_id), 0770) ||
784 !emulated_unlock(android::vold::BuildDataUserCePath("", user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700785 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000786 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700787 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800788 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000789 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800790}
791
Jeff Sharkey47695b22016-02-01 17:02:29 -0700792// TODO: rename to 'evict' for consistency
Eric Biggersa701c452018-10-23 13:06:55 -0700793bool fscrypt_lock_user_key(userid_t user_id) {
794 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
795 if (fscrypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000796 return evict_ce_key(user_id);
Eric Biggersa701c452018-10-23 13:06:55 -0700797 } else if (fscrypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800798 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000799 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000800 !emulated_lock(android::vold::BuildDataMiscCePath("", user_id)) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700801 !emulated_lock(android::vold::BuildDataMediaCePath("", user_id)) ||
802 !emulated_lock(android::vold::BuildDataUserCePath("", user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000803 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000804 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800805 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800806 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700807
Paul Crowley76107cb2016-02-09 10:04:39 +0000808 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800809}
810
Paul Crowley82b41ff2017-10-20 08:17:54 -0700811static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
812 userid_t user_id, int flags) {
813 if (0 != android::vold::ForkExecvp(
814 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
815 std::to_string(user_id), std::to_string(flags)})) {
816 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700817 return false;
818 }
819 return true;
820}
821
Eric Biggersa701c452018-10-23 13:06:55 -0700822bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700823 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700824 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800825 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700826
Eric Biggersc193c3f2022-05-04 04:39:50 +0000827 // Internal storage must be prepared before adoptable storage, since the
828 // user's volume keys are stored in their internal storage.
829 if (!volume_uuid.empty()) {
830 if ((flags & android::os::IVold::STORAGE_FLAG_DE) &&
831 !android::vold::pathExists(android::vold::BuildDataMiscDePath("", user_id))) {
832 LOG(ERROR) << "Cannot prepare DE storage for user " << user_id << " on volume "
833 << volume_uuid << " before internal storage";
834 return false;
835 }
836 if ((flags & android::os::IVold::STORAGE_FLAG_CE) &&
837 !android::vold::pathExists(android::vold::BuildDataMiscCePath("", user_id))) {
838 LOG(ERROR) << "Cannot prepare CE storage for user " << user_id << " on volume "
839 << volume_uuid << " before internal storage";
840 return false;
841 }
842 }
843
Paul Crowley82b41ff2017-10-20 08:17:54 -0700844 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600845 // DE_sys key
846 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
847 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
848 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600849
850 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700851 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000852 auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800853 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700854 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
855
Paul Crowley3b71fc52017-10-09 10:55:21 -0700856 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700857 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600858#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700859 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700860 multiuser_get_uid(user_id, AID_EVERYBODY)))
861 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600862#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700863 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600864
Paul Crowley6b756ce2017-10-05 14:07:09 -0700865 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800866 if (!prepare_dir(vendor_de_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700867 }
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000868
869 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000870 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000871
Eric Biggersa701c452018-10-23 13:06:55 -0700872 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700873 EncryptionPolicy de_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700874 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800875 if (!lookup_policy(s_de_policies, user_id, &de_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700876 if (!EnsurePolicy(de_policy, system_de_path)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700877 if (!EnsurePolicy(de_policy, vendor_de_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700878 } else {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000879 auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id);
880 if (!read_or_create_volkey(misc_de_empty_volume_path, volume_uuid, &de_policy)) {
881 return false;
882 }
Paul Crowley6b756ce2017-10-05 14:07:09 -0700883 }
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000884 if (!EnsurePolicy(de_policy, misc_de_path)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700885 if (!EnsurePolicy(de_policy, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700886 }
Paul Crowley285956f2016-01-20 13:12:38 +0000887 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800888
Paul Crowley82b41ff2017-10-20 08:17:54 -0700889 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600890 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700891 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000892 auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800893 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600894 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
895 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800896
Paul Crowley3b71fc52017-10-09 10:55:21 -0700897 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700898 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800899 if (!prepare_dir(vendor_ce_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700900 }
Martijn Coenen5adf92a2021-02-01 07:57:02 +0000901 if (!prepare_dir(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
902 // On devices without sdcardfs (kernel 5.4+), the path permissions aren't fixed
903 // up automatically; therefore, use a default ACL, to ensure apps with MEDIA_RW
904 // can keep reading external storage; in particular, this allows app cloning
905 // scenarios to work correctly on such devices.
906 int ret = SetDefaultAcl(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW, {AID_MEDIA_RW});
907 if (ret != android::OK) {
908 return false;
909 }
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +0100910
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000911 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000912 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700913
Eric Biggersa701c452018-10-23 13:06:55 -0700914 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700915 EncryptionPolicy ce_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700916 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800917 if (!lookup_policy(s_ce_policies, user_id, &ce_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700918 if (!EnsurePolicy(ce_policy, system_ce_path)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700919 if (!EnsurePolicy(ce_policy, vendor_ce_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700920 } else {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000921 auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id);
922 if (!read_or_create_volkey(misc_ce_empty_volume_path, volume_uuid, &ce_policy)) {
923 return false;
924 }
Paul Crowley6b756ce2017-10-05 14:07:09 -0700925 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700926 if (!EnsurePolicy(ce_policy, media_ce_path)) return false;
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000927 if (!EnsurePolicy(ce_policy, misc_ce_path)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700928 if (!EnsurePolicy(ce_policy, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700929 }
Paul Crowley1a965262017-10-13 13:49:50 -0700930
931 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700932 // Now that credentials have been installed, we can run restorecon
933 // over these paths
934 // NOTE: these paths need to be kept in sync with libselinux
935 android::vold::RestoreconRecursive(system_ce_path);
Nick Kralevich6a3ef482019-05-14 09:30:29 -0700936 android::vold::RestoreconRecursive(vendor_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -0700937 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700938 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800939 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700940 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800941
Paul Crowley76107cb2016-02-09 10:04:39 +0000942 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800943}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600944
Eric Biggersa701c452018-10-23 13:06:55 -0700945bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
946 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600947 << ", user " << user_id << ", flags " << flags;
948 bool res = true;
949
Paul Crowley82b41ff2017-10-20 08:17:54 -0700950 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
951
952 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -0700953 // CE_n key
954 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000955 auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800956 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -0700957 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
958 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
959
960 res &= destroy_dir(media_ce_path);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000961 res &= destroy_dir(misc_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -0700962 res &= destroy_dir(user_ce_path);
963 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700964 res &= destroy_dir(system_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800965 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700966 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700967 if (fscrypt_is_native()) {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000968 auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id);
969 res &= destroy_volkey(misc_ce_empty_volume_path, volume_uuid);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700970 }
Paul Crowley8e550662017-10-16 17:01:44 -0700971 }
972 }
973
Paul Crowley82b41ff2017-10-20 08:17:54 -0700974 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600975 // DE_sys key
976 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
977 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
978 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600979
980 // DE_n key
981 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000982 auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800983 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600984 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
985
Paul Crowley8e550662017-10-16 17:01:44 -0700986 res &= destroy_dir(user_de_path);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000987 res &= destroy_dir(misc_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -0700988 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600989 res &= destroy_dir(system_legacy_path);
990#if MANAGE_MISC_DIRS
991 res &= destroy_dir(misc_legacy_path);
992#endif
993 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600994 res &= destroy_dir(system_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800995 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700996 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700997 if (fscrypt_is_native()) {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000998 auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id);
999 res &= destroy_volkey(misc_de_empty_volume_path, volume_uuid);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001000 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001001 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001002 }
1003
1004 return res;
1005}
Rubin Xu2436e272017-04-27 20:43:10 +01001006
Paul Crowleyc6433a22017-10-24 14:54:43 -07001007static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
1008 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
1009 if (!dirp) {
1010 PLOG(ERROR) << "Unable to open directory: " + directory_path;
1011 return false;
1012 }
1013 bool res = true;
1014 for (;;) {
1015 errno = 0;
1016 auto const entry = readdir(dirp.get());
1017 if (!entry) {
1018 if (errno) {
1019 PLOG(ERROR) << "Unable to read directory: " + directory_path;
1020 return false;
1021 }
1022 break;
1023 }
Eric Biggers6b840392020-11-02 15:11:06 -08001024 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleyc6433a22017-10-24 14:54:43 -07001025 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
1026 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
1027 continue;
1028 }
1029 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
1030 }
1031 return res;
1032}
1033
Eric Biggersa701c452018-10-23 13:06:55 -07001034bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -07001035 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -07001036 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -07001037 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
1038 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -07001039 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
1040 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
1041 return res;
1042}