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 | |
Eric Biggers | b615f3b | 2022-11-09 05:48:45 +0000 | [diff] [blame] | 19 | #include "Checkpoint.h" |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 20 | #include "KeyStorage.h" |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 21 | #include "KeyUtil.h" |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 22 | #include "Utils.h" |
Paul Crowley | a7ca40b | 2017-10-06 14:29:33 -0700 | [diff] [blame] | 23 | #include "VoldUtil.h" |
| 24 | |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 25 | #include <algorithm> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 26 | #include <map> |
Barani Muthukumaran | b1927c2 | 2019-10-31 22:59:34 -0700 | [diff] [blame] | 27 | #include <optional> |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 28 | #include <set> |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 29 | #include <sstream> |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 30 | #include <string> |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 31 | #include <vector> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 32 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 33 | #include <dirent.h> |
| 34 | #include <errno.h> |
| 35 | #include <fcntl.h> |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 36 | #include <limits.h> |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 37 | #include <sys/mount.h> |
| 38 | #include <sys/stat.h> |
| 39 | #include <sys/types.h> |
Eric Biggers | 7bdf799 | 2024-10-18 16:51:27 +0000 | [diff] [blame] | 40 | #include <sys/utsname.h> |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 41 | #include <unistd.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 42 | |
Paul Crowley | 480fcd2 | 2015-08-24 14:53:28 +0100 | [diff] [blame] | 43 | #include <private/android_filesystem_config.h> |
Martijn Coenen | aee4051 | 2020-02-18 16:29:25 +0100 | [diff] [blame] | 44 | #include <private/android_projectid_config.h> |
Paul Crowley | 480fcd2 | 2015-08-24 14:53:28 +0100 | [diff] [blame] | 45 | |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 46 | #include "android/os/IVold.h" |
| 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> |
Eric Biggers | eb566d0 | 2020-07-06 13:46:38 -0700 | [diff] [blame] | 52 | #include <libdm/dm.h> |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 53 | |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 54 | #include <android-base/file.h> |
Elliott Hughes | 6bf0547 | 2015-12-04 17:55:33 -0800 | [diff] [blame] | 55 | #include <android-base/logging.h> |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 56 | #include <android-base/properties.h> |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 57 | #include <android-base/stringprintf.h> |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 58 | #include <android-base/strings.h> |
Jie | b6698d5 | 2018-11-12 15:26:02 +0800 | [diff] [blame] | 59 | #include <android-base/unique_fd.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 60 | |
Eric Biggers | eb566d0 | 2020-07-06 13:46:38 -0700 | [diff] [blame] | 61 | using android::base::Basename; |
| 62 | using android::base::Realpath; |
| 63 | using android::base::StartsWith; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 64 | using android::base::StringPrintf; |
Tom Cherry | 4c5bde2 | 2019-01-29 14:34:01 -0800 | [diff] [blame] | 65 | using android::fs_mgr::GetEntryForMountPoint; |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 66 | using android::vold::BuildDataPath; |
Eric Biggers | 6b84039 | 2020-11-02 15:11:06 -0800 | [diff] [blame] | 67 | using android::vold::IsDotOrDotDot; |
Martijn Coenen | fd9cdbf | 2020-02-11 14:20:29 +0100 | [diff] [blame] | 68 | using android::vold::IsFilesystemSupported; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 69 | using android::vold::kEmptyAuthentication; |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 70 | using android::vold::KeyBuffer; |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 71 | using android::vold::KeyGeneration; |
Paul Crowley | 4eac264 | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 72 | using android::vold::retrieveKey; |
| 73 | using android::vold::retrieveOrGenerateKey; |
Martijn Coenen | 5adf92a | 2021-02-01 07:57:02 +0000 | [diff] [blame] | 74 | using android::vold::SetDefaultAcl; |
Martijn Coenen | fd9cdbf | 2020-02-11 14:20:29 +0100 | [diff] [blame] | 75 | using android::vold::SetQuotaInherit; |
| 76 | using android::vold::SetQuotaProjectId; |
Paul Crowley | 5e53ff6 | 2019-10-24 14:55:17 -0700 | [diff] [blame] | 77 | using namespace android::fscrypt; |
Eric Biggers | eb566d0 | 2020-07-06 13:46:38 -0700 | [diff] [blame] | 78 | using namespace android::dm; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 79 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 80 | namespace { |
Andrew Scull | 7ec25c7 | 2016-10-31 10:28:25 +0000 | [diff] [blame] | 81 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 82 | 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] | 83 | const std::string device_key_path = device_key_dir + "/key"; |
| 84 | const std::string device_key_temp = device_key_dir + "/temp"; |
Paul Lawrence | 5a06a64 | 2016-02-03 13:39:13 -0800 | [diff] [blame] | 85 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 86 | const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys"; |
| 87 | const std::string user_key_temp = user_key_dir + "/temp"; |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 88 | const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs"; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 89 | |
Paul Crowley | 26a5388 | 2017-10-26 11:16:39 -0700 | [diff] [blame] | 90 | const std::string systemwide_volume_key_dir = |
| 91 | std::string() + DATA_MNT_POINT + "/misc/vold/volume_keys"; |
| 92 | |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 93 | const std::string data_data_dir = std::string() + DATA_MNT_POINT + "/data"; |
| 94 | const std::string data_user_0_dir = std::string() + DATA_MNT_POINT + "/user/0"; |
| 95 | const std::string media_obb_dir = std::string() + DATA_MNT_POINT + "/media/obb"; |
| 96 | |
Eric Biggers | 4cf1691 | 2022-10-26 19:05:10 +0000 | [diff] [blame] | 97 | // The file encryption options to use on the /data filesystem |
| 98 | EncryptionOptions s_data_options; |
| 99 | |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 100 | // Some users are ephemeral; don't try to store or wipe their keys on disk. |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 101 | std::set<userid_t> s_ephemeral_users; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 102 | |
Eric Biggers | 8c1659e | 2022-09-06 21:29:14 +0000 | [diff] [blame] | 103 | // New CE keys that haven't been committed to disk yet |
| 104 | std::map<userid_t, KeyBuffer> s_new_ce_keys; |
| 105 | |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 106 | // CE key fixation operations that have been deferred to checkpoint commit |
| 107 | std::map<std::string, std::string> s_deferred_fixations; |
| 108 | |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 109 | // The system DE encryption policy |
| 110 | EncryptionPolicy s_device_policy; |
| 111 | |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 112 | // Struct that holds the EncryptionPolicy for each CE or DE key that is currently installed |
| 113 | // (added to the kernel) for a particular user |
| 114 | struct UserPolicies { |
| 115 | // Internal storage policy. Exists whenever a user's UserPolicies exists at all, and used |
| 116 | // instead of a map entry keyed by an empty UUID to make this invariant explicit. |
| 117 | EncryptionPolicy internal; |
| 118 | // Adoptable storage policies, indexed by (nonempty) volume UUID |
| 119 | std::map<std::string, EncryptionPolicy> adoptable; |
| 120 | }; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 121 | |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 122 | // The currently installed CE and DE keys for each user. Protected by VolumeManager::mCryptLock. |
| 123 | std::map<userid_t, UserPolicies> s_ce_policies; |
| 124 | std::map<userid_t, UserPolicies> s_de_policies; |
Eric Biggers | b615f3b | 2022-11-09 05:48:45 +0000 | [diff] [blame] | 125 | |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 126 | } // namespace |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 127 | |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 128 | // Returns KeyGeneration suitable for key as described in EncryptionOptions |
| 129 | static KeyGeneration makeGen(const EncryptionOptions& options) { |
Eric Biggers | 4cf1691 | 2022-10-26 19:05:10 +0000 | [diff] [blame] | 130 | if (options.version == 0) { |
| 131 | LOG(ERROR) << "EncryptionOptions not initialized"; |
| 132 | return android::vold::neverGen(); |
| 133 | } |
Paul Crowley | 249c2fb | 2020-02-07 12:51:56 -0800 | [diff] [blame] | 134 | return KeyGeneration{FSCRYPT_MAX_KEY_SIZE, true, options.use_hw_wrapped_key}; |
| 135 | } |
| 136 | |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 137 | static const char* escape_empty(const std::string& value) { |
| 138 | return value.empty() ? "null" : value.c_str(); |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 139 | } |
| 140 | |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 141 | static std::string get_de_key_path(userid_t user_id) { |
| 142 | return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id); |
| 143 | } |
| 144 | |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 145 | static std::string get_ce_key_directory_path(userid_t user_id) { |
| 146 | return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id); |
| 147 | } |
| 148 | |
| 149 | // Returns the keys newest first |
| 150 | static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) { |
| 151 | auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir); |
| 152 | if (!dirp) { |
| 153 | PLOG(ERROR) << "Unable to open ce key directory: " + directory_path; |
| 154 | return std::vector<std::string>(); |
| 155 | } |
| 156 | std::vector<std::string> result; |
| 157 | for (;;) { |
| 158 | errno = 0; |
| 159 | auto const entry = readdir(dirp.get()); |
| 160 | if (!entry) { |
| 161 | if (errno) { |
| 162 | PLOG(ERROR) << "Unable to read ce key directory: " + directory_path; |
| 163 | return std::vector<std::string>(); |
| 164 | } |
| 165 | break; |
| 166 | } |
Eric Biggers | 6b84039 | 2020-11-02 15:11:06 -0800 | [diff] [blame] | 167 | if (IsDotOrDotDot(*entry)) continue; |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 168 | if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') { |
| 169 | LOG(DEBUG) << "Skipping non-key " << entry->d_name; |
| 170 | continue; |
| 171 | } |
| 172 | result.emplace_back(directory_path + "/" + entry->d_name); |
| 173 | } |
| 174 | std::sort(result.begin(), result.end()); |
| 175 | std::reverse(result.begin(), result.end()); |
| 176 | return result; |
| 177 | } |
| 178 | |
| 179 | static std::string get_ce_key_current_path(const std::string& directory_path) { |
| 180 | return directory_path + "/current"; |
| 181 | } |
| 182 | |
| 183 | static bool get_ce_key_new_path(const std::string& directory_path, |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 184 | const std::vector<std::string>& paths, std::string* ce_key_path) { |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 185 | if (paths.empty()) { |
| 186 | *ce_key_path = get_ce_key_current_path(directory_path); |
| 187 | return true; |
| 188 | } |
| 189 | for (unsigned int i = 0; i < UINT_MAX; i++) { |
| 190 | auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i); |
| 191 | if (paths[0] < candidate) { |
| 192 | *ce_key_path = candidate; |
| 193 | return true; |
| 194 | } |
| 195 | } |
| 196 | return false; |
| 197 | } |
| 198 | |
| 199 | // Discard all keys but the named one; rename it to canonical name. |
Eric Biggers | 8c1659e | 2022-09-06 21:29:14 +0000 | [diff] [blame] | 200 | static bool 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] | 201 | const std::vector<std::string>& paths) { |
Eric Biggers | 11409cb | 2022-10-26 19:02:43 +0000 | [diff] [blame] | 202 | bool need_sync = false; |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 203 | for (auto const other_path : paths) { |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 204 | if (other_path != to_fix) { |
| 205 | android::vold::destroyKey(other_path); |
Eric Biggers | 11409cb | 2022-10-26 19:02:43 +0000 | [diff] [blame] | 206 | need_sync = true; |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 207 | } |
| 208 | } |
| 209 | auto const current_path = get_ce_key_current_path(directory_path); |
| 210 | if (to_fix != current_path) { |
| 211 | LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path; |
Eric Biggers | 8c1659e | 2022-09-06 21:29:14 +0000 | [diff] [blame] | 212 | if (!android::vold::RenameKeyDir(to_fix, current_path)) return false; |
Eric Biggers | 11409cb | 2022-10-26 19:02:43 +0000 | [diff] [blame] | 213 | need_sync = true; |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 214 | } |
Eric Biggers | 11409cb | 2022-10-26 19:02:43 +0000 | [diff] [blame] | 215 | if (need_sync && !android::vold::FsyncDirectory(directory_path)) return false; |
Eric Biggers | 8c1659e | 2022-09-06 21:29:14 +0000 | [diff] [blame] | 216 | return true; |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | static bool read_and_fixate_user_ce_key(userid_t user_id, |
| 220 | const android::vold::KeyAuthentication& auth, |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 221 | KeyBuffer* ce_key) { |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 222 | auto const directory_path = get_ce_key_directory_path(user_id); |
| 223 | auto const paths = get_ce_key_paths(directory_path); |
Paul Crowley | 14c8c07 | 2018-09-18 13:30:21 -0700 | [diff] [blame] | 224 | for (auto const ce_key_path : paths) { |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 225 | LOG(DEBUG) << "Trying user CE key " << ce_key_path; |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 226 | if (retrieveKey(ce_key_path, auth, ce_key)) { |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 227 | LOG(DEBUG) << "Successfully retrieved key"; |
Eric Biggers | b615f3b | 2022-11-09 05:48:45 +0000 | [diff] [blame] | 228 | s_deferred_fixations.erase(directory_path); |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 229 | fixate_user_ce_key(directory_path, ce_key_path, paths); |
| 230 | return true; |
| 231 | } |
| 232 | } |
| 233 | LOG(ERROR) << "Failed to find working ce key for user " << user_id; |
| 234 | return false; |
Paul Crowley | b33e887 | 2015-05-19 12:34:09 +0100 | [diff] [blame] | 235 | } |
| 236 | |
Eric Biggers | 7bdf799 | 2024-10-18 16:51:27 +0000 | [diff] [blame] | 237 | // Checks whether the kernel definitely supports the sysfs files that describe the storage |
| 238 | // hardware's inline encryption capabilities. They are supported in upstream 5.18 and later, and in |
| 239 | // android14-5.15 and later (but not android13-5.15). For simplicity we just check for 5.18. |
| 240 | static bool DoesKernelSupportBlkCryptoSysfsFiles() { |
| 241 | struct utsname uts; |
| 242 | unsigned int major = 0, minor = 0; |
| 243 | if (uname(&uts) != 0 || sscanf(uts.release, "%u.%u", &major, &minor) != 2) { |
| 244 | return true; // This should never happen; assume new rather than old. |
| 245 | } |
| 246 | return major > 5 || (major == 5 && minor >= 18); |
| 247 | } |
| 248 | |
| 249 | // Checks whether the storage hardware might support only 32-bit data unit numbers. |
| 250 | static bool DoesHardwareSupportOnly32DunBits(const std::string& blk_device) { |
Eric Biggers | eb566d0 | 2020-07-06 13:46:38 -0700 | [diff] [blame] | 251 | // Handle symlinks. |
| 252 | std::string real_path; |
| 253 | if (!Realpath(blk_device, &real_path)) { |
| 254 | real_path = blk_device; |
| 255 | } |
| 256 | |
| 257 | // Handle logical volumes. |
| 258 | auto& dm = DeviceMapper::Instance(); |
| 259 | for (;;) { |
| 260 | auto parent = dm.GetParentBlockDeviceByPath(real_path); |
| 261 | if (!parent.has_value()) break; |
| 262 | real_path = *parent; |
| 263 | } |
| 264 | |
| 265 | // Now we should have the "real" block device. |
Eric Biggers | f9c6dfa | 2021-11-22 11:15:23 -0800 | [diff] [blame] | 266 | std::string name = Basename(real_path); |
Eric Biggers | 7bdf799 | 2024-10-18 16:51:27 +0000 | [diff] [blame] | 267 | |
| 268 | // If possible, do the check precisely via sysfs. |
| 269 | // Exclude older devices, just in case they are broken by doing the check correctly... |
| 270 | if (GetFirstApiLevel() >= __ANDROID_API_V__) { |
| 271 | std::string sysfs_path = "/sys/class/block/" + name + "/queue/crypto/max_dun_bits"; |
| 272 | if (!android::vold::pathExists(sysfs_path)) { |
| 273 | // For a partition, "queue" is in the parent directory which represents the disk. |
| 274 | sysfs_path = "/sys/class/block/" + name + "/../queue/crypto/max_dun_bits"; |
| 275 | } |
| 276 | if (android::vold::pathExists(sysfs_path)) { |
| 277 | std::string max_dun_bits; |
| 278 | if (!android::base::ReadFileToString(sysfs_path, &max_dun_bits)) { |
| 279 | PLOG(ERROR) << "Error reading " << sysfs_path; |
| 280 | return false; |
| 281 | } |
| 282 | max_dun_bits = android::base::Trim(max_dun_bits); |
| 283 | if (max_dun_bits != "32") { |
| 284 | LOG(ERROR) << sysfs_path << " = " << max_dun_bits; |
| 285 | // In this case, using emmc_optimized is not appropriate because the hardware |
| 286 | // supports inline encryption but does not have the 32-bit DUN limit. |
| 287 | return false; |
| 288 | } |
| 289 | LOG(DEBUG) << sysfs_path << " = " << max_dun_bits; |
| 290 | return true; |
| 291 | } |
| 292 | if (DoesKernelSupportBlkCryptoSysfsFiles()) { |
| 293 | // In this case, using emmc_optimized is not appropriate because the hardware does not |
| 294 | // support inline encryption. |
| 295 | LOG(ERROR) << sysfs_path << " does not exist"; |
| 296 | return false; |
| 297 | } |
| 298 | // In this case, the kernel might be too old to support the sysfs files. |
| 299 | } |
| 300 | |
| 301 | // Fallback method for older kernels that don't have the crypto capabilities in sysfs. The |
| 302 | // 32-bit DUN limit is only known to exist on eMMC storage, and also on virtio storage that |
| 303 | // inherits the limit from eMMC on the host. So allow either of those storage types. Note that |
| 304 | // this can be overly lenient compared to actually checking max_dun_bits. |
| 305 | if (StartsWith(name, "mmcblk") || StartsWith(name, "vd")) { |
| 306 | LOG(DEBUG) << __func__ << "(): << blk_device = " << blk_device |
| 307 | << ", real_path = " << real_path; |
| 308 | return true; |
| 309 | } |
| 310 | // Log at ERROR level here so that it shows up in the kernel log. |
| 311 | LOG(ERROR) << __func__ << "(): << blk_device = " << blk_device << ", real_path = " << real_path; |
| 312 | return false; |
Eric Biggers | eb566d0 | 2020-07-06 13:46:38 -0700 | [diff] [blame] | 313 | } |
| 314 | |
Eric Biggers | 4cf1691 | 2022-10-26 19:05:10 +0000 | [diff] [blame] | 315 | // Sets s_data_options to the file encryption options for the /data filesystem. |
| 316 | static bool init_data_file_encryption_options() { |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 317 | auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT); |
| 318 | if (entry == nullptr) { |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 319 | LOG(ERROR) << "No mount point entry for " << DATA_MNT_POINT; |
| 320 | return false; |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 321 | } |
Eric Biggers | 4cf1691 | 2022-10-26 19:05:10 +0000 | [diff] [blame] | 322 | if (!ParseOptions(entry->encryption_options, &s_data_options)) { |
Paul Crowley | a50f6c3 | 2019-10-24 23:21:44 -0700 | [diff] [blame] | 323 | LOG(ERROR) << "Unable to parse encryption options for " << DATA_MNT_POINT ": " |
| 324 | << entry->encryption_options; |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 325 | return false; |
Paul Crowley | a50f6c3 | 2019-10-24 23:21:44 -0700 | [diff] [blame] | 326 | } |
Eric Biggers | 4cf1691 | 2022-10-26 19:05:10 +0000 | [diff] [blame] | 327 | if ((s_data_options.flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) && |
Eric Biggers | 7bdf799 | 2024-10-18 16:51:27 +0000 | [diff] [blame] | 328 | !DoesHardwareSupportOnly32DunBits(entry->blk_device)) { |
| 329 | // This would unnecessarily reduce security and not be compliant with the CDD. |
| 330 | LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on hardware limited to " |
| 331 | "32-bit DUNs. Remove this flag from the device's fstab"; |
Eric Biggers | eb566d0 | 2020-07-06 13:46:38 -0700 | [diff] [blame] | 332 | return false; |
| 333 | } |
Pig | 654cdd1 | 2020-09-25 22:56:33 +0800 | [diff] [blame] | 334 | if (s_data_options.version == 1) { |
| 335 | s_data_options.use_hw_wrapped_key = |
| 336 | GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT)->fs_mgr_flags.wrapped_key; |
| 337 | } |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 338 | return true; |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 339 | } |
| 340 | |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 341 | static bool install_storage_key(const std::string& mountpoint, const EncryptionOptions& options, |
| 342 | const KeyBuffer& key, EncryptionPolicy* policy) { |
Eric Biggers | 4cf1691 | 2022-10-26 19:05:10 +0000 | [diff] [blame] | 343 | if (options.version == 0) { |
| 344 | LOG(ERROR) << "EncryptionOptions not initialized"; |
| 345 | return false; |
| 346 | } |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 347 | KeyBuffer ephemeral_wrapped_key; |
| 348 | if (options.use_hw_wrapped_key) { |
| 349 | if (!exportWrappedStorageKey(key, &ephemeral_wrapped_key)) { |
| 350 | LOG(ERROR) << "Failed to get ephemeral wrapped key"; |
| 351 | return false; |
| 352 | } |
| 353 | } |
| 354 | return installKey(mountpoint, options, options.use_hw_wrapped_key ? ephemeral_wrapped_key : key, |
| 355 | policy); |
| 356 | } |
| 357 | |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 358 | // Retrieve the options to use for encryption policies on adoptable storage. |
Paul Crowley | 5e53ff6 | 2019-10-24 14:55:17 -0700 | [diff] [blame] | 359 | static bool get_volume_file_encryption_options(EncryptionOptions* options) { |
Paul Crowley | eb241a1 | 2020-02-18 10:10:08 -0800 | [diff] [blame] | 360 | // If we give the empty string, libfscrypt will use the default (currently XTS) |
| 361 | auto contents_mode = android::base::GetProperty("ro.crypto.volume.contents_mode", ""); |
| 362 | // HEH as default was always a mistake. Use the libfscrypt default (CTS) |
| 363 | // for devices launching on versions above Android 10. |
| 364 | auto first_api_level = GetFirstApiLevel(); |
Paul Crowley | f612b8b | 2019-10-24 22:52:02 -0700 | [diff] [blame] | 365 | auto filenames_mode = |
Paul Crowley | eb241a1 | 2020-02-18 10:10:08 -0800 | [diff] [blame] | 366 | android::base::GetProperty("ro.crypto.volume.filenames_mode", |
Eric Biggers | 72d0713 | 2020-08-10 10:55:56 -0700 | [diff] [blame] | 367 | first_api_level > __ANDROID_API_Q__ ? "" : "aes-256-heh"); |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 368 | auto options_string = android::base::GetProperty("ro.crypto.volume.options", |
Paul Crowley | eb241a1 | 2020-02-18 10:10:08 -0800 | [diff] [blame] | 369 | contents_mode + ":" + filenames_mode); |
| 370 | if (!ParseOptionsForApiLevel(first_api_level, options_string, options)) { |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 371 | LOG(ERROR) << "Unable to parse volume encryption options: " << options_string; |
| 372 | return false; |
| 373 | } |
Eric Biggers | eb566d0 | 2020-07-06 13:46:38 -0700 | [diff] [blame] | 374 | if (options->flags & FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32) { |
| 375 | LOG(ERROR) << "The emmc_optimized encryption flag is only allowed on eMMC storage. Remove " |
| 376 | "this flag from ro.crypto.volume.options"; |
| 377 | return false; |
| 378 | } |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 379 | return true; |
Eric Biggers | f3dc420 | 2019-09-30 13:05:58 -0700 | [diff] [blame] | 380 | } |
| 381 | |
Neeraj Soni | c114b62 | 2018-12-14 15:18:15 +0530 | [diff] [blame] | 382 | bool is_metadata_wrapped_key_supported() { |
| 383 | return GetEntryForMountPoint(&fstab_default, METADATA_MNT_POINT)->fs_mgr_flags.wrapped_key; |
| 384 | } |
| 385 | |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 386 | // Prepare a directory without assigning it an encryption policy. The directory |
| 387 | // will inherit the encryption policy of its parent directory, or will be |
| 388 | // unencrypted if the parent directory is unencrypted. |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 389 | 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] | 390 | LOG(DEBUG) << "Preparing: " << dir; |
Eric Biggers | 39704e7 | 2022-05-04 22:17:54 +0000 | [diff] [blame] | 391 | if (android::vold::PrepareDir(dir, mode, uid, gid, 0) != 0) { |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 392 | PLOG(ERROR) << "Failed to prepare " << dir; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 393 | return false; |
| 394 | } |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 395 | return true; |
| 396 | } |
| 397 | |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 398 | // Prepare a directory and assign it the given encryption policy. |
| 399 | static bool prepare_dir_with_policy(const std::string& dir, mode_t mode, uid_t uid, gid_t gid, |
| 400 | const EncryptionPolicy& policy) { |
Eric Biggers | c6f004a | 2023-06-08 16:15:52 +0000 | [diff] [blame] | 401 | if (android::vold::pathExists(dir)) { |
| 402 | if (!prepare_dir(dir, mode, uid, gid)) return false; |
| 403 | if (IsFbeEnabled() && !EnsurePolicy(policy, dir)) return false; |
| 404 | } else { |
| 405 | // If the directory does not yet exist, then create it under a temporary name, and only move |
| 406 | // it to the final name after it is fully prepared with an encryption policy and the desired |
| 407 | // file permissions. This prevents the directory from being accessed before it is ready. |
| 408 | // |
| 409 | // Note: this relies on the SELinux file_contexts assigning the same type to the file path |
| 410 | // with the ".new" suffix as to the file path without the ".new" suffix. |
| 411 | |
| 412 | const std::string tmp_dir = dir + ".new"; |
| 413 | if (android::vold::pathExists(tmp_dir)) { |
| 414 | android::vold::DeleteDirContentsAndDir(tmp_dir); |
| 415 | } |
| 416 | if (!prepare_dir(tmp_dir, mode, uid, gid)) return false; |
| 417 | if (IsFbeEnabled() && !EnsurePolicy(policy, tmp_dir)) return false; |
| 418 | |
| 419 | // On some buggy kernels, renaming a directory that is both encrypted and case-insensitive |
| 420 | // fails in some specific circumstances. Unfortunately, these circumstances happen here |
| 421 | // when processing the "media" directory. This was already fixed by kernel commit |
| 422 | // https://git.kernel.org/linus/b5639bb4313b9d45 ('f2fs: don't use casefolded comparison for |
| 423 | // "." and ".."'). But to support kernels that lack that fix, we use the below workaround. |
| 424 | // It bypasses the bug by making the encryption key of tmp_dir be loaded before the rename. |
| 425 | android::vold::pathExists(tmp_dir + "/subdir"); |
| 426 | |
| 427 | if (rename(tmp_dir.c_str(), dir.c_str()) != 0) { |
| 428 | PLOG(ERROR) << "Failed to rename " << tmp_dir << " to " << dir; |
| 429 | return false; |
| 430 | } |
| 431 | } |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 432 | return true; |
| 433 | } |
| 434 | |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 435 | static bool destroy_dir(const std::string& dir) { |
| 436 | LOG(DEBUG) << "Destroying: " << dir; |
| 437 | if (rmdir(dir.c_str()) != 0 && errno != ENOENT) { |
| 438 | PLOG(ERROR) << "Failed to destroy " << dir; |
| 439 | return false; |
| 440 | } |
| 441 | return true; |
| 442 | } |
| 443 | |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 444 | // Checks whether the DE key directory exists for the given user. |
| 445 | static bool de_key_exists(userid_t user_id) { |
| 446 | return android::vold::pathExists(get_de_key_path(user_id)); |
| 447 | } |
| 448 | |
| 449 | // Checks whether at least one CE key subdirectory exists for the given user. |
| 450 | static bool ce_key_exists(userid_t user_id) { |
| 451 | auto directory_path = get_ce_key_directory_path(user_id); |
Eric Biggers | 9544f8c | 2022-10-07 19:07:23 +0000 | [diff] [blame] | 452 | // The common case is that "$dir/current" exists, so check for that first. |
| 453 | if (android::vold::pathExists(get_ce_key_current_path(directory_path))) return true; |
| 454 | |
| 455 | // Else, there could still be another subdirectory of $dir (if a crash |
| 456 | // occurred during fixate_user_ce_key()), so check for one. |
| 457 | return android::vold::pathExists(directory_path) && !get_ce_key_paths(directory_path).empty(); |
| 458 | } |
| 459 | |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 460 | static bool create_de_key(userid_t user_id, bool ephemeral) { |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 461 | KeyBuffer de_key; |
Eric Biggers | 4cf1691 | 2022-10-26 19:05:10 +0000 | [diff] [blame] | 462 | if (!generateStorageKey(makeGen(s_data_options), &de_key)) return false; |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 463 | if (!ephemeral && !android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp, |
| 464 | kEmptyAuthentication, de_key)) |
| 465 | return false; |
| 466 | EncryptionPolicy de_policy; |
Eric Biggers | 4cf1691 | 2022-10-26 19:05:10 +0000 | [diff] [blame] | 467 | if (!install_storage_key(DATA_MNT_POINT, s_data_options, de_key, &de_policy)) return false; |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 468 | s_de_policies[user_id].internal = de_policy; |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 469 | LOG(INFO) << "Created DE key for user " << user_id; |
| 470 | return true; |
| 471 | } |
Eric Biggers | 9544f8c | 2022-10-07 19:07:23 +0000 | [diff] [blame] | 472 | |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 473 | static bool create_ce_key(userid_t user_id, bool ephemeral) { |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 474 | KeyBuffer ce_key; |
Eric Biggers | 4cf1691 | 2022-10-26 19:05:10 +0000 | [diff] [blame] | 475 | if (!generateStorageKey(makeGen(s_data_options), &ce_key)) return false; |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 476 | if (!ephemeral) { |
| 477 | if (!prepare_dir(get_ce_key_directory_path(user_id), 0700, AID_ROOT, AID_ROOT)) |
| 478 | return false; |
| 479 | // We don't store the CE key on disk here, since here we don't have the |
| 480 | // secret needed to do so securely. Instead, we cache it in memory for |
Eric Biggers | a53a66c | 2023-10-19 19:47:20 +0000 | [diff] [blame] | 481 | // now, and we store it later in fscrypt_set_ce_key_protection(). |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 482 | s_new_ce_keys.insert({user_id, ce_key}); |
Eric Biggers | 9544f8c | 2022-10-07 19:07:23 +0000 | [diff] [blame] | 483 | } |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 484 | EncryptionPolicy ce_policy; |
Eric Biggers | 4cf1691 | 2022-10-26 19:05:10 +0000 | [diff] [blame] | 485 | if (!install_storage_key(DATA_MNT_POINT, s_data_options, ce_key, &ce_policy)) return false; |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 486 | s_ce_policies[user_id].internal = ce_policy; |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 487 | LOG(INFO) << "Created CE key for user " << user_id; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 488 | return true; |
| 489 | } |
| 490 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 491 | static bool is_numeric(const char* name) { |
| 492 | for (const char* p = name; *p != '\0'; p++) { |
| 493 | if (!isdigit(*p)) return false; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 494 | } |
| 495 | return true; |
| 496 | } |
| 497 | |
| 498 | static bool load_all_de_keys() { |
| 499 | auto de_dir = user_key_dir + "/de"; |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 500 | 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] | 501 | if (!dirp) { |
| 502 | PLOG(ERROR) << "Unable to read de key directory"; |
| 503 | return false; |
| 504 | } |
| 505 | for (;;) { |
| 506 | errno = 0; |
| 507 | auto entry = readdir(dirp.get()); |
| 508 | if (!entry) { |
| 509 | if (errno) { |
| 510 | PLOG(ERROR) << "Unable to read de key directory"; |
| 511 | return false; |
| 512 | } |
| 513 | break; |
| 514 | } |
Eric Biggers | 6b84039 | 2020-11-02 15:11:06 -0800 | [diff] [blame] | 515 | if (IsDotOrDotDot(*entry)) continue; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 516 | if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) { |
| 517 | LOG(DEBUG) << "Skipping non-de-key " << entry->d_name; |
| 518 | continue; |
| 519 | } |
Jeff Sharkey | 95440eb | 2017-09-18 18:19:28 -0600 | [diff] [blame] | 520 | userid_t user_id = std::stoi(entry->d_name); |
Nikita Ioffe | f0550af | 2020-02-27 18:21:55 +0000 | [diff] [blame] | 521 | auto key_path = de_dir + "/" + entry->d_name; |
| 522 | KeyBuffer de_key; |
liulvping | 69b0485 | 2022-10-10 19:16:23 +0800 | [diff] [blame] | 523 | if (!retrieveKey(key_path, kEmptyAuthentication, &de_key)) { |
| 524 | // This is probably a partially removed user, so ignore |
| 525 | if (user_id != 0) continue; |
| 526 | return false; |
| 527 | } |
Nikita Ioffe | f0550af | 2020-02-27 18:21:55 +0000 | [diff] [blame] | 528 | EncryptionPolicy de_policy; |
Eric Biggers | 4cf1691 | 2022-10-26 19:05:10 +0000 | [diff] [blame] | 529 | if (!install_storage_key(DATA_MNT_POINT, s_data_options, de_key, &de_policy)) return false; |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 530 | const auto& [existing, is_new] = s_de_policies.insert({user_id, {de_policy, {}}}); |
| 531 | if (!is_new && existing->second.internal != de_policy) { |
Nikita Ioffe | f0550af | 2020-02-27 18:21:55 +0000 | [diff] [blame] | 532 | LOG(ERROR) << "DE policy for user" << user_id << " changed"; |
| 533 | return false; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 534 | } |
Nikita Ioffe | f0550af | 2020-02-27 18:21:55 +0000 | [diff] [blame] | 535 | LOG(DEBUG) << "Installed de key for user " << user_id; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 536 | } |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 537 | // 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] | 538 | // correct policy set on them, and that no rogue ones exist. |
| 539 | return true; |
| 540 | } |
| 541 | |
Paul Crowley | c8a3ef3 | 2019-09-11 15:00:08 -0700 | [diff] [blame] | 542 | bool fscrypt_initialize_systemwide_keys() { |
| 543 | LOG(INFO) << "fscrypt_initialize_systemwide_keys"; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 544 | |
Eric Biggers | 4cf1691 | 2022-10-26 19:05:10 +0000 | [diff] [blame] | 545 | if (!init_data_file_encryption_options()) return false; |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 546 | |
| 547 | KeyBuffer device_key; |
Paul Crowley | 4eac264 | 2020-02-12 11:04:05 -0800 | [diff] [blame] | 548 | if (!retrieveOrGenerateKey(device_key_path, device_key_temp, kEmptyAuthentication, |
Eric Biggers | 4cf1691 | 2022-10-26 19:05:10 +0000 | [diff] [blame] | 549 | makeGen(s_data_options), &device_key)) |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 550 | return false; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 551 | |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 552 | // This initializes s_device_policy, which is a global variable so that |
| 553 | // fscrypt_init_user0() can access it later. |
Eric Biggers | 4cf1691 | 2022-10-26 19:05:10 +0000 | [diff] [blame] | 554 | if (!install_storage_key(DATA_MNT_POINT, s_data_options, device_key, &s_device_policy)) |
| 555 | return false; |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 556 | |
Paul Crowley | 5e53ff6 | 2019-10-24 14:55:17 -0700 | [diff] [blame] | 557 | std::string options_string; |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 558 | if (!OptionsToString(s_device_policy.options, &options_string)) { |
Paul Crowley | 5e53ff6 | 2019-10-24 14:55:17 -0700 | [diff] [blame] | 559 | LOG(ERROR) << "Unable to serialize options"; |
| 560 | return false; |
| 561 | } |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 562 | std::string options_filename = std::string(DATA_MNT_POINT) + fscrypt_key_mode; |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 563 | if (!android::vold::writeStringToFile(options_string, options_filename)) return false; |
Paul Lawrence | 6e41059 | 2016-05-24 14:20:38 -0700 | [diff] [blame] | 564 | |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 565 | std::string ref_filename = std::string(DATA_MNT_POINT) + fscrypt_key_ref; |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 566 | 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] | 567 | LOG(INFO) << "Wrote system DE key reference to:" << ref_filename; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 568 | |
Paul Crowley | c8a3ef3 | 2019-09-11 15:00:08 -0700 | [diff] [blame] | 569 | KeyBuffer per_boot_key; |
Eric Biggers | 4cf1691 | 2022-10-26 19:05:10 +0000 | [diff] [blame] | 570 | if (!generateStorageKey(makeGen(s_data_options), &per_boot_key)) return false; |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 571 | EncryptionPolicy per_boot_policy; |
Eric Biggers | 4cf1691 | 2022-10-26 19:05:10 +0000 | [diff] [blame] | 572 | if (!install_storage_key(DATA_MNT_POINT, s_data_options, per_boot_key, &per_boot_policy)) |
| 573 | return false; |
Paul Crowley | c8a3ef3 | 2019-09-11 15:00:08 -0700 | [diff] [blame] | 574 | 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] | 575 | if (!android::vold::writeStringToFile(per_boot_policy.key_raw_ref, per_boot_ref_filename)) |
| 576 | return false; |
Paul Crowley | c8a3ef3 | 2019-09-11 15:00:08 -0700 | [diff] [blame] | 577 | LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename; |
| 578 | |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 579 | return true; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 580 | } |
| 581 | |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 582 | static bool prepare_special_dirs() { |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 583 | // Ensure that /data/data and its "alias" /data/user/0 exist, and create the |
| 584 | // bind mount of /data/data onto /data/user/0. This *should* happen in |
| 585 | // fscrypt_prepare_user_storage(). However, it actually must be done early, |
| 586 | // before the rest of user 0's CE storage is prepared. This is because |
| 587 | // zygote may need to set up app data isolation before then, which requires |
| 588 | // mounting a tmpfs over /data/data to ensure it remains hidden. This issue |
| 589 | // arises due to /data/data being in the top-level directory. |
| 590 | |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 591 | // /data/user/0 used to be a symlink to /data/data, so we must first delete |
| 592 | // the old symlink if present. |
| 593 | if (android::vold::IsSymlink(data_user_0_dir) && android::vold::Unlink(data_user_0_dir) != 0) |
| 594 | return false; |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 595 | // On first boot, we'll be creating /data/data for the first time, and user |
| 596 | // 0's CE key will be installed already since it was just created. Take the |
| 597 | // opportunity to also set the encryption policy of /data/data right away. |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 598 | if (s_ce_policies.count(0) != 0) { |
| 599 | const EncryptionPolicy& ce_policy = s_ce_policies[0].internal; |
Eric Biggers | 9544f8c | 2022-10-07 19:07:23 +0000 | [diff] [blame] | 600 | if (!prepare_dir_with_policy(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy)) { |
| 601 | // Preparing /data/data failed, yet we had just generated a new CE |
| 602 | // key because one wasn't stored. Before erroring out, try deleting |
| 603 | // the directory and retrying, as it's possible that the directory |
| 604 | // exists with different CE policy from an interrupted first boot. |
| 605 | if (rmdir(data_data_dir.c_str()) != 0) { |
| 606 | PLOG(ERROR) << "rmdir " << data_data_dir << " failed"; |
| 607 | } |
| 608 | if (!prepare_dir_with_policy(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy)) |
| 609 | return false; |
| 610 | } |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 611 | } else { |
| 612 | if (!prepare_dir(data_data_dir, 0771, AID_SYSTEM, AID_SYSTEM)) return false; |
| 613 | // EnsurePolicy() will have to happen later, in fscrypt_prepare_user_storage(). |
| 614 | } |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 615 | if (!prepare_dir(data_user_0_dir, 0700, AID_SYSTEM, AID_SYSTEM)) return false; |
| 616 | if (android::vold::BindMount(data_data_dir, data_user_0_dir) != 0) return false; |
| 617 | |
| 618 | // If /data/media/obb doesn't exist, create it and encrypt it with the |
| 619 | // device policy. Normally, device-policy-encrypted directories are created |
| 620 | // and encrypted by init; /data/media/obb is special because it is located |
| 621 | // in /data/media. Since /data/media also contains per-user encrypted |
| 622 | // directories, by design only vold can write to it. As a side effect of |
| 623 | // that, vold must create /data/media/obb. |
| 624 | // |
| 625 | // We must tolerate /data/media/obb being unencrypted if it already exists |
| 626 | // on-disk, since it used to be unencrypted (b/64566063). |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 627 | if (android::vold::pathExists(media_obb_dir)) { |
| 628 | if (!prepare_dir(media_obb_dir, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false; |
| 629 | } else { |
| 630 | if (!prepare_dir_with_policy(media_obb_dir, 0770, AID_MEDIA_RW, AID_MEDIA_RW, |
| 631 | s_device_policy)) |
| 632 | return false; |
| 633 | } |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 634 | return true; |
| 635 | } |
| 636 | |
Eric Biggers | fb48666 | 2022-03-22 00:33:52 +0000 | [diff] [blame] | 637 | bool fscrypt_init_user0_done; |
| 638 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 639 | bool fscrypt_init_user0() { |
| 640 | LOG(DEBUG) << "fscrypt_init_user0"; |
Eric Biggers | 9ea5344 | 2022-05-11 05:33:25 +0000 | [diff] [blame] | 641 | |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 642 | if (IsFbeEnabled()) { |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 643 | if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false; |
| 644 | if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false; |
| 645 | if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false; |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 646 | |
| 647 | // Create user 0's DE and CE keys if they don't already exist. Check |
| 648 | // each key independently, since if the first boot was interrupted it is |
| 649 | // possible that the DE key exists but the CE key does not. |
| 650 | if (!de_key_exists(0) && !create_de_key(0, false)) return false; |
| 651 | if (!ce_key_exists(0) && !create_ce_key(0, false)) return false; |
| 652 | |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 653 | // TODO: switch to loading only DE_0 here once framework makes |
| 654 | // explicit calls to install DE keys for secondary users |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 655 | if (!load_all_de_keys()) return false; |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 656 | } |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 657 | |
| 658 | // Now that user 0's CE key has been created, we can prepare /data/data. |
| 659 | if (!prepare_special_dirs()) return false; |
| 660 | |
| 661 | // With the exception of what is done by prepare_special_dirs() above, we |
| 662 | // 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] | 663 | // yet unless it was just created. The framework will prepare the user's CE |
| 664 | // storage later, once their CE key is installed. |
Eric Biggers | a5a468c | 2023-12-12 23:53:55 +0000 | [diff] [blame] | 665 | if (!fscrypt_prepare_user_storage("", 0, android::os::IVold::STORAGE_FLAG_DE)) { |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 666 | LOG(ERROR) << "Failed to prepare user 0 storage"; |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 667 | return false; |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 668 | } |
Jeff Sharkey | 0754a45 | 2016-02-08 12:21:42 -0700 | [diff] [blame] | 669 | |
Eric Biggers | fb48666 | 2022-03-22 00:33:52 +0000 | [diff] [blame] | 670 | fscrypt_init_user0_done = true; |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 671 | return true; |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 672 | } |
| 673 | |
Eric Biggers | a53a66c | 2023-10-19 19:47:20 +0000 | [diff] [blame] | 674 | // Creates the CE and DE keys for a new user. |
Eric Biggers | a5a468c | 2023-12-12 23:53:55 +0000 | [diff] [blame] | 675 | bool fscrypt_create_user_keys(userid_t user_id, bool ephemeral) { |
| 676 | LOG(DEBUG) << "fscrypt_create_user_keys for " << user_id; |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 677 | if (!IsFbeEnabled()) { |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 678 | return true; |
Paul Crowley | ea62e26 | 2016-01-28 12:23:53 +0000 | [diff] [blame] | 679 | } |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 680 | // FIXME test for existence of key that is not loaded yet |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 681 | if (s_ce_policies.count(user_id) != 0) { |
Eric Biggers | a5a468c | 2023-12-12 23:53:55 +0000 | [diff] [blame] | 682 | LOG(ERROR) << "Already exists, can't create keys for " << user_id; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 683 | // FIXME should we fail the command? |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 684 | return true; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 685 | } |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 686 | if (!create_de_key(user_id, ephemeral)) return false; |
| 687 | if (!create_ce_key(user_id, ephemeral)) return false; |
| 688 | if (ephemeral) s_ephemeral_users.insert(user_id); |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 689 | return true; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 690 | } |
| 691 | |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 692 | // Evicts all the user's keys of one type from all volumes (internal and adoptable). |
| 693 | // This evicts either CE keys or DE keys, depending on which map is passed. |
| 694 | static bool evict_user_keys(std::map<userid_t, UserPolicies>& policy_map, userid_t user_id) { |
Andrew Scull | 7ec25c7 | 2016-10-31 10:28:25 +0000 | [diff] [blame] | 695 | bool success = true; |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 696 | auto it = policy_map.find(user_id); |
| 697 | if (it != policy_map.end()) { |
| 698 | const UserPolicies& policies = it->second; |
| 699 | success &= android::vold::evictKey(BuildDataPath(""), policies.internal); |
| 700 | for (const auto& [volume_uuid, policy] : policies.adoptable) { |
| 701 | success &= android::vold::evictKey(BuildDataPath(volume_uuid), policy); |
| 702 | } |
| 703 | policy_map.erase(it); |
Andrew Scull | 7ec25c7 | 2016-10-31 10:28:25 +0000 | [diff] [blame] | 704 | } |
Andrew Scull | 7ec25c7 | 2016-10-31 10:28:25 +0000 | [diff] [blame] | 705 | return success; |
| 706 | } |
| 707 | |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 708 | // Evicts and destroys all CE and DE keys for a user. This is called when the user is removed. |
Eric Biggers | a53a66c | 2023-10-19 19:47:20 +0000 | [diff] [blame] | 709 | bool fscrypt_destroy_user_keys(userid_t user_id) { |
| 710 | LOG(DEBUG) << "fscrypt_destroy_user_keys(" << user_id << ")"; |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 711 | if (!IsFbeEnabled()) { |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 712 | return true; |
Paul Crowley | ea62e26 | 2016-01-28 12:23:53 +0000 | [diff] [blame] | 713 | } |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 714 | bool success = true; |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 715 | |
| 716 | success &= evict_user_keys(s_ce_policies, user_id); |
| 717 | success &= evict_user_keys(s_de_policies, user_id); |
| 718 | |
Eric Biggers | 8c1659e | 2022-09-06 21:29:14 +0000 | [diff] [blame] | 719 | if (!s_ephemeral_users.erase(user_id)) { |
Eric Biggers | d863b2c | 2021-05-27 17:29:10 -0700 | [diff] [blame] | 720 | auto ce_path = get_ce_key_directory_path(user_id); |
Eric Biggers | 8c1659e | 2022-09-06 21:29:14 +0000 | [diff] [blame] | 721 | if (!s_new_ce_keys.erase(user_id)) { |
| 722 | for (auto const path : get_ce_key_paths(ce_path)) { |
| 723 | success &= android::vold::destroyKey(path); |
| 724 | } |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 725 | } |
Eric Biggers | b615f3b | 2022-11-09 05:48:45 +0000 | [diff] [blame] | 726 | s_deferred_fixations.erase(ce_path); |
Eric Biggers | d863b2c | 2021-05-27 17:29:10 -0700 | [diff] [blame] | 727 | success &= destroy_dir(ce_path); |
| 728 | |
Paul Crowley | ab0b56a | 2016-07-19 15:29:53 -0700 | [diff] [blame] | 729 | auto de_key_path = get_de_key_path(user_id); |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 730 | if (android::vold::pathExists(de_key_path)) { |
Paul Crowley | ab0b56a | 2016-07-19 15:29:53 -0700 | [diff] [blame] | 731 | success &= android::vold::destroyKey(de_key_path); |
| 732 | } else { |
| 733 | LOG(INFO) << "Not present so not erasing: " << de_key_path; |
| 734 | } |
Lenka Trochtova | 395039f | 2015-11-25 10:13:03 +0100 | [diff] [blame] | 735 | } |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 736 | return success; |
Paul Crowley | b33e887 | 2015-05-19 12:34:09 +0100 | [diff] [blame] | 737 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 738 | |
Ellen Arteca | 5177ed2 | 2024-04-03 21:18:01 +0000 | [diff] [blame] | 739 | static android::vold::KeyAuthentication authentication_from_secret( |
| 740 | const std::vector<uint8_t>& secret) { |
| 741 | std::string secret_str(secret.begin(), secret.end()); |
| 742 | if (secret_str.empty()) { |
Barani Muthukumaran | b1927c2 | 2019-10-31 22:59:34 -0700 | [diff] [blame] | 743 | return kEmptyAuthentication; |
| 744 | } else { |
Ellen Arteca | 5177ed2 | 2024-04-03 21:18:01 +0000 | [diff] [blame] | 745 | return android::vold::KeyAuthentication(secret_str); |
Barani Muthukumaran | b1927c2 | 2019-10-31 22:59:34 -0700 | [diff] [blame] | 746 | } |
| 747 | } |
| 748 | |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 749 | static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) { |
| 750 | return misc_path + "/vold/volume_keys/" + volume_uuid + "/default"; |
| 751 | } |
| 752 | |
Paul Crowley | 26a5388 | 2017-10-26 11:16:39 -0700 | [diff] [blame] | 753 | static std::string volume_secdiscardable_path(const std::string& volume_uuid) { |
| 754 | return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable"; |
| 755 | } |
| 756 | |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 757 | static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid, |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 758 | UserPolicies& user_policies, EncryptionPolicy* policy) { |
Paul Crowley | 26a5388 | 2017-10-26 11:16:39 -0700 | [diff] [blame] | 759 | auto secdiscardable_path = volume_secdiscardable_path(volume_uuid); |
| 760 | std::string secdiscardable_hash; |
| 761 | if (android::vold::pathExists(secdiscardable_path)) { |
| 762 | if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash)) |
| 763 | return false; |
| 764 | } else { |
Eric Biggers | fec0c0e | 2021-02-16 15:59:17 -0800 | [diff] [blame] | 765 | if (!android::vold::MkdirsSync(secdiscardable_path, 0700)) return false; |
Paul Crowley | 26a5388 | 2017-10-26 11:16:39 -0700 | [diff] [blame] | 766 | if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash)) |
| 767 | return false; |
| 768 | } |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 769 | auto key_path = volkey_path(misc_path, volume_uuid); |
Eric Biggers | fec0c0e | 2021-02-16 15:59:17 -0800 | [diff] [blame] | 770 | if (!android::vold::MkdirsSync(key_path, 0700)) return false; |
Satya Tangirala | e136171 | 2021-03-15 15:33:08 -0700 | [diff] [blame] | 771 | android::vold::KeyAuthentication auth(secdiscardable_hash); |
Eric Biggers | 83a73d7 | 2019-09-30 13:06:47 -0700 | [diff] [blame] | 772 | |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 773 | EncryptionOptions options; |
| 774 | if (!get_volume_file_encryption_options(&options)) return false; |
| 775 | KeyBuffer key; |
Eric Biggers | f74373b | 2020-11-05 19:58:26 -0800 | [diff] [blame] | 776 | if (!retrieveOrGenerateKey(key_path, key_path + "_tmp", auth, makeGen(options), &key)) |
Barani Muthukumaran | 3dfb094 | 2020-02-03 13:06:45 -0800 | [diff] [blame] | 777 | return false; |
| 778 | if (!install_storage_key(BuildDataPath(volume_uuid), options, key, policy)) return false; |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 779 | user_policies.adoptable[volume_uuid] = *policy; |
Paul Crowley | 77df7f2 | 2020-01-23 15:29:30 -0800 | [diff] [blame] | 780 | return true; |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 781 | } |
| 782 | |
| 783 | 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] | 784 | auto path = volkey_path(misc_path, volume_uuid); |
| 785 | if (!android::vold::pathExists(path)) return true; |
| 786 | return android::vold::destroyKey(path); |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 787 | } |
| 788 | |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 789 | // (Re-)encrypts the user's CE key with the given secret. This function handles |
| 790 | // storing the CE key for a new user for the first time. It also handles |
| 791 | // re-encrypting the CE key upon upgrade from an Android version where the CE |
| 792 | // key was stored with kEmptyAuthentication when the user didn't have an LSKF. |
| 793 | // See the comments below for the different cases handled. |
Ellen Arteca | 5177ed2 | 2024-04-03 21:18:01 +0000 | [diff] [blame] | 794 | bool fscrypt_set_ce_key_protection(userid_t user_id, const std::vector<uint8_t>& secret) { |
Eric Biggers | a53a66c | 2023-10-19 19:47:20 +0000 | [diff] [blame] | 795 | LOG(DEBUG) << "fscrypt_set_ce_key_protection " << user_id; |
Eric Biggers | 8c1659e | 2022-09-06 21:29:14 +0000 | [diff] [blame] | 796 | if (!IsFbeEnabled()) return true; |
Ellen Arteca | 5177ed2 | 2024-04-03 21:18:01 +0000 | [diff] [blame] | 797 | auto auth = authentication_from_secret(secret); |
| 798 | if (auth.secret.empty()) { |
Eric Biggers | a53a66c | 2023-10-19 19:47:20 +0000 | [diff] [blame] | 799 | LOG(ERROR) << "fscrypt_set_ce_key_protection: secret must be nonempty"; |
Eric Biggers | 8c1659e | 2022-09-06 21:29:14 +0000 | [diff] [blame] | 800 | return false; |
| 801 | } |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 802 | // We shouldn't store any keys for ephemeral users. |
Eric Biggers | 8c1659e | 2022-09-06 21:29:14 +0000 | [diff] [blame] | 803 | if (s_ephemeral_users.count(user_id) != 0) { |
| 804 | LOG(DEBUG) << "Not storing key because user is ephemeral"; |
| 805 | return true; |
| 806 | } |
Barani Muthukumaran | b1927c2 | 2019-10-31 22:59:34 -0700 | [diff] [blame] | 807 | KeyBuffer ce_key; |
Eric Biggers | 8c1659e | 2022-09-06 21:29:14 +0000 | [diff] [blame] | 808 | auto it = s_new_ce_keys.find(user_id); |
| 809 | if (it != s_new_ce_keys.end()) { |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 810 | // If the key exists in s_new_ce_keys, then the key is a |
| 811 | // not-yet-committed key for a new user, and we are committing it here. |
| 812 | // This happens when the user's synthetic password is created. |
Eric Biggers | 8c1659e | 2022-09-06 21:29:14 +0000 | [diff] [blame] | 813 | ce_key = it->second; |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 814 | } else if (ce_key_exists(user_id)) { |
| 815 | // If the key doesn't exist in s_new_ce_keys but does exist on-disk, |
| 816 | // then we are setting the protection on an existing key. This happens |
| 817 | // at upgrade time, when CE keys that were previously protected by |
Eric Biggers | 8c1659e | 2022-09-06 21:29:14 +0000 | [diff] [blame] | 818 | // kEmptyAuthentication are encrypted by the user's synthetic password. |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 819 | LOG(DEBUG) << "CE key already exists on-disk; re-protecting it with the given secret"; |
Eric Biggers | 8c1659e | 2022-09-06 21:29:14 +0000 | [diff] [blame] | 820 | if (!read_and_fixate_user_ce_key(user_id, kEmptyAuthentication, &ce_key)) { |
Eric Biggers | 8c1659e | 2022-09-06 21:29:14 +0000 | [diff] [blame] | 821 | // Before failing, also check whether the key is already protected |
Eric Biggers | d651359 | 2024-10-30 22:49:06 +0000 | [diff] [blame] | 822 | // with the given secret. |
Ellen Arteca | 5177ed2 | 2024-04-03 21:18:01 +0000 | [diff] [blame] | 823 | if (read_and_fixate_user_ce_key(user_id, auth, &ce_key)) { |
Eric Biggers | d651359 | 2024-10-30 22:49:06 +0000 | [diff] [blame] | 824 | LOG(INFO) << "CE key is already protected by given secret. Nothing to do."; |
| 825 | LOG(INFO) << "Errors above are for the attempt with empty auth and can be ignored."; |
Eric Biggers | 8c1659e | 2022-09-06 21:29:14 +0000 | [diff] [blame] | 826 | return true; |
| 827 | } |
Eric Biggers | d651359 | 2024-10-30 22:49:06 +0000 | [diff] [blame] | 828 | LOG(ERROR) << "Failed to retrieve CE key for user " << user_id; |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 829 | // The key isn't protected by either kEmptyAuthentication or by |
| 830 | // |auth|. This should never happen, and there's nothing we can do |
| 831 | // besides return an error. |
Eric Biggers | 8c1659e | 2022-09-06 21:29:14 +0000 | [diff] [blame] | 832 | return false; |
| 833 | } |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 834 | } else { |
| 835 | // If the key doesn't exist in memory or on-disk, then we need to |
| 836 | // generate it here, then commit it to disk. This is needed after the |
| 837 | // unusual case where a non-system user was created during early boot, |
| 838 | // and then the device was force-rebooted before the boot completed. In |
| 839 | // that case, the Android user record was committed but the CE key was |
| 840 | // not. So the CE key was lost, and we need to regenerate it. This |
| 841 | // should be fine, since the key should not have been used yet. |
| 842 | LOG(WARNING) << "CE key not found! Regenerating it"; |
| 843 | if (!create_ce_key(user_id, false)) return false; |
| 844 | ce_key = s_new_ce_keys.find(user_id)->second; |
Barani Muthukumaran | b1927c2 | 2019-10-31 22:59:34 -0700 | [diff] [blame] | 845 | } |
Eric Biggers | ce50a43 | 2022-10-19 19:38:50 +0000 | [diff] [blame] | 846 | |
| 847 | auto const directory_path = get_ce_key_directory_path(user_id); |
Barani Muthukumaran | b1927c2 | 2019-10-31 22:59:34 -0700 | [diff] [blame] | 848 | auto const paths = get_ce_key_paths(directory_path); |
| 849 | std::string ce_key_path; |
| 850 | if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false; |
Ellen Arteca | 5177ed2 | 2024-04-03 21:18:01 +0000 | [diff] [blame] | 851 | if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, auth, ce_key)) return false; |
Eric Biggers | b615f3b | 2022-11-09 05:48:45 +0000 | [diff] [blame] | 852 | |
| 853 | // Fixate the key, i.e. delete all other bindings of it. (In practice this |
| 854 | // just means the kEmptyAuthentication binding, if there is one.) However, |
| 855 | // if a userdata filesystem checkpoint is pending, then we need to delay the |
| 856 | // fixation until the checkpoint has been committed, since deleting keys |
| 857 | // from Keystore cannot be rolled back. |
| 858 | if (android::vold::cp_needsCheckpoint()) { |
| 859 | LOG(INFO) << "Deferring fixation of " << directory_path << " until checkpoint is committed"; |
| 860 | s_deferred_fixations[directory_path] = ce_key_path; |
| 861 | } else { |
| 862 | s_deferred_fixations.erase(directory_path); |
| 863 | if (!fixate_user_ce_key(directory_path, ce_key_path, paths)) return false; |
| 864 | } |
| 865 | |
Eric Biggers | 8c1659e | 2022-09-06 21:29:14 +0000 | [diff] [blame] | 866 | if (s_new_ce_keys.erase(user_id)) { |
| 867 | LOG(INFO) << "Stored CE key for new user " << user_id; |
Paul Crowley | ad2eb64 | 2016-02-10 17:56:05 +0000 | [diff] [blame] | 868 | } |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 869 | return true; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 870 | } |
| 871 | |
Eric Biggers | b615f3b | 2022-11-09 05:48:45 +0000 | [diff] [blame] | 872 | void fscrypt_deferred_fixate_ce_keys() { |
| 873 | for (const auto& it : s_deferred_fixations) { |
| 874 | const auto& directory_path = it.first; |
| 875 | const auto& to_fix = it.second; |
| 876 | LOG(INFO) << "Doing deferred fixation of " << directory_path; |
| 877 | fixate_user_ce_key(directory_path, to_fix, get_ce_key_paths(directory_path)); |
| 878 | // Continue on error. |
| 879 | } |
| 880 | s_deferred_fixations.clear(); |
| 881 | } |
| 882 | |
Eric Biggers | 18ba152 | 2021-04-06 12:02:56 -0700 | [diff] [blame] | 883 | std::vector<int> fscrypt_get_unlocked_users() { |
| 884 | std::vector<int> user_ids; |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 885 | for (const auto& [user_id, user_policies] : s_ce_policies) { |
| 886 | user_ids.push_back(user_id); |
Eric Biggers | 18ba152 | 2021-04-06 12:02:56 -0700 | [diff] [blame] | 887 | } |
| 888 | return user_ids; |
| 889 | } |
| 890 | |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 891 | // Unlocks internal CE storage for the given user. This only unlocks internal storage, since |
| 892 | // fscrypt_prepare_user_storage() has to be called for each adoptable storage volume anyway (since |
| 893 | // the volume might have been absent when the user was created), and that handles the unlocking. |
Ellen Arteca | 5177ed2 | 2024-04-03 21:18:01 +0000 | [diff] [blame] | 894 | bool fscrypt_unlock_ce_storage(userid_t user_id, const std::vector<uint8_t>& secret) { |
Eric Biggers | a5a468c | 2023-12-12 23:53:55 +0000 | [diff] [blame] | 895 | LOG(DEBUG) << "fscrypt_unlock_ce_storage " << user_id; |
Eric Biggers | fc1df0e | 2023-08-01 19:34:53 +0000 | [diff] [blame] | 896 | if (!IsFbeEnabled()) return true; |
| 897 | if (s_ce_policies.count(user_id) != 0) { |
Eric Biggers | a53a66c | 2023-10-19 19:47:20 +0000 | [diff] [blame] | 898 | LOG(WARNING) << "CE storage for user " << user_id << " is already unlocked"; |
Eric Biggers | fc1df0e | 2023-08-01 19:34:53 +0000 | [diff] [blame] | 899 | return true; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 900 | } |
Ellen Arteca | 5177ed2 | 2024-04-03 21:18:01 +0000 | [diff] [blame] | 901 | auto auth = authentication_from_secret(secret); |
Eric Biggers | fc1df0e | 2023-08-01 19:34:53 +0000 | [diff] [blame] | 902 | KeyBuffer ce_key; |
Ellen Arteca | 5177ed2 | 2024-04-03 21:18:01 +0000 | [diff] [blame] | 903 | if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false; |
Eric Biggers | fc1df0e | 2023-08-01 19:34:53 +0000 | [diff] [blame] | 904 | EncryptionPolicy ce_policy; |
| 905 | if (!install_storage_key(DATA_MNT_POINT, s_data_options, ce_key, &ce_policy)) return false; |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 906 | s_ce_policies[user_id].internal = ce_policy; |
Eric Biggers | a53a66c | 2023-10-19 19:47:20 +0000 | [diff] [blame] | 907 | LOG(DEBUG) << "Installed CE key for user " << user_id; |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 908 | return true; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 909 | } |
| 910 | |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 911 | // Locks CE storage for the given user. This locks both internal and adoptable storage. |
Eric Biggers | a53a66c | 2023-10-19 19:47:20 +0000 | [diff] [blame] | 912 | bool fscrypt_lock_ce_storage(userid_t user_id) { |
| 913 | LOG(DEBUG) << "fscrypt_lock_ce_storage " << user_id; |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 914 | if (!IsFbeEnabled()) return true; |
| 915 | return evict_user_keys(s_ce_policies, user_id); |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 916 | } |
| 917 | |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 918 | static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid, |
| 919 | userid_t user_id, int flags) { |
| 920 | if (0 != android::vold::ForkExecvp( |
| 921 | std::vector<std::string>{prepare_subdirs_path, action, volume_uuid, |
| 922 | std::to_string(user_id), std::to_string(flags)})) { |
| 923 | LOG(ERROR) << "vold_prepare_subdirs failed"; |
Paul Crowley | 8e55066 | 2017-10-16 17:01:44 -0700 | [diff] [blame] | 924 | return false; |
| 925 | } |
| 926 | return true; |
| 927 | } |
| 928 | |
Eric Biggers | a5a468c | 2023-12-12 23:53:55 +0000 | [diff] [blame] | 929 | bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) { |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 930 | LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid) |
Eric Biggers | a5a468c | 2023-12-12 23:53:55 +0000 | [diff] [blame] | 931 | << ", user " << user_id << ", flags " << flags; |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 932 | |
Eric Biggers | c66c2e3 | 2022-05-04 04:39:50 +0000 | [diff] [blame] | 933 | // Internal storage must be prepared before adoptable storage, since the |
| 934 | // user's volume keys are stored in their internal storage. |
| 935 | if (!volume_uuid.empty()) { |
| 936 | if ((flags & android::os::IVold::STORAGE_FLAG_DE) && |
| 937 | !android::vold::pathExists(android::vold::BuildDataMiscDePath("", user_id))) { |
| 938 | LOG(ERROR) << "Cannot prepare DE storage for user " << user_id << " on volume " |
| 939 | << volume_uuid << " before internal storage"; |
| 940 | return false; |
| 941 | } |
| 942 | if ((flags & android::os::IVold::STORAGE_FLAG_CE) && |
| 943 | !android::vold::pathExists(android::vold::BuildDataMiscCePath("", user_id))) { |
| 944 | LOG(ERROR) << "Cannot prepare CE storage for user " << user_id << " on volume " |
| 945 | << volume_uuid << " before internal storage"; |
| 946 | return false; |
| 947 | } |
| 948 | } |
| 949 | |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 950 | if (flags & android::os::IVold::STORAGE_FLAG_DE) { |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 951 | // DE_sys key |
| 952 | auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 953 | auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 954 | |
| 955 | // DE_n key |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 956 | EncryptionPolicy de_policy; |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 957 | auto system_de_path = android::vold::BuildDataSystemDePath(user_id); |
Mohammad Samiul Islam | e833630 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 958 | auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id); |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 959 | auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id); |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 960 | auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id); |
| 961 | |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 962 | if (IsFbeEnabled()) { |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 963 | auto it = s_de_policies.find(user_id); |
| 964 | if (it == s_de_policies.end()) { |
| 965 | LOG(ERROR) << "Cannot find DE policy for user " << user_id; |
| 966 | return false; |
| 967 | } |
| 968 | UserPolicies& user_de_policies = it->second; |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 969 | if (volume_uuid.empty()) { |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 970 | de_policy = user_de_policies.internal; |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 971 | } else { |
| 972 | auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id); |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 973 | if (!read_or_create_volkey(misc_de_empty_volume_path, volume_uuid, user_de_policies, |
| 974 | &de_policy)) { |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 975 | return false; |
| 976 | } |
| 977 | } |
| 978 | } |
| 979 | |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 980 | if (volume_uuid.empty()) { |
Paul Crowley | 6b756ce | 2017-10-05 14:07:09 -0700 | [diff] [blame] | 981 | if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false; |
Paul Crowley | 6b756ce | 2017-10-05 14:07:09 -0700 | [diff] [blame] | 982 | 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] | 983 | |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 984 | if (!prepare_dir_with_policy(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM, de_policy)) |
| 985 | return false; |
| 986 | if (!prepare_dir_with_policy(vendor_de_path, 0771, AID_ROOT, AID_ROOT, de_policy)) |
| 987 | return false; |
Paul Crowley | 6b756ce | 2017-10-05 14:07:09 -0700 | [diff] [blame] | 988 | } |
Mohammad Samiul Islam | e833630 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 989 | |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 990 | if (!prepare_dir_with_policy(misc_de_path, 01771, AID_SYSTEM, AID_MISC, de_policy)) |
| 991 | return false; |
| 992 | if (!prepare_dir_with_policy(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM, de_policy)) |
| 993 | return false; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 994 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 995 | |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 996 | if (flags & android::os::IVold::STORAGE_FLAG_CE) { |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 997 | // CE_n key |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 998 | EncryptionPolicy ce_policy; |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 999 | auto system_ce_path = android::vold::BuildDataSystemCePath(user_id); |
Mohammad Samiul Islam | e833630 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 1000 | auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id); |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 1001 | auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 1002 | auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id); |
| 1003 | auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id); |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 1004 | |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 1005 | if (IsFbeEnabled()) { |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 1006 | auto it = s_ce_policies.find(user_id); |
| 1007 | if (it == s_ce_policies.end()) { |
| 1008 | LOG(ERROR) << "Cannot find CE policy for user " << user_id; |
| 1009 | return false; |
| 1010 | } |
| 1011 | UserPolicies& user_ce_policies = it->second; |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 1012 | if (volume_uuid.empty()) { |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 1013 | ce_policy = user_ce_policies.internal; |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 1014 | } else { |
| 1015 | auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id); |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 1016 | if (!read_or_create_volkey(misc_ce_empty_volume_path, volume_uuid, user_ce_policies, |
| 1017 | &ce_policy)) { |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 1018 | return false; |
| 1019 | } |
| 1020 | } |
Paul Crowley | 6b756ce | 2017-10-05 14:07:09 -0700 | [diff] [blame] | 1021 | } |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 1022 | |
| 1023 | if (volume_uuid.empty()) { |
| 1024 | if (!prepare_dir_with_policy(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM, ce_policy)) |
| 1025 | return false; |
| 1026 | if (!prepare_dir_with_policy(vendor_ce_path, 0771, AID_ROOT, AID_ROOT, ce_policy)) |
| 1027 | return false; |
| 1028 | } |
| 1029 | if (!prepare_dir_with_policy(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW, ce_policy)) |
| 1030 | return false; |
Martijn Coenen | 5adf92a | 2021-02-01 07:57:02 +0000 | [diff] [blame] | 1031 | // On devices without sdcardfs (kernel 5.4+), the path permissions aren't fixed |
| 1032 | // up automatically; therefore, use a default ACL, to ensure apps with MEDIA_RW |
| 1033 | // can keep reading external storage; in particular, this allows app cloning |
| 1034 | // scenarios to work correctly on such devices. |
| 1035 | int ret = SetDefaultAcl(media_ce_path, 02770, AID_MEDIA_RW, AID_MEDIA_RW, {AID_MEDIA_RW}); |
| 1036 | if (ret != android::OK) { |
| 1037 | return false; |
| 1038 | } |
Eric Biggers | ca9a97e | 2022-05-12 19:17:15 +0000 | [diff] [blame] | 1039 | if (!prepare_dir_with_policy(misc_ce_path, 01771, AID_SYSTEM, AID_MISC, ce_policy)) |
| 1040 | return false; |
| 1041 | if (!prepare_dir_with_policy(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM, ce_policy)) |
| 1042 | return false; |
Paul Crowley | 1a96526 | 2017-10-13 13:49:50 -0700 | [diff] [blame] | 1043 | |
| 1044 | if (volume_uuid.empty()) { |
Paul Crowley | 8e55066 | 2017-10-16 17:01:44 -0700 | [diff] [blame] | 1045 | // Now that credentials have been installed, we can run restorecon |
| 1046 | // over these paths |
| 1047 | // NOTE: these paths need to be kept in sync with libselinux |
| 1048 | android::vold::RestoreconRecursive(system_ce_path); |
Nick Kralevich | 6a3ef48 | 2019-05-14 09:30:29 -0700 | [diff] [blame] | 1049 | android::vold::RestoreconRecursive(vendor_ce_path); |
Paul Crowley | 8e55066 | 2017-10-16 17:01:44 -0700 | [diff] [blame] | 1050 | android::vold::RestoreconRecursive(misc_ce_path); |
Paul Crowley | 1a96526 | 2017-10-13 13:49:50 -0700 | [diff] [blame] | 1051 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 1052 | } |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 1053 | if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 1054 | |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 1055 | return true; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 1056 | } |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 1057 | |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 1058 | bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) { |
| 1059 | LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid) |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 1060 | << ", user " << user_id << ", flags " << flags; |
| 1061 | bool res = true; |
| 1062 | |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 1063 | res &= prepare_subdirs("destroy", volume_uuid, user_id, flags); |
| 1064 | |
| 1065 | if (flags & android::os::IVold::STORAGE_FLAG_CE) { |
Paul Crowley | 8e55066 | 2017-10-16 17:01:44 -0700 | [diff] [blame] | 1066 | // CE_n key |
| 1067 | auto system_ce_path = android::vold::BuildDataSystemCePath(user_id); |
Mohammad Samiul Islam | e833630 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 1068 | auto misc_ce_path = android::vold::BuildDataMiscCePath(volume_uuid, user_id); |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 1069 | auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id); |
Paul Crowley | 8e55066 | 2017-10-16 17:01:44 -0700 | [diff] [blame] | 1070 | auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id); |
| 1071 | auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id); |
| 1072 | |
| 1073 | res &= destroy_dir(media_ce_path); |
Mohammad Samiul Islam | e833630 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 1074 | res &= destroy_dir(misc_ce_path); |
Paul Crowley | 8e55066 | 2017-10-16 17:01:44 -0700 | [diff] [blame] | 1075 | res &= destroy_dir(user_ce_path); |
| 1076 | if (volume_uuid.empty()) { |
Paul Crowley | 8e55066 | 2017-10-16 17:01:44 -0700 | [diff] [blame] | 1077 | res &= destroy_dir(system_ce_path); |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 1078 | res &= destroy_dir(vendor_ce_path); |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 1079 | } else { |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 1080 | if (IsFbeEnabled()) { |
Mohammad Samiul Islam | e833630 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 1081 | auto misc_ce_empty_volume_path = android::vold::BuildDataMiscCePath("", user_id); |
| 1082 | res &= destroy_volkey(misc_ce_empty_volume_path, volume_uuid); |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 1083 | } |
Paul Crowley | 8e55066 | 2017-10-16 17:01:44 -0700 | [diff] [blame] | 1084 | } |
| 1085 | } |
| 1086 | |
Paul Crowley | 82b41ff | 2017-10-20 08:17:54 -0700 | [diff] [blame] | 1087 | if (flags & android::os::IVold::STORAGE_FLAG_DE) { |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 1088 | // DE_sys key |
| 1089 | auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 1090 | auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 1091 | |
| 1092 | // DE_n key |
| 1093 | auto system_de_path = android::vold::BuildDataSystemDePath(user_id); |
Mohammad Samiul Islam | e833630 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 1094 | auto misc_de_path = android::vold::BuildDataMiscDePath(volume_uuid, user_id); |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 1095 | auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 1096 | auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id); |
| 1097 | |
Paul Crowley | 8e55066 | 2017-10-16 17:01:44 -0700 | [diff] [blame] | 1098 | res &= destroy_dir(user_de_path); |
Mohammad Samiul Islam | e833630 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 1099 | res &= destroy_dir(misc_de_path); |
Paul Crowley | 3b71fc5 | 2017-10-09 10:55:21 -0700 | [diff] [blame] | 1100 | if (volume_uuid.empty()) { |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 1101 | res &= destroy_dir(system_legacy_path); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 1102 | res &= destroy_dir(profiles_de_path); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 1103 | res &= destroy_dir(system_de_path); |
Andreas Huber | 71cd43f | 2018-01-22 11:25:29 -0800 | [diff] [blame] | 1104 | res &= destroy_dir(vendor_de_path); |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 1105 | } else { |
Eric Biggers | a6957c0 | 2022-06-15 18:52:18 +0000 | [diff] [blame] | 1106 | if (IsFbeEnabled()) { |
Mohammad Samiul Islam | e833630 | 2022-03-07 20:27:06 +0000 | [diff] [blame] | 1107 | auto misc_de_empty_volume_path = android::vold::BuildDataMiscDePath("", user_id); |
| 1108 | res &= destroy_volkey(misc_de_empty_volume_path, volume_uuid); |
Paul Crowley | 3aa914d | 2017-10-09 16:35:51 -0700 | [diff] [blame] | 1109 | } |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 1110 | } |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 1111 | } |
| 1112 | |
| 1113 | return res; |
| 1114 | } |
Rubin Xu | 2436e27 | 2017-04-27 20:43:10 +0100 | [diff] [blame] | 1115 | |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 1116 | static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) { |
| 1117 | auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir); |
| 1118 | if (!dirp) { |
| 1119 | PLOG(ERROR) << "Unable to open directory: " + directory_path; |
| 1120 | return false; |
| 1121 | } |
| 1122 | bool res = true; |
| 1123 | for (;;) { |
| 1124 | errno = 0; |
| 1125 | auto const entry = readdir(dirp.get()); |
| 1126 | if (!entry) { |
| 1127 | if (errno) { |
| 1128 | PLOG(ERROR) << "Unable to read directory: " + directory_path; |
| 1129 | return false; |
| 1130 | } |
| 1131 | break; |
| 1132 | } |
Eric Biggers | 6b84039 | 2020-11-02 15:11:06 -0800 | [diff] [blame] | 1133 | if (IsDotOrDotDot(*entry)) continue; |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 1134 | if (entry->d_type != DT_DIR || entry->d_name[0] == '.') { |
| 1135 | LOG(DEBUG) << "Skipping non-user " << entry->d_name; |
| 1136 | continue; |
| 1137 | } |
| 1138 | res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid); |
| 1139 | } |
| 1140 | return res; |
| 1141 | } |
| 1142 | |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 1143 | static void erase_volume_policies(std::map<userid_t, UserPolicies>& policy_map, |
| 1144 | const std::string& volume_uuid) { |
| 1145 | for (auto& [user_id, user_policies] : policy_map) { |
| 1146 | user_policies.adoptable.erase(volume_uuid); |
| 1147 | } |
| 1148 | } |
| 1149 | |
Eric Biggers | 7862729 | 2023-08-01 22:36:55 +0000 | [diff] [blame] | 1150 | // Destroys all CE and DE keys for an adoptable storage volume that is permanently going away. |
| 1151 | // Requires VolumeManager::mCryptLock. |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 1152 | bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) { |
Eric Biggers | 7862729 | 2023-08-01 22:36:55 +0000 | [diff] [blame] | 1153 | if (!IsFbeEnabled()) return true; |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 1154 | bool res = true; |
Eric Biggers | a701c45 | 2018-10-23 13:06:55 -0700 | [diff] [blame] | 1155 | LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid); |
Paul Crowley | 26a5388 | 2017-10-26 11:16:39 -0700 | [diff] [blame] | 1156 | auto secdiscardable_path = volume_secdiscardable_path(volume_uuid); |
| 1157 | res &= android::vold::runSecdiscardSingle(secdiscardable_path); |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 1158 | res &= destroy_volume_keys("/data/misc_ce", volume_uuid); |
| 1159 | res &= destroy_volume_keys("/data/misc_de", volume_uuid); |
Eric Biggers | 1eddb7c | 2023-08-02 23:02:22 +0000 | [diff] [blame] | 1160 | // Drop the CE and DE policies stored in memory, as they are not needed anymore. Note that it's |
| 1161 | // not necessary to also evict the corresponding keys from the kernel, as that happens |
| 1162 | // automatically as a result of the volume being unmounted. |
| 1163 | erase_volume_policies(s_ce_policies, volume_uuid); |
| 1164 | erase_volume_policies(s_de_policies, volume_uuid); |
Paul Crowley | c6433a2 | 2017-10-24 14:54:43 -0700 | [diff] [blame] | 1165 | return res; |
| 1166 | } |