Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 1 | /* |
| 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 Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 17 | #include "FsCrypt.h" |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 18 | |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 19 | #include "KeyStorage.h" |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 20 | #include "KeyUtil.h" |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 21 | #include "Utils.h" |
Paul Crowley | a7ca40b | 2017-10-06 14:29:33 -0700 | [diff] [blame] | 22 | #include "VoldUtil.h" |
| 23 | |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 24 | #include <algorithm> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 25 | #include <map> |
Barani Muthukumaran | b1927c2 | 2019-10-31 22:59:34 -0700 | [diff] [blame] | 26 | #include <optional> |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 27 | #include <set> |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 28 | #include <sstream> |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 29 | #include <string> |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 30 | #include <vector> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 31 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 32 | #include <dirent.h> |
| 33 | #include <errno.h> |
| 34 | #include <fcntl.h> |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 35 | #include <limits.h> |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 36 | #include <sys/mount.h> |
| 37 | #include <sys/stat.h> |
| 38 | #include <sys/types.h> |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 39 | #include <unistd.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 40 | |
Paul Crowley | 480fcd2 | 2015-08-24 14:53:28 +0100 | [diff] [blame] | 41 | #include <private/android_filesystem_config.h> |
Martijn Coenen | aee4051 | 2020-02-18 16:29:25 +0100 | [diff] [blame] | 42 | #include <private/android_projectid_config.h> |
Paul Crowley | 480fcd2 | 2015-08-24 14:53:28 +0100 | [diff] [blame] | 43 | |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 44 | #include "android/os/IVold.h" |
| 45 | |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 46 | #define MANAGE_MISC_DIRS 0 |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 47 | |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 48 | #include <cutils/fs.h> |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 49 | #include <cutils/properties.h> |
| 50 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 51 | #include <fscrypt/fscrypt.h> |
Elliott Hughes | c3bda18 | 2017-05-09 17:01:04 -0700 | [diff] [blame] | 52 | #include <keyutils.h> |
Eric Biggers | eb566d0 | 2020-07-06 13:46:38 -0700 | [diff] [blame] | 53 | #include <libdm/dm.h> |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 54 | |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 55 | #include <android-base/file.h> |
Elliott Hughes | 6bf0547 | 2015-12-04 17:55:33 -0800 | [diff] [blame] | 56 | #include <android-base/logging.h> |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 57 | #include <android-base/properties.h> |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 58 | #include <android-base/stringprintf.h> |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 59 | #include <android-base/strings.h> |
Jie | b6698d5 | 2018-11-12 15:26:02 +0800 | [diff] [blame] | 60 | #include <android-base/unique_fd.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 61 | |
Eric Biggers | eb566d0 | 2020-07-06 13:46:38 -0700 | [diff] [blame] | 62 | using android::base::Basename; |
| 63 | using android::base::Realpath; |
| 64 | using android::base::StartsWith; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 65 | using android::base::StringPrintf; |
Tom Cherry | 4c5bde2 | 2019-01-29 14:34:01 -0800 | [diff] [blame] | 66 | using android::fs_mgr::GetEntryForMountPoint; |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 67 | using android::vold::BuildDataPath; |
Eric Biggers | 6b84039 | 2020-11-02 15:11:06 -0800 | [diff] [blame] | 68 | using android::vold::IsDotOrDotDot; |
Martijn Coenen | fd9cdbf | 2020-02-11 14:20:29 +0100 | [diff] [blame] | 69 | using android::vold::IsFilesystemSupported; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 70 | using android::vold::kEmptyAuthentication; |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 71 | using android::vold::KeyBuffer; |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 72 | using android::vold::KeyGeneration; |
Paul Crowley | 4eac264 | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 73 | using android::vold::retrieveKey; |
| 74 | using android::vold::retrieveOrGenerateKey; |
Martijn Coenen | 5adf92a | 2021-02-01 07:57:02 +0000 | [diff] [blame] | 75 | using android::vold::SetDefaultAcl; |
Martijn Coenen | fd9cdbf | 2020-02-11 14:20:29 +0100 | [diff] [blame] | 76 | using android::vold::SetQuotaInherit; |
| 77 | using android::vold::SetQuotaProjectId; |
Tommy Chiu | a98464f | 2019-03-26 14:14:19 +0800 | [diff] [blame] | 78 | using android::vold::writeStringToFile; |
Paul Crowley | 5e53ff6 | 2019-10-24 14:55:17 -0700 | [diff] [blame] | 79 | using namespace android::fscrypt; |
Eric Biggers | eb566d0 | 2020-07-06 13:46:38 -0700 | [diff] [blame] | 80 | using namespace android::dm; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 81 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 82 | namespace { |
Andrew Scull | 7ec25c7 | 2016-10-31 10:28:25 +0000 | [diff] [blame] | 83 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 84 | const std::string device_key_dir = std::string() + DATA_MNT_POINT + fscrypt_unencrypted_folder; |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 85 | const std::string device_key_path = device_key_dir + "/key"; |
| 86 | const std::string device_key_temp = device_key_dir + "/temp"; |
Paul Lawrence | 5a06a64 | 2016-02-03 13:39:13 -0800 | [diff] [blame] | 87 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 88 | const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys"; |
| 89 | const std::string user_key_temp = user_key_dir + "/temp"; |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 90 | const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs"; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 91 | |
Paul Crowley | 26a5388 | 2017-10-26 11:16:39 -0700 | [diff] [blame] | 92 | const std::string systemwide_volume_key_dir = |
| 93 | std::string() + DATA_MNT_POINT + "/misc/vold/volume_keys"; |
| 94 | |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 95 | const std::string data_data_dir = std::string() + DATA_MNT_POINT + "/data"; |
| 96 | const std::string data_user_0_dir = std::string() + DATA_MNT_POINT + "/user/0"; |
| 97 | const std::string media_obb_dir = std::string() + DATA_MNT_POINT + "/media/obb"; |
| 98 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 99 | // Some users are ephemeral, don't try to wipe their keys from disk |
| 100 | std::set<userid_t> s_ephemeral_users; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 101 | |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 102 | // The system DE encryption policy |
| 103 | EncryptionPolicy s_device_policy; |
| 104 | |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 105 | // Map user ids to encryption policies |
| 106 | std::map<userid_t, EncryptionPolicy> s_de_policies; |
| 107 | std::map<userid_t, EncryptionPolicy> s_ce_policies; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 108 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 109 | } // namespace |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 110 | |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 111 | // Returns KeyGeneration suitable for key as described in EncryptionOptions |
| 112 | static KeyGeneration makeGen(const EncryptionOptions& options) { |
| 113 | return KeyGeneration{FSCRYPT_MAX_KEY_SIZE, true, options.use_hw_wrapped_key}; |
| 114 | } |
| 115 | |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 116 | static const char* escape_empty(const std::string& value) { |
| 117 | return value.empty() ? "null" : value.c_str(); |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 118 | } |
| 119 | |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 120 | static std::string get_de_key_path(userid_t user_id) { |
| 121 | return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id); |
| 122 | } |
| 123 | |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 124 | static std::string get_ce_key_directory_path(userid_t user_id) { |
| 125 | return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id); |
| 126 | } |
| 127 | |
| 128 | // Returns the keys newest first |
| 129 | static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) { |
| 130 | auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir); |
| 131 | if (!dirp) { |
| 132 | PLOG(ERROR) << "Unable to open ce key directory: " + directory_path; |
| 133 | return std::vector<std::string>(); |
| 134 | } |
| 135 | std::vector<std::string> result; |
| 136 | for (;;) { |
| 137 | errno = 0; |
| 138 | auto const entry = readdir(dirp.get()); |
| 139 | if (!entry) { |
| 140 | if (errno) { |
| 141 | PLOG(ERROR) << "Unable to read ce key directory: " + directory_path; |
| 142 | return std::vector<std::string>(); |
| 143 | } |
| 144 | break; |
| 145 | } |
Eric Biggers | 6b84039 | 2020-11-02 15:11:06 -0800 | [diff] [blame] | 146 | if (IsDotOrDotDot(*entry)) continue; |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 147 | if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') { |
| 148 | LOG(DEBUG) << "Skipping non-key " << entry->d_name; |
| 149 | continue; |
| 150 | } |
| 151 | result.emplace_back(directory_path + "/" + entry->d_name); |
| 152 | } |
| 153 | std::sort(result.begin(), result.end()); |
| 154 | std::reverse(result.begin(), result.end()); |
| 155 | return result; |
| 156 | } |
| 157 | |
| 158 | static std::string get_ce_key_current_path(const std::string& directory_path) { |
| 159 | return directory_path + "/current"; |
| 160 | } |
| 161 | |
| 162 | static bool get_ce_key_new_path(const std::string& directory_path, |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 163 | const std::vector<std::string>& paths, std::string* ce_key_path) { |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 164 | if (paths.empty()) { |
| 165 | *ce_key_path = get_ce_key_current_path(directory_path); |
| 166 | return true; |
| 167 | } |
| 168 | for (unsigned int i = 0; i < UINT_MAX; i++) { |
| 169 | auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i); |
| 170 | if (paths[0] < candidate) { |
| 171 | *ce_key_path = candidate; |
| 172 | return true; |
| 173 | } |
| 174 | } |
| 175 | return false; |
| 176 | } |
| 177 | |
| 178 | // Discard all keys but the named one; rename it to canonical name. |
| 179 | // No point in acting on errors in this; ignore them. |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 180 | static void fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix, |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 181 | const std::vector<std::string>& paths) { |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 182 | for (auto const other_path : paths) { |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 183 | if (other_path != to_fix) { |
| 184 | android::vold::destroyKey(other_path); |
| 185 | } |
| 186 | } |
| 187 | auto const current_path = get_ce_key_current_path(directory_path); |
| 188 | if (to_fix != current_path) { |
| 189 | LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path; |
Satya Tangirala | 0f890a9 | 2021-06-08 12:55:24 -0700 | [diff] [blame] | 190 | if (!android::vold::RenameKeyDir(to_fix, current_path)) return; |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 191 | } |
Paul Crowley | 621d9b9 | 2018-12-07 15:36:09 -0800 | [diff] [blame] | 192 | android::vold::FsyncDirectory(directory_path); |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | static bool read_and_fixate_user_ce_key(userid_t user_id, |
| 196 | const android::vold::KeyAuthentication& auth, |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 197 | KeyBuffer* ce_key) { |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 198 | auto const directory_path = get_ce_key_directory_path(user_id); |
| 199 | auto const paths = get_ce_key_paths(directory_path); |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 200 | for (auto const ce_key_path : paths) { |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 201 | LOG(DEBUG) << "Trying user CE key " << ce_key_path; |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 202 | if (retrieveKey(ce_key_path, auth, ce_key)) { |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 203 | LOG(DEBUG) << "Successfully retrieved key"; |
| 204 | fixate_user_ce_key(directory_path, ce_key_path, paths); |
| 205 | return true; |
| 206 | } |
| 207 | } |
| 208 | LOG(ERROR) << "Failed to find working ce key for user " << user_id; |
| 209 | return false; |
Paul Crowley | b33e887 | 2015-05-19 12:34:09 +0100 | [diff] [blame] | 210 | } |
| 211 | |
Eric Biggers | f9c6dfa | 2021-11-22 11:15:23 -0800 | [diff] [blame] | 212 | static bool MightBeEmmcStorage(const std::string& blk_device) { |
Eric Biggers | eb566d0 | 2020-07-06 13:46:38 -0700 | [diff] [blame] | 213 | // Handle symlinks. |
| 214 | std::string real_path; |
| 215 | if (!Realpath(blk_device, &real_path)) { |
| 216 | real_path = blk_device; |
| 217 | } |
| 218 | |
| 219 | // Handle logical volumes. |
| 220 | auto& dm = DeviceMapper::Instance(); |
| 221 | for (;;) { |
| 222 | auto parent = dm.GetParentBlockDeviceByPath(real_path); |
| 223 | if (!parent.has_value()) break; |
| 224 | real_path = *parent; |
| 225 | } |
| 226 | |
| 227 | // Now we should have the "real" block device. |
Eric Biggers | f9c6dfa | 2021-11-22 11:15:23 -0800 | [diff] [blame] | 228 | LOG(DEBUG) << "MightBeEmmcStorage(): blk_device = " << blk_device |
| 229 | << ", real_path=" << real_path; |
| 230 | std::string name = Basename(real_path); |
| 231 | return StartsWith(name, "mmcblk") || |
| 232 | // virtio devices may provide inline encryption support that is |
| 233 | // backed by eMMC inline encryption on the host, thus inheriting the |
| 234 | // DUN size limitation. So virtio devices must be allowed here too. |
| 235 | // TODO(b/207390665): check the maximum DUN size directly instead. |
| 236 | StartsWith(name, "vd"); |
Eric Biggers | eb566d0 | 2020-07-06 13:46:38 -0700 | [diff] [blame] | 237 | } |
| 238 | |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 239 | // Retrieve the options to use for encryption policies on the /data filesystem. |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 240 | static bool get_data_file_encryption_options(EncryptionOptions* options) { |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 241 | auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT); |
| 242 | if (entry == nullptr) { |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 243 | LOG(ERROR) << "No mount point entry for " << DATA_MNT_POINT; |
| 244 | return false; |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 245 | } |
Paul Crowley | a50f6c3 | 2019-10-24 23:21:44 -0700 | [diff] [blame] | 246 | if (!ParseOptions(entry->encryption_options, options)) { |
| 247 | LOG(ERROR) << "Unable to parse encryption options for " << DATA_MNT_POINT ": " |
| 248 | << entry->encryption_options; |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 249 | return false; |
Paul Crowley | a50f6c3 | 2019-10-24 23:21:44 -0700 | [diff] [blame] | 250 | } |
Eric Biggers | eb566d0 | 2020-07-06 13:46:38 -0700 | [diff] [blame] | 251 | if ((options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) && |
Eric Biggers | f9c6dfa | 2021-11-22 11:15:23 -0800 | [diff] [blame] | 252 | !MightBeEmmcStorage(entry->blk_device)) { |
Eric Biggers | eb566d0 | 2020-07-06 13:46:38 -0700 | [diff] [blame] | 253 | LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove " |
| 254 | "this flag from the device's fstab"; |
| 255 | return false; |
| 256 | } |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 257 | return true; |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 258 | } |
| 259 | |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 260 | static bool install_storage_key(const std::string& mountpoint, const EncryptionOptions& options, |
| 261 | const KeyBuffer& key, EncryptionPolicy* policy) { |
| 262 | KeyBuffer ephemeral_wrapped_key; |
| 263 | if (options.use_hw_wrapped_key) { |
| 264 | if (!exportWrappedStorageKey(key, &ephemeral_wrapped_key)) { |
| 265 | LOG(ERROR) << "Failed to get ephemeral wrapped key"; |
| 266 | return false; |
| 267 | } |
| 268 | } |
| 269 | return installKey(mountpoint, options, options.use_hw_wrapped_key ? ephemeral_wrapped_key : key, |
| 270 | policy); |
| 271 | } |
| 272 | |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 273 | // Retrieve the options to use for encryption policies on adoptable storage. |
Paul Crowley | 5e53ff6 | 2019-10-24 14:55:17 -0700 | [diff] [blame] | 274 | static bool get_volume_file_encryption_options(EncryptionOptions* options) { |
Paul Crowley | eb241a1 | 2020-02-18 10:10:08 -0800 | [diff] [blame] | 275 | // If we give the empty string, libfscrypt will use the default (currently XTS) |
| 276 | auto contents_mode = android::base::GetProperty("ro.crypto.volume.contents_mode", ""); |
| 277 | // HEH as default was always a mistake. Use the libfscrypt default (CTS) |
| 278 | // for devices launching on versions above Android 10. |
| 279 | auto first_api_level = GetFirstApiLevel(); |
Paul Crowley | f612b8b | 2019-10-24 22:52:02 -0700 | [diff] [blame] | 280 | auto filenames_mode = |
Paul Crowley | eb241a1 | 2020-02-18 10:10:08 -0800 | [diff] [blame] | 281 | android::base::GetProperty("ro.crypto.volume.filenames_mode", |
Eric Biggers | 72d0713 | 2020-08-10 10:55:56 -0700 | [diff] [blame] | 282 | first_api_level > __ANDROID_API_Q__ ? "" : "aes-256-heh"); |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 283 | auto options_string = android::base::GetProperty("ro.crypto.volume.options", |
Paul Crowley | eb241a1 | 2020-02-18 10:10:08 -0800 | [diff] [blame] | 284 | contents_mode + ":" + filenames_mode); |
| 285 | if (!ParseOptionsForApiLevel(first_api_level, options_string, options)) { |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 286 | LOG(ERROR) << "Unable to parse volume encryption options: " << options_string; |
| 287 | return false; |
| 288 | } |
Eric Biggers | eb566d0 | 2020-07-06 13:46:38 -0700 | [diff] [blame] | 289 | if (options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) { |
| 290 | LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove " |
| 291 | "this flag from ro.crypto.volume.options"; |
| 292 | return false; |
| 293 | } |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 294 | return true; |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 295 | } |
| 296 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 297 | static bool read_and_install_user_ce_key(userid_t user_id, |
| 298 | const android::vold::KeyAuthentication& auth) { |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 299 | if (s_ce_policies.count(user_id) != 0) return true; |
| 300 | EncryptionOptions options; |
| 301 | if (!get_data_file_encryption_options(&options)) return false; |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 302 | KeyBuffer ce_key; |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 303 | if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false; |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 304 | EncryptionPolicy ce_policy; |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 305 | if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false; |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 306 | s_ce_policies[user_id] = ce_policy; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 307 | LOG(DEBUG) << "Installed ce key for user " << user_id; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 308 | return true; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 309 | } |
| 310 | |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 311 | // Prepare a directory without assigning it an encryption policy. The directory |
| 312 | // will inherit the encryption policy of its parent directory, or will be |
| 313 | // unencrypted if the parent directory is unencrypted. |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 314 | static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 315 | LOG(DEBUG) << "Preparing: " << dir; |
Eric Biggers | 39704e7 | 2022-05-04 22:17:54 +0000 | [diff] [blame] | 316 | if (android::vold::PrepareDir(dir, mode, uid, gid, 0) != 0) { |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 317 | PLOG(ERROR) << "Failed to prepare " << dir; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 318 | return false; |
| 319 | } |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 320 | return true; |
| 321 | } |
| 322 | |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 323 | // Prepare a directory and assign it the given encryption policy. |
| 324 | static bool prepare_dir_with_policy(const std::string& dir, mode_t mode, uid_t uid, gid_t gid, |
| 325 | const EncryptionPolicy& policy) { |
| 326 | if (!prepare_dir(dir, mode, uid, gid)) return false; |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 327 | if (IsFbeEnabled() && !EnsurePolicy(policy, dir)) return false; |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 328 | return true; |
| 329 | } |
| 330 | |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 331 | static bool destroy_dir(const std::string& dir) { |
| 332 | LOG(DEBUG) << "Destroying: " << dir; |
| 333 | if (rmdir(dir.c_str()) != 0 && errno != ENOENT) { |
| 334 | PLOG(ERROR) << "Failed to destroy " << dir; |
| 335 | return false; |
| 336 | } |
| 337 | return true; |
| 338 | } |
| 339 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 340 | // NB this assumes that there is only one thread listening for crypt commands, because |
| 341 | // it creates keys in a fixed location. |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 342 | static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) { |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 343 | EncryptionOptions options; |
| 344 | if (!get_data_file_encryption_options(&options)) return false; |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 345 | KeyBuffer de_key, ce_key; |
Paul Crowley | 4eac264 | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 346 | if (!generateStorageKey(makeGen(options), &de_key)) return false; |
| 347 | if (!generateStorageKey(makeGen(options), &ce_key)) return false; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 348 | if (create_ephemeral) { |
| 349 | // If the key should be created as ephemeral, don't store it. |
| 350 | s_ephemeral_users.insert(user_id); |
| 351 | } else { |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 352 | auto const directory_path = get_ce_key_directory_path(user_id); |
| 353 | if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false; |
| 354 | auto const paths = get_ce_key_paths(directory_path); |
| 355 | std::string ce_key_path; |
| 356 | if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 357 | if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, kEmptyAuthentication, |
| 358 | ce_key)) |
| 359 | return false; |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 360 | fixate_user_ce_key(directory_path, ce_key_path, paths); |
| 361 | // Write DE key second; once this is written, all is good. |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 362 | if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp, |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 363 | kEmptyAuthentication, de_key)) |
| 364 | return false; |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 365 | } |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 366 | EncryptionPolicy de_policy; |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 367 | if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false; |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 368 | s_de_policies[user_id] = de_policy; |
| 369 | EncryptionPolicy ce_policy; |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 370 | if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false; |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 371 | s_ce_policies[user_id] = ce_policy; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 372 | LOG(DEBUG) << "Created keys for user " << user_id; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 373 | return true; |
| 374 | } |
| 375 | |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 376 | static bool lookup_policy(const std::map<userid_t, EncryptionPolicy>& key_map, userid_t user_id, |
| 377 | EncryptionPolicy* policy) { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 378 | auto refi = key_map.find(user_id); |
| 379 | if (refi == key_map.end()) { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 380 | return false; |
| 381 | } |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 382 | *policy = refi->second; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 383 | return true; |
| 384 | } |
| 385 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 386 | static bool is_numeric(const char* name) { |
| 387 | for (const char* p = name; *p != '\0'; p++) { |
| 388 | if (!isdigit(*p)) return false; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 389 | } |
| 390 | return true; |
| 391 | } |
| 392 | |
| 393 | static bool load_all_de_keys() { |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 394 | EncryptionOptions options; |
| 395 | if (!get_data_file_encryption_options(&options)) return false; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 396 | auto de_dir = user_key_dir + "/de"; |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 397 | auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir); |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 398 | if (!dirp) { |
| 399 | PLOG(ERROR) << "Unable to read de key directory"; |
| 400 | return false; |
| 401 | } |
| 402 | for (;;) { |
| 403 | errno = 0; |
| 404 | auto entry = readdir(dirp.get()); |
| 405 | if (!entry) { |
| 406 | if (errno) { |
| 407 | PLOG(ERROR) << "Unable to read de key directory"; |
| 408 | return false; |
| 409 | } |
| 410 | break; |
| 411 | } |
Eric Biggers | 6b84039 | 2020-11-02 15:11:06 -0800 | [diff] [blame] | 412 | if (IsDotOrDotDot(*entry)) continue; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 413 | if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) { |
| 414 | LOG(DEBUG) << "Skipping non-de-key " << entry->d_name; |
| 415 | continue; |
| 416 | } |
Jeff Sharkey | 95440eb | 2017-09-18 18:19:28 -0600 | [diff] [blame] | 417 | userid_t user_id = std::stoi(entry->d_name); |
Nikita Ioffe | f0550af | 2020-02-27 18:21:55 +0000 | [diff] [blame] | 418 | auto key_path = de_dir + "/" + entry->d_name; |
| 419 | KeyBuffer de_key; |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 420 | if (!retrieveKey(key_path, kEmptyAuthentication, &de_key)) return false; |
Nikita Ioffe | f0550af | 2020-02-27 18:21:55 +0000 | [diff] [blame] | 421 | EncryptionPolicy de_policy; |
| 422 | if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false; |
| 423 | auto ret = s_de_policies.insert({user_id, de_policy}); |
| 424 | if (!ret.second && ret.first->second != de_policy) { |
| 425 | LOG(ERROR) << "DE policy for user" << user_id << " changed"; |
| 426 | return false; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 427 | } |
Nikita Ioffe | f0550af | 2020-02-27 18:21:55 +0000 | [diff] [blame] | 428 | LOG(DEBUG) << "Installed de key for user " << user_id; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 429 | } |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 430 | // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 431 | // correct policy set on them, and that no rogue ones exist. |
| 432 | return true; |
| 433 | } |
| 434 | |
Nikita Ioffe | 1c6731c | 2020-02-28 19:50:31 +0000 | [diff] [blame] | 435 | // Attempt to reinstall CE keys for users that we think are unlocked. |
| 436 | static bool try_reload_ce_keys() { |
| 437 | for (const auto& it : s_ce_policies) { |
| 438 | if (!android::vold::reloadKeyFromSessionKeyring(DATA_MNT_POINT, it.second)) { |
| 439 | LOG(ERROR) << "Failed to load CE key from session keyring for user " << it.first; |
| 440 | return false; |
| 441 | } |
| 442 | } |
| 443 | return true; |
| 444 | } |
| 445 | |
Paul Crowley | c8a3ef3 | 2019-09-11 15:00:08 -0700 | [diff] [blame] | 446 | bool fscrypt_initialize_systemwide_keys() { |
| 447 | LOG(INFO) << "fscrypt_initialize_systemwide_keys"; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 448 | |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 449 | EncryptionOptions options; |
| 450 | if (!get_data_file_encryption_options(&options)) return false; |
| 451 | |
| 452 | KeyBuffer device_key; |
Paul Crowley | 4eac264 | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 453 | if (!retrieveOrGenerateKey(device_key_path, device_key_temp, kEmptyAuthentication, |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 454 | makeGen(options), &device_key)) |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 455 | return false; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 456 | |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 457 | // This initializes s_device_policy, which is a global variable so that |
| 458 | // fscrypt_init_user0() can access it later. |
| 459 | if (!install_storage_key(DATA_MNT_POINT, options, device_key, &s_device_policy)) return false; |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 460 | |
Paul Crowley | 5e53ff6 | 2019-10-24 14:55:17 -0700 | [diff] [blame] | 461 | std::string options_string; |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 462 | if (!OptionsToString(s_device_policy.options, &options_string)) { |
Paul Crowley | 5e53ff6 | 2019-10-24 14:55:17 -0700 | [diff] [blame] | 463 | LOG(ERROR) << "Unable to serialize options"; |
| 464 | return false; |
| 465 | } |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 466 | std::string options_filename = std::string(DATA_MNT_POINT) + fscrypt_key_mode; |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 467 | if (!android::vold::writeStringToFile(options_string, options_filename)) return false; |
Paul Lawrence | 6e41059 | 2016-05-24 14:20:38 -0700 | [diff] [blame] | 468 | |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 469 | std::string ref_filename = std::string(DATA_MNT_POINT) + fscrypt_key_ref; |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 470 | if (!android::vold::writeStringToFile(s_device_policy.key_raw_ref, ref_filename)) return false; |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 471 | LOG(INFO) << "Wrote system DE key reference to:" << ref_filename; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 472 | |
Paul Crowley | c8a3ef3 | 2019-09-11 15:00:08 -0700 | [diff] [blame] | 473 | KeyBuffer per_boot_key; |
Paul Crowley | 4eac264 | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 474 | if (!generateStorageKey(makeGen(options), &per_boot_key)) return false; |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 475 | EncryptionPolicy per_boot_policy; |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 476 | if (!install_storage_key(DATA_MNT_POINT, options, per_boot_key, &per_boot_policy)) return false; |
Paul Crowley | c8a3ef3 | 2019-09-11 15:00:08 -0700 | [diff] [blame] | 477 | std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref; |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 478 | if (!android::vold::writeStringToFile(per_boot_policy.key_raw_ref, per_boot_ref_filename)) |
| 479 | return false; |
Paul Crowley | c8a3ef3 | 2019-09-11 15:00:08 -0700 | [diff] [blame] | 480 | LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename; |
| 481 | |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 482 | return true; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 483 | } |
| 484 | |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 485 | static bool prepare_special_dirs() { |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 486 | // Ensure that /data/data and its "alias" /data/user/0 exist, and create the |
| 487 | // bind mount of /data/data onto /data/user/0. This *should* happen in |
| 488 | // fscrypt_prepare_user_storage(). However, it actually must be done early, |
| 489 | // before the rest of user 0's CE storage is prepared. This is because |
| 490 | // zygote may need to set up app data isolation before then, which requires |
| 491 | // mounting a tmpfs over /data/data to ensure it remains hidden. This issue |
| 492 | // arises due to /data/data being in the top-level directory. |
| 493 | |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 494 | // /data/user/0 used to be a symlink to /data/data, so we must first delete |
| 495 | // the old symlink if present. |
| 496 | if (android::vold::IsSymlink(data_user_0_dir) && android::vold::Unlink(data_user_0_dir) != 0) |
| 497 | return false; |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 498 | // On first boot, we'll be creating /data/data for the first time, and user |
| 499 | // 0's CE key will be installed already since it was just created. Take the |
| 500 | // opportunity to also set the encryption policy of /data/data right away. |
| 501 | EncryptionPolicy ce_policy; |
| 502 | if (lookup_policy(s_ce_policies, 0, &ce_policy)) { |
| 503 | if (!prepare_dir_with_policy(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy)) |
| 504 | return false; |
| 505 | } else { |
| 506 | if (!prepare_dir(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM)) return false; |
| 507 | // EnsurePolicy() will have to happen later, in fscrypt_prepare_user_storage(). |
| 508 | } |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 509 | if (!prepare_dir(data_user_0_dir, 0700, AID_SYSTEM, AID_SYSTEM)) return false; |
| 510 | if (android::vold::BindMount(data_data_dir, data_user_0_dir) != 0) return false; |
| 511 | |
| 512 | // If /data/media/obb doesn't exist, create it and encrypt it with the |
| 513 | // device policy. Normally, device-policy-encrypted directories are created |
| 514 | // and encrypted by init; /data/media/obb is special because it is located |
| 515 | // in /data/media. Since /data/media also contains per-user encrypted |
| 516 | // directories, by design only vold can write to it. As a side effect of |
| 517 | // that, vold must create /data/media/obb. |
| 518 | // |
| 519 | // We must tolerate /data/media/obb being unencrypted if it already exists |
| 520 | // on-disk, since it used to be unencrypted (b/64566063). |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 521 | if (android::vold::pathExists(media_obb_dir)) { |
| 522 | if (!prepare_dir(media_obb_dir, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false; |
| 523 | } else { |
| 524 | if (!prepare_dir_with_policy(media_obb_dir, 0770, AID_MEDIA_RW, AID_MEDIA_RW, |
| 525 | s_device_policy)) |
| 526 | return false; |
| 527 | } |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 528 | return true; |
| 529 | } |
| 530 | |
Eric Biggers | fb48666 | 2022-03-22 00:33:52 +0000 | [diff] [blame] | 531 | bool fscrypt_init_user0_done; |
| 532 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 533 | bool fscrypt_init_user0() { |
| 534 | LOG(DEBUG) << "fscrypt_init_user0"; |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 535 | |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 536 | if (IsFbeEnabled()) { |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 537 | if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false; |
| 538 | if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false; |
| 539 | if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false; |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 540 | if (!android::vold::pathExists(get_de_key_path(0))) { |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 541 | if (!create_and_install_user_keys(0, false)) return false; |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 542 | } |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 543 | // TODO: switch to loading only DE_0 here once framework makes |
| 544 | // explicit calls to install DE keys for secondary users |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 545 | if (!load_all_de_keys()) return false; |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 546 | } |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 547 | |
| 548 | // Now that user 0's CE key has been created, we can prepare /data/data. |
| 549 | if (!prepare_special_dirs()) return false; |
| 550 | |
| 551 | // With the exception of what is done by prepare_special_dirs() above, we |
| 552 | // only prepare DE storage here, since user 0's CE key won't be installed |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 553 | // yet unless it was just created. The framework will prepare the user's CE |
| 554 | // storage later, once their CE key is installed. |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 555 | if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) { |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 556 | LOG(ERROR) << "Failed to prepare user 0 storage"; |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 557 | return false; |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 558 | } |
Jeff Sharkey | 0754a45 | 2016-02-08 12:21:42 -0700 | [diff] [blame] | 559 | |
Nikita Ioffe | 1c6731c | 2020-02-28 19:50:31 +0000 | [diff] [blame] | 560 | // In some scenarios (e.g. userspace reboot) we might unmount userdata |
| 561 | // without doing a hard reboot. If CE keys were stored in fs keyring then |
| 562 | // they will be lost after unmount. Attempt to re-install them. |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 563 | if (IsFbeEnabled() && android::vold::isFsKeyringSupported()) { |
Nikita Ioffe | 1c6731c | 2020-02-28 19:50:31 +0000 | [diff] [blame] | 564 | if (!try_reload_ce_keys()) return false; |
| 565 | } |
| 566 | |
Eric Biggers | fb48666 | 2022-03-22 00:33:52 +0000 | [diff] [blame] | 567 | fscrypt_init_user0_done = true; |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 568 | return true; |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 569 | } |
| 570 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 571 | bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) { |
| 572 | LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial; |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 573 | if (!IsFbeEnabled()) { |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 574 | return true; |
Paul Crowley | ea62e26 | 2016-01-28 12:23:53 +0000 | [diff] [blame] | 575 | } |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 576 | // FIXME test for existence of key that is not loaded yet |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 577 | if (s_ce_policies.count(user_id) != 0) { |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 578 | LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 579 | << " serial " << serial; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 580 | // FIXME should we fail the command? |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 581 | return true; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 582 | } |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 583 | if (!create_and_install_user_keys(user_id, ephemeral)) { |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 584 | return false; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 585 | } |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 586 | return true; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 587 | } |
| 588 | |
Eric Biggers | ce36868 | 2019-04-03 15:44:06 -0700 | [diff] [blame] | 589 | // "Lock" all encrypted directories whose key has been removed. This is needed |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 590 | // in the case where the keys are being put in the session keyring (rather in |
| 591 | // the newer filesystem-level keyrings), because removing a key from the session |
| 592 | // keyring doesn't affect inodes in the kernel's inode cache whose per-file key |
| 593 | // was already set up. So to remove the per-file keys and make the files |
| 594 | // "appear encrypted", these inodes must be evicted. |
Eric Biggers | ce36868 | 2019-04-03 15:44:06 -0700 | [diff] [blame] | 595 | // |
| 596 | // To do this, sync() to clean all dirty inodes, then drop all reclaimable slab |
| 597 | // objects systemwide. This is overkill, but it's the best available method |
| 598 | // currently. Don't use drop_caches mode "3" because that also evicts pagecache |
| 599 | // for in-use files; all files relevant here are already closed and sync'ed. |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 600 | static void drop_caches_if_needed() { |
| 601 | if (android::vold::isFsKeyringSupported()) { |
| 602 | return; |
| 603 | } |
Pavel Grafov | b350ed0 | 2017-07-27 17:34:57 +0100 | [diff] [blame] | 604 | sync(); |
Eric Biggers | ce36868 | 2019-04-03 15:44:06 -0700 | [diff] [blame] | 605 | if (!writeStringToFile("2", "/proc/sys/vm/drop_caches")) { |
Pavel Grafov | b350ed0 | 2017-07-27 17:34:57 +0100 | [diff] [blame] | 606 | PLOG(ERROR) << "Failed to drop caches during key eviction"; |
| 607 | } |
| 608 | } |
| 609 | |
Andrew Scull | 7ec25c7 | 2016-10-31 10:28:25 +0000 | [diff] [blame] | 610 | static bool evict_ce_key(userid_t user_id) { |
Andrew Scull | 7ec25c7 | 2016-10-31 10:28:25 +0000 | [diff] [blame] | 611 | bool success = true; |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 612 | EncryptionPolicy policy; |
Andrew Scull | 7ec25c7 | 2016-10-31 10:28:25 +0000 | [diff] [blame] | 613 | // If we haven't loaded the CE key, no need to evict it. |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 614 | if (lookup_policy(s_ce_policies, user_id, &policy)) { |
| 615 | success &= android::vold::evictKey(DATA_MNT_POINT, policy); |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 616 | drop_caches_if_needed(); |
Andrew Scull | 7ec25c7 | 2016-10-31 10:28:25 +0000 | [diff] [blame] | 617 | } |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 618 | s_ce_policies.erase(user_id); |
Andrew Scull | 7ec25c7 | 2016-10-31 10:28:25 +0000 | [diff] [blame] | 619 | return success; |
| 620 | } |
| 621 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 622 | bool fscrypt_destroy_user_key(userid_t user_id) { |
| 623 | LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")"; |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 624 | if (!IsFbeEnabled()) { |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 625 | return true; |
Paul Crowley | ea62e26 | 2016-01-28 12:23:53 +0000 | [diff] [blame] | 626 | } |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 627 | bool success = true; |
Andrew Scull | 7ec25c7 | 2016-10-31 10:28:25 +0000 | [diff] [blame] | 628 | success &= evict_ce_key(user_id); |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 629 | EncryptionPolicy de_policy; |
| 630 | success &= lookup_policy(s_de_policies, user_id, &de_policy) && |
| 631 | android::vold::evictKey(DATA_MNT_POINT, de_policy); |
| 632 | s_de_policies.erase(user_id); |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 633 | auto it = s_ephemeral_users.find(user_id); |
| 634 | if (it != s_ephemeral_users.end()) { |
| 635 | s_ephemeral_users.erase(it); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 636 | } else { |
Eric Biggers | d863b2c | 2021-05-27 17:29:10 -0700 | [diff] [blame] | 637 | auto ce_path = get_ce_key_directory_path(user_id); |
| 638 | for (auto const path : get_ce_key_paths(ce_path)) { |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 639 | success &= android::vold::destroyKey(path); |
| 640 | } |
Eric Biggers | d863b2c | 2021-05-27 17:29:10 -0700 | [diff] [blame] | 641 | success &= destroy_dir(ce_path); |
| 642 | |
Paul Crowley | ab0b56a | 2016-07-19 15:29:53 -0700 | [diff] [blame] | 643 | auto de_key_path = get_de_key_path(user_id); |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 644 | if (android::vold::pathExists(de_key_path)) { |
Paul Crowley | ab0b56a | 2016-07-19 15:29:53 -0700 | [diff] [blame] | 645 | success &= android::vold::destroyKey(de_key_path); |
| 646 | } else { |
| 647 | LOG(INFO) << "Not present so not erasing: " << de_key_path; |
| 648 | } |
Lenka Trochtova | 395039f | 2015-11-25 10:13:03 +0100 | [diff] [blame] | 649 | } |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 650 | return success; |
Paul Crowley | b33e887 | 2015-05-19 12:34:09 +0100 | [diff] [blame] | 651 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 652 | |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 653 | static bool parse_hex(const std::string& hex, std::string* result) { |
| 654 | if (hex == "!") { |
Paul Crowley | a051eb7 | 2016-03-08 16:08:32 -0800 | [diff] [blame] | 655 | *result = ""; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 656 | return true; |
| 657 | } |
Paul Crowley | a051eb7 | 2016-03-08 16:08:32 -0800 | [diff] [blame] | 658 | if (android::vold::HexToStr(hex, *result) != 0) { |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 659 | LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 660 | return false; |
| 661 | } |
| 662 | return true; |
| 663 | } |
| 664 | |
Barani Muthukumaran | b1927c2 | 2019-10-31 22:59:34 -0700 | [diff] [blame] | 665 | static std::optional<android::vold::KeyAuthentication> authentication_from_hex( |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 666 | const std::string& secret_hex) { |
| 667 | std::string secret; |
Barani Muthukumaran | b1927c2 | 2019-10-31 22:59:34 -0700 | [diff] [blame] | 668 | if (!parse_hex(secret_hex, &secret)) return std::optional<android::vold::KeyAuthentication>(); |
| 669 | if (secret.empty()) { |
| 670 | return kEmptyAuthentication; |
| 671 | } else { |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 672 | return android::vold::KeyAuthentication(secret); |
Barani Muthukumaran | b1927c2 | 2019-10-31 22:59:34 -0700 | [diff] [blame] | 673 | } |
| 674 | } |
| 675 | |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 676 | static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) { |
| 677 | return misc_path + "/vold/volume_keys/" + volume_uuid + "/default"; |
| 678 | } |
| 679 | |
Paul Crowley | 26a5388 | 2017-10-26 11:16:39 -0700 | [diff] [blame] | 680 | static std::string volume_secdiscardable_path(const std::string& volume_uuid) { |
| 681 | return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable"; |
| 682 | } |
| 683 | |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 684 | static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid, |
Paul Crowley | 5e53ff6 | 2019-10-24 14:55:17 -0700 | [diff] [blame] | 685 | EncryptionPolicy* policy) { |
Paul Crowley | 26a5388 | 2017-10-26 11:16:39 -0700 | [diff] [blame] | 686 | auto secdiscardable_path = volume_secdiscardable_path(volume_uuid); |
| 687 | std::string secdiscardable_hash; |
| 688 | if (android::vold::pathExists(secdiscardable_path)) { |
| 689 | if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash)) |
| 690 | return false; |
| 691 | } else { |
Eric Biggers | fec0c0e | 2021-02-16 15:59:17 -0800 | [diff] [blame] | 692 | if (!android::vold::MkdirsSync(secdiscardable_path, 0700)) return false; |
Paul Crowley | 26a5388 | 2017-10-26 11:16:39 -0700 | [diff] [blame] | 693 | if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash)) |
| 694 | return false; |
| 695 | } |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 696 | auto key_path = volkey_path(misc_path, volume_uuid); |
Eric Biggers | fec0c0e | 2021-02-16 15:59:17 -0800 | [diff] [blame] | 697 | if (!android::vold::MkdirsSync(key_path, 0700)) return false; |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 698 | android::vold::KeyAuthentication auth(secdiscardable_hash); |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 699 | |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 700 | EncryptionOptions options; |
| 701 | if (!get_volume_file_encryption_options(&options)) return false; |
| 702 | KeyBuffer key; |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 703 | if (!retrieveOrGenerateKey(key_path, key_path + "_tmp", auth, makeGen(options), &key)) |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 704 | return false; |
| 705 | if (!install_storage_key(BuildDataPath(volume_uuid), options, key, policy)) return false; |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 706 | return true; |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 707 | } |
| 708 | |
| 709 | static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) { |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 710 | auto path = volkey_path(misc_path, volume_uuid); |
| 711 | if (!android::vold::pathExists(path)) return true; |
| 712 | return android::vold::destroyKey(path); |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 713 | } |
| 714 | |
Barani Muthukumaran | b1927c2 | 2019-10-31 22:59:34 -0700 | [diff] [blame] | 715 | static bool fscrypt_rewrap_user_key(userid_t user_id, int serial, |
| 716 | const android::vold::KeyAuthentication& retrieve_auth, |
| 717 | const android::vold::KeyAuthentication& store_auth) { |
| 718 | if (s_ephemeral_users.count(user_id) != 0) return true; |
| 719 | auto const directory_path = get_ce_key_directory_path(user_id); |
| 720 | KeyBuffer ce_key; |
| 721 | std::string ce_key_current_path = get_ce_key_current_path(directory_path); |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 722 | if (retrieveKey(ce_key_current_path, retrieve_auth, &ce_key)) { |
Barani Muthukumaran | b1927c2 | 2019-10-31 22:59:34 -0700 | [diff] [blame] | 723 | LOG(DEBUG) << "Successfully retrieved key"; |
| 724 | // TODO(147732812): Remove this once Locksettingservice is fixed. |
| 725 | // Currently it calls fscrypt_clear_user_key_auth with a secret when lockscreen is |
| 726 | // changed from swipe to none or vice-versa |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 727 | } else if (retrieveKey(ce_key_current_path, kEmptyAuthentication, &ce_key)) { |
Barani Muthukumaran | b1927c2 | 2019-10-31 22:59:34 -0700 | [diff] [blame] | 728 | LOG(DEBUG) << "Successfully retrieved key with empty auth"; |
| 729 | } else { |
| 730 | LOG(ERROR) << "Failed to retrieve key for user " << user_id; |
| 731 | return false; |
| 732 | } |
| 733 | auto const paths = get_ce_key_paths(directory_path); |
| 734 | std::string ce_key_path; |
| 735 | if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false; |
| 736 | if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, store_auth, ce_key)) |
| 737 | return false; |
Barani Muthukumaran | b1927c2 | 2019-10-31 22:59:34 -0700 | [diff] [blame] | 738 | return true; |
| 739 | } |
| 740 | |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 741 | bool fscrypt_add_user_key_auth(userid_t user_id, int serial, const std::string& secret_hex) { |
| 742 | LOG(DEBUG) << "fscrypt_add_user_key_auth " << user_id << " serial=" << serial; |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 743 | if (!IsFbeEnabled()) return true; |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 744 | auto auth = authentication_from_hex(secret_hex); |
Barani Muthukumaran | b1927c2 | 2019-10-31 22:59:34 -0700 | [diff] [blame] | 745 | if (!auth) return false; |
| 746 | return fscrypt_rewrap_user_key(user_id, serial, kEmptyAuthentication, *auth); |
| 747 | } |
| 748 | |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 749 | bool fscrypt_clear_user_key_auth(userid_t user_id, int serial, const std::string& secret_hex) { |
| 750 | LOG(DEBUG) << "fscrypt_clear_user_key_auth " << user_id << " serial=" << serial; |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 751 | if (!IsFbeEnabled()) return true; |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 752 | auto auth = authentication_from_hex(secret_hex); |
Barani Muthukumaran | b1927c2 | 2019-10-31 22:59:34 -0700 | [diff] [blame] | 753 | if (!auth) return false; |
| 754 | return fscrypt_rewrap_user_key(user_id, serial, *auth, kEmptyAuthentication); |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 755 | } |
| 756 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 757 | bool fscrypt_fixate_newest_user_key_auth(userid_t user_id) { |
| 758 | LOG(DEBUG) << "fscrypt_fixate_newest_user_key_auth " << user_id; |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 759 | if (!IsFbeEnabled()) return true; |
Paul Crowley | 25a7138 | 2016-07-25 15:55:36 -0700 | [diff] [blame] | 760 | if (s_ephemeral_users.count(user_id) != 0) return true; |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 761 | auto const directory_path = get_ce_key_directory_path(user_id); |
| 762 | auto const paths = get_ce_key_paths(directory_path); |
| 763 | if (paths.empty()) { |
| 764 | LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id; |
| 765 | return false; |
Paul Crowley | ad2eb64 | 2016-02-10 17:56:05 +0000 | [diff] [blame] | 766 | } |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 767 | fixate_user_ce_key(directory_path, paths[0], paths); |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 768 | return true; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 769 | } |
| 770 | |
Eric Biggers | 18ba152 | 2021-04-06 12:02:56 -0700 | [diff] [blame] | 771 | std::vector<int> fscrypt_get_unlocked_users() { |
| 772 | std::vector<int> user_ids; |
| 773 | for (const auto& it : s_ce_policies) { |
| 774 | user_ids.push_back(it.first); |
| 775 | } |
| 776 | return user_ids; |
| 777 | } |
| 778 | |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 779 | // TODO: rename to 'install' for consistency, and take flags to know which keys to install |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 780 | bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& secret_hex) { |
| 781 | LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial; |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 782 | if (IsFbeEnabled()) { |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 783 | if (s_ce_policies.count(user_id) != 0) { |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 784 | LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id; |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 785 | return true; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 786 | } |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 787 | auto auth = authentication_from_hex(secret_hex); |
Barani Muthukumaran | b1927c2 | 2019-10-31 22:59:34 -0700 | [diff] [blame] | 788 | if (!auth) return false; |
| 789 | if (!read_and_install_user_ce_key(user_id, *auth)) { |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 790 | LOG(ERROR) << "Couldn't read key for " << user_id; |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 791 | return false; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 792 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 793 | } |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 794 | return true; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 795 | } |
| 796 | |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 797 | // TODO: rename to 'evict' for consistency |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 798 | bool fscrypt_lock_user_key(userid_t user_id) { |
| 799 | LOG(DEBUG) << "fscrypt_lock_user_key " << user_id; |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 800 | if (IsFbeEnabled()) { |
Andrew Scull | 7ec25c7 | 2016-10-31 10:28:25 +0000 | [diff] [blame] | 801 | return evict_ce_key(user_id); |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 802 | } |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 803 | return true; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 804 | } |
| 805 | |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 806 | static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid, |
| 807 | userid_t user_id, int flags) { |
| 808 | if (0 != android::vold::ForkExecvp( |
| 809 | std::vector<std::string>{prepare_subdirs_path, action, volume_uuid, |
| 810 | std::to_string(user_id), std::to_string(flags)})) { |
| 811 | LOG(ERROR) << "vold_prepare_subdirs failed"; |
Paul Crowley | 8e55066 | 2017-10-16 17:01:44 -0700 | [diff] [blame] | 812 | return false; |
| 813 | } |
| 814 | return true; |
| 815 | } |
| 816 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 817 | bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial, |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 818 | int flags) { |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 819 | LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid) |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 820 | << ", user " << user_id << ", serial " << serial << ", flags " << flags; |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 821 | |
Eric Biggers | c66c2e3 | 2022-05-04 04:39:50 +0000 | [diff] [blame] | 822 | // Internal storage must be prepared before adoptable storage, since the |
| 823 | // user's volume keys are stored in their internal storage. |
| 824 | if (!volume_uuid.empty()) { |
| 825 | if ((flags & android::os::IVold::STORAGE_FLAG_DE) && |
| 826 | !android::vold::pathExists(android::vold::BuildDataMiscDePath("", user_id))) { |
| 827 | LOG(ERROR) << "Cannot prepare DE storage for user " << user_id << " on volume " |
| 828 | << volume_uuid << " before internal storage"; |
| 829 | return false; |
| 830 | } |
| 831 | if ((flags & android::os::IVold::STORAGE_FLAG_CE) && |
| 832 | !android::vold::pathExists(android::vold::BuildDataMiscCePath("", user_id))) { |
| 833 | LOG(ERROR) << "Cannot prepare CE storage for user " << user_id << " on volume " |
| 834 | << volume_uuid << " before internal storage"; |
| 835 | return false; |
| 836 | } |
| 837 | } |
| 838 | |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 839 | if (flags & android::os::IVold::STORAGE_FLAG_DE) { |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 840 | // DE_sys key |
| 841 | auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id); |
| 842 | auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id); |
| 843 | auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 844 | |
| 845 | // DE_n key |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 846 | EncryptionPolicy de_policy; |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 847 | auto system_de_path = android::vold::BuildDataSystemDePath(user_id); |
Mohammad Samiul Islam | e833630 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 848 | auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id); |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 849 | auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id); |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 850 | auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id); |
| 851 | |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 852 | if (IsFbeEnabled()) { |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 853 | if (volume_uuid.empty()) { |
| 854 | if (!lookup_policy(s_de_policies, user_id, &de_policy)) { |
| 855 | LOG(ERROR) << "Cannot find DE policy for user " << user_id; |
| 856 | return false; |
| 857 | } |
| 858 | } else { |
| 859 | auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id); |
| 860 | if (!read_or_create_volkey(misc_de_empty_volume_path, volume_uuid, &de_policy)) { |
| 861 | return false; |
| 862 | } |
| 863 | } |
| 864 | } |
| 865 | |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 866 | if (volume_uuid.empty()) { |
Paul Crowley | 6b756ce | 2017-10-05 14:07:09 -0700 | [diff] [blame] | 867 | if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false; |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 868 | #if MANAGE_MISC_DIRS |
Paul Crowley | 6b756ce | 2017-10-05 14:07:09 -0700 | [diff] [blame] | 869 | if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM), |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 870 | multiuser_get_uid(user_id, AID_EVERYBODY))) |
| 871 | return false; |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 872 | #endif |
Paul Crowley | 6b756ce | 2017-10-05 14:07:09 -0700 | [diff] [blame] | 873 | if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false; |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 874 | |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 875 | if (!prepare_dir_with_policy(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM, de_policy)) |
| 876 | return false; |
| 877 | if (!prepare_dir_with_policy(vendor_de_path, 0771, AID_ROOT, AID_ROOT, de_policy)) |
| 878 | return false; |
Paul Crowley | 6b756ce | 2017-10-05 14:07:09 -0700 | [diff] [blame] | 879 | } |
Mohammad Samiul Islam | e833630 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 880 | |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 881 | if (!prepare_dir_with_policy(misc_de_path, 01771, AID_SYSTEM, AID_MISC, de_policy)) |
| 882 | return false; |
| 883 | if (!prepare_dir_with_policy(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM, de_policy)) |
| 884 | return false; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 885 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 886 | |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 887 | if (flags & android::os::IVold::STORAGE_FLAG_CE) { |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 888 | // CE_n key |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 889 | EncryptionPolicy ce_policy; |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 890 | auto system_ce_path = android::vold::BuildDataSystemCePath(user_id); |
Mohammad Samiul Islam | e833630 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 891 | auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id); |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 892 | auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 893 | auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id); |
| 894 | auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id); |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 895 | |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 896 | if (IsFbeEnabled()) { |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 897 | if (volume_uuid.empty()) { |
| 898 | if (!lookup_policy(s_ce_policies, user_id, &ce_policy)) { |
| 899 | LOG(ERROR) << "Cannot find CE policy for user " << user_id; |
| 900 | return false; |
| 901 | } |
| 902 | } else { |
| 903 | auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id); |
| 904 | if (!read_or_create_volkey(misc_ce_empty_volume_path, volume_uuid, &ce_policy)) { |
| 905 | return false; |
| 906 | } |
| 907 | } |
Paul Crowley | 6b756ce | 2017-10-05 14:07:09 -0700 | [diff] [blame] | 908 | } |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 909 | |
| 910 | if (volume_uuid.empty()) { |
| 911 | if (!prepare_dir_with_policy(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM, ce_policy)) |
| 912 | return false; |
| 913 | if (!prepare_dir_with_policy(vendor_ce_path, 0771, AID_ROOT, AID_ROOT, ce_policy)) |
| 914 | return false; |
| 915 | } |
| 916 | if (!prepare_dir_with_policy(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW, ce_policy)) |
| 917 | return false; |
Martijn Coenen | 5adf92a | 2021-02-01 07:57:02 +0000 | [diff] [blame] | 918 | // On devices without sdcardfs (kernel 5.4+), the path permissions aren't fixed |
| 919 | // up automatically; therefore, use a default ACL, to ensure apps with MEDIA_RW |
| 920 | // can keep reading external storage; in particular, this allows app cloning |
| 921 | // scenarios to work correctly on such devices. |
| 922 | int ret = SetDefaultAcl(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW, {AID_MEDIA_RW}); |
| 923 | if (ret != android::OK) { |
| 924 | return false; |
| 925 | } |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 926 | if (!prepare_dir_with_policy(misc_ce_path, 01771, AID_SYSTEM, AID_MISC, ce_policy)) |
| 927 | return false; |
| 928 | if (!prepare_dir_with_policy(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy)) |
| 929 | return false; |
Paul Crowley | 1a96526 | 2017-10-13 13:49:50 -0700 | [diff] [blame] | 930 | |
| 931 | if (volume_uuid.empty()) { |
Paul Crowley | 8e55066 | 2017-10-16 17:01:44 -0700 | [diff] [blame] | 932 | // Now that credentials have been installed, we can run restorecon |
| 933 | // over these paths |
| 934 | // NOTE: these paths need to be kept in sync with libselinux |
| 935 | android::vold::RestoreconRecursive(system_ce_path); |
Nick Kralevich | 6a3ef48 | 2019-05-14 09:30:29 -0700 | [diff] [blame] | 936 | android::vold::RestoreconRecursive(vendor_ce_path); |
Paul Crowley | 8e55066 | 2017-10-16 17:01:44 -0700 | [diff] [blame] | 937 | android::vold::RestoreconRecursive(misc_ce_path); |
Paul Crowley | 1a96526 | 2017-10-13 13:49:50 -0700 | [diff] [blame] | 938 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 939 | } |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 940 | if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 941 | |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 942 | return true; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 943 | } |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 944 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 945 | bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) { |
| 946 | LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid) |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 947 | << ", user " << user_id << ", flags " << flags; |
| 948 | bool res = true; |
| 949 | |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 950 | res &= prepare_subdirs("destroy", volume_uuid, user_id, flags); |
| 951 | |
| 952 | if (flags & android::os::IVold::STORAGE_FLAG_CE) { |
Paul Crowley | 8e55066 | 2017-10-16 17:01:44 -0700 | [diff] [blame] | 953 | // CE_n key |
| 954 | auto system_ce_path = android::vold::BuildDataSystemCePath(user_id); |
Mohammad Samiul Islam | e833630 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 955 | auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id); |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 956 | auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id); |
Paul Crowley | 8e55066 | 2017-10-16 17:01:44 -0700 | [diff] [blame] | 957 | auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id); |
| 958 | auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id); |
| 959 | |
| 960 | res &= destroy_dir(media_ce_path); |
Mohammad Samiul Islam | e833630 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 961 | res &= destroy_dir(misc_ce_path); |
Paul Crowley | 8e55066 | 2017-10-16 17:01:44 -0700 | [diff] [blame] | 962 | res &= destroy_dir(user_ce_path); |
| 963 | if (volume_uuid.empty()) { |
Paul Crowley | 8e55066 | 2017-10-16 17:01:44 -0700 | [diff] [blame] | 964 | res &= destroy_dir(system_ce_path); |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 965 | res &= destroy_dir(vendor_ce_path); |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 966 | } else { |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 967 | if (IsFbeEnabled()) { |
Mohammad Samiul Islam | e833630 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 968 | auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id); |
| 969 | res &= destroy_volkey(misc_ce_empty_volume_path, volume_uuid); |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 970 | } |
Paul Crowley | 8e55066 | 2017-10-16 17:01:44 -0700 | [diff] [blame] | 971 | } |
| 972 | } |
| 973 | |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 974 | if (flags & android::os::IVold::STORAGE_FLAG_DE) { |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 975 | // DE_sys key |
| 976 | auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id); |
| 977 | auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id); |
| 978 | auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 979 | |
| 980 | // DE_n key |
| 981 | auto system_de_path = android::vold::BuildDataSystemDePath(user_id); |
Mohammad Samiul Islam | e833630 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 982 | auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id); |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 983 | auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 984 | auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id); |
| 985 | |
Paul Crowley | 8e55066 | 2017-10-16 17:01:44 -0700 | [diff] [blame] | 986 | res &= destroy_dir(user_de_path); |
Mohammad Samiul Islam | e833630 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 987 | res &= destroy_dir(misc_de_path); |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 988 | if (volume_uuid.empty()) { |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 989 | res &= destroy_dir(system_legacy_path); |
| 990 | #if MANAGE_MISC_DIRS |
| 991 | res &= destroy_dir(misc_legacy_path); |
| 992 | #endif |
| 993 | res &= destroy_dir(profiles_de_path); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 994 | res &= destroy_dir(system_de_path); |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 995 | res &= destroy_dir(vendor_de_path); |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 996 | } else { |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 997 | if (IsFbeEnabled()) { |
Mohammad Samiul Islam | e833630 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 998 | auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id); |
| 999 | res &= destroy_volkey(misc_de_empty_volume_path, volume_uuid); |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 1000 | } |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 1001 | } |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 1002 | } |
| 1003 | |
| 1004 | return res; |
| 1005 | } |
Rubin Xu | 2436e27 | 2017-04-27 20:43:10 +0100 | [diff] [blame] | 1006 | |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 1007 | static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) { |
| 1008 | auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir); |
| 1009 | if (!dirp) { |
| 1010 | PLOG(ERROR) << "Unable to open directory: " + directory_path; |
| 1011 | return false; |
| 1012 | } |
| 1013 | bool res = true; |
| 1014 | for (;;) { |
| 1015 | errno = 0; |
| 1016 | auto const entry = readdir(dirp.get()); |
| 1017 | if (!entry) { |
| 1018 | if (errno) { |
| 1019 | PLOG(ERROR) << "Unable to read directory: " + directory_path; |
| 1020 | return false; |
| 1021 | } |
| 1022 | break; |
| 1023 | } |
Eric Biggers | 6b84039 | 2020-11-02 15:11:06 -0800 | [diff] [blame] | 1024 | if (IsDotOrDotDot(*entry)) continue; |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 1025 | if (entry->d_type != DT_DIR || entry->d_name[0] == '.') { |
| 1026 | LOG(DEBUG) << "Skipping non-user " << entry->d_name; |
| 1027 | continue; |
| 1028 | } |
| 1029 | res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid); |
| 1030 | } |
| 1031 | return res; |
| 1032 | } |
| 1033 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 1034 | bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) { |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 1035 | bool res = true; |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 1036 | LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid); |
Paul Crowley | 26a5388 | 2017-10-26 11:16:39 -0700 | [diff] [blame] | 1037 | auto secdiscardable_path = volume_secdiscardable_path(volume_uuid); |
| 1038 | res &= android::vold::runSecdiscardSingle(secdiscardable_path); |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 1039 | res &= destroy_volume_keys("/data/misc_ce", volume_uuid); |
| 1040 | res &= destroy_volume_keys("/data/misc_de", volume_uuid); |
| 1041 | return res; |
| 1042 | } |