blob: ecb3c8168df46c77e85cf87cd97a7bf3771f7d4c [file] [log] [blame]
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Eric Biggersa701c452018-10-23 13:06:55 -070017#include "FsCrypt.h"
Paul Lawrence731a7a22015-04-28 22:14:15 +000018
Eric Biggersb615f3b2022-11-09 05:48:45 +000019#include "Checkpoint.h"
Paul Crowley1ef25582016-01-21 20:26:12 +000020#include "KeyStorage.h"
Paul Crowleyf71ace32016-06-02 11:01:19 -070021#include "KeyUtil.h"
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080022#include "Utils.h"
Paul Crowleya7ca40b2017-10-06 14:29:33 -070023#include "VoldUtil.h"
24
Paul Crowleya3630362016-05-17 14:17:56 -070025#include <algorithm>
Paul Lawrence731a7a22015-04-28 22:14:15 +000026#include <map>
Barani Muthukumaranb1927c22019-10-31 22:59:34 -070027#include <optional>
Paul Crowleyb1f3d242016-01-28 10:09:46 +000028#include <set>
Paul Lawrencefd7db732015-04-10 07:48:51 -070029#include <sstream>
Paul Crowleydf528a72016-03-09 09:31:37 -080030#include <string>
Paul Crowleyf71ace32016-06-02 11:01:19 -070031#include <vector>
Paul Lawrence731a7a22015-04-28 22:14:15 +000032
Paul Crowleydf528a72016-03-09 09:31:37 -080033#include <dirent.h>
34#include <errno.h>
35#include <fcntl.h>
Paul Crowleya3630362016-05-17 14:17:56 -070036#include <limits.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080037#include <sys/mount.h>
38#include <sys/stat.h>
39#include <sys/types.h>
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 Sharkeybe70c9a2016-04-14 20:45:16 -060047#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070048
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080049#include <cutils/fs.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070050#include <cutils/properties.h>
51
Eric Biggersa701c452018-10-23 13:06:55 -070052#include <fscrypt/fscrypt.h>
Elliott Hughesc3bda182017-05-09 17:01:04 -070053#include <keyutils.h>
Eric Biggerseb566d02020-07-06 13:46:38 -070054#include <libdm/dm.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080055
Elliott Hughes7e128fb2015-12-04 15:50:53 -080056#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080057#include <android-base/logging.h>
Paul Crowley3aa914d2017-10-09 16:35:51 -070058#include <android-base/properties.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080059#include <android-base/stringprintf.h>
Eric Biggers83a73d72019-09-30 13:06:47 -070060#include <android-base/strings.h>
Jieb6698d52018-11-12 15:26:02 +080061#include <android-base/unique_fd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000062
Eric Biggerseb566d02020-07-06 13:46:38 -070063using android::base::Basename;
64using android::base::Realpath;
65using android::base::StartsWith;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080066using android::base::StringPrintf;
Tom Cherry4c5bde22019-01-29 14:34:01 -080067using android::fs_mgr::GetEntryForMountPoint;
Paul Crowley77df7f22020-01-23 15:29:30 -080068using android::vold::BuildDataPath;
Eric Biggers6b840392020-11-02 15:11:06 -080069using android::vold::IsDotOrDotDot;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +010070using android::vold::IsFilesystemSupported;
Paul Crowley05720802016-02-08 15:55:41 +000071using android::vold::kEmptyAuthentication;
Pavel Grafove2e2d302017-08-01 17:15:53 +010072using android::vold::KeyBuffer;
Paul Crowley249c2fb2020-02-07 12:51:56 -080073using android::vold::KeyGeneration;
Paul Crowley4eac2642020-02-12 11:04:05 -080074using android::vold::retrieveKey;
75using android::vold::retrieveOrGenerateKey;
Martijn Coenen5adf92a2021-02-01 07:57:02 +000076using android::vold::SetDefaultAcl;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +010077using android::vold::SetQuotaInherit;
78using android::vold::SetQuotaProjectId;
Tommy Chiua98464f2019-03-26 14:14:19 +080079using android::vold::writeStringToFile;
Paul Crowley5e53ff62019-10-24 14:55:17 -070080using namespace android::fscrypt;
Eric Biggerseb566d02020-07-06 13:46:38 -070081using namespace android::dm;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080082
Paul Lawrence731a7a22015-04-28 22:14:15 +000083namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000084
Eric Biggersa701c452018-10-23 13:06:55 -070085const std::string device_key_dir = std::string() + DATA_MNT_POINT + fscrypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080086const std::string device_key_path = device_key_dir + "/key";
87const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080088
Paul Crowleydf528a72016-03-09 09:31:37 -080089const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
90const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley82b41ff2017-10-20 08:17:54 -070091const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs";
Paul Crowley285956f2016-01-20 13:12:38 +000092
Paul Crowley26a53882017-10-26 11:16:39 -070093const std::string systemwide_volume_key_dir =
94 std::string() + DATA_MNT_POINT + "/misc/vold/volume_keys";
95
Eric Biggers9ea53442022-05-11 05:33:25 +000096const std::string data_data_dir = std::string() + DATA_MNT_POINT + "/data";
97const std::string data_user_0_dir = std::string() + DATA_MNT_POINT + "/user/0";
98const std::string media_obb_dir = std::string() + DATA_MNT_POINT + "/media/obb";
99
Eric Biggers4cf16912022-10-26 19:05:10 +0000100// The file encryption options to use on the /data filesystem
101EncryptionOptions s_data_options;
102
Eric Biggersce50a432022-10-19 19:38:50 +0000103// Some users are ephemeral; don't try to store or wipe their keys on disk.
Paul Crowleydf528a72016-03-09 09:31:37 -0800104std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800105
Eric Biggers8c1659e2022-09-06 21:29:14 +0000106// New CE keys that haven't been committed to disk yet
107std::map<userid_t, KeyBuffer> s_new_ce_keys;
108
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000109// CE key fixation operations that have been deferred to checkpoint commit
110std::map<std::string, std::string> s_deferred_fixations;
111
Eric Biggers9ea53442022-05-11 05:33:25 +0000112// The system DE encryption policy
113EncryptionPolicy s_device_policy;
114
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000115// Struct that holds the EncryptionPolicy for each CE or DE key that is currently installed
116// (added to the kernel) for a particular user
117struct UserPolicies {
118 // Internal storage policy. Exists whenever a user's UserPolicies exists at all, and used
119 // instead of a map entry keyed by an empty UUID to make this invariant explicit.
120 EncryptionPolicy internal;
121 // Adoptable storage policies, indexed by (nonempty) volume UUID
122 std::map<std::string, EncryptionPolicy> adoptable;
123};
Paul Lawrence731a7a22015-04-28 22:14:15 +0000124
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000125// The currently installed CE and DE keys for each user. Protected by VolumeManager::mCryptLock.
126std::map<userid_t, UserPolicies> s_ce_policies;
127std::map<userid_t, UserPolicies> s_de_policies;
Eric Biggersb615f3b2022-11-09 05:48:45 +0000128
Paul Crowley14c8c072018-09-18 13:30:21 -0700129} // namespace
Paul Lawrence731a7a22015-04-28 22:14:15 +0000130
Paul Crowley249c2fb2020-02-07 12:51:56 -0800131// Returns KeyGeneration suitable for key as described in EncryptionOptions
132static KeyGeneration makeGen(const EncryptionOptions& options) {
Eric Biggers4cf16912022-10-26 19:05:10 +0000133 if (options.version == 0) {
134 LOG(ERROR) << "EncryptionOptions not initialized";
135 return android::vold::neverGen();
136 }
Paul Crowley249c2fb2020-02-07 12:51:56 -0800137 return KeyGeneration{FSCRYPT_MAX_KEY_SIZE, true, options.use_hw_wrapped_key};
138}
139
Paul Crowley3b71fc52017-10-09 10:55:21 -0700140static const char* escape_empty(const std::string& value) {
141 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000142}
143
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000144static std::string get_de_key_path(userid_t user_id) {
145 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
146}
147
Paul Crowleya3630362016-05-17 14:17:56 -0700148static std::string get_ce_key_directory_path(userid_t user_id) {
149 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
150}
151
152// Returns the keys newest first
153static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
154 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
155 if (!dirp) {
156 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
157 return std::vector<std::string>();
158 }
159 std::vector<std::string> result;
160 for (;;) {
161 errno = 0;
162 auto const entry = readdir(dirp.get());
163 if (!entry) {
164 if (errno) {
165 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
166 return std::vector<std::string>();
167 }
168 break;
169 }
Eric Biggers6b840392020-11-02 15:11:06 -0800170 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleya3630362016-05-17 14:17:56 -0700171 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
172 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
173 continue;
174 }
175 result.emplace_back(directory_path + "/" + entry->d_name);
176 }
177 std::sort(result.begin(), result.end());
178 std::reverse(result.begin(), result.end());
179 return result;
180}
181
182static std::string get_ce_key_current_path(const std::string& directory_path) {
183 return directory_path + "/current";
184}
185
186static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700187 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700188 if (paths.empty()) {
189 *ce_key_path = get_ce_key_current_path(directory_path);
190 return true;
191 }
192 for (unsigned int i = 0; i < UINT_MAX; i++) {
193 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
194 if (paths[0] < candidate) {
195 *ce_key_path = candidate;
196 return true;
197 }
198 }
199 return false;
200}
201
202// Discard all keys but the named one; rename it to canonical name.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000203static bool fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700204 const std::vector<std::string>& paths) {
Eric Biggers11409cb2022-10-26 19:02:43 +0000205 bool need_sync = false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700206 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700207 if (other_path != to_fix) {
208 android::vold::destroyKey(other_path);
Eric Biggers11409cb2022-10-26 19:02:43 +0000209 need_sync = true;
Paul Crowleya3630362016-05-17 14:17:56 -0700210 }
211 }
212 auto const current_path = get_ce_key_current_path(directory_path);
213 if (to_fix != current_path) {
214 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000215 if (!android::vold::RenameKeyDir(to_fix, current_path)) return false;
Eric Biggers11409cb2022-10-26 19:02:43 +0000216 need_sync = true;
Paul Crowleya3630362016-05-17 14:17:56 -0700217 }
Eric Biggers11409cb2022-10-26 19:02:43 +0000218 if (need_sync && !android::vold::FsyncDirectory(directory_path)) return false;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000219 return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700220}
221
222static bool read_and_fixate_user_ce_key(userid_t user_id,
223 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700224 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700225 auto const directory_path = get_ce_key_directory_path(user_id);
226 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700227 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700228 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
Eric Biggersf74373b2020-11-05 19:58:26 -0800229 if (retrieveKey(ce_key_path, auth, ce_key)) {
Paul Crowleya3630362016-05-17 14:17:56 -0700230 LOG(DEBUG) << "Successfully retrieved key";
Eric Biggersb615f3b2022-11-09 05:48:45 +0000231 s_deferred_fixations.erase(directory_path);
Paul Crowleya3630362016-05-17 14:17:56 -0700232 fixate_user_ce_key(directory_path, ce_key_path, paths);
233 return true;
234 }
235 }
236 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
237 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100238}
239
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800240static bool MightBeEmmcStorage(const std::string& blk_device) {
Eric Biggerseb566d02020-07-06 13:46:38 -0700241 // Handle symlinks.
242 std::string real_path;
243 if (!Realpath(blk_device, &real_path)) {
244 real_path = blk_device;
245 }
246
247 // Handle logical volumes.
248 auto& dm = DeviceMapper::Instance();
249 for (;;) {
250 auto parent = dm.GetParentBlockDeviceByPath(real_path);
251 if (!parent.has_value()) break;
252 real_path = *parent;
253 }
254
255 // Now we should have the "real" block device.
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800256 LOG(DEBUG) << "MightBeEmmcStorage(): blk_device = " << blk_device
257 << ", real_path=" << real_path;
258 std::string name = Basename(real_path);
259 return StartsWith(name, "mmcblk") ||
260 // virtio devices may provide inline encryption support that is
261 // backed by eMMC inline encryption on the host, thus inheriting the
262 // DUN size limitation. So virtio devices must be allowed here too.
263 // TODO(b/207390665): check the maximum DUN size directly instead.
264 StartsWith(name, "vd");
Eric Biggerseb566d02020-07-06 13:46:38 -0700265}
266
Eric Biggers4cf16912022-10-26 19:05:10 +0000267// Sets s_data_options to the file encryption options for the /data filesystem.
268static bool init_data_file_encryption_options() {
Eric Biggers83a73d72019-09-30 13:06:47 -0700269 auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT);
270 if (entry == nullptr) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800271 LOG(ERROR) << "No mount point entry for " << DATA_MNT_POINT;
272 return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700273 }
Eric Biggers4cf16912022-10-26 19:05:10 +0000274 if (!ParseOptions(entry->encryption_options, &s_data_options)) {
Paul Crowleya50f6c32019-10-24 23:21:44 -0700275 LOG(ERROR) << "Unable to parse encryption options for " << DATA_MNT_POINT ": "
276 << entry->encryption_options;
Paul Crowley77df7f22020-01-23 15:29:30 -0800277 return false;
Paul Crowleya50f6c32019-10-24 23:21:44 -0700278 }
Eric Biggers4cf16912022-10-26 19:05:10 +0000279 if ((s_data_options.flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) &&
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800280 !MightBeEmmcStorage(entry->blk_device)) {
Eric Biggerseb566d02020-07-06 13:46:38 -0700281 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
282 "this flag from the device's fstab";
283 return false;
284 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800285 return true;
Eric Biggers83a73d72019-09-30 13:06:47 -0700286}
287
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800288static bool install_storage_key(const std::string& mountpoint, const EncryptionOptions& options,
289 const KeyBuffer& key, EncryptionPolicy* policy) {
Eric Biggers4cf16912022-10-26 19:05:10 +0000290 if (options.version == 0) {
291 LOG(ERROR) << "EncryptionOptions not initialized";
292 return false;
293 }
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800294 KeyBuffer ephemeral_wrapped_key;
295 if (options.use_hw_wrapped_key) {
296 if (!exportWrappedStorageKey(key, &ephemeral_wrapped_key)) {
297 LOG(ERROR) << "Failed to get ephemeral wrapped key";
298 return false;
299 }
300 }
301 return installKey(mountpoint, options, options.use_hw_wrapped_key ? ephemeral_wrapped_key : key,
302 policy);
303}
304
Eric Biggers83a73d72019-09-30 13:06:47 -0700305// Retrieve the options to use for encryption policies on adoptable storage.
Paul Crowley5e53ff62019-10-24 14:55:17 -0700306static bool get_volume_file_encryption_options(EncryptionOptions* options) {
Paul Crowleyeb241a12020-02-18 10:10:08 -0800307 // If we give the empty string, libfscrypt will use the default (currently XTS)
308 auto contents_mode = android::base::GetProperty("ro.crypto.volume.contents_mode", "");
309 // HEH as default was always a mistake. Use the libfscrypt default (CTS)
310 // for devices launching on versions above Android 10.
311 auto first_api_level = GetFirstApiLevel();
Paul Crowleyf612b8b2019-10-24 22:52:02 -0700312 auto filenames_mode =
Paul Crowleyeb241a12020-02-18 10:10:08 -0800313 android::base::GetProperty("ro.crypto.volume.filenames_mode",
Eric Biggers72d07132020-08-10 10:55:56 -0700314 first_api_level > __ANDROID_API_Q__ ? "" : "aes-256-heh");
Paul Crowley77df7f22020-01-23 15:29:30 -0800315 auto options_string = android::base::GetProperty("ro.crypto.volume.options",
Paul Crowleyeb241a12020-02-18 10:10:08 -0800316 contents_mode + ":" + filenames_mode);
317 if (!ParseOptionsForApiLevel(first_api_level, options_string, options)) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800318 LOG(ERROR) << "Unable to parse volume encryption options: " << options_string;
319 return false;
320 }
Eric Biggerseb566d02020-07-06 13:46:38 -0700321 if (options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) {
322 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
323 "this flag from ro.crypto.volume.options";
324 return false;
325 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800326 return true;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700327}
328
Eric Biggersca9a97e2022-05-12 19:17:15 +0000329// Prepare a directory without assigning it an encryption policy. The directory
330// will inherit the encryption policy of its parent directory, or will be
331// unencrypted if the parent directory is unencrypted.
Paul Crowleydf528a72016-03-09 09:31:37 -0800332static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000333 LOG(DEBUG) << "Preparing: " << dir;
Eric Biggers39704e72022-05-04 22:17:54 +0000334 if (android::vold::PrepareDir(dir, mode, uid, gid, 0) != 0) {
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000335 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000336 return false;
337 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000338 return true;
339}
340
Eric Biggersca9a97e2022-05-12 19:17:15 +0000341// Prepare a directory and assign it the given encryption policy.
342static bool prepare_dir_with_policy(const std::string& dir, mode_t mode, uid_t uid, gid_t gid,
343 const EncryptionPolicy& policy) {
Eric Biggersc6f004a2023-06-08 16:15:52 +0000344 if (android::vold::pathExists(dir)) {
345 if (!prepare_dir(dir, mode, uid, gid)) return false;
346 if (IsFbeEnabled() && !EnsurePolicy(policy, dir)) return false;
347 } else {
348 // If the directory does not yet exist, then create it under a temporary name, and only move
349 // it to the final name after it is fully prepared with an encryption policy and the desired
350 // file permissions. This prevents the directory from being accessed before it is ready.
351 //
352 // Note: this relies on the SELinux file_contexts assigning the same type to the file path
353 // with the ".new" suffix as to the file path without the ".new" suffix.
354
355 const std::string tmp_dir = dir + ".new";
356 if (android::vold::pathExists(tmp_dir)) {
357 android::vold::DeleteDirContentsAndDir(tmp_dir);
358 }
359 if (!prepare_dir(tmp_dir, mode, uid, gid)) return false;
360 if (IsFbeEnabled() && !EnsurePolicy(policy, tmp_dir)) return false;
361
362 // On some buggy kernels, renaming a directory that is both encrypted and case-insensitive
363 // fails in some specific circumstances. Unfortunately, these circumstances happen here
364 // when processing the "media" directory. This was already fixed by kernel commit
365 // https://git.kernel.org/linus/b5639bb4313b9d45 ('f2fs: don't use casefolded comparison for
366 // "." and ".."'). But to support kernels that lack that fix, we use the below workaround.
367 // It bypasses the bug by making the encryption key of tmp_dir be loaded before the rename.
368 android::vold::pathExists(tmp_dir + "/subdir");
369
370 if (rename(tmp_dir.c_str(), dir.c_str()) != 0) {
371 PLOG(ERROR) << "Failed to rename " << tmp_dir << " to " << dir;
372 return false;
373 }
374 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000375 return true;
376}
377
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600378static bool destroy_dir(const std::string& dir) {
379 LOG(DEBUG) << "Destroying: " << dir;
380 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
381 PLOG(ERROR) << "Failed to destroy " << dir;
382 return false;
383 }
384 return true;
385}
386
Eric Biggersce50a432022-10-19 19:38:50 +0000387// Checks whether the DE key directory exists for the given user.
388static bool de_key_exists(userid_t user_id) {
389 return android::vold::pathExists(get_de_key_path(user_id));
390}
391
392// Checks whether at least one CE key subdirectory exists for the given user.
393static bool ce_key_exists(userid_t user_id) {
394 auto directory_path = get_ce_key_directory_path(user_id);
Eric Biggers9544f8c2022-10-07 19:07:23 +0000395 // The common case is that "$dir/current" exists, so check for that first.
396 if (android::vold::pathExists(get_ce_key_current_path(directory_path))) return true;
397
398 // Else, there could still be another subdirectory of $dir (if a crash
399 // occurred during fixate_user_ce_key()), so check for one.
400 return android::vold::pathExists(directory_path) && !get_ce_key_paths(directory_path).empty();
401}
402
Eric Biggersce50a432022-10-19 19:38:50 +0000403static bool create_de_key(userid_t user_id, bool ephemeral) {
Eric Biggersce50a432022-10-19 19:38:50 +0000404 KeyBuffer de_key;
Eric Biggers4cf16912022-10-26 19:05:10 +0000405 if (!generateStorageKey(makeGen(s_data_options), &de_key)) return false;
Eric Biggersce50a432022-10-19 19:38:50 +0000406 if (!ephemeral && !android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
407 kEmptyAuthentication, de_key))
408 return false;
409 EncryptionPolicy de_policy;
Eric Biggers4cf16912022-10-26 19:05:10 +0000410 if (!install_storage_key(DATA_MNT_POINT, s_data_options, de_key, &de_policy)) return false;
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000411 s_de_policies[user_id].internal = de_policy;
Eric Biggersce50a432022-10-19 19:38:50 +0000412 LOG(INFO) << "Created DE key for user " << user_id;
413 return true;
414}
Eric Biggers9544f8c2022-10-07 19:07:23 +0000415
Eric Biggersce50a432022-10-19 19:38:50 +0000416static bool create_ce_key(userid_t user_id, bool ephemeral) {
Eric Biggersce50a432022-10-19 19:38:50 +0000417 KeyBuffer ce_key;
Eric Biggers4cf16912022-10-26 19:05:10 +0000418 if (!generateStorageKey(makeGen(s_data_options), &ce_key)) return false;
Eric Biggersce50a432022-10-19 19:38:50 +0000419 if (!ephemeral) {
420 if (!prepare_dir(get_ce_key_directory_path(user_id), 0700, AID_ROOT, AID_ROOT))
421 return false;
422 // We don't store the CE key on disk here, since here we don't have the
423 // secret needed to do so securely. Instead, we cache it in memory for
424 // now, and we store it later in fscrypt_set_user_key_protection().
425 s_new_ce_keys.insert({user_id, ce_key});
Eric Biggers9544f8c2022-10-07 19:07:23 +0000426 }
Eric Biggersce50a432022-10-19 19:38:50 +0000427 EncryptionPolicy ce_policy;
Eric Biggers4cf16912022-10-26 19:05:10 +0000428 if (!install_storage_key(DATA_MNT_POINT, s_data_options, ce_key, &ce_policy)) return false;
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000429 s_ce_policies[user_id].internal = ce_policy;
Eric Biggersce50a432022-10-19 19:38:50 +0000430 LOG(INFO) << "Created CE key for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000431 return true;
432}
433
Paul Crowleydf528a72016-03-09 09:31:37 -0800434static bool is_numeric(const char* name) {
435 for (const char* p = name; *p != '\0'; p++) {
436 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000437 }
438 return true;
439}
440
441static bool load_all_de_keys() {
442 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800443 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000444 if (!dirp) {
445 PLOG(ERROR) << "Unable to read de key directory";
446 return false;
447 }
448 for (;;) {
449 errno = 0;
450 auto entry = readdir(dirp.get());
451 if (!entry) {
452 if (errno) {
453 PLOG(ERROR) << "Unable to read de key directory";
454 return false;
455 }
456 break;
457 }
Eric Biggers6b840392020-11-02 15:11:06 -0800458 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000459 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
460 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
461 continue;
462 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600463 userid_t user_id = std::stoi(entry->d_name);
Nikita Ioffef0550af2020-02-27 18:21:55 +0000464 auto key_path = de_dir + "/" + entry->d_name;
465 KeyBuffer de_key;
liulvping69b04852022-10-10 19:16:23 +0800466 if (!retrieveKey(key_path, kEmptyAuthentication, &de_key)) {
467 // This is probably a partially removed user, so ignore
468 if (user_id != 0) continue;
469 return false;
470 }
Nikita Ioffef0550af2020-02-27 18:21:55 +0000471 EncryptionPolicy de_policy;
Eric Biggers4cf16912022-10-26 19:05:10 +0000472 if (!install_storage_key(DATA_MNT_POINT, s_data_options, de_key, &de_policy)) return false;
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000473 const auto& [existing, is_new] = s_de_policies.insert({user_id, {de_policy, {}}});
474 if (!is_new && existing->second.internal != de_policy) {
Nikita Ioffef0550af2020-02-27 18:21:55 +0000475 LOG(ERROR) << "DE policy for user" << user_id << " changed";
476 return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000477 }
Nikita Ioffef0550af2020-02-27 18:21:55 +0000478 LOG(DEBUG) << "Installed de key for user " << user_id;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000479 }
Eric Biggersa701c452018-10-23 13:06:55 -0700480 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000481 // correct policy set on them, and that no rogue ones exist.
482 return true;
483}
484
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000485// Attempt to reinstall CE keys for users that we think are unlocked.
486static bool try_reload_ce_keys() {
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000487 for (const auto& [user_id, user_policies] : s_ce_policies) {
488 if (!android::vold::reloadKeyFromSessionKeyring(DATA_MNT_POINT, user_policies.internal)) {
489 LOG(ERROR) << "Failed to load CE key from session keyring for user " << user_id;
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000490 return false;
491 }
492 }
493 return true;
494}
495
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700496bool fscrypt_initialize_systemwide_keys() {
497 LOG(INFO) << "fscrypt_initialize_systemwide_keys";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800498
Eric Biggers4cf16912022-10-26 19:05:10 +0000499 if (!init_data_file_encryption_options()) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800500
501 KeyBuffer device_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800502 if (!retrieveOrGenerateKey(device_key_path, device_key_temp, kEmptyAuthentication,
Eric Biggers4cf16912022-10-26 19:05:10 +0000503 makeGen(s_data_options), &device_key))
Paul Crowley77df7f22020-01-23 15:29:30 -0800504 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800505
Eric Biggers9ea53442022-05-11 05:33:25 +0000506 // This initializes s_device_policy, which is a global variable so that
507 // fscrypt_init_user0() can access it later.
Eric Biggers4cf16912022-10-26 19:05:10 +0000508 if (!install_storage_key(DATA_MNT_POINT, s_data_options, device_key, &s_device_policy))
509 return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700510
Paul Crowley5e53ff62019-10-24 14:55:17 -0700511 std::string options_string;
Eric Biggers9ea53442022-05-11 05:33:25 +0000512 if (!OptionsToString(s_device_policy.options, &options_string)) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700513 LOG(ERROR) << "Unable to serialize options";
514 return false;
515 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800516 std::string options_filename = std::string(DATA_MNT_POINT) + fscrypt_key_mode;
Eric Biggers83a73d72019-09-30 13:06:47 -0700517 if (!android::vold::writeStringToFile(options_string, options_filename)) return false;
Paul Lawrence6e410592016-05-24 14:20:38 -0700518
Paul Crowley77df7f22020-01-23 15:29:30 -0800519 std::string ref_filename = std::string(DATA_MNT_POINT) + fscrypt_key_ref;
Eric Biggers9ea53442022-05-11 05:33:25 +0000520 if (!android::vold::writeStringToFile(s_device_policy.key_raw_ref, ref_filename)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700521 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800522
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700523 KeyBuffer per_boot_key;
Eric Biggers4cf16912022-10-26 19:05:10 +0000524 if (!generateStorageKey(makeGen(s_data_options), &per_boot_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800525 EncryptionPolicy per_boot_policy;
Eric Biggers4cf16912022-10-26 19:05:10 +0000526 if (!install_storage_key(DATA_MNT_POINT, s_data_options, per_boot_key, &per_boot_policy))
527 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700528 std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref;
Paul Crowley77df7f22020-01-23 15:29:30 -0800529 if (!android::vold::writeStringToFile(per_boot_policy.key_raw_ref, per_boot_ref_filename))
530 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700531 LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename;
532
Paul Crowley76107cb2016-02-09 10:04:39 +0000533 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800534}
535
Eric Biggers9ea53442022-05-11 05:33:25 +0000536static bool prepare_special_dirs() {
Eric Biggersca9a97e2022-05-12 19:17:15 +0000537 // Ensure that /data/data and its "alias" /data/user/0 exist, and create the
538 // bind mount of /data/data onto /data/user/0. This *should* happen in
539 // fscrypt_prepare_user_storage(). However, it actually must be done early,
540 // before the rest of user 0's CE storage is prepared. This is because
541 // zygote may need to set up app data isolation before then, which requires
542 // mounting a tmpfs over /data/data to ensure it remains hidden. This issue
543 // arises due to /data/data being in the top-level directory.
544
Eric Biggers9ea53442022-05-11 05:33:25 +0000545 // /data/user/0 used to be a symlink to /data/data, so we must first delete
546 // the old symlink if present.
547 if (android::vold::IsSymlink(data_user_0_dir) && android::vold::Unlink(data_user_0_dir) != 0)
548 return false;
Eric Biggersca9a97e2022-05-12 19:17:15 +0000549 // On first boot, we'll be creating /data/data for the first time, and user
550 // 0's CE key will be installed already since it was just created. Take the
551 // opportunity to also set the encryption policy of /data/data right away.
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000552 if (s_ce_policies.count(0) != 0) {
553 const EncryptionPolicy& ce_policy = s_ce_policies[0].internal;
Eric Biggers9544f8c2022-10-07 19:07:23 +0000554 if (!prepare_dir_with_policy(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy)) {
555 // Preparing /data/data failed, yet we had just generated a new CE
556 // key because one wasn't stored. Before erroring out, try deleting
557 // the directory and retrying, as it's possible that the directory
558 // exists with different CE policy from an interrupted first boot.
559 if (rmdir(data_data_dir.c_str()) != 0) {
560 PLOG(ERROR) << "rmdir " << data_data_dir << " failed";
561 }
562 if (!prepare_dir_with_policy(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy))
563 return false;
564 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000565 } else {
566 if (!prepare_dir(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
567 // EnsurePolicy() will have to happen later, in fscrypt_prepare_user_storage().
568 }
Eric Biggers9ea53442022-05-11 05:33:25 +0000569 if (!prepare_dir(data_user_0_dir, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
570 if (android::vold::BindMount(data_data_dir, data_user_0_dir) != 0) return false;
571
572 // If /data/media/obb doesn't exist, create it and encrypt it with the
573 // device policy. Normally, device-policy-encrypted directories are created
574 // and encrypted by init; /data/media/obb is special because it is located
575 // in /data/media. Since /data/media also contains per-user encrypted
576 // directories, by design only vold can write to it. As a side effect of
577 // that, vold must create /data/media/obb.
578 //
579 // We must tolerate /data/media/obb being unencrypted if it already exists
580 // on-disk, since it used to be unencrypted (b/64566063).
Eric Biggersca9a97e2022-05-12 19:17:15 +0000581 if (android::vold::pathExists(media_obb_dir)) {
582 if (!prepare_dir(media_obb_dir, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
583 } else {
584 if (!prepare_dir_with_policy(media_obb_dir, 0770, AID_MEDIA_RW, AID_MEDIA_RW,
585 s_device_policy))
586 return false;
587 }
Eric Biggers9ea53442022-05-11 05:33:25 +0000588 return true;
589}
590
Eric Biggersfb486662022-03-22 00:33:52 +0000591bool fscrypt_init_user0_done;
592
Eric Biggersa701c452018-10-23 13:06:55 -0700593bool fscrypt_init_user0() {
594 LOG(DEBUG) << "fscrypt_init_user0";
Eric Biggers9ea53442022-05-11 05:33:25 +0000595
Eric Biggersa6957c02022-06-15 18:52:18 +0000596 if (IsFbeEnabled()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000597 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
598 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
599 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Eric Biggersce50a432022-10-19 19:38:50 +0000600
601 // Create user 0's DE and CE keys if they don't already exist. Check
602 // each key independently, since if the first boot was interrupted it is
603 // possible that the DE key exists but the CE key does not.
604 if (!de_key_exists(0) && !create_de_key(0, false)) return false;
605 if (!ce_key_exists(0) && !create_ce_key(0, false)) return false;
606
Jeff Sharkey47695b22016-02-01 17:02:29 -0700607 // TODO: switch to loading only DE_0 here once framework makes
608 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000609 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000610 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000611
612 // Now that user 0's CE key has been created, we can prepare /data/data.
613 if (!prepare_special_dirs()) return false;
614
615 // With the exception of what is done by prepare_special_dirs() above, we
616 // only prepare DE storage here, since user 0's CE key won't be installed
Eric Biggers9ea53442022-05-11 05:33:25 +0000617 // yet unless it was just created. The framework will prepare the user's CE
618 // storage later, once their CE key is installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700619 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700620 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000621 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700622 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700623
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000624 // In some scenarios (e.g. userspace reboot) we might unmount userdata
625 // without doing a hard reboot. If CE keys were stored in fs keyring then
626 // they will be lost after unmount. Attempt to re-install them.
Eric Biggersa6957c02022-06-15 18:52:18 +0000627 if (IsFbeEnabled() && android::vold::isFsKeyringSupported()) {
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000628 if (!try_reload_ce_keys()) return false;
629 }
630
Eric Biggersfb486662022-03-22 00:33:52 +0000631 fscrypt_init_user0_done = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000632 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000633}
634
Eric Biggersa701c452018-10-23 13:06:55 -0700635bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
636 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
Eric Biggersa6957c02022-06-15 18:52:18 +0000637 if (!IsFbeEnabled()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000638 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000639 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000640 // FIXME test for existence of key that is not loaded yet
Paul Crowley77df7f22020-01-23 15:29:30 -0800641 if (s_ce_policies.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700642 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800643 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000644 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000645 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800646 }
Eric Biggersce50a432022-10-19 19:38:50 +0000647 if (!create_de_key(user_id, ephemeral)) return false;
648 if (!create_ce_key(user_id, ephemeral)) return false;
649 if (ephemeral) s_ephemeral_users.insert(user_id);
Paul Crowley76107cb2016-02-09 10:04:39 +0000650 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800651}
652
Eric Biggersce368682019-04-03 15:44:06 -0700653// "Lock" all encrypted directories whose key has been removed. This is needed
Eric Biggersf3dc4202019-09-30 13:05:58 -0700654// in the case where the keys are being put in the session keyring (rather in
655// the newer filesystem-level keyrings), because removing a key from the session
656// keyring doesn't affect inodes in the kernel's inode cache whose per-file key
657// was already set up. So to remove the per-file keys and make the files
658// "appear encrypted", these inodes must be evicted.
Eric Biggersce368682019-04-03 15:44:06 -0700659//
660// To do this, sync() to clean all dirty inodes, then drop all reclaimable slab
661// objects systemwide. This is overkill, but it's the best available method
662// currently. Don't use drop_caches mode "3" because that also evicts pagecache
663// for in-use files; all files relevant here are already closed and sync'ed.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700664static void drop_caches_if_needed() {
665 if (android::vold::isFsKeyringSupported()) {
666 return;
667 }
Pavel Grafovb350ed02017-07-27 17:34:57 +0100668 sync();
Eric Biggersce368682019-04-03 15:44:06 -0700669 if (!writeStringToFile("2", "/proc/sys/vm/drop_caches")) {
Pavel Grafovb350ed02017-07-27 17:34:57 +0100670 PLOG(ERROR) << "Failed to drop caches during key eviction";
671 }
672}
673
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000674// Evicts all the user's keys of one type from all volumes (internal and adoptable).
675// This evicts either CE keys or DE keys, depending on which map is passed.
676static bool evict_user_keys(std::map<userid_t, UserPolicies>& policy_map, userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000677 bool success = true;
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000678 auto it = policy_map.find(user_id);
679 if (it != policy_map.end()) {
680 const UserPolicies& policies = it->second;
681 success &= android::vold::evictKey(BuildDataPath(""), policies.internal);
682 for (const auto& [volume_uuid, policy] : policies.adoptable) {
683 success &= android::vold::evictKey(BuildDataPath(volume_uuid), policy);
684 }
685 policy_map.erase(it);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700686 drop_caches_if_needed();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000687 }
Andrew Scull7ec25c72016-10-31 10:28:25 +0000688 return success;
689}
690
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000691// Evicts and destroys all CE and DE keys for a user. This is called when the user is removed.
Eric Biggersa701c452018-10-23 13:06:55 -0700692bool fscrypt_destroy_user_key(userid_t user_id) {
693 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
Eric Biggersa6957c02022-06-15 18:52:18 +0000694 if (!IsFbeEnabled()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000695 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000696 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000697 bool success = true;
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000698
699 success &= evict_user_keys(s_ce_policies, user_id);
700 success &= evict_user_keys(s_de_policies, user_id);
701
Eric Biggers8c1659e2022-09-06 21:29:14 +0000702 if (!s_ephemeral_users.erase(user_id)) {
Eric Biggersd863b2c2021-05-27 17:29:10 -0700703 auto ce_path = get_ce_key_directory_path(user_id);
Eric Biggers8c1659e2022-09-06 21:29:14 +0000704 if (!s_new_ce_keys.erase(user_id)) {
705 for (auto const path : get_ce_key_paths(ce_path)) {
706 success &= android::vold::destroyKey(path);
707 }
Paul Crowleya3630362016-05-17 14:17:56 -0700708 }
Eric Biggersb615f3b2022-11-09 05:48:45 +0000709 s_deferred_fixations.erase(ce_path);
Eric Biggersd863b2c2021-05-27 17:29:10 -0700710 success &= destroy_dir(ce_path);
711
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700712 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700713 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700714 success &= android::vold::destroyKey(de_key_path);
715 } else {
716 LOG(INFO) << "Not present so not erasing: " << de_key_path;
717 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100718 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000719 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100720}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800721
Paul Crowley3b71fc52017-10-09 10:55:21 -0700722static bool parse_hex(const std::string& hex, std::string* result) {
723 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800724 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000725 return true;
726 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800727 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800728 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000729 return false;
730 }
731 return true;
732}
733
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700734static std::optional<android::vold::KeyAuthentication> authentication_from_hex(
Satya Tangiralae1361712021-03-15 15:33:08 -0700735 const std::string& secret_hex) {
736 std::string secret;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700737 if (!parse_hex(secret_hex, &secret)) return std::optional<android::vold::KeyAuthentication>();
738 if (secret.empty()) {
739 return kEmptyAuthentication;
740 } else {
Satya Tangiralae1361712021-03-15 15:33:08 -0700741 return android::vold::KeyAuthentication(secret);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700742 }
743}
744
Paul Crowley3aa914d2017-10-09 16:35:51 -0700745static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
746 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
747}
748
Paul Crowley26a53882017-10-26 11:16:39 -0700749static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
750 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
751}
752
Paul Crowley3aa914d2017-10-09 16:35:51 -0700753static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000754 UserPolicies& user_policies, EncryptionPolicy* policy) {
Paul Crowley26a53882017-10-26 11:16:39 -0700755 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
756 std::string secdiscardable_hash;
757 if (android::vold::pathExists(secdiscardable_path)) {
758 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
759 return false;
760 } else {
Eric Biggersfec0c0e2021-02-16 15:59:17 -0800761 if (!android::vold::MkdirsSync(secdiscardable_path, 0700)) return false;
Paul Crowley26a53882017-10-26 11:16:39 -0700762 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
763 return false;
764 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700765 auto key_path = volkey_path(misc_path, volume_uuid);
Eric Biggersfec0c0e2021-02-16 15:59:17 -0800766 if (!android::vold::MkdirsSync(key_path, 0700)) return false;
Satya Tangiralae1361712021-03-15 15:33:08 -0700767 android::vold::KeyAuthentication auth(secdiscardable_hash);
Eric Biggers83a73d72019-09-30 13:06:47 -0700768
Paul Crowley77df7f22020-01-23 15:29:30 -0800769 EncryptionOptions options;
770 if (!get_volume_file_encryption_options(&options)) return false;
771 KeyBuffer key;
Eric Biggersf74373b2020-11-05 19:58:26 -0800772 if (!retrieveOrGenerateKey(key_path, key_path + "_tmp", auth, makeGen(options), &key))
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800773 return false;
774 if (!install_storage_key(BuildDataPath(volume_uuid), options, key, policy)) return false;
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000775 user_policies.adoptable[volume_uuid] = *policy;
Paul Crowley77df7f22020-01-23 15:29:30 -0800776 return true;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700777}
778
779static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700780 auto path = volkey_path(misc_path, volume_uuid);
781 if (!android::vold::pathExists(path)) return true;
782 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700783}
784
Eric Biggersce50a432022-10-19 19:38:50 +0000785// (Re-)encrypts the user's CE key with the given secret. This function handles
786// storing the CE key for a new user for the first time. It also handles
787// re-encrypting the CE key upon upgrade from an Android version where the CE
788// key was stored with kEmptyAuthentication when the user didn't have an LSKF.
789// See the comments below for the different cases handled.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000790bool fscrypt_set_user_key_protection(userid_t user_id, const std::string& secret_hex) {
791 LOG(DEBUG) << "fscrypt_set_user_key_protection " << user_id;
792 if (!IsFbeEnabled()) return true;
793 auto auth = authentication_from_hex(secret_hex);
794 if (!auth) return false;
795 if (auth->secret.empty()) {
796 LOG(ERROR) << "fscrypt_set_user_key_protection: secret must be nonempty";
797 return false;
798 }
Eric Biggersce50a432022-10-19 19:38:50 +0000799 // We shouldn't store any keys for ephemeral users.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000800 if (s_ephemeral_users.count(user_id) != 0) {
801 LOG(DEBUG) << "Not storing key because user is ephemeral";
802 return true;
803 }
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700804 KeyBuffer ce_key;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000805 auto it = s_new_ce_keys.find(user_id);
806 if (it != s_new_ce_keys.end()) {
Eric Biggersce50a432022-10-19 19:38:50 +0000807 // If the key exists in s_new_ce_keys, then the key is a
808 // not-yet-committed key for a new user, and we are committing it here.
809 // This happens when the user's synthetic password is created.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000810 ce_key = it->second;
Eric Biggersce50a432022-10-19 19:38:50 +0000811 } else if (ce_key_exists(user_id)) {
812 // If the key doesn't exist in s_new_ce_keys but does exist on-disk,
813 // then we are setting the protection on an existing key. This happens
814 // at upgrade time, when CE keys that were previously protected by
Eric Biggers8c1659e2022-09-06 21:29:14 +0000815 // kEmptyAuthentication are encrypted by the user's synthetic password.
Eric Biggersce50a432022-10-19 19:38:50 +0000816 LOG(DEBUG) << "CE key already exists on-disk; re-protecting it with the given secret";
Eric Biggers8c1659e2022-09-06 21:29:14 +0000817 if (!read_and_fixate_user_ce_key(user_id, kEmptyAuthentication, &ce_key)) {
Eric Biggersce50a432022-10-19 19:38:50 +0000818 LOG(ERROR) << "Failed to retrieve CE key for user " << user_id << " using empty auth";
Eric Biggers8c1659e2022-09-06 21:29:14 +0000819 // Before failing, also check whether the key is already protected
820 // with the given secret. This isn't expected, but in theory it
821 // could happen if an upgrade is requested for a user more than once
822 // due to a power-off or other interruption.
823 if (read_and_fixate_user_ce_key(user_id, *auth, &ce_key)) {
Eric Biggersce50a432022-10-19 19:38:50 +0000824 LOG(WARNING) << "CE key is already protected by given secret";
Eric Biggers8c1659e2022-09-06 21:29:14 +0000825 return true;
826 }
Eric Biggersce50a432022-10-19 19:38:50 +0000827 // The key isn't protected by either kEmptyAuthentication or by
828 // |auth|. This should never happen, and there's nothing we can do
829 // besides return an error.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000830 return false;
831 }
Eric Biggersce50a432022-10-19 19:38:50 +0000832 } else {
833 // If the key doesn't exist in memory or on-disk, then we need to
834 // generate it here, then commit it to disk. This is needed after the
835 // unusual case where a non-system user was created during early boot,
836 // and then the device was force-rebooted before the boot completed. In
837 // that case, the Android user record was committed but the CE key was
838 // not. So the CE key was lost, and we need to regenerate it. This
839 // should be fine, since the key should not have been used yet.
840 LOG(WARNING) << "CE key not found! Regenerating it";
841 if (!create_ce_key(user_id, false)) return false;
842 ce_key = s_new_ce_keys.find(user_id)->second;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700843 }
Eric Biggersce50a432022-10-19 19:38:50 +0000844
845 auto const directory_path = get_ce_key_directory_path(user_id);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700846 auto const paths = get_ce_key_paths(directory_path);
847 std::string ce_key_path;
848 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000849 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, *auth, ce_key)) return false;
Eric Biggersb615f3b2022-11-09 05:48:45 +0000850
851 // Fixate the key, i.e. delete all other bindings of it. (In practice this
852 // just means the kEmptyAuthentication binding, if there is one.) However,
853 // if a userdata filesystem checkpoint is pending, then we need to delay the
854 // fixation until the checkpoint has been committed, since deleting keys
855 // from Keystore cannot be rolled back.
856 if (android::vold::cp_needsCheckpoint()) {
857 LOG(INFO) << "Deferring fixation of " << directory_path << " until checkpoint is committed";
858 s_deferred_fixations[directory_path] = ce_key_path;
859 } else {
860 s_deferred_fixations.erase(directory_path);
861 if (!fixate_user_ce_key(directory_path, ce_key_path, paths)) return false;
862 }
863
Eric Biggers8c1659e2022-09-06 21:29:14 +0000864 if (s_new_ce_keys.erase(user_id)) {
865 LOG(INFO) << "Stored CE key for new user " << user_id;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000866 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000867 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000868}
869
Eric Biggersb615f3b2022-11-09 05:48:45 +0000870void fscrypt_deferred_fixate_ce_keys() {
871 for (const auto& it : s_deferred_fixations) {
872 const auto& directory_path = it.first;
873 const auto& to_fix = it.second;
874 LOG(INFO) << "Doing deferred fixation of " << directory_path;
875 fixate_user_ce_key(directory_path, to_fix, get_ce_key_paths(directory_path));
876 // Continue on error.
877 }
878 s_deferred_fixations.clear();
879}
880
Eric Biggers18ba1522021-04-06 12:02:56 -0700881std::vector<int> fscrypt_get_unlocked_users() {
882 std::vector<int> user_ids;
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000883 for (const auto& [user_id, user_policies] : s_ce_policies) {
884 user_ids.push_back(user_id);
Eric Biggers18ba1522021-04-06 12:02:56 -0700885 }
886 return user_ids;
887}
888
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000889// Unlocks internal CE storage for the given user. This only unlocks internal storage, since
890// fscrypt_prepare_user_storage() has to be called for each adoptable storage volume anyway (since
891// the volume might have been absent when the user was created), and that handles the unlocking.
Satya Tangiralae1361712021-03-15 15:33:08 -0700892bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& secret_hex) {
893 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial;
Eric Biggersfc1df0e2023-08-01 19:34:53 +0000894 if (!IsFbeEnabled()) return true;
895 if (s_ce_policies.count(user_id) != 0) {
896 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
897 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800898 }
Eric Biggersfc1df0e2023-08-01 19:34:53 +0000899 auto auth = authentication_from_hex(secret_hex);
900 if (!auth) return false;
901 KeyBuffer ce_key;
902 if (!read_and_fixate_user_ce_key(user_id, *auth, &ce_key)) return false;
903 EncryptionPolicy ce_policy;
904 if (!install_storage_key(DATA_MNT_POINT, s_data_options, ce_key, &ce_policy)) return false;
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000905 s_ce_policies[user_id].internal = ce_policy;
Eric Biggersfc1df0e2023-08-01 19:34:53 +0000906 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000907 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800908}
909
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000910// Locks CE storage for the given user. This locks both internal and adoptable storage.
Eric Biggersa701c452018-10-23 13:06:55 -0700911bool fscrypt_lock_user_key(userid_t user_id) {
912 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000913 if (!IsFbeEnabled()) return true;
914 return evict_user_keys(s_ce_policies, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800915}
916
Paul Crowley82b41ff2017-10-20 08:17:54 -0700917static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
918 userid_t user_id, int flags) {
919 if (0 != android::vold::ForkExecvp(
920 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
921 std::to_string(user_id), std::to_string(flags)})) {
922 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700923 return false;
924 }
925 return true;
926}
927
Eric Biggersa701c452018-10-23 13:06:55 -0700928bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700929 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700930 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800931 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700932
Eric Biggersc66c2e32022-05-04 04:39:50 +0000933 // Internal storage must be prepared before adoptable storage, since the
934 // user's volume keys are stored in their internal storage.
935 if (!volume_uuid.empty()) {
936 if ((flags & android::os::IVold::STORAGE_FLAG_DE) &&
937 !android::vold::pathExists(android::vold::BuildDataMiscDePath("", user_id))) {
938 LOG(ERROR) << "Cannot prepare DE storage for user " << user_id << " on volume "
939 << volume_uuid << " before internal storage";
940 return false;
941 }
942 if ((flags & android::os::IVold::STORAGE_FLAG_CE) &&
943 !android::vold::pathExists(android::vold::BuildDataMiscCePath("", user_id))) {
944 LOG(ERROR) << "Cannot prepare CE storage for user " << user_id << " on volume "
945 << volume_uuid << " before internal storage";
946 return false;
947 }
948 }
949
Paul Crowley82b41ff2017-10-20 08:17:54 -0700950 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600951 // DE_sys key
952 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
953 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
954 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600955
956 // DE_n key
Eric Biggersca9a97e2022-05-12 19:17:15 +0000957 EncryptionPolicy de_policy;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700958 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000959 auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800960 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700961 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
962
Eric Biggersa6957c02022-06-15 18:52:18 +0000963 if (IsFbeEnabled()) {
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000964 auto it = s_de_policies.find(user_id);
965 if (it == s_de_policies.end()) {
966 LOG(ERROR) << "Cannot find DE policy for user " << user_id;
967 return false;
968 }
969 UserPolicies& user_de_policies = it->second;
Eric Biggersca9a97e2022-05-12 19:17:15 +0000970 if (volume_uuid.empty()) {
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000971 de_policy = user_de_policies.internal;
Eric Biggersca9a97e2022-05-12 19:17:15 +0000972 } else {
973 auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id);
Eric Biggers1eddb7c2023-08-02 23:02:22 +0000974 if (!read_or_create_volkey(misc_de_empty_volume_path, volume_uuid, user_de_policies,
975 &de_policy)) {
Eric Biggersca9a97e2022-05-12 19:17:15 +0000976 return false;
977 }
978 }
979 }
980
Paul Crowley3b71fc52017-10-09 10:55:21 -0700981 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700982 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600983#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700984 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700985 multiuser_get_uid(user_id, AID_EVERYBODY)))
986 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600987#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700988 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600989
Eric Biggersca9a97e2022-05-12 19:17:15 +0000990 if (!prepare_dir_with_policy(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM, de_policy))
991 return false;
992 if (!prepare_dir_with_policy(vendor_de_path, 0771, AID_ROOT, AID_ROOT, de_policy))
993 return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700994 }
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000995
Eric Biggersca9a97e2022-05-12 19:17:15 +0000996 if (!prepare_dir_with_policy(misc_de_path, 01771, AID_SYSTEM, AID_MISC, de_policy))
997 return false;
998 if (!prepare_dir_with_policy(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM, de_policy))
999 return false;
Paul Crowley285956f2016-01-20 13:12:38 +00001000 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001001
Paul Crowley82b41ff2017-10-20 08:17:54 -07001002 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001003 // CE_n key
Eric Biggersca9a97e2022-05-12 19:17:15 +00001004 EncryptionPolicy ce_policy;
Jeff Sharkey47695b22016-02-01 17:02:29 -07001005 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001006 auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001007 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001008 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
1009 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001010
Eric Biggersa6957c02022-06-15 18:52:18 +00001011 if (IsFbeEnabled()) {
Eric Biggers1eddb7c2023-08-02 23:02:22 +00001012 auto it = s_ce_policies.find(user_id);
1013 if (it == s_ce_policies.end()) {
1014 LOG(ERROR) << "Cannot find CE policy for user " << user_id;
1015 return false;
1016 }
1017 UserPolicies& user_ce_policies = it->second;
Eric Biggersca9a97e2022-05-12 19:17:15 +00001018 if (volume_uuid.empty()) {
Eric Biggers1eddb7c2023-08-02 23:02:22 +00001019 ce_policy = user_ce_policies.internal;
Eric Biggersca9a97e2022-05-12 19:17:15 +00001020 } else {
1021 auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id);
Eric Biggers1eddb7c2023-08-02 23:02:22 +00001022 if (!read_or_create_volkey(misc_ce_empty_volume_path, volume_uuid, user_ce_policies,
1023 &ce_policy)) {
Eric Biggersca9a97e2022-05-12 19:17:15 +00001024 return false;
1025 }
1026 }
Paul Crowley6b756ce2017-10-05 14:07:09 -07001027 }
Eric Biggersca9a97e2022-05-12 19:17:15 +00001028
1029 if (volume_uuid.empty()) {
1030 if (!prepare_dir_with_policy(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM, ce_policy))
1031 return false;
1032 if (!prepare_dir_with_policy(vendor_ce_path, 0771, AID_ROOT, AID_ROOT, ce_policy))
1033 return false;
1034 }
1035 if (!prepare_dir_with_policy(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW, ce_policy))
1036 return false;
Martijn Coenen5adf92a2021-02-01 07:57:02 +00001037 // On devices without sdcardfs (kernel 5.4+), the path permissions aren't fixed
1038 // up automatically; therefore, use a default ACL, to ensure apps with MEDIA_RW
1039 // can keep reading external storage; in particular, this allows app cloning
1040 // scenarios to work correctly on such devices.
1041 int ret = SetDefaultAcl(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW, {AID_MEDIA_RW});
1042 if (ret != android::OK) {
1043 return false;
1044 }
Eric Biggersca9a97e2022-05-12 19:17:15 +00001045 if (!prepare_dir_with_policy(misc_ce_path, 01771, AID_SYSTEM, AID_MISC, ce_policy))
1046 return false;
1047 if (!prepare_dir_with_policy(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy))
1048 return false;
Paul Crowley1a965262017-10-13 13:49:50 -07001049
1050 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -07001051 // Now that credentials have been installed, we can run restorecon
1052 // over these paths
1053 // NOTE: these paths need to be kept in sync with libselinux
1054 android::vold::RestoreconRecursive(system_ce_path);
Nick Kralevich6a3ef482019-05-14 09:30:29 -07001055 android::vold::RestoreconRecursive(vendor_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -07001056 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -07001057 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001058 }
Paul Crowley82b41ff2017-10-20 08:17:54 -07001059 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001060
Paul Crowley76107cb2016-02-09 10:04:39 +00001061 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001062}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001063
Eric Biggersa701c452018-10-23 13:06:55 -07001064bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
1065 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001066 << ", user " << user_id << ", flags " << flags;
1067 bool res = true;
1068
Paul Crowley82b41ff2017-10-20 08:17:54 -07001069 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
1070
1071 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -07001072 // CE_n key
1073 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001074 auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001075 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -07001076 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
1077 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
1078
1079 res &= destroy_dir(media_ce_path);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001080 res &= destroy_dir(misc_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -07001081 res &= destroy_dir(user_ce_path);
1082 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -07001083 res &= destroy_dir(system_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001084 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001085 } else {
Eric Biggersa6957c02022-06-15 18:52:18 +00001086 if (IsFbeEnabled()) {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001087 auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id);
1088 res &= destroy_volkey(misc_ce_empty_volume_path, volume_uuid);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001089 }
Paul Crowley8e550662017-10-16 17:01:44 -07001090 }
1091 }
1092
Paul Crowley82b41ff2017-10-20 08:17:54 -07001093 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001094 // DE_sys key
1095 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
1096 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
1097 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001098
1099 // DE_n key
1100 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001101 auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001102 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001103 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
1104
Paul Crowley8e550662017-10-16 17:01:44 -07001105 res &= destroy_dir(user_de_path);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001106 res &= destroy_dir(misc_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -07001107 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001108 res &= destroy_dir(system_legacy_path);
1109#if MANAGE_MISC_DIRS
1110 res &= destroy_dir(misc_legacy_path);
1111#endif
1112 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001113 res &= destroy_dir(system_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001114 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001115 } else {
Eric Biggersa6957c02022-06-15 18:52:18 +00001116 if (IsFbeEnabled()) {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001117 auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id);
1118 res &= destroy_volkey(misc_de_empty_volume_path, volume_uuid);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001119 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001120 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001121 }
1122
1123 return res;
1124}
Rubin Xu2436e272017-04-27 20:43:10 +01001125
Paul Crowleyc6433a22017-10-24 14:54:43 -07001126static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
1127 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
1128 if (!dirp) {
1129 PLOG(ERROR) << "Unable to open directory: " + directory_path;
1130 return false;
1131 }
1132 bool res = true;
1133 for (;;) {
1134 errno = 0;
1135 auto const entry = readdir(dirp.get());
1136 if (!entry) {
1137 if (errno) {
1138 PLOG(ERROR) << "Unable to read directory: " + directory_path;
1139 return false;
1140 }
1141 break;
1142 }
Eric Biggers6b840392020-11-02 15:11:06 -08001143 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleyc6433a22017-10-24 14:54:43 -07001144 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
1145 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
1146 continue;
1147 }
1148 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
1149 }
1150 return res;
1151}
1152
Eric Biggers1eddb7c2023-08-02 23:02:22 +00001153static void erase_volume_policies(std::map<userid_t, UserPolicies>& policy_map,
1154 const std::string& volume_uuid) {
1155 for (auto& [user_id, user_policies] : policy_map) {
1156 user_policies.adoptable.erase(volume_uuid);
1157 }
1158}
1159
Eric Biggers78627292023-08-01 22:36:55 +00001160// Destroys all CE and DE keys for an adoptable storage volume that is permanently going away.
1161// Requires VolumeManager::mCryptLock.
Eric Biggersa701c452018-10-23 13:06:55 -07001162bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Eric Biggers78627292023-08-01 22:36:55 +00001163 if (!IsFbeEnabled()) return true;
Paul Crowleyc6433a22017-10-24 14:54:43 -07001164 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -07001165 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -07001166 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
1167 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -07001168 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
1169 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
Eric Biggers1eddb7c2023-08-02 23:02:22 +00001170 // Drop the CE and DE policies stored in memory, as they are not needed anymore. Note that it's
1171 // not necessary to also evict the corresponding keys from the kernel, as that happens
1172 // automatically as a result of the volume being unmounted.
1173 erase_volume_policies(s_ce_policies, volume_uuid);
1174 erase_volume_policies(s_de_policies, volume_uuid);
Paul Crowleyc6433a22017-10-24 14:54:43 -07001175 return res;
1176}