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