blob: 06389e893186b3063d39756897df71c51e0c3c54 [file] [log] [blame]
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001/*
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 Biggersa701c452018-10-23 13:06:55 -070017#include "FsCrypt.h"
Paul Lawrence731a7a22015-04-28 22:14:15 +000018
Paul Crowley1ef25582016-01-21 20:26:12 +000019#include "KeyStorage.h"
Paul Crowleyf71ace32016-06-02 11:01:19 -070020#include "KeyUtil.h"
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080021#include "Utils.h"
Paul Crowleya7ca40b2017-10-06 14:29:33 -070022#include "VoldUtil.h"
23
Paul Crowleya3630362016-05-17 14:17:56 -070024#include <algorithm>
Paul Lawrence731a7a22015-04-28 22:14:15 +000025#include <map>
Barani Muthukumaranb1927c22019-10-31 22:59:34 -070026#include <optional>
Paul Crowleyb1f3d242016-01-28 10:09:46 +000027#include <set>
Paul Lawrencefd7db732015-04-10 07:48:51 -070028#include <sstream>
Paul Crowleydf528a72016-03-09 09:31:37 -080029#include <string>
Paul Crowleyf71ace32016-06-02 11:01:19 -070030#include <vector>
Paul Lawrence731a7a22015-04-28 22:14:15 +000031
Paul Crowleydf528a72016-03-09 09:31:37 -080032#include <dirent.h>
33#include <errno.h>
34#include <fcntl.h>
Paul Crowleya3630362016-05-17 14:17:56 -070035#include <limits.h>
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070036#include <selinux/android.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080037#include <sys/mount.h>
38#include <sys/stat.h>
39#include <sys/types.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070040#include <unistd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000041
Paul Crowley480fcd22015-08-24 14:53:28 +010042#include <private/android_filesystem_config.h>
43
Paul Crowley82b41ff2017-10-20 08:17:54 -070044#include "android/os/IVold.h"
45
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070046#define EMULATED_USES_SELINUX 0
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -060047#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070048
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080049#include <cutils/fs.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070050#include <cutils/properties.h>
51
Eric Biggersa701c452018-10-23 13:06:55 -070052#include <fscrypt/fscrypt.h>
Elliott Hughesc3bda182017-05-09 17:01:04 -070053#include <keyutils.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080054
Elliott Hughes7e128fb2015-12-04 15:50:53 -080055#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080056#include <android-base/logging.h>
Paul Crowley3aa914d2017-10-09 16:35:51 -070057#include <android-base/properties.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080058#include <android-base/stringprintf.h>
Eric Biggers83a73d72019-09-30 13:06:47 -070059#include <android-base/strings.h>
Jieb6698d52018-11-12 15:26:02 +080060#include <android-base/unique_fd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000061
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080062using android::base::StringPrintf;
Tom Cherry4c5bde22019-01-29 14:34:01 -080063using android::fs_mgr::GetEntryForMountPoint;
Paul Crowley77df7f22020-01-23 15:29:30 -080064using android::vold::BuildDataPath;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +010065using android::vold::IsFilesystemSupported;
Paul Crowley05720802016-02-08 15:55:41 +000066using android::vold::kEmptyAuthentication;
Pavel Grafove2e2d302017-08-01 17:15:53 +010067using android::vold::KeyBuffer;
Paul Crowley249c2fb2020-02-07 12:51:56 -080068using android::vold::KeyGeneration;
Paul Crowleyb3d018a2020-02-12 11:04:05 -080069using android::vold::retrieveKey;
70using android::vold::retrieveOrGenerateKey;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +010071using android::vold::SetQuotaInherit;
72using android::vold::SetQuotaProjectId;
Tommy Chiua98464f2019-03-26 14:14:19 +080073using android::vold::writeStringToFile;
Paul Crowley5e53ff62019-10-24 14:55:17 -070074using namespace android::fscrypt;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080075
Paul Lawrence731a7a22015-04-28 22:14:15 +000076namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000077
Eric Biggersa701c452018-10-23 13:06:55 -070078const std::string device_key_dir = std::string() + DATA_MNT_POINT + fscrypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080079const std::string device_key_path = device_key_dir + "/key";
80const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080081
Paul Crowleydf528a72016-03-09 09:31:37 -080082const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
83const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley82b41ff2017-10-20 08:17:54 -070084const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs";
Paul Crowley285956f2016-01-20 13:12:38 +000085
Paul Crowley26a53882017-10-26 11:16:39 -070086const std::string systemwide_volume_key_dir =
87 std::string() + DATA_MNT_POINT + "/misc/vold/volume_keys";
88
Paul Crowleyc8a3ef32019-09-11 15:00:08 -070089bool s_systemwide_keys_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080090
Paul Crowleydf528a72016-03-09 09:31:37 -080091// Some users are ephemeral, don't try to wipe their keys from disk
92std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080093
Paul Crowley77df7f22020-01-23 15:29:30 -080094// Map user ids to encryption policies
95std::map<userid_t, EncryptionPolicy> s_de_policies;
96std::map<userid_t, EncryptionPolicy> s_ce_policies;
Paul Lawrence731a7a22015-04-28 22:14:15 +000097
Paul Crowley14c8c072018-09-18 13:30:21 -070098} // namespace
Paul Lawrence731a7a22015-04-28 22:14:15 +000099
Paul Crowley249c2fb2020-02-07 12:51:56 -0800100// Returns KeyGeneration suitable for key as described in EncryptionOptions
101static KeyGeneration makeGen(const EncryptionOptions& options) {
102 return KeyGeneration{FSCRYPT_MAX_KEY_SIZE, true, options.use_hw_wrapped_key};
103}
104
Eric Biggersa701c452018-10-23 13:06:55 -0700105static bool fscrypt_is_emulated() {
Paul Crowley38132a12016-02-09 09:50:32 +0000106 return property_get_bool("persist.sys.emulate_fbe", false);
107}
108
Paul Crowley3b71fc52017-10-09 10:55:21 -0700109static const char* escape_empty(const std::string& value) {
110 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000111}
112
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000113static std::string get_de_key_path(userid_t user_id) {
114 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
115}
116
Paul Crowleya3630362016-05-17 14:17:56 -0700117static std::string get_ce_key_directory_path(userid_t user_id) {
118 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
119}
120
121// Returns the keys newest first
122static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
123 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
124 if (!dirp) {
125 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
126 return std::vector<std::string>();
127 }
128 std::vector<std::string> result;
129 for (;;) {
130 errno = 0;
131 auto const entry = readdir(dirp.get());
132 if (!entry) {
133 if (errno) {
134 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
135 return std::vector<std::string>();
136 }
137 break;
138 }
139 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
140 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
141 continue;
142 }
143 result.emplace_back(directory_path + "/" + entry->d_name);
144 }
145 std::sort(result.begin(), result.end());
146 std::reverse(result.begin(), result.end());
147 return result;
148}
149
150static std::string get_ce_key_current_path(const std::string& directory_path) {
151 return directory_path + "/current";
152}
153
154static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700155 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700156 if (paths.empty()) {
157 *ce_key_path = get_ce_key_current_path(directory_path);
158 return true;
159 }
160 for (unsigned int i = 0; i < UINT_MAX; i++) {
161 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
162 if (paths[0] < candidate) {
163 *ce_key_path = candidate;
164 return true;
165 }
166 }
167 return false;
168}
169
170// Discard all keys but the named one; rename it to canonical name.
171// No point in acting on errors in this; ignore them.
Paul Crowley14c8c072018-09-18 13:30:21 -0700172static void fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700173 const std::vector<std::string>& paths) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700174 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700175 if (other_path != to_fix) {
176 android::vold::destroyKey(other_path);
177 }
178 }
179 auto const current_path = get_ce_key_current_path(directory_path);
180 if (to_fix != current_path) {
181 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
182 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
183 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
Jieb6698d52018-11-12 15:26:02 +0800184 return;
Paul Crowleya3630362016-05-17 14:17:56 -0700185 }
186 }
Paul Crowley621d9b92018-12-07 15:36:09 -0800187 android::vold::FsyncDirectory(directory_path);
Paul Crowleya3630362016-05-17 14:17:56 -0700188}
189
190static bool read_and_fixate_user_ce_key(userid_t user_id,
191 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700192 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700193 auto const directory_path = get_ce_key_directory_path(user_id);
194 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700195 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700196 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800197 if (retrieveKey(ce_key_path, auth, ce_key)) {
Paul Crowleya3630362016-05-17 14:17:56 -0700198 LOG(DEBUG) << "Successfully retrieved key";
199 fixate_user_ce_key(directory_path, ce_key_path, paths);
200 return true;
201 }
202 }
203 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
204 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100205}
206
Eric Biggers83a73d72019-09-30 13:06:47 -0700207// Retrieve the options to use for encryption policies on the /data filesystem.
Paul Crowley77df7f22020-01-23 15:29:30 -0800208static bool get_data_file_encryption_options(EncryptionOptions* options) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700209 auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT);
210 if (entry == nullptr) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800211 LOG(ERROR) << "No mount point entry for " << DATA_MNT_POINT;
212 return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700213 }
Paul Crowleya50f6c32019-10-24 23:21:44 -0700214 if (!ParseOptions(entry->encryption_options, options)) {
215 LOG(ERROR) << "Unable to parse encryption options for " << DATA_MNT_POINT ": "
216 << entry->encryption_options;
Paul Crowley77df7f22020-01-23 15:29:30 -0800217 return false;
Paul Crowleya50f6c32019-10-24 23:21:44 -0700218 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800219 return true;
Eric Biggers83a73d72019-09-30 13:06:47 -0700220}
221
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800222static bool install_storage_key(const std::string& mountpoint, const EncryptionOptions& options,
223 const KeyBuffer& key, EncryptionPolicy* policy) {
224 KeyBuffer ephemeral_wrapped_key;
225 if (options.use_hw_wrapped_key) {
226 if (!exportWrappedStorageKey(key, &ephemeral_wrapped_key)) {
227 LOG(ERROR) << "Failed to get ephemeral wrapped key";
228 return false;
229 }
230 }
231 return installKey(mountpoint, options, options.use_hw_wrapped_key ? ephemeral_wrapped_key : key,
232 policy);
233}
234
Eric Biggers83a73d72019-09-30 13:06:47 -0700235// Retrieve the options to use for encryption policies on adoptable storage.
Paul Crowley5e53ff62019-10-24 14:55:17 -0700236static bool get_volume_file_encryption_options(EncryptionOptions* options) {
Paul Crowleyeb241a12020-02-18 10:10:08 -0800237 // If we give the empty string, libfscrypt will use the default (currently XTS)
238 auto contents_mode = android::base::GetProperty("ro.crypto.volume.contents_mode", "");
239 // HEH as default was always a mistake. Use the libfscrypt default (CTS)
240 // for devices launching on versions above Android 10.
241 auto first_api_level = GetFirstApiLevel();
242 constexpr uint64_t pre_gki_level = 29;
Paul Crowleyf612b8b2019-10-24 22:52:02 -0700243 auto filenames_mode =
Paul Crowleyeb241a12020-02-18 10:10:08 -0800244 android::base::GetProperty("ro.crypto.volume.filenames_mode",
245 first_api_level > pre_gki_level ? "" : "aes-256-heh");
Paul Crowley77df7f22020-01-23 15:29:30 -0800246 auto options_string = android::base::GetProperty("ro.crypto.volume.options",
Paul Crowleyeb241a12020-02-18 10:10:08 -0800247 contents_mode + ":" + filenames_mode);
248 if (!ParseOptionsForApiLevel(first_api_level, options_string, options)) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800249 LOG(ERROR) << "Unable to parse volume encryption options: " << options_string;
250 return false;
251 }
252 return true;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700253}
254
Paul Crowleydf528a72016-03-09 09:31:37 -0800255static bool read_and_install_user_ce_key(userid_t user_id,
256 const android::vold::KeyAuthentication& auth) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800257 if (s_ce_policies.count(user_id) != 0) return true;
258 EncryptionOptions options;
259 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100260 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700261 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800262 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800263 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800264 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000265 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000266 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000267}
268
Paul Crowleydf528a72016-03-09 09:31:37 -0800269static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000270 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000271 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
272 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000273 return false;
274 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000275 return true;
276}
277
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600278static bool destroy_dir(const std::string& dir) {
279 LOG(DEBUG) << "Destroying: " << dir;
280 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
281 PLOG(ERROR) << "Failed to destroy " << dir;
282 return false;
283 }
284 return true;
285}
286
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000287// NB this assumes that there is only one thread listening for crypt commands, because
288// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000289static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800290 EncryptionOptions options;
291 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100292 KeyBuffer de_key, ce_key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800293 if (!generateStorageKey(makeGen(options), &de_key)) return false;
294 if (!generateStorageKey(makeGen(options), &ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000295 if (create_ephemeral) {
296 // If the key should be created as ephemeral, don't store it.
297 s_ephemeral_users.insert(user_id);
298 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700299 auto const directory_path = get_ce_key_directory_path(user_id);
300 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
301 auto const paths = get_ce_key_paths(directory_path);
302 std::string ce_key_path;
303 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700304 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, kEmptyAuthentication,
305 ce_key))
306 return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700307 fixate_user_ce_key(directory_path, ce_key_path, paths);
308 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700309 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley14c8c072018-09-18 13:30:21 -0700310 kEmptyAuthentication, de_key))
311 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100312 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800313 EncryptionPolicy de_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800314 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800315 s_de_policies[user_id] = de_policy;
316 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800317 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800318 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000319 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000320 return true;
321}
322
Paul Crowley77df7f22020-01-23 15:29:30 -0800323static bool lookup_policy(const std::map<userid_t, EncryptionPolicy>& key_map, userid_t user_id,
324 EncryptionPolicy* policy) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000325 auto refi = key_map.find(user_id);
326 if (refi == key_map.end()) {
Eric Biggersd1034042019-04-02 10:38:15 -0700327 LOG(DEBUG) << "Cannot find key for " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000328 return false;
329 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800330 *policy = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000331 return true;
332}
333
Paul Crowleydf528a72016-03-09 09:31:37 -0800334static bool is_numeric(const char* name) {
335 for (const char* p = name; *p != '\0'; p++) {
336 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000337 }
338 return true;
339}
340
341static bool load_all_de_keys() {
Paul Crowley77df7f22020-01-23 15:29:30 -0800342 EncryptionOptions options;
343 if (!get_data_file_encryption_options(&options)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000344 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800345 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000346 if (!dirp) {
347 PLOG(ERROR) << "Unable to read de key directory";
348 return false;
349 }
350 for (;;) {
351 errno = 0;
352 auto entry = readdir(dirp.get());
353 if (!entry) {
354 if (errno) {
355 PLOG(ERROR) << "Unable to read de key directory";
356 return false;
357 }
358 break;
359 }
360 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
361 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
362 continue;
363 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600364 userid_t user_id = std::stoi(entry->d_name);
Paul Crowley77df7f22020-01-23 15:29:30 -0800365 if (s_de_policies.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000366 auto key_path = de_dir + "/" + entry->d_name;
Paul Crowley77df7f22020-01-23 15:29:30 -0800367 KeyBuffer de_key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800368 if (!retrieveKey(key_path, kEmptyAuthentication, &de_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800369 EncryptionPolicy de_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800370 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800371 s_de_policies[user_id] = de_policy;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000372 LOG(DEBUG) << "Installed de key for user " << user_id;
373 }
374 }
Eric Biggersa701c452018-10-23 13:06:55 -0700375 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000376 // correct policy set on them, and that no rogue ones exist.
377 return true;
378}
379
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700380bool fscrypt_initialize_systemwide_keys() {
381 LOG(INFO) << "fscrypt_initialize_systemwide_keys";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800382
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700383 if (s_systemwide_keys_initialized) {
Paul Crowley38132a12016-02-09 09:50:32 +0000384 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000385 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800386 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800387 EncryptionOptions options;
388 if (!get_data_file_encryption_options(&options)) return false;
389
390 KeyBuffer device_key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800391 if (!retrieveOrGenerateKey(device_key_path, device_key_temp, kEmptyAuthentication,
392 makeGen(options), &device_key))
Paul Crowley77df7f22020-01-23 15:29:30 -0800393 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800394
Paul Crowley5e53ff62019-10-24 14:55:17 -0700395 EncryptionPolicy device_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800396 if (!install_storage_key(DATA_MNT_POINT, options, device_key, &device_policy)) return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700397
Paul Crowley5e53ff62019-10-24 14:55:17 -0700398 std::string options_string;
399 if (!OptionsToString(device_policy.options, &options_string)) {
400 LOG(ERROR) << "Unable to serialize options";
401 return false;
402 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800403 std::string options_filename = std::string(DATA_MNT_POINT) + fscrypt_key_mode;
Eric Biggers83a73d72019-09-30 13:06:47 -0700404 if (!android::vold::writeStringToFile(options_string, options_filename)) return false;
Paul Lawrence6e410592016-05-24 14:20:38 -0700405
Paul Crowley77df7f22020-01-23 15:29:30 -0800406 std::string ref_filename = std::string(DATA_MNT_POINT) + fscrypt_key_ref;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700407 if (!android::vold::writeStringToFile(device_policy.key_raw_ref, ref_filename)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700408 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800409
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700410 KeyBuffer per_boot_key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800411 if (!generateStorageKey(makeGen(options), &per_boot_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800412 EncryptionPolicy per_boot_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800413 if (!install_storage_key(DATA_MNT_POINT, options, per_boot_key, &per_boot_policy)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700414 std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref;
Paul Crowley77df7f22020-01-23 15:29:30 -0800415 if (!android::vold::writeStringToFile(per_boot_policy.key_raw_ref, per_boot_ref_filename))
416 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700417 LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename;
418
Tommy Chiua98464f2019-03-26 14:14:19 +0800419 if (!android::vold::FsyncDirectory(device_key_dir)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700420 s_systemwide_keys_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000421 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800422}
423
Eric Biggersa701c452018-10-23 13:06:55 -0700424bool fscrypt_init_user0() {
425 LOG(DEBUG) << "fscrypt_init_user0";
426 if (fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000427 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
428 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
429 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700430 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000431 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000432 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700433 // TODO: switch to loading only DE_0 here once framework makes
434 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000435 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000436 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700437 // We can only safely prepare DE storage here, since CE keys are probably
438 // entangled with user credentials. The framework will always prepare CE
439 // storage once CE keys are installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700440 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700441 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000442 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700443 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700444
445 // If this is a non-FBE device that recently left an emulated mode,
446 // restore user data directories to known-good state.
Eric Biggersa701c452018-10-23 13:06:55 -0700447 if (!fscrypt_is_native() && !fscrypt_is_emulated()) {
448 fscrypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700449 }
450
Paul Crowley76107cb2016-02-09 10:04:39 +0000451 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000452}
453
Eric Biggersa701c452018-10-23 13:06:55 -0700454bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
455 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
456 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000457 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000458 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000459 // FIXME test for existence of key that is not loaded yet
Paul Crowley77df7f22020-01-23 15:29:30 -0800460 if (s_ce_policies.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700461 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800462 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000463 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000464 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800465 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000466 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000467 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000468 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000469 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800470}
471
Eric Biggersce368682019-04-03 15:44:06 -0700472// "Lock" all encrypted directories whose key has been removed. This is needed
Eric Biggersf3dc4202019-09-30 13:05:58 -0700473// in the case where the keys are being put in the session keyring (rather in
474// the newer filesystem-level keyrings), because removing a key from the session
475// keyring doesn't affect inodes in the kernel's inode cache whose per-file key
476// was already set up. So to remove the per-file keys and make the files
477// "appear encrypted", these inodes must be evicted.
Eric Biggersce368682019-04-03 15:44:06 -0700478//
479// To do this, sync() to clean all dirty inodes, then drop all reclaimable slab
480// objects systemwide. This is overkill, but it's the best available method
481// currently. Don't use drop_caches mode "3" because that also evicts pagecache
482// for in-use files; all files relevant here are already closed and sync'ed.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700483static void drop_caches_if_needed() {
484 if (android::vold::isFsKeyringSupported()) {
485 return;
486 }
Pavel Grafovb350ed02017-07-27 17:34:57 +0100487 sync();
Eric Biggersce368682019-04-03 15:44:06 -0700488 if (!writeStringToFile("2", "/proc/sys/vm/drop_caches")) {
Pavel Grafovb350ed02017-07-27 17:34:57 +0100489 PLOG(ERROR) << "Failed to drop caches during key eviction";
490 }
491}
492
Andrew Scull7ec25c72016-10-31 10:28:25 +0000493static bool evict_ce_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000494 bool success = true;
Paul Crowley77df7f22020-01-23 15:29:30 -0800495 EncryptionPolicy policy;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000496 // If we haven't loaded the CE key, no need to evict it.
Paul Crowley77df7f22020-01-23 15:29:30 -0800497 if (lookup_policy(s_ce_policies, user_id, &policy)) {
498 success &= android::vold::evictKey(DATA_MNT_POINT, policy);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700499 drop_caches_if_needed();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000500 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800501 s_ce_policies.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000502 return success;
503}
504
Eric Biggersa701c452018-10-23 13:06:55 -0700505bool fscrypt_destroy_user_key(userid_t user_id) {
506 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
507 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000508 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000509 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000510 bool success = true;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000511 success &= evict_ce_key(user_id);
Paul Crowley77df7f22020-01-23 15:29:30 -0800512 EncryptionPolicy de_policy;
513 success &= lookup_policy(s_de_policies, user_id, &de_policy) &&
514 android::vold::evictKey(DATA_MNT_POINT, de_policy);
515 s_de_policies.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000516 auto it = s_ephemeral_users.find(user_id);
517 if (it != s_ephemeral_users.end()) {
518 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000519 } else {
Paul Crowley14c8c072018-09-18 13:30:21 -0700520 for (auto const path : get_ce_key_paths(get_ce_key_directory_path(user_id))) {
Paul Crowleya3630362016-05-17 14:17:56 -0700521 success &= android::vold::destroyKey(path);
522 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700523 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700524 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700525 success &= android::vold::destroyKey(de_key_path);
526 } else {
527 LOG(INFO) << "Not present so not erasing: " << de_key_path;
528 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100529 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000530 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100531}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800532
Paul Crowley76107cb2016-02-09 10:04:39 +0000533static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700534 if (chmod(path.c_str(), 0000) != 0) {
535 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000536 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700537 }
538#if EMULATED_USES_SELINUX
539 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
540 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000541 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700542 }
543#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000544 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700545}
546
Paul Crowley76107cb2016-02-09 10:04:39 +0000547static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700548 if (chmod(path.c_str(), mode) != 0) {
549 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000550 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700551 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700552 }
553#if EMULATED_USES_SELINUX
554 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
555 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000556 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700557 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700558 }
559#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000560 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700561}
562
Paul Crowley3b71fc52017-10-09 10:55:21 -0700563static bool parse_hex(const std::string& hex, std::string* result) {
564 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800565 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000566 return true;
567 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800568 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800569 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000570 return false;
571 }
572 return true;
573}
574
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700575static std::optional<android::vold::KeyAuthentication> authentication_from_hex(
576 const std::string& token_hex, const std::string& secret_hex) {
577 std::string token, secret;
578 if (!parse_hex(token_hex, &token)) return std::optional<android::vold::KeyAuthentication>();
579 if (!parse_hex(secret_hex, &secret)) return std::optional<android::vold::KeyAuthentication>();
580 if (secret.empty()) {
581 return kEmptyAuthentication;
582 } else {
583 return android::vold::KeyAuthentication(token, secret);
584 }
585}
586
Paul Crowley3aa914d2017-10-09 16:35:51 -0700587static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
588 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
589}
590
Paul Crowley26a53882017-10-26 11:16:39 -0700591static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
592 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
593}
594
Paul Crowley3aa914d2017-10-09 16:35:51 -0700595static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
Paul Crowley5e53ff62019-10-24 14:55:17 -0700596 EncryptionPolicy* policy) {
Paul Crowley26a53882017-10-26 11:16:39 -0700597 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
598 std::string secdiscardable_hash;
599 if (android::vold::pathExists(secdiscardable_path)) {
600 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
601 return false;
602 } else {
603 if (fs_mkdirs(secdiscardable_path.c_str(), 0700) != 0) {
604 PLOG(ERROR) << "Creating directories for: " << secdiscardable_path;
605 return false;
606 }
607 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
608 return false;
609 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700610 auto key_path = volkey_path(misc_path, volume_uuid);
611 if (fs_mkdirs(key_path.c_str(), 0700) != 0) {
612 PLOG(ERROR) << "Creating directories for: " << key_path;
613 return false;
614 }
Paul Crowley26a53882017-10-26 11:16:39 -0700615 android::vold::KeyAuthentication auth("", secdiscardable_hash);
Eric Biggers83a73d72019-09-30 13:06:47 -0700616
Paul Crowley77df7f22020-01-23 15:29:30 -0800617 EncryptionOptions options;
618 if (!get_volume_file_encryption_options(&options)) return false;
619 KeyBuffer key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800620 if (!retrieveOrGenerateKey(key_path, key_path + "_tmp", auth, makeGen(options), &key))
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800621 return false;
622 if (!install_storage_key(BuildDataPath(volume_uuid), options, key, policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800623 return true;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700624}
625
626static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700627 auto path = volkey_path(misc_path, volume_uuid);
628 if (!android::vold::pathExists(path)) return true;
629 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700630}
631
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700632static bool fscrypt_rewrap_user_key(userid_t user_id, int serial,
633 const android::vold::KeyAuthentication& retrieve_auth,
634 const android::vold::KeyAuthentication& store_auth) {
635 if (s_ephemeral_users.count(user_id) != 0) return true;
636 auto const directory_path = get_ce_key_directory_path(user_id);
637 KeyBuffer ce_key;
638 std::string ce_key_current_path = get_ce_key_current_path(directory_path);
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800639 if (retrieveKey(ce_key_current_path, retrieve_auth, &ce_key)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700640 LOG(DEBUG) << "Successfully retrieved key";
641 // TODO(147732812): Remove this once Locksettingservice is fixed.
642 // Currently it calls fscrypt_clear_user_key_auth with a secret when lockscreen is
643 // changed from swipe to none or vice-versa
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800644 } else if (retrieveKey(ce_key_current_path, kEmptyAuthentication, &ce_key)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700645 LOG(DEBUG) << "Successfully retrieved key with empty auth";
646 } else {
647 LOG(ERROR) << "Failed to retrieve key for user " << user_id;
648 return false;
649 }
650 auto const paths = get_ce_key_paths(directory_path);
651 std::string ce_key_path;
652 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
653 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, store_auth, ce_key))
654 return false;
655 if (!android::vold::FsyncDirectory(directory_path)) return false;
656 return true;
657}
658
Eric Biggersa701c452018-10-23 13:06:55 -0700659bool fscrypt_add_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700660 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700661 LOG(DEBUG) << "fscrypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700662 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700663 if (!fscrypt_is_native()) return true;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700664 auto auth = authentication_from_hex(token_hex, secret_hex);
665 if (!auth) return false;
666 return fscrypt_rewrap_user_key(user_id, serial, kEmptyAuthentication, *auth);
667}
668
669bool fscrypt_clear_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
670 const std::string& secret_hex) {
671 LOG(DEBUG) << "fscrypt_clear_user_key_auth " << user_id << " serial=" << serial
672 << " token_present=" << (token_hex != "!");
673 if (!fscrypt_is_native()) return true;
674 auto auth = authentication_from_hex(token_hex, secret_hex);
675 if (!auth) return false;
676 return fscrypt_rewrap_user_key(user_id, serial, *auth, kEmptyAuthentication);
Paul Crowleya3630362016-05-17 14:17:56 -0700677}
678
Eric Biggersa701c452018-10-23 13:06:55 -0700679bool fscrypt_fixate_newest_user_key_auth(userid_t user_id) {
680 LOG(DEBUG) << "fscrypt_fixate_newest_user_key_auth " << user_id;
681 if (!fscrypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700682 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700683 auto const directory_path = get_ce_key_directory_path(user_id);
684 auto const paths = get_ce_key_paths(directory_path);
685 if (paths.empty()) {
686 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
687 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000688 }
Paul Crowleya3630362016-05-17 14:17:56 -0700689 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000690 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000691}
692
Jeff Sharkey47695b22016-02-01 17:02:29 -0700693// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Eric Biggersa701c452018-10-23 13:06:55 -0700694bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700695 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700696 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700697 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700698 if (fscrypt_is_native()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800699 if (s_ce_policies.count(user_id) != 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000700 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000701 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000702 }
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700703 auto auth = authentication_from_hex(token_hex, secret_hex);
704 if (!auth) return false;
705 if (!read_and_install_user_ce_key(user_id, *auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000706 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000707 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800708 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700709 } else {
710 // When in emulation mode, we just use chmod. However, we also
711 // unlock directories when not in emulation mode, to bring devices
712 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000713 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800714 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700715 !emulated_unlock(android::vold::BuildDataMediaCePath("", user_id), 0770) ||
716 !emulated_unlock(android::vold::BuildDataUserCePath("", user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700717 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000718 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700719 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800720 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000721 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800722}
723
Jeff Sharkey47695b22016-02-01 17:02:29 -0700724// TODO: rename to 'evict' for consistency
Eric Biggersa701c452018-10-23 13:06:55 -0700725bool fscrypt_lock_user_key(userid_t user_id) {
726 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
727 if (fscrypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000728 return evict_ce_key(user_id);
Eric Biggersa701c452018-10-23 13:06:55 -0700729 } else if (fscrypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800730 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000731 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800732 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700733 !emulated_lock(android::vold::BuildDataMediaCePath("", user_id)) ||
734 !emulated_lock(android::vold::BuildDataUserCePath("", user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000735 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000736 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800737 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800738 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700739
Paul Crowley76107cb2016-02-09 10:04:39 +0000740 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800741}
742
Paul Crowley82b41ff2017-10-20 08:17:54 -0700743static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
744 userid_t user_id, int flags) {
745 if (0 != android::vold::ForkExecvp(
746 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
747 std::to_string(user_id), std::to_string(flags)})) {
748 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700749 return false;
750 }
751 return true;
752}
753
Eric Biggersa701c452018-10-23 13:06:55 -0700754bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700755 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700756 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800757 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700758
Paul Crowley82b41ff2017-10-20 08:17:54 -0700759 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600760 // DE_sys key
761 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
762 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
763 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600764
765 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700766 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
767 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800768 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700769 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
770
Paul Crowley3b71fc52017-10-09 10:55:21 -0700771 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700772 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600773#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700774 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700775 multiuser_get_uid(user_id, AID_EVERYBODY)))
776 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600777#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700778 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600779
Paul Crowley6b756ce2017-10-05 14:07:09 -0700780 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
781 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800782 if (!prepare_dir(vendor_de_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700783 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000784 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000785
Eric Biggersa701c452018-10-23 13:06:55 -0700786 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700787 EncryptionPolicy de_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700788 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800789 if (!lookup_policy(s_de_policies, user_id, &de_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700790 if (!EnsurePolicy(de_policy, system_de_path)) return false;
791 if (!EnsurePolicy(de_policy, misc_de_path)) return false;
792 if (!EnsurePolicy(de_policy, vendor_de_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700793 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700794 if (!read_or_create_volkey(misc_de_path, volume_uuid, &de_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700795 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700796 if (!EnsurePolicy(de_policy, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700797 }
Paul Crowley285956f2016-01-20 13:12:38 +0000798 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800799
Paul Crowley82b41ff2017-10-20 08:17:54 -0700800 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600801 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700802 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
803 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800804 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600805 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
806 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800807
Paul Crowley3b71fc52017-10-09 10:55:21 -0700808 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700809 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
810 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800811 if (!prepare_dir(vendor_ce_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700812 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000813 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +0100814 // Setup quota project ID and inheritance policy
815 if (!IsFilesystemSupported("sdcardfs")) {
816 if (SetQuotaInherit(media_ce_path) != 0) return false;
817 if (SetQuotaProjectId(media_ce_path, multiuser_get_uid(user_id, AID_MEDIA_RW)) != 0) {
818 return false;
819 }
820 }
821
Paul Crowley76107cb2016-02-09 10:04:39 +0000822 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700823
Eric Biggersa701c452018-10-23 13:06:55 -0700824 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700825 EncryptionPolicy ce_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700826 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800827 if (!lookup_policy(s_ce_policies, user_id, &ce_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700828 if (!EnsurePolicy(ce_policy, system_ce_path)) return false;
829 if (!EnsurePolicy(ce_policy, misc_ce_path)) return false;
830 if (!EnsurePolicy(ce_policy, vendor_ce_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700831 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700832 if (!read_or_create_volkey(misc_ce_path, volume_uuid, &ce_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700833 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700834 if (!EnsurePolicy(ce_policy, media_ce_path)) return false;
835 if (!EnsurePolicy(ce_policy, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700836 }
Paul Crowley1a965262017-10-13 13:49:50 -0700837
838 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700839 // Now that credentials have been installed, we can run restorecon
840 // over these paths
841 // NOTE: these paths need to be kept in sync with libselinux
842 android::vold::RestoreconRecursive(system_ce_path);
Nick Kralevich6a3ef482019-05-14 09:30:29 -0700843 android::vold::RestoreconRecursive(vendor_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -0700844 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700845 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800846 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700847 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800848
Paul Crowley76107cb2016-02-09 10:04:39 +0000849 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800850}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600851
Eric Biggersa701c452018-10-23 13:06:55 -0700852bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
853 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600854 << ", user " << user_id << ", flags " << flags;
855 bool res = true;
856
Paul Crowley82b41ff2017-10-20 08:17:54 -0700857 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
858
859 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -0700860 // CE_n key
861 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
862 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800863 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -0700864 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
865 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
866
867 res &= destroy_dir(media_ce_path);
868 res &= destroy_dir(user_ce_path);
869 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700870 res &= destroy_dir(system_ce_path);
871 res &= destroy_dir(misc_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800872 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700873 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700874 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700875 res &= destroy_volkey(misc_ce_path, volume_uuid);
876 }
Paul Crowley8e550662017-10-16 17:01:44 -0700877 }
878 }
879
Paul Crowley82b41ff2017-10-20 08:17:54 -0700880 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600881 // DE_sys key
882 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
883 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
884 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600885
886 // DE_n key
887 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
888 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800889 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600890 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
891
Paul Crowley8e550662017-10-16 17:01:44 -0700892 res &= destroy_dir(user_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -0700893 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600894 res &= destroy_dir(system_legacy_path);
895#if MANAGE_MISC_DIRS
896 res &= destroy_dir(misc_legacy_path);
897#endif
898 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600899 res &= destroy_dir(system_de_path);
900 res &= destroy_dir(misc_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800901 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700902 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700903 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700904 res &= destroy_volkey(misc_de_path, volume_uuid);
905 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600906 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600907 }
908
909 return res;
910}
Rubin Xu2436e272017-04-27 20:43:10 +0100911
Paul Crowleyc6433a22017-10-24 14:54:43 -0700912static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
913 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
914 if (!dirp) {
915 PLOG(ERROR) << "Unable to open directory: " + directory_path;
916 return false;
917 }
918 bool res = true;
919 for (;;) {
920 errno = 0;
921 auto const entry = readdir(dirp.get());
922 if (!entry) {
923 if (errno) {
924 PLOG(ERROR) << "Unable to read directory: " + directory_path;
925 return false;
926 }
927 break;
928 }
929 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
930 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
931 continue;
932 }
933 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
934 }
935 return res;
936}
937
Eric Biggersa701c452018-10-23 13:06:55 -0700938bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700939 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -0700940 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -0700941 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
942 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -0700943 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
944 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
945 return res;
946}