blob: 7a5178d354bc8441b3f5bf0d19f65c8ce189c054 [file] [log] [blame]
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Eric Biggersa701c452018-10-23 13:06:55 -070017#include "FsCrypt.h"
Paul Lawrence731a7a22015-04-28 22:14:15 +000018
Paul Crowley1ef25582016-01-21 20:26:12 +000019#include "KeyStorage.h"
Paul Crowleyf71ace32016-06-02 11:01:19 -070020#include "KeyUtil.h"
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080021#include "Utils.h"
Paul Crowleya7ca40b2017-10-06 14:29:33 -070022#include "VoldUtil.h"
23
Paul Crowleya3630362016-05-17 14:17:56 -070024#include <algorithm>
Paul Lawrence731a7a22015-04-28 22:14:15 +000025#include <map>
Barani Muthukumaranb1927c22019-10-31 22:59:34 -070026#include <optional>
Paul Crowleyb1f3d242016-01-28 10:09:46 +000027#include <set>
Paul Lawrencefd7db732015-04-10 07:48:51 -070028#include <sstream>
Paul Crowleydf528a72016-03-09 09:31:37 -080029#include <string>
Paul Crowleyf71ace32016-06-02 11:01:19 -070030#include <vector>
Paul Lawrence731a7a22015-04-28 22:14:15 +000031
Paul Crowleydf528a72016-03-09 09:31:37 -080032#include <dirent.h>
33#include <errno.h>
34#include <fcntl.h>
Paul Crowleya3630362016-05-17 14:17:56 -070035#include <limits.h>
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070036#include <selinux/android.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080037#include <sys/mount.h>
38#include <sys/stat.h>
39#include <sys/types.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070040#include <unistd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000041
Paul Crowley480fcd22015-08-24 14:53:28 +010042#include <private/android_filesystem_config.h>
Martijn Coenenaee40512020-02-18 16:29:25 +010043#include <private/android_projectid_config.h>
Paul Crowley480fcd22015-08-24 14:53:28 +010044
Paul Crowley82b41ff2017-10-20 08:17:54 -070045#include "android/os/IVold.h"
46
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070047#define EMULATED_USES_SELINUX 0
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -060048#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070049
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080050#include <cutils/fs.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070051#include <cutils/properties.h>
52
Eric Biggersa701c452018-10-23 13:06:55 -070053#include <fscrypt/fscrypt.h>
Elliott Hughesc3bda182017-05-09 17:01:04 -070054#include <keyutils.h>
Eric Biggerseb566d02020-07-06 13:46:38 -070055#include <libdm/dm.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080056
Elliott Hughes7e128fb2015-12-04 15:50:53 -080057#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080058#include <android-base/logging.h>
Paul Crowley3aa914d2017-10-09 16:35:51 -070059#include <android-base/properties.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080060#include <android-base/stringprintf.h>
Eric Biggers83a73d72019-09-30 13:06:47 -070061#include <android-base/strings.h>
Jieb6698d52018-11-12 15:26:02 +080062#include <android-base/unique_fd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000063
Eric Biggerseb566d02020-07-06 13:46:38 -070064using android::base::Basename;
65using android::base::Realpath;
66using android::base::StartsWith;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080067using android::base::StringPrintf;
Tom Cherry4c5bde22019-01-29 14:34:01 -080068using android::fs_mgr::GetEntryForMountPoint;
Paul Crowley77df7f22020-01-23 15:29:30 -080069using android::vold::BuildDataPath;
Eric Biggers6b840392020-11-02 15:11:06 -080070using android::vold::IsDotOrDotDot;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +010071using android::vold::IsFilesystemSupported;
Paul Crowley05720802016-02-08 15:55:41 +000072using android::vold::kEmptyAuthentication;
Pavel Grafove2e2d302017-08-01 17:15:53 +010073using android::vold::KeyBuffer;
Paul Crowley249c2fb2020-02-07 12:51:56 -080074using android::vold::KeyGeneration;
Paul Crowley4eac2642020-02-12 11:04:05 -080075using android::vold::retrieveKey;
76using android::vold::retrieveOrGenerateKey;
Martijn Coenen5adf92a2021-02-01 07:57:02 +000077using android::vold::SetDefaultAcl;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +010078using android::vold::SetQuotaInherit;
79using android::vold::SetQuotaProjectId;
Tommy Chiua98464f2019-03-26 14:14:19 +080080using android::vold::writeStringToFile;
Paul Crowley5e53ff62019-10-24 14:55:17 -070081using namespace android::fscrypt;
Eric Biggerseb566d02020-07-06 13:46:38 -070082using namespace android::dm;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080083
Paul Lawrence731a7a22015-04-28 22:14:15 +000084namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000085
Eric Biggersa701c452018-10-23 13:06:55 -070086const std::string device_key_dir = std::string() + DATA_MNT_POINT + fscrypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080087const std::string device_key_path = device_key_dir + "/key";
88const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080089
Paul Crowleydf528a72016-03-09 09:31:37 -080090const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
91const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley82b41ff2017-10-20 08:17:54 -070092const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs";
Paul Crowley285956f2016-01-20 13:12:38 +000093
Paul Crowley26a53882017-10-26 11:16:39 -070094const std::string systemwide_volume_key_dir =
95 std::string() + DATA_MNT_POINT + "/misc/vold/volume_keys";
96
Eric Biggers9ea53442022-05-11 05:33:25 +000097const std::string data_data_dir = std::string() + DATA_MNT_POINT + "/data";
98const std::string data_user_0_dir = std::string() + DATA_MNT_POINT + "/user/0";
99const std::string media_obb_dir = std::string() + DATA_MNT_POINT + "/media/obb";
100
Paul Crowleydf528a72016-03-09 09:31:37 -0800101// Some users are ephemeral, don't try to wipe their keys from disk
102std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800103
Eric Biggers9ea53442022-05-11 05:33:25 +0000104// The system DE encryption policy
105EncryptionPolicy s_device_policy;
106
Paul Crowley77df7f22020-01-23 15:29:30 -0800107// Map user ids to encryption policies
108std::map<userid_t, EncryptionPolicy> s_de_policies;
109std::map<userid_t, EncryptionPolicy> s_ce_policies;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000110
Paul Crowley14c8c072018-09-18 13:30:21 -0700111} // namespace
Paul Lawrence731a7a22015-04-28 22:14:15 +0000112
Paul Crowley249c2fb2020-02-07 12:51:56 -0800113// Returns KeyGeneration suitable for key as described in EncryptionOptions
114static KeyGeneration makeGen(const EncryptionOptions& options) {
115 return KeyGeneration{FSCRYPT_MAX_KEY_SIZE, true, options.use_hw_wrapped_key};
116}
117
Eric Biggersa701c452018-10-23 13:06:55 -0700118static bool fscrypt_is_emulated() {
Paul Crowley38132a12016-02-09 09:50:32 +0000119 return property_get_bool("persist.sys.emulate_fbe", false);
120}
121
Paul Crowley3b71fc52017-10-09 10:55:21 -0700122static const char* escape_empty(const std::string& value) {
123 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000124}
125
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000126static std::string get_de_key_path(userid_t user_id) {
127 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
128}
129
Paul Crowleya3630362016-05-17 14:17:56 -0700130static std::string get_ce_key_directory_path(userid_t user_id) {
131 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
132}
133
134// Returns the keys newest first
135static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
136 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
137 if (!dirp) {
138 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
139 return std::vector<std::string>();
140 }
141 std::vector<std::string> result;
142 for (;;) {
143 errno = 0;
144 auto const entry = readdir(dirp.get());
145 if (!entry) {
146 if (errno) {
147 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
148 return std::vector<std::string>();
149 }
150 break;
151 }
Eric Biggers6b840392020-11-02 15:11:06 -0800152 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleya3630362016-05-17 14:17:56 -0700153 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
154 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
155 continue;
156 }
157 result.emplace_back(directory_path + "/" + entry->d_name);
158 }
159 std::sort(result.begin(), result.end());
160 std::reverse(result.begin(), result.end());
161 return result;
162}
163
164static std::string get_ce_key_current_path(const std::string& directory_path) {
165 return directory_path + "/current";
166}
167
168static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700169 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700170 if (paths.empty()) {
171 *ce_key_path = get_ce_key_current_path(directory_path);
172 return true;
173 }
174 for (unsigned int i = 0; i < UINT_MAX; i++) {
175 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
176 if (paths[0] < candidate) {
177 *ce_key_path = candidate;
178 return true;
179 }
180 }
181 return false;
182}
183
184// Discard all keys but the named one; rename it to canonical name.
185// No point in acting on errors in this; ignore them.
Paul Crowley14c8c072018-09-18 13:30:21 -0700186static void fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700187 const std::vector<std::string>& paths) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700188 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700189 if (other_path != to_fix) {
190 android::vold::destroyKey(other_path);
191 }
192 }
193 auto const current_path = get_ce_key_current_path(directory_path);
194 if (to_fix != current_path) {
195 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
Satya Tangirala0f890a92021-06-08 12:55:24 -0700196 if (!android::vold::RenameKeyDir(to_fix, current_path)) return;
Paul Crowleya3630362016-05-17 14:17:56 -0700197 }
Paul Crowley621d9b92018-12-07 15:36:09 -0800198 android::vold::FsyncDirectory(directory_path);
Paul Crowleya3630362016-05-17 14:17:56 -0700199}
200
201static bool read_and_fixate_user_ce_key(userid_t user_id,
202 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700203 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700204 auto const directory_path = get_ce_key_directory_path(user_id);
205 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700206 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700207 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
Eric Biggersf74373b2020-11-05 19:58:26 -0800208 if (retrieveKey(ce_key_path, auth, ce_key)) {
Paul Crowleya3630362016-05-17 14:17:56 -0700209 LOG(DEBUG) << "Successfully retrieved key";
210 fixate_user_ce_key(directory_path, ce_key_path, paths);
211 return true;
212 }
213 }
214 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
215 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100216}
217
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800218static bool MightBeEmmcStorage(const std::string& blk_device) {
Eric Biggerseb566d02020-07-06 13:46:38 -0700219 // Handle symlinks.
220 std::string real_path;
221 if (!Realpath(blk_device, &real_path)) {
222 real_path = blk_device;
223 }
224
225 // Handle logical volumes.
226 auto& dm = DeviceMapper::Instance();
227 for (;;) {
228 auto parent = dm.GetParentBlockDeviceByPath(real_path);
229 if (!parent.has_value()) break;
230 real_path = *parent;
231 }
232
233 // Now we should have the "real" block device.
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800234 LOG(DEBUG) << "MightBeEmmcStorage(): blk_device = " << blk_device
235 << ", real_path=" << real_path;
236 std::string name = Basename(real_path);
237 return StartsWith(name, "mmcblk") ||
238 // virtio devices may provide inline encryption support that is
239 // backed by eMMC inline encryption on the host, thus inheriting the
240 // DUN size limitation. So virtio devices must be allowed here too.
241 // TODO(b/207390665): check the maximum DUN size directly instead.
242 StartsWith(name, "vd");
Eric Biggerseb566d02020-07-06 13:46:38 -0700243}
244
Eric Biggers83a73d72019-09-30 13:06:47 -0700245// Retrieve the options to use for encryption policies on the /data filesystem.
Paul Crowley77df7f22020-01-23 15:29:30 -0800246static bool get_data_file_encryption_options(EncryptionOptions* options) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700247 auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT);
248 if (entry == nullptr) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800249 LOG(ERROR) << "No mount point entry for " << DATA_MNT_POINT;
250 return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700251 }
Paul Crowleya50f6c32019-10-24 23:21:44 -0700252 if (!ParseOptions(entry->encryption_options, options)) {
253 LOG(ERROR) << "Unable to parse encryption options for " << DATA_MNT_POINT ": "
254 << entry->encryption_options;
Paul Crowley77df7f22020-01-23 15:29:30 -0800255 return false;
Paul Crowleya50f6c32019-10-24 23:21:44 -0700256 }
Eric Biggerseb566d02020-07-06 13:46:38 -0700257 if ((options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) &&
Eric Biggersf9c6dfa2021-11-22 11:15:23 -0800258 !MightBeEmmcStorage(entry->blk_device)) {
Eric Biggerseb566d02020-07-06 13:46:38 -0700259 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
260 "this flag from the device's fstab";
261 return false;
262 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800263 return true;
Eric Biggers83a73d72019-09-30 13:06:47 -0700264}
265
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800266static bool install_storage_key(const std::string& mountpoint, const EncryptionOptions& options,
267 const KeyBuffer& key, EncryptionPolicy* policy) {
268 KeyBuffer ephemeral_wrapped_key;
269 if (options.use_hw_wrapped_key) {
270 if (!exportWrappedStorageKey(key, &ephemeral_wrapped_key)) {
271 LOG(ERROR) << "Failed to get ephemeral wrapped key";
272 return false;
273 }
274 }
275 return installKey(mountpoint, options, options.use_hw_wrapped_key ? ephemeral_wrapped_key : key,
276 policy);
277}
278
Eric Biggers83a73d72019-09-30 13:06:47 -0700279// Retrieve the options to use for encryption policies on adoptable storage.
Paul Crowley5e53ff62019-10-24 14:55:17 -0700280static bool get_volume_file_encryption_options(EncryptionOptions* options) {
Paul Crowleyeb241a12020-02-18 10:10:08 -0800281 // If we give the empty string, libfscrypt will use the default (currently XTS)
282 auto contents_mode = android::base::GetProperty("ro.crypto.volume.contents_mode", "");
283 // HEH as default was always a mistake. Use the libfscrypt default (CTS)
284 // for devices launching on versions above Android 10.
285 auto first_api_level = GetFirstApiLevel();
Paul Crowleyf612b8b2019-10-24 22:52:02 -0700286 auto filenames_mode =
Paul Crowleyeb241a12020-02-18 10:10:08 -0800287 android::base::GetProperty("ro.crypto.volume.filenames_mode",
Eric Biggers72d07132020-08-10 10:55:56 -0700288 first_api_level > __ANDROID_API_Q__ ? "" : "aes-256-heh");
Paul Crowley77df7f22020-01-23 15:29:30 -0800289 auto options_string = android::base::GetProperty("ro.crypto.volume.options",
Paul Crowleyeb241a12020-02-18 10:10:08 -0800290 contents_mode + ":" + filenames_mode);
291 if (!ParseOptionsForApiLevel(first_api_level, options_string, options)) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800292 LOG(ERROR) << "Unable to parse volume encryption options: " << options_string;
293 return false;
294 }
Eric Biggerseb566d02020-07-06 13:46:38 -0700295 if (options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) {
296 LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove "
297 "this flag from ro.crypto.volume.options";
298 return false;
299 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800300 return true;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700301}
302
Paul Crowleydf528a72016-03-09 09:31:37 -0800303static bool read_and_install_user_ce_key(userid_t user_id,
304 const android::vold::KeyAuthentication& auth) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800305 if (s_ce_policies.count(user_id) != 0) return true;
306 EncryptionOptions options;
307 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100308 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700309 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800310 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800311 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800312 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000313 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000314 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000315}
316
Paul Crowleydf528a72016-03-09 09:31:37 -0800317static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000318 LOG(DEBUG) << "Preparing: " << dir;
Eric Biggers39704e72022-05-04 22:17:54 +0000319 if (android::vold::PrepareDir(dir, mode, uid, gid, 0) != 0) {
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000320 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000321 return false;
322 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000323 return true;
324}
325
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600326static bool destroy_dir(const std::string& dir) {
327 LOG(DEBUG) << "Destroying: " << dir;
328 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
329 PLOG(ERROR) << "Failed to destroy " << dir;
330 return false;
331 }
332 return true;
333}
334
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000335// NB this assumes that there is only one thread listening for crypt commands, because
336// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000337static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800338 EncryptionOptions options;
339 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100340 KeyBuffer de_key, ce_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800341 if (!generateStorageKey(makeGen(options), &de_key)) return false;
342 if (!generateStorageKey(makeGen(options), &ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000343 if (create_ephemeral) {
344 // If the key should be created as ephemeral, don't store it.
345 s_ephemeral_users.insert(user_id);
346 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700347 auto const directory_path = get_ce_key_directory_path(user_id);
348 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
349 auto const paths = get_ce_key_paths(directory_path);
350 std::string ce_key_path;
351 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700352 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, kEmptyAuthentication,
353 ce_key))
354 return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700355 fixate_user_ce_key(directory_path, ce_key_path, paths);
356 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700357 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley14c8c072018-09-18 13:30:21 -0700358 kEmptyAuthentication, de_key))
359 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100360 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800361 EncryptionPolicy de_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800362 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800363 s_de_policies[user_id] = de_policy;
364 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800365 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800366 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000367 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000368 return true;
369}
370
Paul Crowley77df7f22020-01-23 15:29:30 -0800371static bool lookup_policy(const std::map<userid_t, EncryptionPolicy>& key_map, userid_t user_id,
372 EncryptionPolicy* policy) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000373 auto refi = key_map.find(user_id);
374 if (refi == key_map.end()) {
Eric Biggersd1034042019-04-02 10:38:15 -0700375 LOG(DEBUG) << "Cannot find key for " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000376 return false;
377 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800378 *policy = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000379 return true;
380}
381
Paul Crowleydf528a72016-03-09 09:31:37 -0800382static bool is_numeric(const char* name) {
383 for (const char* p = name; *p != '\0'; p++) {
384 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000385 }
386 return true;
387}
388
389static bool load_all_de_keys() {
Paul Crowley77df7f22020-01-23 15:29:30 -0800390 EncryptionOptions options;
391 if (!get_data_file_encryption_options(&options)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000392 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800393 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000394 if (!dirp) {
395 PLOG(ERROR) << "Unable to read de key directory";
396 return false;
397 }
398 for (;;) {
399 errno = 0;
400 auto entry = readdir(dirp.get());
401 if (!entry) {
402 if (errno) {
403 PLOG(ERROR) << "Unable to read de key directory";
404 return false;
405 }
406 break;
407 }
Eric Biggers6b840392020-11-02 15:11:06 -0800408 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000409 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
410 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
411 continue;
412 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600413 userid_t user_id = std::stoi(entry->d_name);
Nikita Ioffef0550af2020-02-27 18:21:55 +0000414 auto key_path = de_dir + "/" + entry->d_name;
415 KeyBuffer de_key;
Eric Biggersf74373b2020-11-05 19:58:26 -0800416 if (!retrieveKey(key_path, kEmptyAuthentication, &de_key)) return false;
Nikita Ioffef0550af2020-02-27 18:21:55 +0000417 EncryptionPolicy de_policy;
418 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
419 auto ret = s_de_policies.insert({user_id, de_policy});
420 if (!ret.second && ret.first->second != de_policy) {
421 LOG(ERROR) << "DE policy for user" << user_id << " changed";
422 return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000423 }
Nikita Ioffef0550af2020-02-27 18:21:55 +0000424 LOG(DEBUG) << "Installed de key for user " << user_id;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000425 }
Eric Biggersa701c452018-10-23 13:06:55 -0700426 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000427 // correct policy set on them, and that no rogue ones exist.
428 return true;
429}
430
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000431// Attempt to reinstall CE keys for users that we think are unlocked.
432static bool try_reload_ce_keys() {
433 for (const auto& it : s_ce_policies) {
434 if (!android::vold::reloadKeyFromSessionKeyring(DATA_MNT_POINT, it.second)) {
435 LOG(ERROR) << "Failed to load CE key from session keyring for user " << it.first;
436 return false;
437 }
438 }
439 return true;
440}
441
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700442bool fscrypt_initialize_systemwide_keys() {
443 LOG(INFO) << "fscrypt_initialize_systemwide_keys";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800444
Paul Crowley77df7f22020-01-23 15:29:30 -0800445 EncryptionOptions options;
446 if (!get_data_file_encryption_options(&options)) return false;
447
448 KeyBuffer device_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800449 if (!retrieveOrGenerateKey(device_key_path, device_key_temp, kEmptyAuthentication,
Eric Biggersf74373b2020-11-05 19:58:26 -0800450 makeGen(options), &device_key))
Paul Crowley77df7f22020-01-23 15:29:30 -0800451 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800452
Eric Biggers9ea53442022-05-11 05:33:25 +0000453 // This initializes s_device_policy, which is a global variable so that
454 // fscrypt_init_user0() can access it later.
455 if (!install_storage_key(DATA_MNT_POINT, options, device_key, &s_device_policy)) return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700456
Paul Crowley5e53ff62019-10-24 14:55:17 -0700457 std::string options_string;
Eric Biggers9ea53442022-05-11 05:33:25 +0000458 if (!OptionsToString(s_device_policy.options, &options_string)) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700459 LOG(ERROR) << "Unable to serialize options";
460 return false;
461 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800462 std::string options_filename = std::string(DATA_MNT_POINT) + fscrypt_key_mode;
Eric Biggers83a73d72019-09-30 13:06:47 -0700463 if (!android::vold::writeStringToFile(options_string, options_filename)) return false;
Paul Lawrence6e410592016-05-24 14:20:38 -0700464
Paul Crowley77df7f22020-01-23 15:29:30 -0800465 std::string ref_filename = std::string(DATA_MNT_POINT) + fscrypt_key_ref;
Eric Biggers9ea53442022-05-11 05:33:25 +0000466 if (!android::vold::writeStringToFile(s_device_policy.key_raw_ref, ref_filename)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700467 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800468
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700469 KeyBuffer per_boot_key;
Paul Crowley4eac2642020-02-12 11:04:05 -0800470 if (!generateStorageKey(makeGen(options), &per_boot_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800471 EncryptionPolicy per_boot_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800472 if (!install_storage_key(DATA_MNT_POINT, options, per_boot_key, &per_boot_policy)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700473 std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref;
Paul Crowley77df7f22020-01-23 15:29:30 -0800474 if (!android::vold::writeStringToFile(per_boot_policy.key_raw_ref, per_boot_ref_filename))
475 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700476 LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename;
477
Paul Crowley76107cb2016-02-09 10:04:39 +0000478 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800479}
480
Eric Biggers9ea53442022-05-11 05:33:25 +0000481static bool prepare_special_dirs() {
482 // Create /data/user/0 and its bind-mount alias /data/data. This *should*
483 // happen in fscrypt_prepare_user_storage(). However, it actually must be
484 // done early, before the rest of user 0's CE storage is prepared. This is
485 // because zygote may need to set up app data isolation before then, which
486 // requires mounting a tmpfs over /data/data to ensure it remains hidden.
487 // This issue arises due to /data/data being in the top-level directory.
488 //
489 // /data/user/0 used to be a symlink to /data/data, so we must first delete
490 // the old symlink if present.
491 if (android::vold::IsSymlink(data_user_0_dir) && android::vold::Unlink(data_user_0_dir) != 0)
492 return false;
493 if (!prepare_dir(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
494 if (!prepare_dir(data_user_0_dir, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
495 if (android::vold::BindMount(data_data_dir, data_user_0_dir) != 0) return false;
496
497 // If /data/media/obb doesn't exist, create it and encrypt it with the
498 // device policy. Normally, device-policy-encrypted directories are created
499 // and encrypted by init; /data/media/obb is special because it is located
500 // in /data/media. Since /data/media also contains per-user encrypted
501 // directories, by design only vold can write to it. As a side effect of
502 // that, vold must create /data/media/obb.
503 //
504 // We must tolerate /data/media/obb being unencrypted if it already exists
505 // on-disk, since it used to be unencrypted (b/64566063).
506 bool encrypt_obb = !android::vold::pathExists(media_obb_dir) && fscrypt_is_native();
507 if (!prepare_dir(media_obb_dir, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
508 if (encrypt_obb && !EnsurePolicy(s_device_policy, media_obb_dir)) return false;
509 return true;
510}
511
Eric Biggersfb486662022-03-22 00:33:52 +0000512bool fscrypt_init_user0_done;
513
Eric Biggersa701c452018-10-23 13:06:55 -0700514bool fscrypt_init_user0() {
515 LOG(DEBUG) << "fscrypt_init_user0";
Eric Biggers9ea53442022-05-11 05:33:25 +0000516
517 if (!prepare_special_dirs()) return false;
518
Eric Biggersa701c452018-10-23 13:06:55 -0700519 if (fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000520 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
521 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
522 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700523 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000524 if (!create_and_install_user_keys(0, false)) return false;
Eric Biggers9ea53442022-05-11 05:33:25 +0000525 // Since /data/user/0 was created already, and directory creation
526 // and encryption should always happen together, encrypt
527 // /data/user/0 right away without waiting for the request to
528 // prepare user 0's CE storage.
529 if (!EnsurePolicy(s_ce_policies[0], data_user_0_dir)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000530 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700531 // TODO: switch to loading only DE_0 here once framework makes
532 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000533 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000534 }
Eric Biggers9ea53442022-05-11 05:33:25 +0000535 // We only prepare DE storage here, since user 0's CE key won't be installed
536 // yet unless it was just created. The framework will prepare the user's CE
537 // storage later, once their CE key is installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700538 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700539 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000540 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700541 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700542
543 // If this is a non-FBE device that recently left an emulated mode,
544 // restore user data directories to known-good state.
Eric Biggersa701c452018-10-23 13:06:55 -0700545 if (!fscrypt_is_native() && !fscrypt_is_emulated()) {
Satya Tangiralae1361712021-03-15 15:33:08 -0700546 fscrypt_unlock_user_key(0, 0, "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700547 }
548
Nikita Ioffe1c6731c2020-02-28 19:50:31 +0000549 // In some scenarios (e.g. userspace reboot) we might unmount userdata
550 // without doing a hard reboot. If CE keys were stored in fs keyring then
551 // they will be lost after unmount. Attempt to re-install them.
552 if (fscrypt_is_native() && android::vold::isFsKeyringSupported()) {
553 if (!try_reload_ce_keys()) return false;
554 }
555
Eric Biggersfb486662022-03-22 00:33:52 +0000556 fscrypt_init_user0_done = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000557 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000558}
559
Eric Biggersa701c452018-10-23 13:06:55 -0700560bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
561 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
562 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000563 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000564 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000565 // FIXME test for existence of key that is not loaded yet
Paul Crowley77df7f22020-01-23 15:29:30 -0800566 if (s_ce_policies.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700567 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800568 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000569 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000570 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800571 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000572 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000573 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000574 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000575 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800576}
577
Eric Biggersce368682019-04-03 15:44:06 -0700578// "Lock" all encrypted directories whose key has been removed. This is needed
Eric Biggersf3dc4202019-09-30 13:05:58 -0700579// in the case where the keys are being put in the session keyring (rather in
580// the newer filesystem-level keyrings), because removing a key from the session
581// keyring doesn't affect inodes in the kernel's inode cache whose per-file key
582// was already set up. So to remove the per-file keys and make the files
583// "appear encrypted", these inodes must be evicted.
Eric Biggersce368682019-04-03 15:44:06 -0700584//
585// To do this, sync() to clean all dirty inodes, then drop all reclaimable slab
586// objects systemwide. This is overkill, but it's the best available method
587// currently. Don't use drop_caches mode "3" because that also evicts pagecache
588// for in-use files; all files relevant here are already closed and sync'ed.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700589static void drop_caches_if_needed() {
590 if (android::vold::isFsKeyringSupported()) {
591 return;
592 }
Pavel Grafovb350ed02017-07-27 17:34:57 +0100593 sync();
Eric Biggersce368682019-04-03 15:44:06 -0700594 if (!writeStringToFile("2", "/proc/sys/vm/drop_caches")) {
Pavel Grafovb350ed02017-07-27 17:34:57 +0100595 PLOG(ERROR) << "Failed to drop caches during key eviction";
596 }
597}
598
Andrew Scull7ec25c72016-10-31 10:28:25 +0000599static bool evict_ce_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000600 bool success = true;
Paul Crowley77df7f22020-01-23 15:29:30 -0800601 EncryptionPolicy policy;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000602 // If we haven't loaded the CE key, no need to evict it.
Paul Crowley77df7f22020-01-23 15:29:30 -0800603 if (lookup_policy(s_ce_policies, user_id, &policy)) {
604 success &= android::vold::evictKey(DATA_MNT_POINT, policy);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700605 drop_caches_if_needed();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000606 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800607 s_ce_policies.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000608 return success;
609}
610
Eric Biggersa701c452018-10-23 13:06:55 -0700611bool fscrypt_destroy_user_key(userid_t user_id) {
612 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
613 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000614 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000615 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000616 bool success = true;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000617 success &= evict_ce_key(user_id);
Paul Crowley77df7f22020-01-23 15:29:30 -0800618 EncryptionPolicy de_policy;
619 success &= lookup_policy(s_de_policies, user_id, &de_policy) &&
620 android::vold::evictKey(DATA_MNT_POINT, de_policy);
621 s_de_policies.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000622 auto it = s_ephemeral_users.find(user_id);
623 if (it != s_ephemeral_users.end()) {
624 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000625 } else {
Eric Biggersd863b2c2021-05-27 17:29:10 -0700626 auto ce_path = get_ce_key_directory_path(user_id);
627 for (auto const path : get_ce_key_paths(ce_path)) {
Paul Crowleya3630362016-05-17 14:17:56 -0700628 success &= android::vold::destroyKey(path);
629 }
Eric Biggersd863b2c2021-05-27 17:29:10 -0700630 success &= destroy_dir(ce_path);
631
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700632 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700633 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700634 success &= android::vold::destroyKey(de_key_path);
635 } else {
636 LOG(INFO) << "Not present so not erasing: " << de_key_path;
637 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100638 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000639 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100640}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800641
Paul Crowley76107cb2016-02-09 10:04:39 +0000642static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700643 if (chmod(path.c_str(), 0000) != 0) {
644 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000645 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700646 }
647#if EMULATED_USES_SELINUX
648 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
649 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000650 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700651 }
652#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000653 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700654}
655
Paul Crowley76107cb2016-02-09 10:04:39 +0000656static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700657 if (chmod(path.c_str(), mode) != 0) {
658 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000659 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700660 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700661 }
662#if EMULATED_USES_SELINUX
663 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
664 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000665 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700666 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700667 }
668#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000669 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700670}
671
Paul Crowley3b71fc52017-10-09 10:55:21 -0700672static bool parse_hex(const std::string& hex, std::string* result) {
673 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800674 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000675 return true;
676 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800677 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800678 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000679 return false;
680 }
681 return true;
682}
683
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700684static std::optional<android::vold::KeyAuthentication> authentication_from_hex(
Satya Tangiralae1361712021-03-15 15:33:08 -0700685 const std::string& secret_hex) {
686 std::string secret;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700687 if (!parse_hex(secret_hex, &secret)) return std::optional<android::vold::KeyAuthentication>();
688 if (secret.empty()) {
689 return kEmptyAuthentication;
690 } else {
Satya Tangiralae1361712021-03-15 15:33:08 -0700691 return android::vold::KeyAuthentication(secret);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700692 }
693}
694
Paul Crowley3aa914d2017-10-09 16:35:51 -0700695static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
696 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
697}
698
Paul Crowley26a53882017-10-26 11:16:39 -0700699static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
700 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
701}
702
Paul Crowley3aa914d2017-10-09 16:35:51 -0700703static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
Paul Crowley5e53ff62019-10-24 14:55:17 -0700704 EncryptionPolicy* policy) {
Paul Crowley26a53882017-10-26 11:16:39 -0700705 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
706 std::string secdiscardable_hash;
707 if (android::vold::pathExists(secdiscardable_path)) {
708 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
709 return false;
710 } else {
Eric Biggersfec0c0e2021-02-16 15:59:17 -0800711 if (!android::vold::MkdirsSync(secdiscardable_path, 0700)) return false;
Paul Crowley26a53882017-10-26 11:16:39 -0700712 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
713 return false;
714 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700715 auto key_path = volkey_path(misc_path, volume_uuid);
Eric Biggersfec0c0e2021-02-16 15:59:17 -0800716 if (!android::vold::MkdirsSync(key_path, 0700)) return false;
Satya Tangiralae1361712021-03-15 15:33:08 -0700717 android::vold::KeyAuthentication auth(secdiscardable_hash);
Eric Biggers83a73d72019-09-30 13:06:47 -0700718
Paul Crowley77df7f22020-01-23 15:29:30 -0800719 EncryptionOptions options;
720 if (!get_volume_file_encryption_options(&options)) return false;
721 KeyBuffer key;
Eric Biggersf74373b2020-11-05 19:58:26 -0800722 if (!retrieveOrGenerateKey(key_path, key_path + "_tmp", auth, makeGen(options), &key))
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800723 return false;
724 if (!install_storage_key(BuildDataPath(volume_uuid), options, key, policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800725 return true;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700726}
727
728static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700729 auto path = volkey_path(misc_path, volume_uuid);
730 if (!android::vold::pathExists(path)) return true;
731 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700732}
733
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700734static bool fscrypt_rewrap_user_key(userid_t user_id, int serial,
735 const android::vold::KeyAuthentication& retrieve_auth,
736 const android::vold::KeyAuthentication& store_auth) {
737 if (s_ephemeral_users.count(user_id) != 0) return true;
738 auto const directory_path = get_ce_key_directory_path(user_id);
739 KeyBuffer ce_key;
740 std::string ce_key_current_path = get_ce_key_current_path(directory_path);
Eric Biggersf74373b2020-11-05 19:58:26 -0800741 if (retrieveKey(ce_key_current_path, retrieve_auth, &ce_key)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700742 LOG(DEBUG) << "Successfully retrieved key";
743 // TODO(147732812): Remove this once Locksettingservice is fixed.
744 // Currently it calls fscrypt_clear_user_key_auth with a secret when lockscreen is
745 // changed from swipe to none or vice-versa
Eric Biggersf74373b2020-11-05 19:58:26 -0800746 } else if (retrieveKey(ce_key_current_path, kEmptyAuthentication, &ce_key)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700747 LOG(DEBUG) << "Successfully retrieved key with empty auth";
748 } else {
749 LOG(ERROR) << "Failed to retrieve key for user " << user_id;
750 return false;
751 }
752 auto const paths = get_ce_key_paths(directory_path);
753 std::string ce_key_path;
754 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
755 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, store_auth, ce_key))
756 return false;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700757 return true;
758}
759
Satya Tangiralae1361712021-03-15 15:33:08 -0700760bool fscrypt_add_user_key_auth(userid_t user_id, int serial, const std::string& secret_hex) {
761 LOG(DEBUG) << "fscrypt_add_user_key_auth " << user_id << " serial=" << serial;
Eric Biggersa701c452018-10-23 13:06:55 -0700762 if (!fscrypt_is_native()) return true;
Satya Tangiralae1361712021-03-15 15:33:08 -0700763 auto auth = authentication_from_hex(secret_hex);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700764 if (!auth) return false;
765 return fscrypt_rewrap_user_key(user_id, serial, kEmptyAuthentication, *auth);
766}
767
Satya Tangiralae1361712021-03-15 15:33:08 -0700768bool fscrypt_clear_user_key_auth(userid_t user_id, int serial, const std::string& secret_hex) {
769 LOG(DEBUG) << "fscrypt_clear_user_key_auth " << user_id << " serial=" << serial;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700770 if (!fscrypt_is_native()) return true;
Satya Tangiralae1361712021-03-15 15:33:08 -0700771 auto auth = authentication_from_hex(secret_hex);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700772 if (!auth) return false;
773 return fscrypt_rewrap_user_key(user_id, serial, *auth, kEmptyAuthentication);
Paul Crowleya3630362016-05-17 14:17:56 -0700774}
775
Eric Biggersa701c452018-10-23 13:06:55 -0700776bool fscrypt_fixate_newest_user_key_auth(userid_t user_id) {
777 LOG(DEBUG) << "fscrypt_fixate_newest_user_key_auth " << user_id;
778 if (!fscrypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700779 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700780 auto const directory_path = get_ce_key_directory_path(user_id);
781 auto const paths = get_ce_key_paths(directory_path);
782 if (paths.empty()) {
783 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
784 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000785 }
Paul Crowleya3630362016-05-17 14:17:56 -0700786 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000787 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000788}
789
Eric Biggers18ba1522021-04-06 12:02:56 -0700790std::vector<int> fscrypt_get_unlocked_users() {
791 std::vector<int> user_ids;
792 for (const auto& it : s_ce_policies) {
793 user_ids.push_back(it.first);
794 }
795 return user_ids;
796}
797
Jeff Sharkey47695b22016-02-01 17:02:29 -0700798// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Satya Tangiralae1361712021-03-15 15:33:08 -0700799bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& secret_hex) {
800 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial;
Eric Biggersa701c452018-10-23 13:06:55 -0700801 if (fscrypt_is_native()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800802 if (s_ce_policies.count(user_id) != 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000803 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000804 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000805 }
Satya Tangiralae1361712021-03-15 15:33:08 -0700806 auto auth = authentication_from_hex(secret_hex);
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700807 if (!auth) return false;
808 if (!read_and_install_user_ce_key(user_id, *auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000809 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000810 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800811 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700812 } else {
813 // When in emulation mode, we just use chmod. However, we also
814 // unlock directories when not in emulation mode, to bring devices
815 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000816 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000817 !emulated_unlock(android::vold::BuildDataMiscCePath("", user_id), 01771) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700818 !emulated_unlock(android::vold::BuildDataMediaCePath("", user_id), 0770) ||
819 !emulated_unlock(android::vold::BuildDataUserCePath("", user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700820 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000821 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700822 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800823 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000824 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800825}
826
Jeff Sharkey47695b22016-02-01 17:02:29 -0700827// TODO: rename to 'evict' for consistency
Eric Biggersa701c452018-10-23 13:06:55 -0700828bool fscrypt_lock_user_key(userid_t user_id) {
829 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
830 if (fscrypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000831 return evict_ce_key(user_id);
Eric Biggersa701c452018-10-23 13:06:55 -0700832 } else if (fscrypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800833 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000834 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000835 !emulated_lock(android::vold::BuildDataMiscCePath("", user_id)) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700836 !emulated_lock(android::vold::BuildDataMediaCePath("", user_id)) ||
837 !emulated_lock(android::vold::BuildDataUserCePath("", user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000838 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000839 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800840 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800841 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700842
Paul Crowley76107cb2016-02-09 10:04:39 +0000843 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800844}
845
Paul Crowley82b41ff2017-10-20 08:17:54 -0700846static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
847 userid_t user_id, int flags) {
848 if (0 != android::vold::ForkExecvp(
849 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
850 std::to_string(user_id), std::to_string(flags)})) {
851 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700852 return false;
853 }
854 return true;
855}
856
Eric Biggersa701c452018-10-23 13:06:55 -0700857bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700858 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700859 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800860 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700861
Eric Biggersc66c2e32022-05-04 04:39:50 +0000862 // Internal storage must be prepared before adoptable storage, since the
863 // user's volume keys are stored in their internal storage.
864 if (!volume_uuid.empty()) {
865 if ((flags & android::os::IVold::STORAGE_FLAG_DE) &&
866 !android::vold::pathExists(android::vold::BuildDataMiscDePath("", user_id))) {
867 LOG(ERROR) << "Cannot prepare DE storage for user " << user_id << " on volume "
868 << volume_uuid << " before internal storage";
869 return false;
870 }
871 if ((flags & android::os::IVold::STORAGE_FLAG_CE) &&
872 !android::vold::pathExists(android::vold::BuildDataMiscCePath("", user_id))) {
873 LOG(ERROR) << "Cannot prepare CE storage for user " << user_id << " on volume "
874 << volume_uuid << " before internal storage";
875 return false;
876 }
877 }
878
Paul Crowley82b41ff2017-10-20 08:17:54 -0700879 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600880 // DE_sys key
881 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
882 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
883 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600884
885 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700886 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000887 auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800888 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700889 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
890
Paul Crowley3b71fc52017-10-09 10:55:21 -0700891 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700892 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600893#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700894 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700895 multiuser_get_uid(user_id, AID_EVERYBODY)))
896 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600897#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700898 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600899
Paul Crowley6b756ce2017-10-05 14:07:09 -0700900 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800901 if (!prepare_dir(vendor_de_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700902 }
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000903
904 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000905 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000906
Eric Biggersa701c452018-10-23 13:06:55 -0700907 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700908 EncryptionPolicy de_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700909 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800910 if (!lookup_policy(s_de_policies, user_id, &de_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700911 if (!EnsurePolicy(de_policy, system_de_path)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700912 if (!EnsurePolicy(de_policy, vendor_de_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700913 } else {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000914 auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id);
915 if (!read_or_create_volkey(misc_de_empty_volume_path, volume_uuid, &de_policy)) {
916 return false;
917 }
Paul Crowley6b756ce2017-10-05 14:07:09 -0700918 }
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000919 if (!EnsurePolicy(de_policy, misc_de_path)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700920 if (!EnsurePolicy(de_policy, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700921 }
Paul Crowley285956f2016-01-20 13:12:38 +0000922 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800923
Paul Crowley82b41ff2017-10-20 08:17:54 -0700924 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600925 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700926 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000927 auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800928 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600929 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
930 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800931
Paul Crowley3b71fc52017-10-09 10:55:21 -0700932 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700933 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800934 if (!prepare_dir(vendor_ce_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700935 }
Martijn Coenen5adf92a2021-02-01 07:57:02 +0000936 if (!prepare_dir(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
937 // On devices without sdcardfs (kernel 5.4+), the path permissions aren't fixed
938 // up automatically; therefore, use a default ACL, to ensure apps with MEDIA_RW
939 // can keep reading external storage; in particular, this allows app cloning
940 // scenarios to work correctly on such devices.
941 int ret = SetDefaultAcl(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW, {AID_MEDIA_RW});
942 if (ret != android::OK) {
943 return false;
944 }
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +0100945
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000946 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000947 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700948
Eric Biggersa701c452018-10-23 13:06:55 -0700949 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700950 EncryptionPolicy ce_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700951 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800952 if (!lookup_policy(s_ce_policies, user_id, &ce_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700953 if (!EnsurePolicy(ce_policy, system_ce_path)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700954 if (!EnsurePolicy(ce_policy, vendor_ce_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700955 } else {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000956 auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id);
957 if (!read_or_create_volkey(misc_ce_empty_volume_path, volume_uuid, &ce_policy)) {
958 return false;
959 }
Paul Crowley6b756ce2017-10-05 14:07:09 -0700960 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700961 if (!EnsurePolicy(ce_policy, media_ce_path)) return false;
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000962 if (!EnsurePolicy(ce_policy, misc_ce_path)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700963 if (!EnsurePolicy(ce_policy, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700964 }
Paul Crowley1a965262017-10-13 13:49:50 -0700965
966 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700967 // Now that credentials have been installed, we can run restorecon
968 // over these paths
969 // NOTE: these paths need to be kept in sync with libselinux
970 android::vold::RestoreconRecursive(system_ce_path);
Nick Kralevich6a3ef482019-05-14 09:30:29 -0700971 android::vold::RestoreconRecursive(vendor_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -0700972 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700973 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800974 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700975 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800976
Paul Crowley76107cb2016-02-09 10:04:39 +0000977 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800978}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600979
Eric Biggersa701c452018-10-23 13:06:55 -0700980bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
981 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600982 << ", user " << user_id << ", flags " << flags;
983 bool res = true;
984
Paul Crowley82b41ff2017-10-20 08:17:54 -0700985 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
986
987 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -0700988 // CE_n key
989 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000990 auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800991 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -0700992 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
993 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
994
995 res &= destroy_dir(media_ce_path);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +0000996 res &= destroy_dir(misc_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -0700997 res &= destroy_dir(user_ce_path);
998 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700999 res &= destroy_dir(system_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001000 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001001 } else {
Eric Biggersa701c452018-10-23 13:06:55 -07001002 if (fscrypt_is_native()) {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001003 auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id);
1004 res &= destroy_volkey(misc_ce_empty_volume_path, volume_uuid);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001005 }
Paul Crowley8e550662017-10-16 17:01:44 -07001006 }
1007 }
1008
Paul Crowley82b41ff2017-10-20 08:17:54 -07001009 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001010 // DE_sys key
1011 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
1012 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
1013 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001014
1015 // DE_n key
1016 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001017 auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001018 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001019 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
1020
Paul Crowley8e550662017-10-16 17:01:44 -07001021 res &= destroy_dir(user_de_path);
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001022 res &= destroy_dir(misc_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -07001023 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001024 res &= destroy_dir(system_legacy_path);
1025#if MANAGE_MISC_DIRS
1026 res &= destroy_dir(misc_legacy_path);
1027#endif
1028 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001029 res &= destroy_dir(system_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -08001030 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001031 } else {
Eric Biggersa701c452018-10-23 13:06:55 -07001032 if (fscrypt_is_native()) {
Mohammad Samiul Islame8336302022-03-07 20:27:06 +00001033 auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id);
1034 res &= destroy_volkey(misc_de_empty_volume_path, volume_uuid);
Paul Crowley3aa914d2017-10-09 16:35:51 -07001035 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001036 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -06001037 }
1038
1039 return res;
1040}
Rubin Xu2436e272017-04-27 20:43:10 +01001041
Paul Crowleyc6433a22017-10-24 14:54:43 -07001042static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
1043 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
1044 if (!dirp) {
1045 PLOG(ERROR) << "Unable to open directory: " + directory_path;
1046 return false;
1047 }
1048 bool res = true;
1049 for (;;) {
1050 errno = 0;
1051 auto const entry = readdir(dirp.get());
1052 if (!entry) {
1053 if (errno) {
1054 PLOG(ERROR) << "Unable to read directory: " + directory_path;
1055 return false;
1056 }
1057 break;
1058 }
Eric Biggers6b840392020-11-02 15:11:06 -08001059 if (IsDotOrDotDot(*entry)) continue;
Paul Crowleyc6433a22017-10-24 14:54:43 -07001060 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
1061 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
1062 continue;
1063 }
1064 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
1065 }
1066 return res;
1067}
1068
Eric Biggersa701c452018-10-23 13:06:55 -07001069bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -07001070 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -07001071 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -07001072 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
1073 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -07001074 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
1075 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
1076 return res;
1077}