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