blob: d964a3327ab6eb75ecf5b15a9886b6b1188691fd [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 Biggersce50a432022-10-19 19:38:50 +000099// Some users are ephemeral; don't try to store or wipe their keys on disk.
Paul Crowleydf528a72016-03-09 09:31:37 -0800100std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800101
Eric Biggers8c1659e2022-09-06 21:29:14 +0000102// New CE keys that haven't been committed to disk yet
103std::map<userid_t, KeyBuffer> s_new_ce_keys;
104
Eric Biggers9ea53442022-05-11 05:33:25 +0000105// The system DE encryption policy
106EncryptionPolicy s_device_policy;
107
Paul Crowley77df7f22020-01-23 15:29:30 -0800108// Map user ids to encryption policies
109std::map<userid_t, EncryptionPolicy> s_de_policies;
110std::map<userid_t, EncryptionPolicy> s_ce_policies;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000111
Paul Crowley14c8c072018-09-18 13:30:21 -0700112} // namespace
Paul Lawrence731a7a22015-04-28 22:14:15 +0000113
Paul Crowley249c2fb2020-02-07 12:51:56 -0800114// Returns KeyGeneration suitable for key as described in EncryptionOptions
115static KeyGeneration makeGen(const EncryptionOptions& options) {
116 return KeyGeneration{FSCRYPT_MAX_KEY_SIZE, true, options.use_hw_wrapped_key};
117}
118
Paul Crowley3b71fc52017-10-09 10:55:21 -0700119static const char* escape_empty(const std::string& value) {
120 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000121}
122
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000123static std::string get_de_key_path(userid_t user_id) {
124 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
125}
126
Paul Crowleya3630362016-05-17 14:17:56 -0700127static std::string get_ce_key_directory_path(userid_t user_id) {
128 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
129}
130
131// Returns the keys newest first
132static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
133 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
134 if (!dirp) {
135 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
136 return std::vector<std::string>();
137 }
138 std::vector<std::string> result;
139 for (;;) {
140 errno = 0;
141 auto const entry = readdir(dirp.get());
142 if (!entry) {
143 if (errno) {
144 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
145 return std::vector<std::string>();
146 }
147 break;
148 }
Eric Biggers6b840392020-11-02 15:11:06 -0800149 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleya3630362016-05-17 14:17:56 -0700150 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
151 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
152 continue;
153 }
154 result.emplace_back(directory_path + "/" + entry->d_name);
155 }
156 std::sort(result.begin(), result.end());
157 std::reverse(result.begin(), result.end());
158 return result;
159}
160
161static std::string get_ce_key_current_path(const std::string& directory_path) {
162 return directory_path + "/current";
163}
164
165static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700166 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700167 if (paths.empty()) {
168 *ce_key_path = get_ce_key_current_path(directory_path);
169 return true;
170 }
171 for (unsigned int i = 0; i < UINT_MAX; i++) {
172 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
173 if (paths[0] < candidate) {
174 *ce_key_path = candidate;
175 return true;
176 }
177 }
178 return false;
179}
180
181// Discard all keys but the named one; rename it to canonical name.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000182static bool fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700183 const std::vector<std::string>& paths) {
Eric Biggers11409cb2022-10-26 19:02:43 +0000184 bool need_sync = false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700185 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700186 if (other_path != to_fix) {
187 android::vold::destroyKey(other_path);
Eric Biggers11409cb2022-10-26 19:02:43 +0000188 need_sync = true;
Paul Crowleya3630362016-05-17 14:17:56 -0700189 }
190 }
191 auto const current_path = get_ce_key_current_path(directory_path);
192 if (to_fix != current_path) {
193 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000194 if (!android::vold::RenameKeyDir(to_fix, current_path)) return false;
Eric Biggers11409cb2022-10-26 19:02:43 +0000195 need_sync = true;
Paul Crowleya3630362016-05-17 14:17:56 -0700196 }
Eric Biggers11409cb2022-10-26 19:02:43 +0000197 if (need_sync && !android::vold::FsyncDirectory(directory_path)) return false;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000198 return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700199}
200
201static bool read_and_fixate_user_ce_key(userid_t user_id,
202 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700203 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700204 auto const directory_path = get_ce_key_directory_path(user_id);
205 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700206 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700207 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
Eric Biggersf74373b2020-11-05 19:58:26 -0800208 if (retrieveKey(ce_key_path, auth, ce_key)) {
Paul Crowleya3630362016-05-17 14:17:56 -0700209 LOG(DEBUG) << "Successfully retrieved key";
210 fixate_user_ce_key(directory_path, ce_key_path, paths);
211 return true;
212 }
213 }
214 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
215 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100216}
217
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800218static bool MightBeEmmcStorage(const std::string& blk_device) {
Eric Biggerseb566d02020-07-06 13:46:38 -0700219 // Handle symlinks.
220 std::string real_path;
221 if (!Realpath(blk_device, &real_path)) {
222 real_path = blk_device;
223 }
224
225 // Handle logical volumes.
226 auto& dm = DeviceMapper::Instance();
227 for (;;) {
228 auto parent = dm.GetParentBlockDeviceByPath(real_path);
229 if (!parent.has_value()) break;
230 real_path = *parent;
231 }
232
233 // Now we should have the "real" block device.
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800234 LOG(DEBUG) << "MightBeEmmcStorage(): blk_device = " << blk_device
235 << ", real_path=" << real_path;
236 std::string name = Basename(real_path);
237 return StartsWith(name, "mmcblk") ||
238 // virtio devices may provide inline encryption support that is
239 // backed by eMMC inline encryption on the host, thus inheriting the
240 // DUN size limitation. So virtio devices must be allowed here too.
241 // TODO(b/207390665): check the maximum DUN size directly instead.
242 StartsWith(name, "vd");
Eric Biggerseb566d02020-07-06 13:46:38 -0700243}
244
Eric Biggers83a73d72019-09-30 13:06:47 -0700245// Retrieve the options to use for encryption policies on the /data filesystem.
Paul Crowley77df7f22020-01-23 15:29:30 -0800246static bool get_data_file_encryption_options(EncryptionOptions* options) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700247 auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT);
248 if (entry == nullptr) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800249 LOG(ERROR) << "No mount point entry for " << DATA_MNT_POINT;
250 return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700251 }
Paul Crowleya50f6c32019-10-24 23:21:44 -0700252 if (!ParseOptions(entry->encryption_options, options)) {
253 LOG(ERROR) << "Unable to parse encryption options for " << DATA_MNT_POINT ": "
254 << entry->encryption_options;
Paul Crowley77df7f22020-01-23 15:29:30 -0800255 return false;
Paul Crowleya50f6c32019-10-24 23:21:44 -0700256 }
Eric Biggerseb566d02020-07-06 13:46:38 -0700257 if ((options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) &&
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800258 !MightBeEmmcStorage(entry->blk_device)) {
Eric Biggerseb566d02020-07-06 13:46:38 -0700259 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
260 "this flag from the device's fstab";
261 return false;
262 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800263 return true;
Eric Biggers83a73d72019-09-30 13:06:47 -0700264}
265
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800266static bool install_storage_key(const std::string& mountpoint, const EncryptionOptions& options,
267 const KeyBuffer& key, EncryptionPolicy* policy) {
268 KeyBuffer ephemeral_wrapped_key;
269 if (options.use_hw_wrapped_key) {
270 if (!exportWrappedStorageKey(key, &ephemeral_wrapped_key)) {
271 LOG(ERROR) << "Failed to get ephemeral wrapped key";
272 return false;
273 }
274 }
275 return installKey(mountpoint, options, options.use_hw_wrapped_key ? ephemeral_wrapped_key : key,
276 policy);
277}
278
Eric Biggers83a73d72019-09-30 13:06:47 -0700279// Retrieve the options to use for encryption policies on adoptable storage.
Paul Crowley5e53ff62019-10-24 14:55:17 -0700280static bool get_volume_file_encryption_options(EncryptionOptions* options) {
Paul Crowleyeb241a12020-02-18 10:10:08 -0800281 // If we give the empty string, libfscrypt will use the default (currently XTS)
282 auto contents_mode = android::base::GetProperty("ro.crypto.volume.contents_mode", "");
283 // HEH as default was always a mistake. Use the libfscrypt default (CTS)
284 // for devices launching on versions above Android 10.
285 auto first_api_level = GetFirstApiLevel();
Paul Crowleyf612b8b2019-10-24 22:52:02 -0700286 auto filenames_mode =
Paul Crowleyeb241a12020-02-18 10:10:08 -0800287 android::base::GetProperty("ro.crypto.volume.filenames_mode",
Eric Biggers72d07132020-08-10 10:55:56 -0700288 first_api_level > __ANDROID_API_Q__ ? "" : "aes-256-heh");
Paul Crowley77df7f22020-01-23 15:29:30 -0800289 auto options_string = android::base::GetProperty("ro.crypto.volume.options",
Paul Crowleyeb241a12020-02-18 10:10:08 -0800290 contents_mode + ":" + filenames_mode);
291 if (!ParseOptionsForApiLevel(first_api_level, options_string, options)) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800292 LOG(ERROR) << "Unable to parse volume encryption options: " << options_string;
293 return false;
294 }
Eric Biggerseb566d02020-07-06 13:46:38 -0700295 if (options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) {
296 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
297 "this flag from ro.crypto.volume.options";
298 return false;
299 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800300 return true;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700301}
302
Paul Crowleydf528a72016-03-09 09:31:37 -0800303static bool read_and_install_user_ce_key(userid_t user_id,
304 const android::vold::KeyAuthentication& auth) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800305 if (s_ce_policies.count(user_id) != 0) return true;
306 EncryptionOptions options;
307 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100308 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700309 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800310 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800311 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800312 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000313 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000314 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000315}
316
Eric Biggersca9a97e2022-05-12 19:17:15 +0000317// Prepare a directory without assigning it an encryption policy. The directory
318// will inherit the encryption policy of its parent directory, or will be
319// unencrypted if the parent directory is unencrypted.
Paul Crowleydf528a72016-03-09 09:31:37 -0800320static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000321 LOG(DEBUG) << "Preparing: " << dir;
Eric Biggers39704e72022-05-04 22:17:54 +0000322 if (android::vold::PrepareDir(dir, mode, uid, gid, 0) != 0) {
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000323 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000324 return false;
325 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000326 return true;
327}
328
Eric Biggersca9a97e2022-05-12 19:17:15 +0000329// Prepare a directory and assign it the given encryption policy.
330static bool prepare_dir_with_policy(const std::string& dir, mode_t mode, uid_t uid, gid_t gid,
331 const EncryptionPolicy& policy) {
332 if (!prepare_dir(dir, mode, uid, gid)) return false;
Eric Biggersa6957c02022-06-15 18:52:18 +0000333 if (IsFbeEnabled() && !EnsurePolicy(policy, dir)) return false;
Eric Biggersca9a97e2022-05-12 19:17:15 +0000334 return true;
335}
336
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600337static bool destroy_dir(const std::string& dir) {
338 LOG(DEBUG) << "Destroying: " << dir;
339 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
340 PLOG(ERROR) << "Failed to destroy " << dir;
341 return false;
342 }
343 return true;
344}
345
Eric Biggersce50a432022-10-19 19:38:50 +0000346// Checks whether the DE key directory exists for the given user.
347static bool de_key_exists(userid_t user_id) {
348 return android::vold::pathExists(get_de_key_path(user_id));
349}
350
351// Checks whether at least one CE key subdirectory exists for the given user.
352static bool ce_key_exists(userid_t user_id) {
353 auto directory_path = get_ce_key_directory_path(user_id);
Eric Biggers9544f8c2022-10-07 19:07:23 +0000354 // The common case is that "$dir/current" exists, so check for that first.
355 if (android::vold::pathExists(get_ce_key_current_path(directory_path))) return true;
356
357 // Else, there could still be another subdirectory of $dir (if a crash
358 // occurred during fixate_user_ce_key()), so check for one.
359 return android::vold::pathExists(directory_path) && !get_ce_key_paths(directory_path).empty();
360}
361
Eric Biggersce50a432022-10-19 19:38:50 +0000362static bool create_de_key(userid_t user_id, bool ephemeral) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800363 EncryptionOptions options;
364 if (!get_data_file_encryption_options(&options)) return false;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000365
Eric Biggersce50a432022-10-19 19:38:50 +0000366 KeyBuffer de_key;
367 if (!generateStorageKey(makeGen(options), &de_key)) return false;
368 if (!ephemeral && !android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
369 kEmptyAuthentication, de_key))
370 return false;
371 EncryptionPolicy de_policy;
372 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
373 s_de_policies[user_id] = de_policy;
374 LOG(INFO) << "Created DE key for user " << user_id;
375 return true;
376}
Eric Biggers9544f8c2022-10-07 19:07:23 +0000377
Eric Biggersce50a432022-10-19 19:38:50 +0000378static bool create_ce_key(userid_t user_id, bool ephemeral) {
379 EncryptionOptions options;
380 if (!get_data_file_encryption_options(&options)) return false;
Eric Biggers9544f8c2022-10-07 19:07:23 +0000381
Eric Biggersce50a432022-10-19 19:38:50 +0000382 KeyBuffer ce_key;
383 if (!generateStorageKey(makeGen(options), &ce_key)) return false;
384 if (!ephemeral) {
385 if (!prepare_dir(get_ce_key_directory_path(user_id), 0700, AID_ROOT, AID_ROOT))
386 return false;
387 // We don't store the CE key on disk here, since here we don't have the
388 // secret needed to do so securely. Instead, we cache it in memory for
389 // now, and we store it later in fscrypt_set_user_key_protection().
390 s_new_ce_keys.insert({user_id, ce_key});
Eric Biggers9544f8c2022-10-07 19:07:23 +0000391 }
Eric Biggersce50a432022-10-19 19:38:50 +0000392 EncryptionPolicy ce_policy;
393 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
394 s_ce_policies[user_id] = ce_policy;
395 LOG(INFO) << "Created CE key for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000396 return true;
397}
398
Paul Crowley77df7f22020-01-23 15:29:30 -0800399static bool lookup_policy(const std::map<userid_t, EncryptionPolicy>& key_map, userid_t user_id,
400 EncryptionPolicy* policy) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000401 auto refi = key_map.find(user_id);
402 if (refi == key_map.end()) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000403 return false;
404 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800405 *policy = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000406 return true;
407}
408
Paul Crowleydf528a72016-03-09 09:31:37 -0800409static bool is_numeric(const char* name) {
410 for (const char* p = name; *p != '\0'; p++) {
411 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000412 }
413 return true;
414}
415
416static bool load_all_de_keys() {
Paul Crowley77df7f22020-01-23 15:29:30 -0800417 EncryptionOptions options;
418 if (!get_data_file_encryption_options(&options)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000419 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800420 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000421 if (!dirp) {
422 PLOG(ERROR) << "Unable to read de key directory";
423 return false;
424 }
425 for (;;) {
426 errno = 0;
427 auto entry = readdir(dirp.get());
428 if (!entry) {
429 if (errno) {
430 PLOG(ERROR) << "Unable to read de key directory";
431 return false;
432 }
433 break;
434 }
Eric Biggers6b840392020-11-02 15:11:06 -0800435 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000436 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
437 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
438 continue;
439 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600440 userid_t user_id = std::stoi(entry->d_name);
Nikita Ioffef0550af2020-02-27 18:21:55 +0000441 auto key_path = de_dir + "/" + entry->d_name;
442 KeyBuffer de_key;
Eric Biggersf74373b2020-11-05 19:58:26 -0800443 if (!retrieveKey(key_path, kEmptyAuthentication, &de_key)) return false;
Nikita Ioffef0550af2020-02-27 18:21:55 +0000444 EncryptionPolicy de_policy;
445 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
446 auto ret = s_de_policies.insert({user_id, de_policy});
447 if (!ret.second && ret.first->second != de_policy) {
448 LOG(ERROR) << "DE policy for user" << user_id << " changed";
449 return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000450 }
Nikita Ioffef0550af2020-02-27 18:21:55 +0000451 LOG(DEBUG) << "Installed de key for user " << user_id;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000452 }
Eric Biggersa701c452018-10-23 13:06:55 -0700453 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000454 // correct policy set on them, and that no rogue ones exist.
455 return true;
456}
457
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000458// Attempt to reinstall CE keys for users that we think are unlocked.
459static bool try_reload_ce_keys() {
460 for (const auto& it : s_ce_policies) {
461 if (!android::vold::reloadKeyFromSessionKeyring(DATA_MNT_POINT, it.second)) {
462 LOG(ERROR) << "Failed to load CE key from session keyring for user " << it.first;
463 return false;
464 }
465 }
466 return true;
467}
468
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700469bool fscrypt_initialize_systemwide_keys() {
470 LOG(INFO) << "fscrypt_initialize_systemwide_keys";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800471
Paul Crowley77df7f22020-01-23 15:29:30 -0800472 EncryptionOptions options;
473 if (!get_data_file_encryption_options(&options)) return false;
474
475 KeyBuffer device_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800476 if (!retrieveOrGenerateKey(device_key_path, device_key_temp, kEmptyAuthentication,
Eric Biggersf74373b2020-11-05 19:58:26 -0800477 makeGen(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.
482 if (!install_storage_key(DATA_MNT_POINT, options, device_key, &s_device_policy)) return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700483
Paul Crowley5e53ff62019-10-24 14:55:17 -0700484 std::string options_string;
Eric Biggers9ea53442022-05-11 05:33:25 +0000485 if (!OptionsToString(s_device_policy.options, &options_string)) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700486 LOG(ERROR) << "Unable to serialize options";
487 return false;
488 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800489 std::string options_filename = std::string(DATA_MNT_POINT) + fscrypt_key_mode;
Eric Biggers83a73d72019-09-30 13:06:47 -0700490 if (!android::vold::writeStringToFile(options_string, options_filename)) return false;
Paul Lawrence6e410592016-05-24 14:20:38 -0700491
Paul Crowley77df7f22020-01-23 15:29:30 -0800492 std::string ref_filename = std::string(DATA_MNT_POINT) + fscrypt_key_ref;
Eric Biggers9ea53442022-05-11 05:33:25 +0000493 if (!android::vold::writeStringToFile(s_device_policy.key_raw_ref, ref_filename)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700494 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800495
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700496 KeyBuffer per_boot_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800497 if (!generateStorageKey(makeGen(options), &per_boot_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800498 EncryptionPolicy per_boot_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800499 if (!install_storage_key(DATA_MNT_POINT, options, per_boot_key, &per_boot_policy)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700500 std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref;
Paul Crowley77df7f22020-01-23 15:29:30 -0800501 if (!android::vold::writeStringToFile(per_boot_policy.key_raw_ref, per_boot_ref_filename))
502 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700503 LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename;
504
Paul Crowley76107cb2016-02-09 10:04:39 +0000505 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800506}
507
Eric Biggers9ea53442022-05-11 05:33:25 +0000508static bool prepare_special_dirs() {
Eric Biggersca9a97e2022-05-12 19:17:15 +0000509 // Ensure that /data/data and its "alias" /data/user/0 exist, and create the
510 // bind mount of /data/data onto /data/user/0. This *should* happen in
511 // fscrypt_prepare_user_storage(). However, it actually must be done early,
512 // before the rest of user 0's CE storage is prepared. This is because
513 // zygote may need to set up app data isolation before then, which requires
514 // mounting a tmpfs over /data/data to ensure it remains hidden. This issue
515 // arises due to /data/data being in the top-level directory.
516
Eric Biggers9ea53442022-05-11 05:33:25 +0000517 // /data/user/0 used to be a symlink to /data/data, so we must first delete
518 // the old symlink if present.
519 if (android::vold::IsSymlink(data_user_0_dir) && android::vold::Unlink(data_user_0_dir) != 0)
520 return false;
Eric Biggersca9a97e2022-05-12 19:17:15 +0000521 // On first boot, we'll be creating /data/data for the first time, and user
522 // 0's CE key will be installed already since it was just created. Take the
523 // opportunity to also set the encryption policy of /data/data right away.
524 EncryptionPolicy ce_policy;
525 if (lookup_policy(s_ce_policies, 0, &ce_policy)) {
Eric Biggers9544f8c2022-10-07 19:07:23 +0000526 if (!prepare_dir_with_policy(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy)) {
527 // Preparing /data/data failed, yet we had just generated a new CE
528 // key because one wasn't stored. Before erroring out, try deleting
529 // the directory and retrying, as it's possible that the directory
530 // exists with different CE policy from an interrupted first boot.
531 if (rmdir(data_data_dir.c_str()) != 0) {
532 PLOG(ERROR) << "rmdir " << data_data_dir << " failed";
533 }
534 if (!prepare_dir_with_policy(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy))
535 return false;
536 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000537 } else {
538 if (!prepare_dir(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
539 // EnsurePolicy() will have to happen later, in fscrypt_prepare_user_storage().
540 }
Eric Biggers9ea53442022-05-11 05:33:25 +0000541 if (!prepare_dir(data_user_0_dir, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
542 if (android::vold::BindMount(data_data_dir, data_user_0_dir) != 0) return false;
543
544 // If /data/media/obb doesn't exist, create it and encrypt it with the
545 // device policy. Normally, device-policy-encrypted directories are created
546 // and encrypted by init; /data/media/obb is special because it is located
547 // in /data/media. Since /data/media also contains per-user encrypted
548 // directories, by design only vold can write to it. As a side effect of
549 // that, vold must create /data/media/obb.
550 //
551 // We must tolerate /data/media/obb being unencrypted if it already exists
552 // on-disk, since it used to be unencrypted (b/64566063).
Eric Biggersca9a97e2022-05-12 19:17:15 +0000553 if (android::vold::pathExists(media_obb_dir)) {
554 if (!prepare_dir(media_obb_dir, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
555 } else {
556 if (!prepare_dir_with_policy(media_obb_dir, 0770, AID_MEDIA_RW, AID_MEDIA_RW,
557 s_device_policy))
558 return false;
559 }
Eric Biggers9ea53442022-05-11 05:33:25 +0000560 return true;
561}
562
Eric Biggersfb486662022-03-22 00:33:52 +0000563bool fscrypt_init_user0_done;
564
Eric Biggersa701c452018-10-23 13:06:55 -0700565bool fscrypt_init_user0() {
566 LOG(DEBUG) << "fscrypt_init_user0";
Eric Biggers9ea53442022-05-11 05:33:25 +0000567
Eric Biggersa6957c02022-06-15 18:52:18 +0000568 if (IsFbeEnabled()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000569 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
570 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
571 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Eric Biggersce50a432022-10-19 19:38:50 +0000572
573 // Create user 0's DE and CE keys if they don't already exist. Check
574 // each key independently, since if the first boot was interrupted it is
575 // possible that the DE key exists but the CE key does not.
576 if (!de_key_exists(0) && !create_de_key(0, false)) return false;
577 if (!ce_key_exists(0) && !create_ce_key(0, false)) return false;
578
Jeff Sharkey47695b22016-02-01 17:02:29 -0700579 // TODO: switch to loading only DE_0 here once framework makes
580 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000581 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000582 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000583
584 // Now that user 0's CE key has been created, we can prepare /data/data.
585 if (!prepare_special_dirs()) return false;
586
587 // With the exception of what is done by prepare_special_dirs() above, we
588 // only prepare DE storage here, since user 0's CE key won't be installed
Eric Biggers9ea53442022-05-11 05:33:25 +0000589 // yet unless it was just created. The framework will prepare the user's CE
590 // storage later, once their CE key is installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700591 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700592 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000593 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700594 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700595
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000596 // In some scenarios (e.g. userspace reboot) we might unmount userdata
597 // without doing a hard reboot. If CE keys were stored in fs keyring then
598 // they will be lost after unmount. Attempt to re-install them.
Eric Biggersa6957c02022-06-15 18:52:18 +0000599 if (IsFbeEnabled() && android::vold::isFsKeyringSupported()) {
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000600 if (!try_reload_ce_keys()) return false;
601 }
602
Eric Biggersfb486662022-03-22 00:33:52 +0000603 fscrypt_init_user0_done = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000604 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000605}
606
Eric Biggersa701c452018-10-23 13:06:55 -0700607bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
608 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
Eric Biggersa6957c02022-06-15 18:52:18 +0000609 if (!IsFbeEnabled()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000610 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000611 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000612 // FIXME test for existence of key that is not loaded yet
Paul Crowley77df7f22020-01-23 15:29:30 -0800613 if (s_ce_policies.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700614 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800615 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000616 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000617 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800618 }
Eric Biggersce50a432022-10-19 19:38:50 +0000619 if (!create_de_key(user_id, ephemeral)) return false;
620 if (!create_ce_key(user_id, ephemeral)) return false;
621 if (ephemeral) s_ephemeral_users.insert(user_id);
Paul Crowley76107cb2016-02-09 10:04:39 +0000622 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800623}
624
Eric Biggersce368682019-04-03 15:44:06 -0700625// "Lock" all encrypted directories whose key has been removed. This is needed
Eric Biggersf3dc4202019-09-30 13:05:58 -0700626// in the case where the keys are being put in the session keyring (rather in
627// the newer filesystem-level keyrings), because removing a key from the session
628// keyring doesn't affect inodes in the kernel's inode cache whose per-file key
629// was already set up. So to remove the per-file keys and make the files
630// "appear encrypted", these inodes must be evicted.
Eric Biggersce368682019-04-03 15:44:06 -0700631//
632// To do this, sync() to clean all dirty inodes, then drop all reclaimable slab
633// objects systemwide. This is overkill, but it's the best available method
634// currently. Don't use drop_caches mode "3" because that also evicts pagecache
635// for in-use files; all files relevant here are already closed and sync'ed.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700636static void drop_caches_if_needed() {
637 if (android::vold::isFsKeyringSupported()) {
638 return;
639 }
Pavel Grafovb350ed02017-07-27 17:34:57 +0100640 sync();
Eric Biggersce368682019-04-03 15:44:06 -0700641 if (!writeStringToFile("2", "/proc/sys/vm/drop_caches")) {
Pavel Grafovb350ed02017-07-27 17:34:57 +0100642 PLOG(ERROR) << "Failed to drop caches during key eviction";
643 }
644}
645
Andrew Scull7ec25c72016-10-31 10:28:25 +0000646static bool evict_ce_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000647 bool success = true;
Paul Crowley77df7f22020-01-23 15:29:30 -0800648 EncryptionPolicy policy;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000649 // If we haven't loaded the CE key, no need to evict it.
Paul Crowley77df7f22020-01-23 15:29:30 -0800650 if (lookup_policy(s_ce_policies, user_id, &policy)) {
651 success &= android::vold::evictKey(DATA_MNT_POINT, policy);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700652 drop_caches_if_needed();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000653 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800654 s_ce_policies.erase(user_id);
Eric Biggers8c1659e2022-09-06 21:29:14 +0000655 s_new_ce_keys.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000656 return success;
657}
658
Eric Biggersa701c452018-10-23 13:06:55 -0700659bool fscrypt_destroy_user_key(userid_t user_id) {
660 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
Eric Biggersa6957c02022-06-15 18:52:18 +0000661 if (!IsFbeEnabled()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000662 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000663 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000664 bool success = true;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000665 success &= evict_ce_key(user_id);
Paul Crowley77df7f22020-01-23 15:29:30 -0800666 EncryptionPolicy de_policy;
667 success &= lookup_policy(s_de_policies, user_id, &de_policy) &&
668 android::vold::evictKey(DATA_MNT_POINT, de_policy);
669 s_de_policies.erase(user_id);
Eric Biggers8c1659e2022-09-06 21:29:14 +0000670 if (!s_ephemeral_users.erase(user_id)) {
Eric Biggersd863b2c2021-05-27 17:29:10 -0700671 auto ce_path = get_ce_key_directory_path(user_id);
Eric Biggers8c1659e2022-09-06 21:29:14 +0000672 if (!s_new_ce_keys.erase(user_id)) {
673 for (auto const path : get_ce_key_paths(ce_path)) {
674 success &= android::vold::destroyKey(path);
675 }
Paul Crowleya3630362016-05-17 14:17:56 -0700676 }
Eric Biggersd863b2c2021-05-27 17:29:10 -0700677 success &= destroy_dir(ce_path);
678
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700679 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700680 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700681 success &= android::vold::destroyKey(de_key_path);
682 } else {
683 LOG(INFO) << "Not present so not erasing: " << de_key_path;
684 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100685 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000686 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100687}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800688
Paul Crowley3b71fc52017-10-09 10:55:21 -0700689static bool parse_hex(const std::string& hex, std::string* result) {
690 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800691 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000692 return true;
693 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800694 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800695 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000696 return false;
697 }
698 return true;
699}
700
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700701static std::optional<android::vold::KeyAuthentication> authentication_from_hex(
Satya Tangiralae1361712021-03-15 15:33:08 -0700702 const std::string& secret_hex) {
703 std::string secret;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700704 if (!parse_hex(secret_hex, &secret)) return std::optional<android::vold::KeyAuthentication>();
705 if (secret.empty()) {
706 return kEmptyAuthentication;
707 } else {
Satya Tangiralae1361712021-03-15 15:33:08 -0700708 return android::vold::KeyAuthentication(secret);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700709 }
710}
711
Paul Crowley3aa914d2017-10-09 16:35:51 -0700712static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
713 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
714}
715
Paul Crowley26a53882017-10-26 11:16:39 -0700716static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
717 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
718}
719
Paul Crowley3aa914d2017-10-09 16:35:51 -0700720static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
Paul Crowley5e53ff62019-10-24 14:55:17 -0700721 EncryptionPolicy* policy) {
Paul Crowley26a53882017-10-26 11:16:39 -0700722 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
723 std::string secdiscardable_hash;
724 if (android::vold::pathExists(secdiscardable_path)) {
725 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
726 return false;
727 } else {
Eric Biggersfec0c0e2021-02-16 15:59:17 -0800728 if (!android::vold::MkdirsSync(secdiscardable_path, 0700)) return false;
Paul Crowley26a53882017-10-26 11:16:39 -0700729 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
730 return false;
731 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700732 auto key_path = volkey_path(misc_path, volume_uuid);
Eric Biggersfec0c0e2021-02-16 15:59:17 -0800733 if (!android::vold::MkdirsSync(key_path, 0700)) return false;
Satya Tangiralae1361712021-03-15 15:33:08 -0700734 android::vold::KeyAuthentication auth(secdiscardable_hash);
Eric Biggers83a73d72019-09-30 13:06:47 -0700735
Paul Crowley77df7f22020-01-23 15:29:30 -0800736 EncryptionOptions options;
737 if (!get_volume_file_encryption_options(&options)) return false;
738 KeyBuffer key;
Eric Biggersf74373b2020-11-05 19:58:26 -0800739 if (!retrieveOrGenerateKey(key_path, key_path + "_tmp", auth, makeGen(options), &key))
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800740 return false;
741 if (!install_storage_key(BuildDataPath(volume_uuid), options, key, policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800742 return true;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700743}
744
745static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700746 auto path = volkey_path(misc_path, volume_uuid);
747 if (!android::vold::pathExists(path)) return true;
748 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700749}
750
Eric Biggersce50a432022-10-19 19:38:50 +0000751// (Re-)encrypts the user's CE key with the given secret. This function handles
752// storing the CE key for a new user for the first time. It also handles
753// re-encrypting the CE key upon upgrade from an Android version where the CE
754// key was stored with kEmptyAuthentication when the user didn't have an LSKF.
755// See the comments below for the different cases handled.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000756bool fscrypt_set_user_key_protection(userid_t user_id, const std::string& secret_hex) {
757 LOG(DEBUG) << "fscrypt_set_user_key_protection " << user_id;
758 if (!IsFbeEnabled()) return true;
759 auto auth = authentication_from_hex(secret_hex);
760 if (!auth) return false;
761 if (auth->secret.empty()) {
762 LOG(ERROR) << "fscrypt_set_user_key_protection: secret must be nonempty";
763 return false;
764 }
Eric Biggersce50a432022-10-19 19:38:50 +0000765 // We shouldn't store any keys for ephemeral users.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000766 if (s_ephemeral_users.count(user_id) != 0) {
767 LOG(DEBUG) << "Not storing key because user is ephemeral";
768 return true;
769 }
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700770 KeyBuffer ce_key;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000771 auto it = s_new_ce_keys.find(user_id);
772 if (it != s_new_ce_keys.end()) {
Eric Biggersce50a432022-10-19 19:38:50 +0000773 // If the key exists in s_new_ce_keys, then the key is a
774 // not-yet-committed key for a new user, and we are committing it here.
775 // This happens when the user's synthetic password is created.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000776 ce_key = it->second;
Eric Biggersce50a432022-10-19 19:38:50 +0000777 } else if (ce_key_exists(user_id)) {
778 // If the key doesn't exist in s_new_ce_keys but does exist on-disk,
779 // then we are setting the protection on an existing key. This happens
780 // at upgrade time, when CE keys that were previously protected by
Eric Biggers8c1659e2022-09-06 21:29:14 +0000781 // kEmptyAuthentication are encrypted by the user's synthetic password.
Eric Biggersce50a432022-10-19 19:38:50 +0000782 LOG(DEBUG) << "CE key already exists on-disk; re-protecting it with the given secret";
Eric Biggers8c1659e2022-09-06 21:29:14 +0000783 if (!read_and_fixate_user_ce_key(user_id, kEmptyAuthentication, &ce_key)) {
Eric Biggersce50a432022-10-19 19:38:50 +0000784 LOG(ERROR) << "Failed to retrieve CE key for user " << user_id << " using empty auth";
Eric Biggers8c1659e2022-09-06 21:29:14 +0000785 // Before failing, also check whether the key is already protected
786 // with the given secret. This isn't expected, but in theory it
787 // could happen if an upgrade is requested for a user more than once
788 // due to a power-off or other interruption.
789 if (read_and_fixate_user_ce_key(user_id, *auth, &ce_key)) {
Eric Biggersce50a432022-10-19 19:38:50 +0000790 LOG(WARNING) << "CE key is already protected by given secret";
Eric Biggers8c1659e2022-09-06 21:29:14 +0000791 return true;
792 }
Eric Biggersce50a432022-10-19 19:38:50 +0000793 // The key isn't protected by either kEmptyAuthentication or by
794 // |auth|. This should never happen, and there's nothing we can do
795 // besides return an error.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000796 return false;
797 }
Eric Biggersce50a432022-10-19 19:38:50 +0000798 } else {
799 // If the key doesn't exist in memory or on-disk, then we need to
800 // generate it here, then commit it to disk. This is needed after the
801 // unusual case where a non-system user was created during early boot,
802 // and then the device was force-rebooted before the boot completed. In
803 // that case, the Android user record was committed but the CE key was
804 // not. So the CE key was lost, and we need to regenerate it. This
805 // should be fine, since the key should not have been used yet.
806 LOG(WARNING) << "CE key not found! Regenerating it";
807 if (!create_ce_key(user_id, false)) return false;
808 ce_key = s_new_ce_keys.find(user_id)->second;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700809 }
Eric Biggersce50a432022-10-19 19:38:50 +0000810
811 auto const directory_path = get_ce_key_directory_path(user_id);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700812 auto const paths = get_ce_key_paths(directory_path);
813 std::string ce_key_path;
814 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000815 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, *auth, ce_key)) return false;
816 if (!fixate_user_ce_key(directory_path, ce_key_path, paths)) return false;
817 if (s_new_ce_keys.erase(user_id)) {
818 LOG(INFO) << "Stored CE key for new user " << user_id;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000819 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000820 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000821}
822
Eric Biggers18ba1522021-04-06 12:02:56 -0700823std::vector<int> fscrypt_get_unlocked_users() {
824 std::vector<int> user_ids;
825 for (const auto& it : s_ce_policies) {
826 user_ids.push_back(it.first);
827 }
828 return user_ids;
829}
830
Jeff Sharkey47695b22016-02-01 17:02:29 -0700831// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Satya Tangiralae1361712021-03-15 15:33:08 -0700832bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& secret_hex) {
833 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial;
Eric Biggersa6957c02022-06-15 18:52:18 +0000834 if (IsFbeEnabled()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800835 if (s_ce_policies.count(user_id) != 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000836 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000837 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000838 }
Satya Tangiralae1361712021-03-15 15:33:08 -0700839 auto auth = authentication_from_hex(secret_hex);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700840 if (!auth) return false;
841 if (!read_and_install_user_ce_key(user_id, *auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000842 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000843 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800844 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800845 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000846 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800847}
848
Jeff Sharkey47695b22016-02-01 17:02:29 -0700849// TODO: rename to 'evict' for consistency
Eric Biggersa701c452018-10-23 13:06:55 -0700850bool fscrypt_lock_user_key(userid_t user_id) {
851 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
Eric Biggersa6957c02022-06-15 18:52:18 +0000852 if (IsFbeEnabled()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000853 return evict_ce_key(user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800854 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000855 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800856}
857
Paul Crowley82b41ff2017-10-20 08:17:54 -0700858static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
859 userid_t user_id, int flags) {
860 if (0 != android::vold::ForkExecvp(
861 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
862 std::to_string(user_id), std::to_string(flags)})) {
863 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700864 return false;
865 }
866 return true;
867}
868
Eric Biggersa701c452018-10-23 13:06:55 -0700869bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700870 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700871 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800872 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700873
Eric Biggersc66c2e32022-05-04 04:39:50 +0000874 // Internal storage must be prepared before adoptable storage, since the
875 // user's volume keys are stored in their internal storage.
876 if (!volume_uuid.empty()) {
877 if ((flags & android::os::IVold::STORAGE_FLAG_DE) &&
878 !android::vold::pathExists(android::vold::BuildDataMiscDePath("", user_id))) {
879 LOG(ERROR) << "Cannot prepare DE storage for user " << user_id << " on volume "
880 << volume_uuid << " before internal storage";
881 return false;
882 }
883 if ((flags & android::os::IVold::STORAGE_FLAG_CE) &&
884 !android::vold::pathExists(android::vold::BuildDataMiscCePath("", user_id))) {
885 LOG(ERROR) << "Cannot prepare CE storage for user " << user_id << " on volume "
886 << volume_uuid << " before internal storage";
887 return false;
888 }
889 }
890
Paul Crowley82b41ff2017-10-20 08:17:54 -0700891 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600892 // DE_sys key
893 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
894 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
895 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600896
897 // DE_n key
Eric Biggersca9a97e2022-05-12 19:17:15 +0000898 EncryptionPolicy de_policy;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700899 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000900 auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800901 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700902 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
903
Eric Biggersa6957c02022-06-15 18:52:18 +0000904 if (IsFbeEnabled()) {
Eric Biggersca9a97e2022-05-12 19:17:15 +0000905 if (volume_uuid.empty()) {
906 if (!lookup_policy(s_de_policies, user_id, &de_policy)) {
907 LOG(ERROR) << "Cannot find DE policy for user " << user_id;
908 return false;
909 }
910 } else {
911 auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id);
912 if (!read_or_create_volkey(misc_de_empty_volume_path, volume_uuid, &de_policy)) {
913 return false;
914 }
915 }
916 }
917
Paul Crowley3b71fc52017-10-09 10:55:21 -0700918 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700919 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600920#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700921 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700922 multiuser_get_uid(user_id, AID_EVERYBODY)))
923 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600924#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700925 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600926
Eric Biggersca9a97e2022-05-12 19:17:15 +0000927 if (!prepare_dir_with_policy(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM, de_policy))
928 return false;
929 if (!prepare_dir_with_policy(vendor_de_path, 0771, AID_ROOT, AID_ROOT, de_policy))
930 return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700931 }
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000932
Eric Biggersca9a97e2022-05-12 19:17:15 +0000933 if (!prepare_dir_with_policy(misc_de_path, 01771, AID_SYSTEM, AID_MISC, de_policy))
934 return false;
935 if (!prepare_dir_with_policy(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM, de_policy))
936 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000937 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800938
Paul Crowley82b41ff2017-10-20 08:17:54 -0700939 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600940 // CE_n key
Eric Biggersca9a97e2022-05-12 19:17:15 +0000941 EncryptionPolicy ce_policy;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700942 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000943 auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800944 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600945 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
946 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800947
Eric Biggersa6957c02022-06-15 18:52:18 +0000948 if (IsFbeEnabled()) {
Eric Biggersca9a97e2022-05-12 19:17:15 +0000949 if (volume_uuid.empty()) {
950 if (!lookup_policy(s_ce_policies, user_id, &ce_policy)) {
951 LOG(ERROR) << "Cannot find CE policy for user " << user_id;
952 return false;
953 }
954 } else {
955 auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id);
956 if (!read_or_create_volkey(misc_ce_empty_volume_path, volume_uuid, &ce_policy)) {
957 return false;
958 }
959 }
Paul Crowley6b756ce2017-10-05 14:07:09 -0700960 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000961
962 if (volume_uuid.empty()) {
963 if (!prepare_dir_with_policy(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM, ce_policy))
964 return false;
965 if (!prepare_dir_with_policy(vendor_ce_path, 0771, AID_ROOT, AID_ROOT, ce_policy))
966 return false;
967 }
968 if (!prepare_dir_with_policy(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW, ce_policy))
969 return false;
Martijn Coenen5adf92a2021-02-01 07:57:02 +0000970 // On devices without sdcardfs (kernel 5.4+), the path permissions aren't fixed
971 // up automatically; therefore, use a default ACL, to ensure apps with MEDIA_RW
972 // can keep reading external storage; in particular, this allows app cloning
973 // scenarios to work correctly on such devices.
974 int ret = SetDefaultAcl(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW, {AID_MEDIA_RW});
975 if (ret != android::OK) {
976 return false;
977 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000978 if (!prepare_dir_with_policy(misc_ce_path, 01771, AID_SYSTEM, AID_MISC, ce_policy))
979 return false;
980 if (!prepare_dir_with_policy(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy))
981 return false;
Paul Crowley1a965262017-10-13 13:49:50 -0700982
983 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700984 // Now that credentials have been installed, we can run restorecon
985 // over these paths
986 // NOTE: these paths need to be kept in sync with libselinux
987 android::vold::RestoreconRecursive(system_ce_path);
Nick Kralevich6a3ef482019-05-14 09:30:29 -0700988 android::vold::RestoreconRecursive(vendor_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -0700989 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700990 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800991 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700992 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800993
Paul Crowley76107cb2016-02-09 10:04:39 +0000994 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800995}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600996
Eric Biggersa701c452018-10-23 13:06:55 -0700997bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
998 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600999 << ", user " << user_id << ", flags " << flags;
1000 bool res = true;
1001
Paul Crowley82b41ff2017-10-20 08:17:54 -07001002 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
1003
1004 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -07001005 // CE_n key
1006 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001007 auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001008 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -07001009 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
1010 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
1011
1012 res &= destroy_dir(media_ce_path);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001013 res &= destroy_dir(misc_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -07001014 res &= destroy_dir(user_ce_path);
1015 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -07001016 res &= destroy_dir(system_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001017 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001018 } else {
Eric Biggersa6957c02022-06-15 18:52:18 +00001019 if (IsFbeEnabled()) {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001020 auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id);
1021 res &= destroy_volkey(misc_ce_empty_volume_path, volume_uuid);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001022 }
Paul Crowley8e550662017-10-16 17:01:44 -07001023 }
1024 }
1025
Paul Crowley82b41ff2017-10-20 08:17:54 -07001026 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001027 // DE_sys key
1028 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
1029 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
1030 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001031
1032 // DE_n key
1033 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001034 auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001035 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001036 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
1037
Paul Crowley8e550662017-10-16 17:01:44 -07001038 res &= destroy_dir(user_de_path);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001039 res &= destroy_dir(misc_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -07001040 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001041 res &= destroy_dir(system_legacy_path);
1042#if MANAGE_MISC_DIRS
1043 res &= destroy_dir(misc_legacy_path);
1044#endif
1045 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001046 res &= destroy_dir(system_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001047 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001048 } else {
Eric Biggersa6957c02022-06-15 18:52:18 +00001049 if (IsFbeEnabled()) {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001050 auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id);
1051 res &= destroy_volkey(misc_de_empty_volume_path, volume_uuid);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001052 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001053 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001054 }
1055
1056 return res;
1057}
Rubin Xu2436e272017-04-27 20:43:10 +01001058
Paul Crowleyc6433a22017-10-24 14:54:43 -07001059static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
1060 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
1061 if (!dirp) {
1062 PLOG(ERROR) << "Unable to open directory: " + directory_path;
1063 return false;
1064 }
1065 bool res = true;
1066 for (;;) {
1067 errno = 0;
1068 auto const entry = readdir(dirp.get());
1069 if (!entry) {
1070 if (errno) {
1071 PLOG(ERROR) << "Unable to read directory: " + directory_path;
1072 return false;
1073 }
1074 break;
1075 }
Eric Biggers6b840392020-11-02 15:11:06 -08001076 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleyc6433a22017-10-24 14:54:43 -07001077 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
1078 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
1079 continue;
1080 }
1081 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
1082 }
1083 return res;
1084}
1085
Eric Biggersa701c452018-10-23 13:06:55 -07001086bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -07001087 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -07001088 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -07001089 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
1090 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -07001091 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
1092 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
1093 return res;
1094}