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