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