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 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 17 | #include "Ext4Crypt.h" |
| 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" |
| 22 | |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 23 | #include <algorithm> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 24 | #include <map> |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 25 | #include <set> |
Paul Lawrence | fd7db73 | 2015-04-10 07:48:51 -0700 | [diff] [blame] | 26 | #include <sstream> |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 27 | #include <string> |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 28 | #include <vector> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 29 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 30 | #include <dirent.h> |
| 31 | #include <errno.h> |
| 32 | #include <fcntl.h> |
Pavel Grafov | b350ed0 | 2017-07-27 17:34:57 +0100 | [diff] [blame] | 33 | #include <unistd.h> |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 34 | #include <limits.h> |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 35 | #include <selinux/android.h> |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 36 | #include <sys/mount.h> |
| 37 | #include <sys/stat.h> |
| 38 | #include <sys/types.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 39 | |
Paul Crowley | 480fcd2 | 2015-08-24 14:53:28 +0100 | [diff] [blame] | 40 | #include <private/android_filesystem_config.h> |
| 41 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 42 | #include "cryptfs.h" |
| 43 | |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 44 | #define EMULATED_USES_SELINUX 0 |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 45 | #define MANAGE_MISC_DIRS 0 |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 46 | |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 47 | #include <cutils/fs.h> |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 48 | #include <cutils/properties.h> |
| 49 | |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 50 | #include <ext4_utils/ext4_crypt.h> |
Elliott Hughes | c3bda18 | 2017-05-09 17:01:04 -0700 | [diff] [blame] | 51 | #include <keyutils.h> |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 52 | |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 53 | #include <android-base/file.h> |
Elliott Hughes | 6bf0547 | 2015-12-04 17:55:33 -0800 | [diff] [blame] | 54 | #include <android-base/logging.h> |
Elliott Hughes | 7e128fb | 2015-12-04 15:50:53 -0800 | [diff] [blame] | 55 | #include <android-base/stringprintf.h> |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 56 | |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 57 | using android::base::StringPrintf; |
Pavel Grafov | b350ed0 | 2017-07-27 17:34:57 +0100 | [diff] [blame] | 58 | using android::base::WriteStringToFile; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 59 | using android::vold::kEmptyAuthentication; |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 60 | using android::vold::KeyBuffer; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 61 | |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 62 | // NOTE: keep in sync with StorageManager |
| 63 | static constexpr int FLAG_STORAGE_DE = 1 << 0; |
| 64 | static constexpr int FLAG_STORAGE_CE = 1 << 1; |
| 65 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 66 | namespace { |
Andrew Scull | 7ec25c7 | 2016-10-31 10:28:25 +0000 | [diff] [blame] | 67 | |
Paul Crowley | 4d2d524 | 2016-04-27 10:25:12 -0700 | [diff] [blame] | 68 | const std::string device_key_dir = std::string() + DATA_MNT_POINT + e4crypt_unencrypted_folder; |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 69 | const std::string device_key_path = device_key_dir + "/key"; |
| 70 | const std::string device_key_temp = device_key_dir + "/temp"; |
Paul Lawrence | 5a06a64 | 2016-02-03 13:39:13 -0800 | [diff] [blame] | 71 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 72 | const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys"; |
| 73 | const std::string user_key_temp = user_key_dir + "/temp"; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 74 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 75 | bool s_global_de_initialized = false; |
Paul Lawrence | 7b6b565 | 2016-02-02 11:14:59 -0800 | [diff] [blame] | 76 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 77 | // Some users are ephemeral, don't try to wipe their keys from disk |
| 78 | std::set<userid_t> s_ephemeral_users; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 79 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 80 | // Map user ids to key references |
| 81 | std::map<userid_t, std::string> s_de_key_raw_refs; |
| 82 | std::map<userid_t, std::string> s_ce_key_raw_refs; |
Paul Crowley | 99360d7 | 2016-10-19 14:00:24 -0700 | [diff] [blame] | 83 | // TODO abolish this map, per b/26948053 |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 84 | std::map<userid_t, KeyBuffer> s_ce_keys; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 85 | |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 86 | } |
| 87 | |
Paul Crowley | 38132a1 | 2016-02-09 09:50:32 +0000 | [diff] [blame] | 88 | static bool e4crypt_is_emulated() { |
| 89 | return property_get_bool("persist.sys.emulate_fbe", false); |
| 90 | } |
| 91 | |
| 92 | static const char* escape_null(const char* value) { |
| 93 | return (value == nullptr) ? "null" : value; |
Paul Lawrence | 731a7a2 | 2015-04-28 22:14:15 +0000 | [diff] [blame] | 94 | } |
| 95 | |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 96 | static std::string get_de_key_path(userid_t user_id) { |
| 97 | return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id); |
| 98 | } |
| 99 | |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 100 | static std::string get_ce_key_directory_path(userid_t user_id) { |
| 101 | return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id); |
| 102 | } |
| 103 | |
| 104 | // Returns the keys newest first |
| 105 | static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) { |
| 106 | auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir); |
| 107 | if (!dirp) { |
| 108 | PLOG(ERROR) << "Unable to open ce key directory: " + directory_path; |
| 109 | return std::vector<std::string>(); |
| 110 | } |
| 111 | std::vector<std::string> result; |
| 112 | for (;;) { |
| 113 | errno = 0; |
| 114 | auto const entry = readdir(dirp.get()); |
| 115 | if (!entry) { |
| 116 | if (errno) { |
| 117 | PLOG(ERROR) << "Unable to read ce key directory: " + directory_path; |
| 118 | return std::vector<std::string>(); |
| 119 | } |
| 120 | break; |
| 121 | } |
| 122 | if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') { |
| 123 | LOG(DEBUG) << "Skipping non-key " << entry->d_name; |
| 124 | continue; |
| 125 | } |
| 126 | result.emplace_back(directory_path + "/" + entry->d_name); |
| 127 | } |
| 128 | std::sort(result.begin(), result.end()); |
| 129 | std::reverse(result.begin(), result.end()); |
| 130 | return result; |
| 131 | } |
| 132 | |
| 133 | static std::string get_ce_key_current_path(const std::string& directory_path) { |
| 134 | return directory_path + "/current"; |
| 135 | } |
| 136 | |
| 137 | static bool get_ce_key_new_path(const std::string& directory_path, |
| 138 | const std::vector<std::string>& paths, |
| 139 | std::string *ce_key_path) { |
| 140 | if (paths.empty()) { |
| 141 | *ce_key_path = get_ce_key_current_path(directory_path); |
| 142 | return true; |
| 143 | } |
| 144 | for (unsigned int i = 0; i < UINT_MAX; i++) { |
| 145 | auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i); |
| 146 | if (paths[0] < candidate) { |
| 147 | *ce_key_path = candidate; |
| 148 | return true; |
| 149 | } |
| 150 | } |
| 151 | return false; |
| 152 | } |
| 153 | |
| 154 | // Discard all keys but the named one; rename it to canonical name. |
| 155 | // No point in acting on errors in this; ignore them. |
| 156 | static void fixate_user_ce_key(const std::string& directory_path, const std::string &to_fix, |
| 157 | const std::vector<std::string>& paths) { |
| 158 | for (auto const other_path: paths) { |
| 159 | if (other_path != to_fix) { |
| 160 | android::vold::destroyKey(other_path); |
| 161 | } |
| 162 | } |
| 163 | auto const current_path = get_ce_key_current_path(directory_path); |
| 164 | if (to_fix != current_path) { |
| 165 | LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path; |
| 166 | if (rename(to_fix.c_str(), current_path.c_str()) != 0) { |
| 167 | PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path; |
| 168 | } |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | static bool read_and_fixate_user_ce_key(userid_t user_id, |
| 173 | const android::vold::KeyAuthentication& auth, |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 174 | KeyBuffer *ce_key) { |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 175 | auto const directory_path = get_ce_key_directory_path(user_id); |
| 176 | auto const paths = get_ce_key_paths(directory_path); |
| 177 | for (auto const ce_key_path: paths) { |
| 178 | LOG(DEBUG) << "Trying user CE key " << ce_key_path; |
| 179 | if (android::vold::retrieveKey(ce_key_path, auth, ce_key)) { |
| 180 | LOG(DEBUG) << "Successfully retrieved key"; |
| 181 | fixate_user_ce_key(directory_path, ce_key_path, paths); |
| 182 | return true; |
| 183 | } |
| 184 | } |
| 185 | LOG(ERROR) << "Failed to find working ce key for user " << user_id; |
| 186 | return false; |
Paul Crowley | b33e887 | 2015-05-19 12:34:09 +0100 | [diff] [blame] | 187 | } |
| 188 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 189 | static bool read_and_install_user_ce_key(userid_t user_id, |
| 190 | const android::vold::KeyAuthentication& auth) { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 191 | if (s_ce_key_raw_refs.count(user_id) != 0) return true; |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 192 | KeyBuffer ce_key; |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 193 | if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 194 | std::string ce_raw_ref; |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 195 | if (!android::vold::installKey(ce_key, &ce_raw_ref)) return false; |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 196 | s_ce_keys[user_id] = std::move(ce_key); |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 197 | s_ce_key_raw_refs[user_id] = ce_raw_ref; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 198 | LOG(DEBUG) << "Installed ce key for user " << user_id; |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 199 | return true; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 200 | } |
| 201 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 202 | 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] | 203 | LOG(DEBUG) << "Preparing: " << dir; |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 204 | if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) { |
| 205 | PLOG(ERROR) << "Failed to prepare " << dir; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 206 | return false; |
| 207 | } |
Paul Crowley | 13ffd8e | 2016-01-27 14:30:22 +0000 | [diff] [blame] | 208 | return true; |
| 209 | } |
| 210 | |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 211 | static bool destroy_dir(const std::string& dir) { |
| 212 | LOG(DEBUG) << "Destroying: " << dir; |
| 213 | if (rmdir(dir.c_str()) != 0 && errno != ENOENT) { |
| 214 | PLOG(ERROR) << "Failed to destroy " << dir; |
| 215 | return false; |
| 216 | } |
| 217 | return true; |
| 218 | } |
| 219 | |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 220 | // NB this assumes that there is only one thread listening for crypt commands, because |
| 221 | // it creates keys in a fixed location. |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 222 | static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) { |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 223 | KeyBuffer de_key, ce_key; |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 224 | if (!android::vold::randomKey(&de_key)) return false; |
| 225 | if (!android::vold::randomKey(&ce_key)) return false; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 226 | if (create_ephemeral) { |
| 227 | // If the key should be created as ephemeral, don't store it. |
| 228 | s_ephemeral_users.insert(user_id); |
| 229 | } else { |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 230 | auto const directory_path = get_ce_key_directory_path(user_id); |
| 231 | if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false; |
| 232 | auto const paths = get_ce_key_paths(directory_path); |
| 233 | std::string ce_key_path; |
| 234 | if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false; |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 235 | if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 236 | kEmptyAuthentication, ce_key)) return false; |
| 237 | fixate_user_ce_key(directory_path, ce_key_path, paths); |
| 238 | // Write DE key second; once this is written, all is good. |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 239 | if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp, |
Paul Crowley | 38132a1 | 2016-02-09 09:50:32 +0000 | [diff] [blame] | 240 | kEmptyAuthentication, de_key)) return false; |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 241 | } |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 242 | std::string de_raw_ref; |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 243 | if (!android::vold::installKey(de_key, &de_raw_ref)) return false; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 244 | s_de_key_raw_refs[user_id] = de_raw_ref; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 245 | std::string ce_raw_ref; |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 246 | if (!android::vold::installKey(ce_key, &ce_raw_ref)) return false; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 247 | s_ce_keys[user_id] = ce_key; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 248 | s_ce_key_raw_refs[user_id] = ce_raw_ref; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 249 | LOG(DEBUG) << "Created keys for user " << user_id; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 250 | return true; |
| 251 | } |
| 252 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 253 | static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id, |
| 254 | std::string* raw_ref) { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 255 | auto refi = key_map.find(user_id); |
| 256 | if (refi == key_map.end()) { |
| 257 | LOG(ERROR) << "Cannot find key for " << user_id; |
| 258 | return false; |
| 259 | } |
Paul Crowley | a051eb7 | 2016-03-08 16:08:32 -0800 | [diff] [blame] | 260 | *raw_ref = refi->second; |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 261 | return true; |
| 262 | } |
| 263 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 264 | static bool ensure_policy(const std::string& raw_ref, const std::string& path) { |
Eric Biggers | b45caaf | 2017-02-02 14:52:12 -0800 | [diff] [blame] | 265 | const char *contents_mode; |
| 266 | const char *filenames_mode; |
| 267 | |
| 268 | cryptfs_get_file_encryption_modes(&contents_mode, &filenames_mode); |
| 269 | |
Paul Lawrence | 6e41059 | 2016-05-24 14:20:38 -0700 | [diff] [blame] | 270 | if (e4crypt_policy_ensure(path.c_str(), |
| 271 | raw_ref.data(), raw_ref.size(), |
Eric Biggers | b45caaf | 2017-02-02 14:52:12 -0800 | [diff] [blame] | 272 | contents_mode, filenames_mode) != 0) { |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 273 | LOG(ERROR) << "Failed to set policy on: " << path; |
| 274 | return false; |
| 275 | } |
| 276 | return true; |
Paul Crowley | 95376d6 | 2015-05-06 15:04:43 +0100 | [diff] [blame] | 277 | } |
Paul Crowley | b33e887 | 2015-05-19 12:34:09 +0100 | [diff] [blame] | 278 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 279 | static bool is_numeric(const char* name) { |
| 280 | for (const char* p = name; *p != '\0'; p++) { |
| 281 | if (!isdigit(*p)) return false; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 282 | } |
| 283 | return true; |
| 284 | } |
| 285 | |
| 286 | static bool load_all_de_keys() { |
| 287 | auto de_dir = user_key_dir + "/de"; |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 288 | 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] | 289 | if (!dirp) { |
| 290 | PLOG(ERROR) << "Unable to read de key directory"; |
| 291 | return false; |
| 292 | } |
| 293 | for (;;) { |
| 294 | errno = 0; |
| 295 | auto entry = readdir(dirp.get()); |
| 296 | if (!entry) { |
| 297 | if (errno) { |
| 298 | PLOG(ERROR) << "Unable to read de key directory"; |
| 299 | return false; |
| 300 | } |
| 301 | break; |
| 302 | } |
| 303 | if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) { |
| 304 | LOG(DEBUG) << "Skipping non-de-key " << entry->d_name; |
| 305 | continue; |
| 306 | } |
Jeff Sharkey | 95440eb | 2017-09-18 18:19:28 -0600 | [diff] [blame] | 307 | userid_t user_id = std::stoi(entry->d_name); |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 308 | if (s_de_key_raw_refs.count(user_id) == 0) { |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 309 | auto key_path = de_dir + "/" + entry->d_name; |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 310 | KeyBuffer key; |
Paul Crowley | a051eb7 | 2016-03-08 16:08:32 -0800 | [diff] [blame] | 311 | if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 312 | std::string raw_ref; |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 313 | if (!android::vold::installKey(key, &raw_ref)) return false; |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 314 | s_de_key_raw_refs[user_id] = raw_ref; |
| 315 | LOG(DEBUG) << "Installed de key for user " << user_id; |
| 316 | } |
| 317 | } |
| 318 | // ext4enc:TODO: go through all DE directories, ensure that all user dirs have the |
| 319 | // correct policy set on them, and that no rogue ones exist. |
| 320 | return true; |
| 321 | } |
| 322 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 323 | bool e4crypt_initialize_global_de() { |
Paul Crowley | 38132a1 | 2016-02-09 09:50:32 +0000 | [diff] [blame] | 324 | LOG(INFO) << "e4crypt_initialize_global_de"; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 325 | |
Paul Crowley | 38132a1 | 2016-02-09 09:50:32 +0000 | [diff] [blame] | 326 | if (s_global_de_initialized) { |
| 327 | LOG(INFO) << "Already initialized"; |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 328 | return true; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 329 | } |
| 330 | |
Eric Biggers | b45caaf | 2017-02-02 14:52:12 -0800 | [diff] [blame] | 331 | const char *contents_mode; |
| 332 | const char *filenames_mode; |
| 333 | cryptfs_get_file_encryption_modes(&contents_mode, &filenames_mode); |
| 334 | std::string modestring = std::string(contents_mode) + ":" + filenames_mode; |
| 335 | |
Paul Lawrence | 6e41059 | 2016-05-24 14:20:38 -0700 | [diff] [blame] | 336 | std::string mode_filename = std::string("/data") + e4crypt_key_mode; |
Eric Biggers | b45caaf | 2017-02-02 14:52:12 -0800 | [diff] [blame] | 337 | if (!android::base::WriteStringToFile(modestring, mode_filename)) { |
Paul Lawrence | 6e41059 | 2016-05-24 14:20:38 -0700 | [diff] [blame] | 338 | PLOG(ERROR) << "Cannot save type"; |
| 339 | return false; |
| 340 | } |
| 341 | |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 342 | std::string device_key_ref; |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 343 | if (!android::vold::retrieveAndInstallKey(true, |
| 344 | device_key_path, device_key_temp, &device_key_ref)) return false; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 345 | |
Paul Lawrence | f10544d | 2016-02-04 08:18:52 -0800 | [diff] [blame] | 346 | std::string ref_filename = std::string("/data") + e4crypt_key_ref; |
| 347 | if (!android::base::WriteStringToFile(device_key_ref, ref_filename)) { |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 348 | PLOG(ERROR) << "Cannot save key reference to:" << ref_filename; |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 349 | return false; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 350 | } |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 351 | LOG(INFO) << "Wrote system DE key reference to:" << ref_filename; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 352 | |
Paul Crowley | 38132a1 | 2016-02-09 09:50:32 +0000 | [diff] [blame] | 353 | s_global_de_initialized = true; |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 354 | return true; |
Paul Lawrence | aec34df | 2016-02-03 10:52:41 -0800 | [diff] [blame] | 355 | } |
| 356 | |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 357 | bool e4crypt_init_user0() { |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 358 | LOG(DEBUG) << "e4crypt_init_user0"; |
| 359 | if (e4crypt_is_native()) { |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 360 | if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false; |
| 361 | if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false; |
| 362 | 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] | 363 | if (!android::vold::pathExists(get_de_key_path(0))) { |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 364 | if (!create_and_install_user_keys(0, false)) return false; |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 365 | } |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 366 | // TODO: switch to loading only DE_0 here once framework makes |
| 367 | // explicit calls to install DE keys for secondary users |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 368 | if (!load_all_de_keys()) return false; |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 369 | } |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 370 | // We can only safely prepare DE storage here, since CE keys are probably |
| 371 | // entangled with user credentials. The framework will always prepare CE |
| 372 | // storage once CE keys are installed. |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 373 | if (!e4crypt_prepare_user_storage(nullptr, 0, 0, FLAG_STORAGE_DE)) { |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 374 | LOG(ERROR) << "Failed to prepare user 0 storage"; |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 375 | return false; |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 376 | } |
Jeff Sharkey | 0754a45 | 2016-02-08 12:21:42 -0700 | [diff] [blame] | 377 | |
| 378 | // If this is a non-FBE device that recently left an emulated mode, |
| 379 | // restore user data directories to known-good state. |
| 380 | if (!e4crypt_is_native() && !e4crypt_is_emulated()) { |
Jeff Sharkey | 695d928 | 2016-02-08 18:10:34 -0700 | [diff] [blame] | 381 | e4crypt_unlock_user_key(0, 0, "!", "!"); |
Jeff Sharkey | 0754a45 | 2016-02-08 12:21:42 -0700 | [diff] [blame] | 382 | } |
| 383 | |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 384 | return true; |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 385 | } |
| 386 | |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 387 | bool e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) { |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 388 | LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial; |
Paul Crowley | ea62e26 | 2016-01-28 12:23:53 +0000 | [diff] [blame] | 389 | if (!e4crypt_is_native()) { |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 390 | return true; |
Paul Crowley | ea62e26 | 2016-01-28 12:23:53 +0000 | [diff] [blame] | 391 | } |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 392 | // FIXME test for existence of key that is not loaded yet |
| 393 | if (s_ce_key_raw_refs.count(user_id) != 0) { |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 394 | LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for " << user_id |
| 395 | << " serial " << serial; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 396 | // FIXME should we fail the command? |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 397 | return true; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 398 | } |
Paul Crowley | b92f83c | 2016-02-01 14:10:43 +0000 | [diff] [blame] | 399 | if (!create_and_install_user_keys(user_id, ephemeral)) { |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 400 | return false; |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 401 | } |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 402 | return true; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 403 | } |
| 404 | |
Pavel Grafov | b350ed0 | 2017-07-27 17:34:57 +0100 | [diff] [blame] | 405 | static void drop_caches() { |
| 406 | // Clean any dirty pages (otherwise they won't be dropped). |
| 407 | sync(); |
| 408 | // Drop inode and page caches. |
| 409 | if (!WriteStringToFile("3", "/proc/sys/vm/drop_caches")) { |
| 410 | PLOG(ERROR) << "Failed to drop caches during key eviction"; |
| 411 | } |
| 412 | } |
| 413 | |
Andrew Scull | 7ec25c7 | 2016-10-31 10:28:25 +0000 | [diff] [blame] | 414 | static bool evict_ce_key(userid_t user_id) { |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 415 | s_ce_keys.erase(user_id); |
Andrew Scull | 7ec25c7 | 2016-10-31 10:28:25 +0000 | [diff] [blame] | 416 | bool success = true; |
| 417 | std::string raw_ref; |
| 418 | // If we haven't loaded the CE key, no need to evict it. |
| 419 | if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) { |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 420 | success &= android::vold::evictKey(raw_ref); |
Pavel Grafov | b350ed0 | 2017-07-27 17:34:57 +0100 | [diff] [blame] | 421 | drop_caches(); |
Andrew Scull | 7ec25c7 | 2016-10-31 10:28:25 +0000 | [diff] [blame] | 422 | } |
| 423 | s_ce_key_raw_refs.erase(user_id); |
| 424 | return success; |
| 425 | } |
| 426 | |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 427 | bool e4crypt_destroy_user_key(userid_t user_id) { |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 428 | LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")"; |
Paul Crowley | ea62e26 | 2016-01-28 12:23:53 +0000 | [diff] [blame] | 429 | if (!e4crypt_is_native()) { |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 430 | return true; |
Paul Crowley | ea62e26 | 2016-01-28 12:23:53 +0000 | [diff] [blame] | 431 | } |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 432 | bool success = true; |
| 433 | std::string raw_ref; |
Andrew Scull | 7ec25c7 | 2016-10-31 10:28:25 +0000 | [diff] [blame] | 434 | success &= evict_ce_key(user_id); |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 435 | success &= lookup_key_ref(s_de_key_raw_refs, user_id, &raw_ref) |
| 436 | && android::vold::evictKey(raw_ref); |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 437 | s_de_key_raw_refs.erase(user_id); |
Paul Crowley | b1f3d24 | 2016-01-28 10:09:46 +0000 | [diff] [blame] | 438 | auto it = s_ephemeral_users.find(user_id); |
| 439 | if (it != s_ephemeral_users.end()) { |
| 440 | s_ephemeral_users.erase(it); |
Paul Crowley | 1ef2558 | 2016-01-21 20:26:12 +0000 | [diff] [blame] | 441 | } else { |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 442 | for (auto const path: get_ce_key_paths(get_ce_key_directory_path(user_id))) { |
| 443 | success &= android::vold::destroyKey(path); |
| 444 | } |
Paul Crowley | ab0b56a | 2016-07-19 15:29:53 -0700 | [diff] [blame] | 445 | auto de_key_path = get_de_key_path(user_id); |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 446 | if (android::vold::pathExists(de_key_path)) { |
Paul Crowley | ab0b56a | 2016-07-19 15:29:53 -0700 | [diff] [blame] | 447 | success &= android::vold::destroyKey(de_key_path); |
| 448 | } else { |
| 449 | LOG(INFO) << "Not present so not erasing: " << de_key_path; |
| 450 | } |
Lenka Trochtova | 395039f | 2015-11-25 10:13:03 +0100 | [diff] [blame] | 451 | } |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 452 | return success; |
Paul Crowley | b33e887 | 2015-05-19 12:34:09 +0100 | [diff] [blame] | 453 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 454 | |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 455 | static bool emulated_lock(const std::string& path) { |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 456 | if (chmod(path.c_str(), 0000) != 0) { |
| 457 | PLOG(ERROR) << "Failed to chmod " << path; |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 458 | return false; |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 459 | } |
| 460 | #if EMULATED_USES_SELINUX |
| 461 | if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) { |
| 462 | PLOG(WARNING) << "Failed to setfilecon " << path; |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 463 | return false; |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 464 | } |
| 465 | #endif |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 466 | return true; |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 467 | } |
| 468 | |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 469 | static bool emulated_unlock(const std::string& path, mode_t mode) { |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 470 | if (chmod(path.c_str(), mode) != 0) { |
| 471 | PLOG(ERROR) << "Failed to chmod " << path; |
Paul Crowley | a042cb5 | 2016-01-21 17:24:49 +0000 | [diff] [blame] | 472 | // FIXME temporary workaround for b/26713622 |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 473 | if (e4crypt_is_emulated()) return false; |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 474 | } |
| 475 | #if EMULATED_USES_SELINUX |
| 476 | if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) { |
| 477 | PLOG(WARNING) << "Failed to restorecon " << path; |
Paul Crowley | a042cb5 | 2016-01-21 17:24:49 +0000 | [diff] [blame] | 478 | // FIXME temporary workaround for b/26713622 |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 479 | if (e4crypt_is_emulated()) return false; |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 480 | } |
| 481 | #endif |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 482 | return true; |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 483 | } |
| 484 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 485 | static bool parse_hex(const char* hex, std::string* result) { |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 486 | if (strcmp("!", hex) == 0) { |
Paul Crowley | a051eb7 | 2016-03-08 16:08:32 -0800 | [diff] [blame] | 487 | *result = ""; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 488 | return true; |
| 489 | } |
Paul Crowley | a051eb7 | 2016-03-08 16:08:32 -0800 | [diff] [blame] | 490 | if (android::vold::HexToStr(hex, *result) != 0) { |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 491 | 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] | 492 | return false; |
| 493 | } |
| 494 | return true; |
| 495 | } |
| 496 | |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 497 | bool e4crypt_add_user_key_auth(userid_t user_id, int serial, const char* token_hex, |
| 498 | const char* secret_hex) { |
| 499 | LOG(DEBUG) << "e4crypt_add_user_key_auth " << user_id << " serial=" << serial |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 500 | << " token_present=" << (strcmp(token_hex, "!") != 0); |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 501 | if (!e4crypt_is_native()) return true; |
| 502 | if (s_ephemeral_users.count(user_id) != 0) return true; |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 503 | std::string token, secret; |
Paul Crowley | a051eb7 | 2016-03-08 16:08:32 -0800 | [diff] [blame] | 504 | if (!parse_hex(token_hex, &token)) return false; |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 505 | if (!parse_hex(secret_hex, &secret)) return false; |
| 506 | auto auth = secret.empty() ? kEmptyAuthentication |
| 507 | : android::vold::KeyAuthentication(token, secret); |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 508 | auto it = s_ce_keys.find(user_id); |
| 509 | if (it == s_ce_keys.end()) { |
| 510 | LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id; |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 511 | return false; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 512 | } |
Pavel Grafov | e2e2d30 | 2017-08-01 17:15:53 +0100 | [diff] [blame] | 513 | const auto &ce_key = it->second; |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 514 | auto const directory_path = get_ce_key_directory_path(user_id); |
| 515 | auto const paths = get_ce_key_paths(directory_path); |
| 516 | std::string ce_key_path; |
| 517 | if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false; |
Paul Crowley | f71ace3 | 2016-06-02 11:01:19 -0700 | [diff] [blame] | 518 | if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, auth, ce_key)) return false; |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 519 | return true; |
| 520 | } |
| 521 | |
| 522 | bool e4crypt_fixate_newest_user_key_auth(userid_t user_id) { |
| 523 | LOG(DEBUG) << "e4crypt_fixate_newest_user_key_auth " << user_id; |
| 524 | if (!e4crypt_is_native()) return true; |
Paul Crowley | 25a7138 | 2016-07-25 15:55:36 -0700 | [diff] [blame] | 525 | if (s_ephemeral_users.count(user_id) != 0) return true; |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 526 | auto const directory_path = get_ce_key_directory_path(user_id); |
| 527 | auto const paths = get_ce_key_paths(directory_path); |
| 528 | if (paths.empty()) { |
| 529 | LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id; |
| 530 | return false; |
Paul Crowley | ad2eb64 | 2016-02-10 17:56:05 +0000 | [diff] [blame] | 531 | } |
Paul Crowley | a363036 | 2016-05-17 14:17:56 -0700 | [diff] [blame] | 532 | fixate_user_ce_key(directory_path, paths[0], paths); |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 533 | return true; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 534 | } |
| 535 | |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 536 | // TODO: rename to 'install' for consistency, and take flags to know which keys to install |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 537 | bool e4crypt_unlock_user_key(userid_t user_id, int serial, const char* token_hex, |
| 538 | const char* secret_hex) { |
| 539 | LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " serial=" << serial |
| 540 | << " token_present=" << (strcmp(token_hex, "!") != 0); |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 541 | if (e4crypt_is_native()) { |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 542 | if (s_ce_key_raw_refs.count(user_id) != 0) { |
| 543 | LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id; |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 544 | return true; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 545 | } |
| 546 | std::string token, secret; |
Paul Crowley | a051eb7 | 2016-03-08 16:08:32 -0800 | [diff] [blame] | 547 | if (!parse_hex(token_hex, &token)) return false; |
| 548 | if (!parse_hex(secret_hex, &secret)) return false; |
Paul Crowley | 0572080 | 2016-02-08 15:55:41 +0000 | [diff] [blame] | 549 | android::vold::KeyAuthentication auth(token, secret); |
| 550 | if (!read_and_install_user_ce_key(user_id, auth)) { |
Paul Crowley | 8fb12fd | 2016-02-01 14:28:12 +0000 | [diff] [blame] | 551 | LOG(ERROR) << "Couldn't read key for " << user_id; |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 552 | return false; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 553 | } |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 554 | } else { |
| 555 | // When in emulation mode, we just use chmod. However, we also |
| 556 | // unlock directories when not in emulation mode, to bring devices |
| 557 | // back into a known-good state. |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 558 | if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) || |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 559 | !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) || |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 560 | !emulated_unlock(android::vold::BuildDataMediaCePath(nullptr, user_id), 0770) || |
| 561 | !emulated_unlock(android::vold::BuildDataUserCePath(nullptr, user_id), 0771)) { |
Jeff Sharkey | 7a9dd95 | 2016-01-12 16:52:16 -0700 | [diff] [blame] | 562 | LOG(ERROR) << "Failed to unlock user " << user_id; |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 563 | return false; |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 564 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 565 | } |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 566 | return true; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 567 | } |
| 568 | |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 569 | // TODO: rename to 'evict' for consistency |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 570 | bool e4crypt_lock_user_key(userid_t user_id) { |
Andrew Scull | 7ec25c7 | 2016-10-31 10:28:25 +0000 | [diff] [blame] | 571 | LOG(DEBUG) << "e4crypt_lock_user_key " << user_id; |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 572 | if (e4crypt_is_native()) { |
Andrew Scull | 7ec25c7 | 2016-10-31 10:28:25 +0000 | [diff] [blame] | 573 | return evict_ce_key(user_id); |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 574 | } else if (e4crypt_is_emulated()) { |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 575 | // When in emulation mode, we just use chmod |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 576 | if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) || |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 577 | !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) || |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 578 | !emulated_lock(android::vold::BuildDataMediaCePath(nullptr, user_id)) || |
| 579 | !emulated_lock(android::vold::BuildDataUserCePath(nullptr, user_id))) { |
Paul Crowley | 57eedbf | 2016-02-09 09:30:23 +0000 | [diff] [blame] | 580 | LOG(ERROR) << "Failed to lock user " << user_id; |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 581 | return false; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 582 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 583 | } |
Jeff Sharkey | fc505c3 | 2015-12-07 17:27:01 -0700 | [diff] [blame] | 584 | |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 585 | return true; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 586 | } |
| 587 | |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 588 | bool e4crypt_prepare_user_storage(const char* volume_uuid, userid_t user_id, int serial, |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 589 | int flags) { |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 590 | LOG(DEBUG) << "e4crypt_prepare_user_storage for volume " << escape_null(volume_uuid) |
Paul Crowley | df528a7 | 2016-03-09 09:31:37 -0800 | [diff] [blame] | 591 | << ", user " << user_id << ", serial " << serial << ", flags " << flags; |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 592 | |
| 593 | if (flags & FLAG_STORAGE_DE) { |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 594 | // DE_sys key |
| 595 | auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id); |
| 596 | auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id); |
| 597 | auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 598 | |
| 599 | // DE_n key |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 600 | auto system_de_path = android::vold::BuildDataSystemDePath(user_id); |
| 601 | auto misc_de_path = android::vold::BuildDataMiscDePath(user_id); |
| 602 | auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id); |
| 603 | |
Paul Crowley | 6b756ce | 2017-10-05 14:07:09 -0700 | [diff] [blame^] | 604 | if (volume_uuid == nullptr) { |
| 605 | 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] | 606 | #if MANAGE_MISC_DIRS |
Paul Crowley | 6b756ce | 2017-10-05 14:07:09 -0700 | [diff] [blame^] | 607 | if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM), |
| 608 | multiuser_get_uid(user_id, AID_EVERYBODY))) return false; |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 609 | #endif |
Paul Crowley | 6b756ce | 2017-10-05 14:07:09 -0700 | [diff] [blame^] | 610 | 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] | 611 | |
Paul Crowley | 6b756ce | 2017-10-05 14:07:09 -0700 | [diff] [blame^] | 612 | if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false; |
| 613 | if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false; |
| 614 | } |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 615 | 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] | 616 | |
Jeff Sharkey | d794526 | 2017-06-26 16:09:11 -0600 | [diff] [blame] | 617 | if (e4crypt_is_native()) { |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 618 | std::string de_raw_ref; |
Paul Crowley | a051eb7 | 2016-03-08 16:08:32 -0800 | [diff] [blame] | 619 | if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_raw_ref)) return false; |
Paul Crowley | 6b756ce | 2017-10-05 14:07:09 -0700 | [diff] [blame^] | 620 | if (volume_uuid == nullptr) { |
| 621 | if (!ensure_policy(de_raw_ref, system_de_path)) return false; |
| 622 | if (!ensure_policy(de_raw_ref, misc_de_path)) return false; |
| 623 | } |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 624 | if (!ensure_policy(de_raw_ref, user_de_path)) return false; |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 625 | } |
Paul Crowley | 285956f | 2016-01-20 13:12:38 +0000 | [diff] [blame] | 626 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 627 | |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 628 | if (flags & FLAG_STORAGE_CE) { |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 629 | // CE_n key |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 630 | auto system_ce_path = android::vold::BuildDataSystemCePath(user_id); |
| 631 | auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 632 | auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id); |
| 633 | auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id); |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 634 | |
Paul Crowley | 6b756ce | 2017-10-05 14:07:09 -0700 | [diff] [blame^] | 635 | if (volume_uuid == nullptr) { |
| 636 | if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false; |
| 637 | if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false; |
| 638 | } |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 639 | if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false; |
| 640 | 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] | 641 | |
Jeff Sharkey | d794526 | 2017-06-26 16:09:11 -0600 | [diff] [blame] | 642 | if (e4crypt_is_native()) { |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 643 | std::string ce_raw_ref; |
Paul Crowley | a051eb7 | 2016-03-08 16:08:32 -0800 | [diff] [blame] | 644 | if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_raw_ref)) return false; |
Paul Crowley | 6b756ce | 2017-10-05 14:07:09 -0700 | [diff] [blame^] | 645 | if (volume_uuid == nullptr) { |
| 646 | if (!ensure_policy(ce_raw_ref, system_ce_path)) return false; |
| 647 | if (!ensure_policy(ce_raw_ref, misc_ce_path)) return false; |
| 648 | |
| 649 | // Now that credentials have been installed, we can run restorecon |
| 650 | // over these paths |
| 651 | // NOTE: these paths need to be kept in sync with libselinux |
| 652 | android::vold::RestoreconRecursive(system_ce_path); |
| 653 | android::vold::RestoreconRecursive(misc_ce_path); |
| 654 | } |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 655 | if (!ensure_policy(ce_raw_ref, media_ce_path)) return false; |
| 656 | if (!ensure_policy(ce_raw_ref, user_ce_path)) return false; |
Jeff Sharkey | 47695b2 | 2016-02-01 17:02:29 -0700 | [diff] [blame] | 657 | } |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 658 | } |
| 659 | |
Paul Crowley | 76107cb | 2016-02-09 10:04:39 +0000 | [diff] [blame] | 660 | return true; |
Jeff Sharkey | d2c96e7 | 2015-11-08 17:56:23 -0800 | [diff] [blame] | 661 | } |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 662 | |
| 663 | bool e4crypt_destroy_user_storage(const char* volume_uuid, userid_t user_id, int flags) { |
| 664 | LOG(DEBUG) << "e4crypt_destroy_user_storage for volume " << escape_null(volume_uuid) |
| 665 | << ", user " << user_id << ", flags " << flags; |
| 666 | bool res = true; |
| 667 | |
| 668 | if (flags & FLAG_STORAGE_DE) { |
| 669 | // DE_sys key |
| 670 | auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id); |
| 671 | auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id); |
| 672 | auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 673 | |
| 674 | // DE_n key |
| 675 | auto system_de_path = android::vold::BuildDataSystemDePath(user_id); |
| 676 | auto misc_de_path = android::vold::BuildDataMiscDePath(user_id); |
| 677 | auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id); |
| 678 | |
| 679 | if (volume_uuid == nullptr) { |
| 680 | res &= destroy_dir(system_legacy_path); |
| 681 | #if MANAGE_MISC_DIRS |
| 682 | res &= destroy_dir(misc_legacy_path); |
| 683 | #endif |
| 684 | res &= destroy_dir(profiles_de_path); |
Jeff Sharkey | be70c9a | 2016-04-14 20:45:16 -0600 | [diff] [blame] | 685 | res &= destroy_dir(system_de_path); |
| 686 | res &= destroy_dir(misc_de_path); |
| 687 | } |
| 688 | res &= destroy_dir(user_de_path); |
| 689 | } |
| 690 | |
| 691 | if (flags & FLAG_STORAGE_CE) { |
| 692 | // CE_n key |
| 693 | auto system_ce_path = android::vold::BuildDataSystemCePath(user_id); |
| 694 | auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id); |
| 695 | auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id); |
| 696 | auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id); |
| 697 | |
| 698 | if (volume_uuid == nullptr) { |
| 699 | res &= destroy_dir(system_ce_path); |
| 700 | res &= destroy_dir(misc_ce_path); |
| 701 | } |
| 702 | res &= destroy_dir(media_ce_path); |
| 703 | res &= destroy_dir(user_ce_path); |
| 704 | } |
| 705 | |
| 706 | return res; |
| 707 | } |
Rubin Xu | 2436e27 | 2017-04-27 20:43:10 +0100 | [diff] [blame] | 708 | |
| 709 | bool e4crypt_secdiscard(const char* path) { |
| 710 | return android::vold::runSecdiscardSingle(std::string(path)); |
| 711 | } |