blob: 9d257406cd4d55a8e40dad5717e40b5eee41f983 [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 Biggers9ea53442022-05-11 05:33:25 +0000109// The system DE encryption policy
110EncryptionPolicy s_device_policy;
111
Paul Crowley77df7f22020-01-23 15:29:30 -0800112// Map user ids to encryption policies
113std::map<userid_t, EncryptionPolicy> s_de_policies;
114std::map<userid_t, EncryptionPolicy> s_ce_policies;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000115
Eric Biggersb615f3b2022-11-09 05:48:45 +0000116// CE key fixation operations that have been deferred to checkpoint commit
117std::map<std::string, std::string> s_deferred_fixations;
118
Paul Crowley14c8c072018-09-18 13:30:21 -0700119} // namespace
Paul Lawrence731a7a22015-04-28 22:14:15 +0000120
Paul Crowley249c2fb2020-02-07 12:51:56 -0800121// Returns KeyGeneration suitable for key as described in EncryptionOptions
122static KeyGeneration makeGen(const EncryptionOptions& options) {
Eric Biggers4cf16912022-10-26 19:05:10 +0000123 if (options.version == 0) {
124 LOG(ERROR) << "EncryptionOptions not initialized";
125 return android::vold::neverGen();
126 }
Paul Crowley249c2fb2020-02-07 12:51:56 -0800127 return KeyGeneration{FSCRYPT_MAX_KEY_SIZE, true, options.use_hw_wrapped_key};
128}
129
Paul Crowley3b71fc52017-10-09 10:55:21 -0700130static const char* escape_empty(const std::string& value) {
131 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000132}
133
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000134static std::string get_de_key_path(userid_t user_id) {
135 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
136}
137
Paul Crowleya3630362016-05-17 14:17:56 -0700138static std::string get_ce_key_directory_path(userid_t user_id) {
139 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
140}
141
142// Returns the keys newest first
143static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
144 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
145 if (!dirp) {
146 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
147 return std::vector<std::string>();
148 }
149 std::vector<std::string> result;
150 for (;;) {
151 errno = 0;
152 auto const entry = readdir(dirp.get());
153 if (!entry) {
154 if (errno) {
155 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
156 return std::vector<std::string>();
157 }
158 break;
159 }
Eric Biggers6b840392020-11-02 15:11:06 -0800160 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleya3630362016-05-17 14:17:56 -0700161 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
162 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
163 continue;
164 }
165 result.emplace_back(directory_path + "/" + entry->d_name);
166 }
167 std::sort(result.begin(), result.end());
168 std::reverse(result.begin(), result.end());
169 return result;
170}
171
172static std::string get_ce_key_current_path(const std::string& directory_path) {
173 return directory_path + "/current";
174}
175
176static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700177 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700178 if (paths.empty()) {
179 *ce_key_path = get_ce_key_current_path(directory_path);
180 return true;
181 }
182 for (unsigned int i = 0; i < UINT_MAX; i++) {
183 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
184 if (paths[0] < candidate) {
185 *ce_key_path = candidate;
186 return true;
187 }
188 }
189 return false;
190}
191
192// Discard all keys but the named one; rename it to canonical name.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000193static bool fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700194 const std::vector<std::string>& paths) {
Eric Biggers11409cb2022-10-26 19:02:43 +0000195 bool need_sync = false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700196 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700197 if (other_path != to_fix) {
198 android::vold::destroyKey(other_path);
Eric Biggers11409cb2022-10-26 19:02:43 +0000199 need_sync = true;
Paul Crowleya3630362016-05-17 14:17:56 -0700200 }
201 }
202 auto const current_path = get_ce_key_current_path(directory_path);
203 if (to_fix != current_path) {
204 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000205 if (!android::vold::RenameKeyDir(to_fix, current_path)) return false;
Eric Biggers11409cb2022-10-26 19:02:43 +0000206 need_sync = true;
Paul Crowleya3630362016-05-17 14:17:56 -0700207 }
Eric Biggers11409cb2022-10-26 19:02:43 +0000208 if (need_sync && !android::vold::FsyncDirectory(directory_path)) return false;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000209 return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700210}
211
212static bool read_and_fixate_user_ce_key(userid_t user_id,
213 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700214 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700215 auto const directory_path = get_ce_key_directory_path(user_id);
216 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700217 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700218 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
Eric Biggersf74373b2020-11-05 19:58:26 -0800219 if (retrieveKey(ce_key_path, auth, ce_key)) {
Paul Crowleya3630362016-05-17 14:17:56 -0700220 LOG(DEBUG) << "Successfully retrieved key";
Eric Biggersb615f3b2022-11-09 05:48:45 +0000221 s_deferred_fixations.erase(directory_path);
Paul Crowleya3630362016-05-17 14:17:56 -0700222 fixate_user_ce_key(directory_path, ce_key_path, paths);
223 return true;
224 }
225 }
226 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
227 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100228}
229
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800230static bool MightBeEmmcStorage(const std::string& blk_device) {
Eric Biggerseb566d02020-07-06 13:46:38 -0700231 // Handle symlinks.
232 std::string real_path;
233 if (!Realpath(blk_device, &real_path)) {
234 real_path = blk_device;
235 }
236
237 // Handle logical volumes.
238 auto& dm = DeviceMapper::Instance();
239 for (;;) {
240 auto parent = dm.GetParentBlockDeviceByPath(real_path);
241 if (!parent.has_value()) break;
242 real_path = *parent;
243 }
244
245 // Now we should have the "real" block device.
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800246 LOG(DEBUG) << "MightBeEmmcStorage(): blk_device = " << blk_device
247 << ", real_path=" << real_path;
248 std::string name = Basename(real_path);
249 return StartsWith(name, "mmcblk") ||
250 // virtio devices may provide inline encryption support that is
251 // backed by eMMC inline encryption on the host, thus inheriting the
252 // DUN size limitation. So virtio devices must be allowed here too.
253 // TODO(b/207390665): check the maximum DUN size directly instead.
254 StartsWith(name, "vd");
Eric Biggerseb566d02020-07-06 13:46:38 -0700255}
256
Eric Biggers4cf16912022-10-26 19:05:10 +0000257// Sets s_data_options to the file encryption options for the /data filesystem.
258static bool init_data_file_encryption_options() {
Eric Biggers83a73d72019-09-30 13:06:47 -0700259 auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT);
260 if (entry == nullptr) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800261 LOG(ERROR) << "No mount point entry for " << DATA_MNT_POINT;
262 return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700263 }
Eric Biggers4cf16912022-10-26 19:05:10 +0000264 if (!ParseOptions(entry->encryption_options, &s_data_options)) {
Paul Crowleya50f6c32019-10-24 23:21:44 -0700265 LOG(ERROR) << "Unable to parse encryption options for " << DATA_MNT_POINT ": "
266 << entry->encryption_options;
Paul Crowley77df7f22020-01-23 15:29:30 -0800267 return false;
Paul Crowleya50f6c32019-10-24 23:21:44 -0700268 }
Eric Biggers4cf16912022-10-26 19:05:10 +0000269 if ((s_data_options.flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) &&
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800270 !MightBeEmmcStorage(entry->blk_device)) {
Eric Biggerseb566d02020-07-06 13:46:38 -0700271 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
272 "this flag from the device's fstab";
273 return false;
274 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800275 return true;
Eric Biggers83a73d72019-09-30 13:06:47 -0700276}
277
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800278static bool install_storage_key(const std::string& mountpoint, const EncryptionOptions& options,
279 const KeyBuffer& key, EncryptionPolicy* policy) {
Eric Biggers4cf16912022-10-26 19:05:10 +0000280 if (options.version == 0) {
281 LOG(ERROR) << "EncryptionOptions not initialized";
282 return false;
283 }
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800284 KeyBuffer ephemeral_wrapped_key;
285 if (options.use_hw_wrapped_key) {
286 if (!exportWrappedStorageKey(key, &ephemeral_wrapped_key)) {
287 LOG(ERROR) << "Failed to get ephemeral wrapped key";
288 return false;
289 }
290 }
291 return installKey(mountpoint, options, options.use_hw_wrapped_key ? ephemeral_wrapped_key : key,
292 policy);
293}
294
Eric Biggers83a73d72019-09-30 13:06:47 -0700295// Retrieve the options to use for encryption policies on adoptable storage.
Paul Crowley5e53ff62019-10-24 14:55:17 -0700296static bool get_volume_file_encryption_options(EncryptionOptions* options) {
Paul Crowleyeb241a12020-02-18 10:10:08 -0800297 // If we give the empty string, libfscrypt will use the default (currently XTS)
298 auto contents_mode = android::base::GetProperty("ro.crypto.volume.contents_mode", "");
299 // HEH as default was always a mistake. Use the libfscrypt default (CTS)
300 // for devices launching on versions above Android 10.
301 auto first_api_level = GetFirstApiLevel();
Paul Crowleyf612b8b2019-10-24 22:52:02 -0700302 auto filenames_mode =
Paul Crowleyeb241a12020-02-18 10:10:08 -0800303 android::base::GetProperty("ro.crypto.volume.filenames_mode",
Eric Biggers72d07132020-08-10 10:55:56 -0700304 first_api_level > __ANDROID_API_Q__ ? "" : "aes-256-heh");
Paul Crowley77df7f22020-01-23 15:29:30 -0800305 auto options_string = android::base::GetProperty("ro.crypto.volume.options",
Paul Crowleyeb241a12020-02-18 10:10:08 -0800306 contents_mode + ":" + filenames_mode);
307 if (!ParseOptionsForApiLevel(first_api_level, options_string, options)) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800308 LOG(ERROR) << "Unable to parse volume encryption options: " << options_string;
309 return false;
310 }
Eric Biggerseb566d02020-07-06 13:46:38 -0700311 if (options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) {
312 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
313 "this flag from ro.crypto.volume.options";
314 return false;
315 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800316 return true;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700317}
318
Paul Crowleydf528a72016-03-09 09:31:37 -0800319static bool read_and_install_user_ce_key(userid_t user_id,
320 const android::vold::KeyAuthentication& auth) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800321 if (s_ce_policies.count(user_id) != 0) return true;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100322 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700323 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800324 EncryptionPolicy ce_policy;
Eric Biggers4cf16912022-10-26 19:05:10 +0000325 if (!install_storage_key(DATA_MNT_POINT, s_data_options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800326 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000327 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000328 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000329}
330
Eric Biggersca9a97e2022-05-12 19:17:15 +0000331// Prepare a directory without assigning it an encryption policy. The directory
332// will inherit the encryption policy of its parent directory, or will be
333// unencrypted if the parent directory is unencrypted.
Paul Crowleydf528a72016-03-09 09:31:37 -0800334static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000335 LOG(DEBUG) << "Preparing: " << dir;
Eric Biggers39704e72022-05-04 22:17:54 +0000336 if (android::vold::PrepareDir(dir, mode, uid, gid, 0) != 0) {
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000337 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000338 return false;
339 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000340 return true;
341}
342
Eric Biggersca9a97e2022-05-12 19:17:15 +0000343// Prepare a directory and assign it the given encryption policy.
344static bool prepare_dir_with_policy(const std::string& dir, mode_t mode, uid_t uid, gid_t gid,
345 const EncryptionPolicy& policy) {
Eric Biggersc6f004a2023-06-08 16:15:52 +0000346 if (android::vold::pathExists(dir)) {
347 if (!prepare_dir(dir, mode, uid, gid)) return false;
348 if (IsFbeEnabled() && !EnsurePolicy(policy, dir)) return false;
349 } else {
350 // If the directory does not yet exist, then create it under a temporary name, and only move
351 // it to the final name after it is fully prepared with an encryption policy and the desired
352 // file permissions. This prevents the directory from being accessed before it is ready.
353 //
354 // Note: this relies on the SELinux file_contexts assigning the same type to the file path
355 // with the ".new" suffix as to the file path without the ".new" suffix.
356
357 const std::string tmp_dir = dir + ".new";
358 if (android::vold::pathExists(tmp_dir)) {
359 android::vold::DeleteDirContentsAndDir(tmp_dir);
360 }
361 if (!prepare_dir(tmp_dir, mode, uid, gid)) return false;
362 if (IsFbeEnabled() && !EnsurePolicy(policy, tmp_dir)) return false;
363
364 // On some buggy kernels, renaming a directory that is both encrypted and case-insensitive
365 // fails in some specific circumstances. Unfortunately, these circumstances happen here
366 // when processing the "media" directory. This was already fixed by kernel commit
367 // https://git.kernel.org/linus/b5639bb4313b9d45 ('f2fs: don't use casefolded comparison for
368 // "." and ".."'). But to support kernels that lack that fix, we use the below workaround.
369 // It bypasses the bug by making the encryption key of tmp_dir be loaded before the rename.
370 android::vold::pathExists(tmp_dir + "/subdir");
371
372 if (rename(tmp_dir.c_str(), dir.c_str()) != 0) {
373 PLOG(ERROR) << "Failed to rename " << tmp_dir << " to " << dir;
374 return false;
375 }
376 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000377 return true;
378}
379
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600380static bool destroy_dir(const std::string& dir) {
381 LOG(DEBUG) << "Destroying: " << dir;
382 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
383 PLOG(ERROR) << "Failed to destroy " << dir;
384 return false;
385 }
386 return true;
387}
388
Eric Biggersce50a432022-10-19 19:38:50 +0000389// Checks whether the DE key directory exists for the given user.
390static bool de_key_exists(userid_t user_id) {
391 return android::vold::pathExists(get_de_key_path(user_id));
392}
393
394// Checks whether at least one CE key subdirectory exists for the given user.
395static bool ce_key_exists(userid_t user_id) {
396 auto directory_path = get_ce_key_directory_path(user_id);
Eric Biggers9544f8c2022-10-07 19:07:23 +0000397 // The common case is that "$dir/current" exists, so check for that first.
398 if (android::vold::pathExists(get_ce_key_current_path(directory_path))) return true;
399
400 // Else, there could still be another subdirectory of $dir (if a crash
401 // occurred during fixate_user_ce_key()), so check for one.
402 return android::vold::pathExists(directory_path) && !get_ce_key_paths(directory_path).empty();
403}
404
Eric Biggersce50a432022-10-19 19:38:50 +0000405static bool create_de_key(userid_t user_id, bool ephemeral) {
Eric Biggersce50a432022-10-19 19:38:50 +0000406 KeyBuffer de_key;
Eric Biggers4cf16912022-10-26 19:05:10 +0000407 if (!generateStorageKey(makeGen(s_data_options), &de_key)) return false;
Eric Biggersce50a432022-10-19 19:38:50 +0000408 if (!ephemeral && !android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
409 kEmptyAuthentication, de_key))
410 return false;
411 EncryptionPolicy de_policy;
Eric Biggers4cf16912022-10-26 19:05:10 +0000412 if (!install_storage_key(DATA_MNT_POINT, s_data_options, de_key, &de_policy)) return false;
Eric Biggersce50a432022-10-19 19:38:50 +0000413 s_de_policies[user_id] = de_policy;
414 LOG(INFO) << "Created DE key for user " << user_id;
415 return true;
416}
Eric Biggers9544f8c2022-10-07 19:07:23 +0000417
Eric Biggersce50a432022-10-19 19:38:50 +0000418static bool create_ce_key(userid_t user_id, bool ephemeral) {
Eric Biggersce50a432022-10-19 19:38:50 +0000419 KeyBuffer ce_key;
Eric Biggers4cf16912022-10-26 19:05:10 +0000420 if (!generateStorageKey(makeGen(s_data_options), &ce_key)) return false;
Eric Biggersce50a432022-10-19 19:38:50 +0000421 if (!ephemeral) {
422 if (!prepare_dir(get_ce_key_directory_path(user_id), 0700, AID_ROOT, AID_ROOT))
423 return false;
424 // We don't store the CE key on disk here, since here we don't have the
425 // secret needed to do so securely. Instead, we cache it in memory for
426 // now, and we store it later in fscrypt_set_user_key_protection().
427 s_new_ce_keys.insert({user_id, ce_key});
Eric Biggers9544f8c2022-10-07 19:07:23 +0000428 }
Eric Biggersce50a432022-10-19 19:38:50 +0000429 EncryptionPolicy ce_policy;
Eric Biggers4cf16912022-10-26 19:05:10 +0000430 if (!install_storage_key(DATA_MNT_POINT, s_data_options, ce_key, &ce_policy)) return false;
Eric Biggersce50a432022-10-19 19:38:50 +0000431 s_ce_policies[user_id] = ce_policy;
432 LOG(INFO) << "Created CE key for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000433 return true;
434}
435
Paul Crowley77df7f22020-01-23 15:29:30 -0800436static bool lookup_policy(const std::map<userid_t, EncryptionPolicy>& key_map, userid_t user_id,
437 EncryptionPolicy* policy) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000438 auto refi = key_map.find(user_id);
439 if (refi == key_map.end()) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000440 return false;
441 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800442 *policy = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000443 return true;
444}
445
Paul Crowleydf528a72016-03-09 09:31:37 -0800446static bool is_numeric(const char* name) {
447 for (const char* p = name; *p != '\0'; p++) {
448 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000449 }
450 return true;
451}
452
453static bool load_all_de_keys() {
454 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800455 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000456 if (!dirp) {
457 PLOG(ERROR) << "Unable to read de key directory";
458 return false;
459 }
460 for (;;) {
461 errno = 0;
462 auto entry = readdir(dirp.get());
463 if (!entry) {
464 if (errno) {
465 PLOG(ERROR) << "Unable to read de key directory";
466 return false;
467 }
468 break;
469 }
Eric Biggers6b840392020-11-02 15:11:06 -0800470 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000471 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
472 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
473 continue;
474 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600475 userid_t user_id = std::stoi(entry->d_name);
Nikita Ioffef0550af2020-02-27 18:21:55 +0000476 auto key_path = de_dir + "/" + entry->d_name;
477 KeyBuffer de_key;
liulvping69b04852022-10-10 19:16:23 +0800478 if (!retrieveKey(key_path, kEmptyAuthentication, &de_key)) {
479 // This is probably a partially removed user, so ignore
480 if (user_id != 0) continue;
481 return false;
482 }
Nikita Ioffef0550af2020-02-27 18:21:55 +0000483 EncryptionPolicy de_policy;
Eric Biggers4cf16912022-10-26 19:05:10 +0000484 if (!install_storage_key(DATA_MNT_POINT, s_data_options, de_key, &de_policy)) return false;
Nikita Ioffef0550af2020-02-27 18:21:55 +0000485 auto ret = s_de_policies.insert({user_id, de_policy});
486 if (!ret.second && ret.first->second != de_policy) {
487 LOG(ERROR) << "DE policy for user" << user_id << " changed";
488 return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000489 }
Nikita Ioffef0550af2020-02-27 18:21:55 +0000490 LOG(DEBUG) << "Installed de key for user " << user_id;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000491 }
Eric Biggersa701c452018-10-23 13:06:55 -0700492 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000493 // correct policy set on them, and that no rogue ones exist.
494 return true;
495}
496
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000497// Attempt to reinstall CE keys for users that we think are unlocked.
498static bool try_reload_ce_keys() {
499 for (const auto& it : s_ce_policies) {
500 if (!android::vold::reloadKeyFromSessionKeyring(DATA_MNT_POINT, it.second)) {
501 LOG(ERROR) << "Failed to load CE key from session keyring for user " << it.first;
502 return false;
503 }
504 }
505 return true;
506}
507
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700508bool fscrypt_initialize_systemwide_keys() {
509 LOG(INFO) << "fscrypt_initialize_systemwide_keys";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800510
Eric Biggers4cf16912022-10-26 19:05:10 +0000511 if (!init_data_file_encryption_options()) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800512
513 KeyBuffer device_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800514 if (!retrieveOrGenerateKey(device_key_path, device_key_temp, kEmptyAuthentication,
Eric Biggers4cf16912022-10-26 19:05:10 +0000515 makeGen(s_data_options), &device_key))
Paul Crowley77df7f22020-01-23 15:29:30 -0800516 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800517
Eric Biggers9ea53442022-05-11 05:33:25 +0000518 // This initializes s_device_policy, which is a global variable so that
519 // fscrypt_init_user0() can access it later.
Eric Biggers4cf16912022-10-26 19:05:10 +0000520 if (!install_storage_key(DATA_MNT_POINT, s_data_options, device_key, &s_device_policy))
521 return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700522
Paul Crowley5e53ff62019-10-24 14:55:17 -0700523 std::string options_string;
Eric Biggers9ea53442022-05-11 05:33:25 +0000524 if (!OptionsToString(s_device_policy.options, &options_string)) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700525 LOG(ERROR) << "Unable to serialize options";
526 return false;
527 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800528 std::string options_filename = std::string(DATA_MNT_POINT) + fscrypt_key_mode;
Eric Biggers83a73d72019-09-30 13:06:47 -0700529 if (!android::vold::writeStringToFile(options_string, options_filename)) return false;
Paul Lawrence6e410592016-05-24 14:20:38 -0700530
Paul Crowley77df7f22020-01-23 15:29:30 -0800531 std::string ref_filename = std::string(DATA_MNT_POINT) + fscrypt_key_ref;
Eric Biggers9ea53442022-05-11 05:33:25 +0000532 if (!android::vold::writeStringToFile(s_device_policy.key_raw_ref, ref_filename)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700533 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800534
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700535 KeyBuffer per_boot_key;
Eric Biggers4cf16912022-10-26 19:05:10 +0000536 if (!generateStorageKey(makeGen(s_data_options), &per_boot_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800537 EncryptionPolicy per_boot_policy;
Eric Biggers4cf16912022-10-26 19:05:10 +0000538 if (!install_storage_key(DATA_MNT_POINT, s_data_options, per_boot_key, &per_boot_policy))
539 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700540 std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref;
Paul Crowley77df7f22020-01-23 15:29:30 -0800541 if (!android::vold::writeStringToFile(per_boot_policy.key_raw_ref, per_boot_ref_filename))
542 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700543 LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename;
544
Paul Crowley76107cb2016-02-09 10:04:39 +0000545 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800546}
547
Eric Biggers9ea53442022-05-11 05:33:25 +0000548static bool prepare_special_dirs() {
Eric Biggersca9a97e2022-05-12 19:17:15 +0000549 // Ensure that /data/data and its "alias" /data/user/0 exist, and create the
550 // bind mount of /data/data onto /data/user/0. This *should* happen in
551 // fscrypt_prepare_user_storage(). However, it actually must be done early,
552 // before the rest of user 0's CE storage is prepared. This is because
553 // zygote may need to set up app data isolation before then, which requires
554 // mounting a tmpfs over /data/data to ensure it remains hidden. This issue
555 // arises due to /data/data being in the top-level directory.
556
Eric Biggers9ea53442022-05-11 05:33:25 +0000557 // /data/user/0 used to be a symlink to /data/data, so we must first delete
558 // the old symlink if present.
559 if (android::vold::IsSymlink(data_user_0_dir) && android::vold::Unlink(data_user_0_dir) != 0)
560 return false;
Eric Biggersca9a97e2022-05-12 19:17:15 +0000561 // On first boot, we'll be creating /data/data for the first time, and user
562 // 0's CE key will be installed already since it was just created. Take the
563 // opportunity to also set the encryption policy of /data/data right away.
564 EncryptionPolicy ce_policy;
565 if (lookup_policy(s_ce_policies, 0, &ce_policy)) {
Eric Biggers9544f8c2022-10-07 19:07:23 +0000566 if (!prepare_dir_with_policy(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy)) {
567 // Preparing /data/data failed, yet we had just generated a new CE
568 // key because one wasn't stored. Before erroring out, try deleting
569 // the directory and retrying, as it's possible that the directory
570 // exists with different CE policy from an interrupted first boot.
571 if (rmdir(data_data_dir.c_str()) != 0) {
572 PLOG(ERROR) << "rmdir " << data_data_dir << " failed";
573 }
574 if (!prepare_dir_with_policy(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy))
575 return false;
576 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000577 } else {
578 if (!prepare_dir(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
579 // EnsurePolicy() will have to happen later, in fscrypt_prepare_user_storage().
580 }
Eric Biggers9ea53442022-05-11 05:33:25 +0000581 if (!prepare_dir(data_user_0_dir, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
582 if (android::vold::BindMount(data_data_dir, data_user_0_dir) != 0) return false;
583
584 // If /data/media/obb doesn't exist, create it and encrypt it with the
585 // device policy. Normally, device-policy-encrypted directories are created
586 // and encrypted by init; /data/media/obb is special because it is located
587 // in /data/media. Since /data/media also contains per-user encrypted
588 // directories, by design only vold can write to it. As a side effect of
589 // that, vold must create /data/media/obb.
590 //
591 // We must tolerate /data/media/obb being unencrypted if it already exists
592 // on-disk, since it used to be unencrypted (b/64566063).
Eric Biggersca9a97e2022-05-12 19:17:15 +0000593 if (android::vold::pathExists(media_obb_dir)) {
594 if (!prepare_dir(media_obb_dir, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
595 } else {
596 if (!prepare_dir_with_policy(media_obb_dir, 0770, AID_MEDIA_RW, AID_MEDIA_RW,
597 s_device_policy))
598 return false;
599 }
Eric Biggers9ea53442022-05-11 05:33:25 +0000600 return true;
601}
602
Eric Biggersfb486662022-03-22 00:33:52 +0000603bool fscrypt_init_user0_done;
604
Eric Biggersa701c452018-10-23 13:06:55 -0700605bool fscrypt_init_user0() {
606 LOG(DEBUG) << "fscrypt_init_user0";
Eric Biggers9ea53442022-05-11 05:33:25 +0000607
Eric Biggersa6957c02022-06-15 18:52:18 +0000608 if (IsFbeEnabled()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000609 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
610 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
611 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Eric Biggersce50a432022-10-19 19:38:50 +0000612
613 // Create user 0's DE and CE keys if they don't already exist. Check
614 // each key independently, since if the first boot was interrupted it is
615 // possible that the DE key exists but the CE key does not.
616 if (!de_key_exists(0) && !create_de_key(0, false)) return false;
617 if (!ce_key_exists(0) && !create_ce_key(0, false)) return false;
618
Jeff Sharkey47695b22016-02-01 17:02:29 -0700619 // TODO: switch to loading only DE_0 here once framework makes
620 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000621 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000622 }
Eric Biggersca9a97e2022-05-12 19:17:15 +0000623
624 // Now that user 0's CE key has been created, we can prepare /data/data.
625 if (!prepare_special_dirs()) return false;
626
627 // With the exception of what is done by prepare_special_dirs() above, we
628 // only prepare DE storage here, since user 0's CE key won't be installed
Eric Biggers9ea53442022-05-11 05:33:25 +0000629 // yet unless it was just created. The framework will prepare the user's CE
630 // storage later, once their CE key is installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700631 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700632 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000633 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700634 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700635
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000636 // In some scenarios (e.g. userspace reboot) we might unmount userdata
637 // without doing a hard reboot. If CE keys were stored in fs keyring then
638 // they will be lost after unmount. Attempt to re-install them.
Eric Biggersa6957c02022-06-15 18:52:18 +0000639 if (IsFbeEnabled() && android::vold::isFsKeyringSupported()) {
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000640 if (!try_reload_ce_keys()) return false;
641 }
642
Eric Biggersfb486662022-03-22 00:33:52 +0000643 fscrypt_init_user0_done = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000644 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000645}
646
Eric Biggersa701c452018-10-23 13:06:55 -0700647bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
648 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
Eric Biggersa6957c02022-06-15 18:52:18 +0000649 if (!IsFbeEnabled()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000650 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000651 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000652 // FIXME test for existence of key that is not loaded yet
Paul Crowley77df7f22020-01-23 15:29:30 -0800653 if (s_ce_policies.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700654 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800655 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000656 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000657 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800658 }
Eric Biggersce50a432022-10-19 19:38:50 +0000659 if (!create_de_key(user_id, ephemeral)) return false;
660 if (!create_ce_key(user_id, ephemeral)) return false;
661 if (ephemeral) s_ephemeral_users.insert(user_id);
Paul Crowley76107cb2016-02-09 10:04:39 +0000662 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800663}
664
Eric Biggersce368682019-04-03 15:44:06 -0700665// "Lock" all encrypted directories whose key has been removed. This is needed
Eric Biggersf3dc4202019-09-30 13:05:58 -0700666// in the case where the keys are being put in the session keyring (rather in
667// the newer filesystem-level keyrings), because removing a key from the session
668// keyring doesn't affect inodes in the kernel's inode cache whose per-file key
669// was already set up. So to remove the per-file keys and make the files
670// "appear encrypted", these inodes must be evicted.
Eric Biggersce368682019-04-03 15:44:06 -0700671//
672// To do this, sync() to clean all dirty inodes, then drop all reclaimable slab
673// objects systemwide. This is overkill, but it's the best available method
674// currently. Don't use drop_caches mode "3" because that also evicts pagecache
675// for in-use files; all files relevant here are already closed and sync'ed.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700676static void drop_caches_if_needed() {
677 if (android::vold::isFsKeyringSupported()) {
678 return;
679 }
Pavel Grafovb350ed02017-07-27 17:34:57 +0100680 sync();
Eric Biggersce368682019-04-03 15:44:06 -0700681 if (!writeStringToFile("2", "/proc/sys/vm/drop_caches")) {
Pavel Grafovb350ed02017-07-27 17:34:57 +0100682 PLOG(ERROR) << "Failed to drop caches during key eviction";
683 }
684}
685
Andrew Scull7ec25c72016-10-31 10:28:25 +0000686static bool evict_ce_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000687 bool success = true;
Paul Crowley77df7f22020-01-23 15:29:30 -0800688 EncryptionPolicy policy;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000689 // If we haven't loaded the CE key, no need to evict it.
Paul Crowley77df7f22020-01-23 15:29:30 -0800690 if (lookup_policy(s_ce_policies, user_id, &policy)) {
691 success &= android::vold::evictKey(DATA_MNT_POINT, policy);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700692 drop_caches_if_needed();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000693 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800694 s_ce_policies.erase(user_id);
Eric Biggers8c1659e2022-09-06 21:29:14 +0000695 s_new_ce_keys.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000696 return success;
697}
698
Eric Biggersa701c452018-10-23 13:06:55 -0700699bool fscrypt_destroy_user_key(userid_t user_id) {
700 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
Eric Biggersa6957c02022-06-15 18:52:18 +0000701 if (!IsFbeEnabled()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000702 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000703 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000704 bool success = true;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000705 success &= evict_ce_key(user_id);
Paul Crowley77df7f22020-01-23 15:29:30 -0800706 EncryptionPolicy de_policy;
707 success &= lookup_policy(s_de_policies, user_id, &de_policy) &&
708 android::vold::evictKey(DATA_MNT_POINT, de_policy);
709 s_de_policies.erase(user_id);
Eric Biggers8c1659e2022-09-06 21:29:14 +0000710 if (!s_ephemeral_users.erase(user_id)) {
Eric Biggersd863b2c2021-05-27 17:29:10 -0700711 auto ce_path = get_ce_key_directory_path(user_id);
Eric Biggers8c1659e2022-09-06 21:29:14 +0000712 if (!s_new_ce_keys.erase(user_id)) {
713 for (auto const path : get_ce_key_paths(ce_path)) {
714 success &= android::vold::destroyKey(path);
715 }
Paul Crowleya3630362016-05-17 14:17:56 -0700716 }
Eric Biggersb615f3b2022-11-09 05:48:45 +0000717 s_deferred_fixations.erase(ce_path);
Eric Biggersd863b2c2021-05-27 17:29:10 -0700718 success &= destroy_dir(ce_path);
719
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700720 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700721 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700722 success &= android::vold::destroyKey(de_key_path);
723 } else {
724 LOG(INFO) << "Not present so not erasing: " << de_key_path;
725 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100726 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000727 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100728}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800729
Paul Crowley3b71fc52017-10-09 10:55:21 -0700730static bool parse_hex(const std::string& hex, std::string* result) {
731 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800732 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000733 return true;
734 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800735 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800736 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000737 return false;
738 }
739 return true;
740}
741
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700742static std::optional<android::vold::KeyAuthentication> authentication_from_hex(
Satya Tangiralae1361712021-03-15 15:33:08 -0700743 const std::string& secret_hex) {
744 std::string secret;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700745 if (!parse_hex(secret_hex, &secret)) return std::optional<android::vold::KeyAuthentication>();
746 if (secret.empty()) {
747 return kEmptyAuthentication;
748 } else {
Satya Tangiralae1361712021-03-15 15:33:08 -0700749 return android::vold::KeyAuthentication(secret);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700750 }
751}
752
Paul Crowley3aa914d2017-10-09 16:35:51 -0700753static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
754 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
755}
756
Paul Crowley26a53882017-10-26 11:16:39 -0700757static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
758 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
759}
760
Paul Crowley3aa914d2017-10-09 16:35:51 -0700761static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
Paul Crowley5e53ff62019-10-24 14:55:17 -0700762 EncryptionPolicy* policy) {
Paul Crowley26a53882017-10-26 11:16:39 -0700763 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
764 std::string secdiscardable_hash;
765 if (android::vold::pathExists(secdiscardable_path)) {
766 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
767 return false;
768 } else {
Eric Biggersfec0c0e2021-02-16 15:59:17 -0800769 if (!android::vold::MkdirsSync(secdiscardable_path, 0700)) return false;
Paul Crowley26a53882017-10-26 11:16:39 -0700770 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
771 return false;
772 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700773 auto key_path = volkey_path(misc_path, volume_uuid);
Eric Biggersfec0c0e2021-02-16 15:59:17 -0800774 if (!android::vold::MkdirsSync(key_path, 0700)) return false;
Satya Tangiralae1361712021-03-15 15:33:08 -0700775 android::vold::KeyAuthentication auth(secdiscardable_hash);
Eric Biggers83a73d72019-09-30 13:06:47 -0700776
Paul Crowley77df7f22020-01-23 15:29:30 -0800777 EncryptionOptions options;
778 if (!get_volume_file_encryption_options(&options)) return false;
779 KeyBuffer key;
Eric Biggersf74373b2020-11-05 19:58:26 -0800780 if (!retrieveOrGenerateKey(key_path, key_path + "_tmp", auth, makeGen(options), &key))
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800781 return false;
782 if (!install_storage_key(BuildDataPath(volume_uuid), options, key, policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800783 return true;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700784}
785
786static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700787 auto path = volkey_path(misc_path, volume_uuid);
788 if (!android::vold::pathExists(path)) return true;
789 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700790}
791
Eric Biggersce50a432022-10-19 19:38:50 +0000792// (Re-)encrypts the user's CE key with the given secret. This function handles
793// storing the CE key for a new user for the first time. It also handles
794// re-encrypting the CE key upon upgrade from an Android version where the CE
795// key was stored with kEmptyAuthentication when the user didn't have an LSKF.
796// See the comments below for the different cases handled.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000797bool fscrypt_set_user_key_protection(userid_t user_id, const std::string& secret_hex) {
798 LOG(DEBUG) << "fscrypt_set_user_key_protection " << user_id;
799 if (!IsFbeEnabled()) return true;
800 auto auth = authentication_from_hex(secret_hex);
801 if (!auth) return false;
802 if (auth->secret.empty()) {
803 LOG(ERROR) << "fscrypt_set_user_key_protection: secret must be nonempty";
804 return false;
805 }
Eric Biggersce50a432022-10-19 19:38:50 +0000806 // We shouldn't store any keys for ephemeral users.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000807 if (s_ephemeral_users.count(user_id) != 0) {
808 LOG(DEBUG) << "Not storing key because user is ephemeral";
809 return true;
810 }
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700811 KeyBuffer ce_key;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000812 auto it = s_new_ce_keys.find(user_id);
813 if (it != s_new_ce_keys.end()) {
Eric Biggersce50a432022-10-19 19:38:50 +0000814 // If the key exists in s_new_ce_keys, then the key is a
815 // not-yet-committed key for a new user, and we are committing it here.
816 // This happens when the user's synthetic password is created.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000817 ce_key = it->second;
Eric Biggersce50a432022-10-19 19:38:50 +0000818 } else if (ce_key_exists(user_id)) {
819 // If the key doesn't exist in s_new_ce_keys but does exist on-disk,
820 // then we are setting the protection on an existing key. This happens
821 // at upgrade time, when CE keys that were previously protected by
Eric Biggers8c1659e2022-09-06 21:29:14 +0000822 // kEmptyAuthentication are encrypted by the user's synthetic password.
Eric Biggersce50a432022-10-19 19:38:50 +0000823 LOG(DEBUG) << "CE key already exists on-disk; re-protecting it with the given secret";
Eric Biggers8c1659e2022-09-06 21:29:14 +0000824 if (!read_and_fixate_user_ce_key(user_id, kEmptyAuthentication, &ce_key)) {
Eric Biggersce50a432022-10-19 19:38:50 +0000825 LOG(ERROR) << "Failed to retrieve CE key for user " << user_id << " using empty auth";
Eric Biggers8c1659e2022-09-06 21:29:14 +0000826 // Before failing, also check whether the key is already protected
827 // with the given secret. This isn't expected, but in theory it
828 // could happen if an upgrade is requested for a user more than once
829 // due to a power-off or other interruption.
830 if (read_and_fixate_user_ce_key(user_id, *auth, &ce_key)) {
Eric Biggersce50a432022-10-19 19:38:50 +0000831 LOG(WARNING) << "CE key is already protected by given secret";
Eric Biggers8c1659e2022-09-06 21:29:14 +0000832 return true;
833 }
Eric Biggersce50a432022-10-19 19:38:50 +0000834 // The key isn't protected by either kEmptyAuthentication or by
835 // |auth|. This should never happen, and there's nothing we can do
836 // besides return an error.
Eric Biggers8c1659e2022-09-06 21:29:14 +0000837 return false;
838 }
Eric Biggersce50a432022-10-19 19:38:50 +0000839 } else {
840 // If the key doesn't exist in memory or on-disk, then we need to
841 // generate it here, then commit it to disk. This is needed after the
842 // unusual case where a non-system user was created during early boot,
843 // and then the device was force-rebooted before the boot completed. In
844 // that case, the Android user record was committed but the CE key was
845 // not. So the CE key was lost, and we need to regenerate it. This
846 // should be fine, since the key should not have been used yet.
847 LOG(WARNING) << "CE key not found! Regenerating it";
848 if (!create_ce_key(user_id, false)) return false;
849 ce_key = s_new_ce_keys.find(user_id)->second;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700850 }
Eric Biggersce50a432022-10-19 19:38:50 +0000851
852 auto const directory_path = get_ce_key_directory_path(user_id);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700853 auto const paths = get_ce_key_paths(directory_path);
854 std::string ce_key_path;
855 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Eric Biggers8c1659e2022-09-06 21:29:14 +0000856 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, *auth, ce_key)) return false;
Eric Biggersb615f3b2022-11-09 05:48:45 +0000857
858 // Fixate the key, i.e. delete all other bindings of it. (In practice this
859 // just means the kEmptyAuthentication binding, if there is one.) However,
860 // if a userdata filesystem checkpoint is pending, then we need to delay the
861 // fixation until the checkpoint has been committed, since deleting keys
862 // from Keystore cannot be rolled back.
863 if (android::vold::cp_needsCheckpoint()) {
864 LOG(INFO) << "Deferring fixation of " << directory_path << " until checkpoint is committed";
865 s_deferred_fixations[directory_path] = ce_key_path;
866 } else {
867 s_deferred_fixations.erase(directory_path);
868 if (!fixate_user_ce_key(directory_path, ce_key_path, paths)) return false;
869 }
870
Eric Biggers8c1659e2022-09-06 21:29:14 +0000871 if (s_new_ce_keys.erase(user_id)) {
872 LOG(INFO) << "Stored CE key for new user " << user_id;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000873 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000874 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000875}
876
Eric Biggersb615f3b2022-11-09 05:48:45 +0000877void fscrypt_deferred_fixate_ce_keys() {
878 for (const auto& it : s_deferred_fixations) {
879 const auto& directory_path = it.first;
880 const auto& to_fix = it.second;
881 LOG(INFO) << "Doing deferred fixation of " << directory_path;
882 fixate_user_ce_key(directory_path, to_fix, get_ce_key_paths(directory_path));
883 // Continue on error.
884 }
885 s_deferred_fixations.clear();
886}
887
Eric Biggers18ba1522021-04-06 12:02:56 -0700888std::vector<int> fscrypt_get_unlocked_users() {
889 std::vector<int> user_ids;
890 for (const auto& it : s_ce_policies) {
891 user_ids.push_back(it.first);
892 }
893 return user_ids;
894}
895
Jeff Sharkey47695b22016-02-01 17:02:29 -0700896// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Satya Tangiralae1361712021-03-15 15:33:08 -0700897bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& secret_hex) {
898 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial;
Eric Biggersa6957c02022-06-15 18:52:18 +0000899 if (IsFbeEnabled()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800900 if (s_ce_policies.count(user_id) != 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000901 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000902 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000903 }
Satya Tangiralae1361712021-03-15 15:33:08 -0700904 auto auth = authentication_from_hex(secret_hex);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700905 if (!auth) return false;
906 if (!read_and_install_user_ce_key(user_id, *auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000907 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000908 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800909 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800910 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000911 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800912}
913
Jeff Sharkey47695b22016-02-01 17:02:29 -0700914// TODO: rename to 'evict' for consistency
Eric Biggersa701c452018-10-23 13:06:55 -0700915bool fscrypt_lock_user_key(userid_t user_id) {
916 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
Eric Biggersa6957c02022-06-15 18:52:18 +0000917 if (IsFbeEnabled()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000918 return evict_ce_key(user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800919 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000920 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800921}
922
Paul Crowley82b41ff2017-10-20 08:17:54 -0700923static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
924 userid_t user_id, int flags) {
925 if (0 != android::vold::ForkExecvp(
926 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
927 std::to_string(user_id), std::to_string(flags)})) {
928 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700929 return false;
930 }
931 return true;
932}
933
Eric Biggersa701c452018-10-23 13:06:55 -0700934bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700935 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700936 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800937 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700938
Eric Biggersc66c2e32022-05-04 04:39:50 +0000939 // Internal storage must be prepared before adoptable storage, since the
940 // user's volume keys are stored in their internal storage.
941 if (!volume_uuid.empty()) {
942 if ((flags & android::os::IVold::STORAGE_FLAG_DE) &&
943 !android::vold::pathExists(android::vold::BuildDataMiscDePath("", user_id))) {
944 LOG(ERROR) << "Cannot prepare DE storage for user " << user_id << " on volume "
945 << volume_uuid << " before internal storage";
946 return false;
947 }
948 if ((flags & android::os::IVold::STORAGE_FLAG_CE) &&
949 !android::vold::pathExists(android::vold::BuildDataMiscCePath("", user_id))) {
950 LOG(ERROR) << "Cannot prepare CE storage for user " << user_id << " on volume "
951 << volume_uuid << " before internal storage";
952 return false;
953 }
954 }
955
Paul Crowley82b41ff2017-10-20 08:17:54 -0700956 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600957 // DE_sys key
958 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
959 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
960 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600961
962 // DE_n key
Eric Biggersca9a97e2022-05-12 19:17:15 +0000963 EncryptionPolicy de_policy;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700964 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000965 auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800966 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700967 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
968
Eric Biggersa6957c02022-06-15 18:52:18 +0000969 if (IsFbeEnabled()) {
Eric Biggersca9a97e2022-05-12 19:17:15 +0000970 if (volume_uuid.empty()) {
971 if (!lookup_policy(s_de_policies, user_id, &de_policy)) {
972 LOG(ERROR) << "Cannot find DE policy for user " << user_id;
973 return false;
974 }
975 } else {
976 auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id);
977 if (!read_or_create_volkey(misc_de_empty_volume_path, volume_uuid, &de_policy)) {
978 return false;
979 }
980 }
981 }
982
Paul Crowley3b71fc52017-10-09 10:55:21 -0700983 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700984 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600985#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700986 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700987 multiuser_get_uid(user_id, AID_EVERYBODY)))
988 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600989#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700990 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600991
Eric Biggersca9a97e2022-05-12 19:17:15 +0000992 if (!prepare_dir_with_policy(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM, de_policy))
993 return false;
994 if (!prepare_dir_with_policy(vendor_de_path, 0771, AID_ROOT, AID_ROOT, de_policy))
995 return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700996 }
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000997
Eric Biggersca9a97e2022-05-12 19:17:15 +0000998 if (!prepare_dir_with_policy(misc_de_path, 01771, AID_SYSTEM, AID_MISC, de_policy))
999 return false;
1000 if (!prepare_dir_with_policy(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM, de_policy))
1001 return false;
Paul Crowley285956f2016-01-20 13:12:38 +00001002 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001003
Paul Crowley82b41ff2017-10-20 08:17:54 -07001004 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001005 // CE_n key
Eric Biggersca9a97e2022-05-12 19:17:15 +00001006 EncryptionPolicy ce_policy;
Jeff Sharkey47695b22016-02-01 17:02:29 -07001007 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001008 auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001009 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001010 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
1011 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001012
Eric Biggersa6957c02022-06-15 18:52:18 +00001013 if (IsFbeEnabled()) {
Eric Biggersca9a97e2022-05-12 19:17:15 +00001014 if (volume_uuid.empty()) {
1015 if (!lookup_policy(s_ce_policies, user_id, &ce_policy)) {
1016 LOG(ERROR) << "Cannot find CE policy for user " << user_id;
1017 return false;
1018 }
1019 } else {
1020 auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id);
1021 if (!read_or_create_volkey(misc_ce_empty_volume_path, volume_uuid, &ce_policy)) {
1022 return false;
1023 }
1024 }
Paul Crowley6b756ce2017-10-05 14:07:09 -07001025 }
Eric Biggersca9a97e2022-05-12 19:17:15 +00001026
1027 if (volume_uuid.empty()) {
1028 if (!prepare_dir_with_policy(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM, ce_policy))
1029 return false;
1030 if (!prepare_dir_with_policy(vendor_ce_path, 0771, AID_ROOT, AID_ROOT, ce_policy))
1031 return false;
1032 }
1033 if (!prepare_dir_with_policy(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW, ce_policy))
1034 return false;
Martijn Coenen5adf92a2021-02-01 07:57:02 +00001035 // On devices without sdcardfs (kernel 5.4+), the path permissions aren't fixed
1036 // up automatically; therefore, use a default ACL, to ensure apps with MEDIA_RW
1037 // can keep reading external storage; in particular, this allows app cloning
1038 // scenarios to work correctly on such devices.
1039 int ret = SetDefaultAcl(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW, {AID_MEDIA_RW});
1040 if (ret != android::OK) {
1041 return false;
1042 }
Eric Biggersca9a97e2022-05-12 19:17:15 +00001043 if (!prepare_dir_with_policy(misc_ce_path, 01771, AID_SYSTEM, AID_MISC, ce_policy))
1044 return false;
1045 if (!prepare_dir_with_policy(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy))
1046 return false;
Paul Crowley1a965262017-10-13 13:49:50 -07001047
1048 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -07001049 // Now that credentials have been installed, we can run restorecon
1050 // over these paths
1051 // NOTE: these paths need to be kept in sync with libselinux
1052 android::vold::RestoreconRecursive(system_ce_path);
Nick Kralevich6a3ef482019-05-14 09:30:29 -07001053 android::vold::RestoreconRecursive(vendor_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -07001054 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -07001055 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001056 }
Paul Crowley82b41ff2017-10-20 08:17:54 -07001057 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001058
Paul Crowley76107cb2016-02-09 10:04:39 +00001059 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001060}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001061
Eric Biggersa701c452018-10-23 13:06:55 -07001062bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
1063 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001064 << ", user " << user_id << ", flags " << flags;
1065 bool res = true;
1066
Paul Crowley82b41ff2017-10-20 08:17:54 -07001067 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
1068
1069 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -07001070 // CE_n key
1071 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001072 auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001073 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -07001074 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
1075 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
1076
1077 res &= destroy_dir(media_ce_path);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001078 res &= destroy_dir(misc_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -07001079 res &= destroy_dir(user_ce_path);
1080 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -07001081 res &= destroy_dir(system_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001082 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001083 } else {
Eric Biggersa6957c02022-06-15 18:52:18 +00001084 if (IsFbeEnabled()) {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001085 auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id);
1086 res &= destroy_volkey(misc_ce_empty_volume_path, volume_uuid);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001087 }
Paul Crowley8e550662017-10-16 17:01:44 -07001088 }
1089 }
1090
Paul Crowley82b41ff2017-10-20 08:17:54 -07001091 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001092 // DE_sys key
1093 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
1094 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
1095 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001096
1097 // DE_n key
1098 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001099 auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001100 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001101 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
1102
Paul Crowley8e550662017-10-16 17:01:44 -07001103 res &= destroy_dir(user_de_path);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001104 res &= destroy_dir(misc_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -07001105 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001106 res &= destroy_dir(system_legacy_path);
1107#if MANAGE_MISC_DIRS
1108 res &= destroy_dir(misc_legacy_path);
1109#endif
1110 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001111 res &= destroy_dir(system_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001112 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001113 } else {
Eric Biggersa6957c02022-06-15 18:52:18 +00001114 if (IsFbeEnabled()) {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001115 auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id);
1116 res &= destroy_volkey(misc_de_empty_volume_path, volume_uuid);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001117 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001118 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001119 }
1120
1121 return res;
1122}
Rubin Xu2436e272017-04-27 20:43:10 +01001123
Paul Crowleyc6433a22017-10-24 14:54:43 -07001124static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
1125 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
1126 if (!dirp) {
1127 PLOG(ERROR) << "Unable to open directory: " + directory_path;
1128 return false;
1129 }
1130 bool res = true;
1131 for (;;) {
1132 errno = 0;
1133 auto const entry = readdir(dirp.get());
1134 if (!entry) {
1135 if (errno) {
1136 PLOG(ERROR) << "Unable to read directory: " + directory_path;
1137 return false;
1138 }
1139 break;
1140 }
Eric Biggers6b840392020-11-02 15:11:06 -08001141 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleyc6433a22017-10-24 14:54:43 -07001142 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
1143 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
1144 continue;
1145 }
1146 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
1147 }
1148 return res;
1149}
1150
Eric Biggersa701c452018-10-23 13:06:55 -07001151bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -07001152 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -07001153 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -07001154 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
1155 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -07001156 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
1157 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
1158 return res;
1159}