blob: 276444c0324fc8f8c440c667e352a52c97c5a493 [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>
Martijn Coenenaee40512020-02-18 16:29:25 +010043#include <private/android_projectid_config.h>
Paul Crowley480fcd22015-08-24 14:53:28 +010044
Paul Crowley82b41ff2017-10-20 08:17:54 -070045#include "android/os/IVold.h"
46
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070047#define EMULATED_USES_SELINUX 0
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -060048#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070049
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080050#include <cutils/fs.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070051#include <cutils/properties.h>
52
Eric Biggersa701c452018-10-23 13:06:55 -070053#include <fscrypt/fscrypt.h>
Elliott Hughesc3bda182017-05-09 17:01:04 -070054#include <keyutils.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080055
Elliott Hughes7e128fb2015-12-04 15:50:53 -080056#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080057#include <android-base/logging.h>
Paul Crowley3aa914d2017-10-09 16:35:51 -070058#include <android-base/properties.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080059#include <android-base/stringprintf.h>
Eric Biggers83a73d72019-09-30 13:06:47 -070060#include <android-base/strings.h>
Jieb6698d52018-11-12 15:26:02 +080061#include <android-base/unique_fd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000062
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080063using android::base::StringPrintf;
Tom Cherry4c5bde22019-01-29 14:34:01 -080064using android::fs_mgr::GetEntryForMountPoint;
Paul Crowley77df7f22020-01-23 15:29:30 -080065using android::vold::BuildDataPath;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +010066using android::vold::IsFilesystemSupported;
Paul Crowley05720802016-02-08 15:55:41 +000067using android::vold::kEmptyAuthentication;
Pavel Grafove2e2d302017-08-01 17:15:53 +010068using android::vold::KeyBuffer;
Paul Crowley249c2fb2020-02-07 12:51:56 -080069using android::vold::KeyGeneration;
Paul Crowleyb3d018a2020-02-12 11:04:05 -080070using android::vold::retrieveKey;
71using android::vold::retrieveOrGenerateKey;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +010072using android::vold::SetQuotaInherit;
73using android::vold::SetQuotaProjectId;
Tommy Chiua98464f2019-03-26 14:14:19 +080074using android::vold::writeStringToFile;
Paul Crowley5e53ff62019-10-24 14:55:17 -070075using namespace android::fscrypt;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080076
Paul Lawrence731a7a22015-04-28 22:14:15 +000077namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000078
Eric Biggersa701c452018-10-23 13:06:55 -070079const std::string device_key_dir = std::string() + DATA_MNT_POINT + fscrypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080080const std::string device_key_path = device_key_dir + "/key";
81const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080082
Paul Crowleydf528a72016-03-09 09:31:37 -080083const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
84const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley82b41ff2017-10-20 08:17:54 -070085const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs";
Paul Crowley285956f2016-01-20 13:12:38 +000086
Paul Crowley26a53882017-10-26 11:16:39 -070087const std::string systemwide_volume_key_dir =
88 std::string() + DATA_MNT_POINT + "/misc/vold/volume_keys";
89
Paul Crowleyc8a3ef32019-09-11 15:00:08 -070090bool s_systemwide_keys_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080091
Paul Crowleydf528a72016-03-09 09:31:37 -080092// Some users are ephemeral, don't try to wipe their keys from disk
93std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080094
Paul Crowley77df7f22020-01-23 15:29:30 -080095// Map user ids to encryption policies
96std::map<userid_t, EncryptionPolicy> s_de_policies;
97std::map<userid_t, EncryptionPolicy> s_ce_policies;
Paul Lawrence731a7a22015-04-28 22:14:15 +000098
Paul Crowley14c8c072018-09-18 13:30:21 -070099} // namespace
Paul Lawrence731a7a22015-04-28 22:14:15 +0000100
Paul Crowley249c2fb2020-02-07 12:51:56 -0800101// Returns KeyGeneration suitable for key as described in EncryptionOptions
102static KeyGeneration makeGen(const EncryptionOptions& options) {
103 return KeyGeneration{FSCRYPT_MAX_KEY_SIZE, true, options.use_hw_wrapped_key};
104}
105
Eric Biggersa701c452018-10-23 13:06:55 -0700106static bool fscrypt_is_emulated() {
Paul Crowley38132a12016-02-09 09:50:32 +0000107 return property_get_bool("persist.sys.emulate_fbe", false);
108}
109
Paul Crowley3b71fc52017-10-09 10:55:21 -0700110static const char* escape_empty(const std::string& value) {
111 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000112}
113
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000114static std::string get_de_key_path(userid_t user_id) {
115 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
116}
117
Paul Crowleya3630362016-05-17 14:17:56 -0700118static std::string get_ce_key_directory_path(userid_t user_id) {
119 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
120}
121
122// Returns the keys newest first
123static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
124 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
125 if (!dirp) {
126 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
127 return std::vector<std::string>();
128 }
129 std::vector<std::string> result;
130 for (;;) {
131 errno = 0;
132 auto const entry = readdir(dirp.get());
133 if (!entry) {
134 if (errno) {
135 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
136 return std::vector<std::string>();
137 }
138 break;
139 }
140 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
141 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
142 continue;
143 }
144 result.emplace_back(directory_path + "/" + entry->d_name);
145 }
146 std::sort(result.begin(), result.end());
147 std::reverse(result.begin(), result.end());
148 return result;
149}
150
151static std::string get_ce_key_current_path(const std::string& directory_path) {
152 return directory_path + "/current";
153}
154
155static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700156 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700157 if (paths.empty()) {
158 *ce_key_path = get_ce_key_current_path(directory_path);
159 return true;
160 }
161 for (unsigned int i = 0; i < UINT_MAX; i++) {
162 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
163 if (paths[0] < candidate) {
164 *ce_key_path = candidate;
165 return true;
166 }
167 }
168 return false;
169}
170
171// Discard all keys but the named one; rename it to canonical name.
172// No point in acting on errors in this; ignore them.
Paul Crowley14c8c072018-09-18 13:30:21 -0700173static void fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700174 const std::vector<std::string>& paths) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700175 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700176 if (other_path != to_fix) {
177 android::vold::destroyKey(other_path);
178 }
179 }
180 auto const current_path = get_ce_key_current_path(directory_path);
181 if (to_fix != current_path) {
182 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
183 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
184 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
Jieb6698d52018-11-12 15:26:02 +0800185 return;
Paul Crowleya3630362016-05-17 14:17:56 -0700186 }
187 }
Paul Crowley621d9b92018-12-07 15:36:09 -0800188 android::vold::FsyncDirectory(directory_path);
Paul Crowleya3630362016-05-17 14:17:56 -0700189}
190
191static bool read_and_fixate_user_ce_key(userid_t user_id,
192 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700193 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700194 auto const directory_path = get_ce_key_directory_path(user_id);
195 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700196 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700197 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800198 if (retrieveKey(ce_key_path, auth, ce_key)) {
Paul Crowleya3630362016-05-17 14:17:56 -0700199 LOG(DEBUG) << "Successfully retrieved key";
200 fixate_user_ce_key(directory_path, ce_key_path, paths);
201 return true;
202 }
203 }
204 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
205 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100206}
207
Eric Biggers83a73d72019-09-30 13:06:47 -0700208// Retrieve the options to use for encryption policies on the /data filesystem.
Paul Crowley77df7f22020-01-23 15:29:30 -0800209static bool get_data_file_encryption_options(EncryptionOptions* options) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700210 auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT);
211 if (entry == nullptr) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800212 LOG(ERROR) << "No mount point entry for " << DATA_MNT_POINT;
213 return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700214 }
Paul Crowleya50f6c32019-10-24 23:21:44 -0700215 if (!ParseOptions(entry->encryption_options, options)) {
216 LOG(ERROR) << "Unable to parse encryption options for " << DATA_MNT_POINT ": "
217 << entry->encryption_options;
Paul Crowley77df7f22020-01-23 15:29:30 -0800218 return false;
Paul Crowleya50f6c32019-10-24 23:21:44 -0700219 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800220 return true;
Eric Biggers83a73d72019-09-30 13:06:47 -0700221}
222
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800223static bool install_storage_key(const std::string& mountpoint, const EncryptionOptions& options,
224 const KeyBuffer& key, EncryptionPolicy* policy) {
225 KeyBuffer ephemeral_wrapped_key;
226 if (options.use_hw_wrapped_key) {
227 if (!exportWrappedStorageKey(key, &ephemeral_wrapped_key)) {
228 LOG(ERROR) << "Failed to get ephemeral wrapped key";
229 return false;
230 }
231 }
232 return installKey(mountpoint, options, options.use_hw_wrapped_key ? ephemeral_wrapped_key : key,
233 policy);
234}
235
Eric Biggers83a73d72019-09-30 13:06:47 -0700236// Retrieve the options to use for encryption policies on adoptable storage.
Paul Crowley5e53ff62019-10-24 14:55:17 -0700237static bool get_volume_file_encryption_options(EncryptionOptions* options) {
Paul Crowleyeb241a12020-02-18 10:10:08 -0800238 // If we give the empty string, libfscrypt will use the default (currently XTS)
239 auto contents_mode = android::base::GetProperty("ro.crypto.volume.contents_mode", "");
240 // HEH as default was always a mistake. Use the libfscrypt default (CTS)
241 // for devices launching on versions above Android 10.
242 auto first_api_level = GetFirstApiLevel();
243 constexpr uint64_t pre_gki_level = 29;
Paul Crowleyf612b8b2019-10-24 22:52:02 -0700244 auto filenames_mode =
Paul Crowleyeb241a12020-02-18 10:10:08 -0800245 android::base::GetProperty("ro.crypto.volume.filenames_mode",
246 first_api_level > pre_gki_level ? "" : "aes-256-heh");
Paul Crowley77df7f22020-01-23 15:29:30 -0800247 auto options_string = android::base::GetProperty("ro.crypto.volume.options",
Paul Crowleyeb241a12020-02-18 10:10:08 -0800248 contents_mode + ":" + filenames_mode);
249 if (!ParseOptionsForApiLevel(first_api_level, options_string, options)) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800250 LOG(ERROR) << "Unable to parse volume encryption options: " << options_string;
251 return false;
252 }
253 return true;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700254}
255
Paul Crowleydf528a72016-03-09 09:31:37 -0800256static bool read_and_install_user_ce_key(userid_t user_id,
257 const android::vold::KeyAuthentication& auth) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800258 if (s_ce_policies.count(user_id) != 0) return true;
259 EncryptionOptions options;
260 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100261 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700262 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800263 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800264 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800265 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000266 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000267 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000268}
269
Paul Crowleydf528a72016-03-09 09:31:37 -0800270static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000271 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000272 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
273 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000274 return false;
275 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000276 return true;
277}
278
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600279static bool destroy_dir(const std::string& dir) {
280 LOG(DEBUG) << "Destroying: " << dir;
281 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
282 PLOG(ERROR) << "Failed to destroy " << dir;
283 return false;
284 }
285 return true;
286}
287
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000288// NB this assumes that there is only one thread listening for crypt commands, because
289// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000290static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800291 EncryptionOptions options;
292 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100293 KeyBuffer de_key, ce_key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800294 if (!generateStorageKey(makeGen(options), &de_key)) return false;
295 if (!generateStorageKey(makeGen(options), &ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000296 if (create_ephemeral) {
297 // If the key should be created as ephemeral, don't store it.
298 s_ephemeral_users.insert(user_id);
299 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700300 auto const directory_path = get_ce_key_directory_path(user_id);
301 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
302 auto const paths = get_ce_key_paths(directory_path);
303 std::string ce_key_path;
304 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700305 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, kEmptyAuthentication,
306 ce_key))
307 return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700308 fixate_user_ce_key(directory_path, ce_key_path, paths);
309 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700310 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley14c8c072018-09-18 13:30:21 -0700311 kEmptyAuthentication, de_key))
312 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100313 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800314 EncryptionPolicy de_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800315 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800316 s_de_policies[user_id] = de_policy;
317 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800318 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800319 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000320 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000321 return true;
322}
323
Paul Crowley77df7f22020-01-23 15:29:30 -0800324static bool lookup_policy(const std::map<userid_t, EncryptionPolicy>& key_map, userid_t user_id,
325 EncryptionPolicy* policy) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000326 auto refi = key_map.find(user_id);
327 if (refi == key_map.end()) {
Eric Biggersd1034042019-04-02 10:38:15 -0700328 LOG(DEBUG) << "Cannot find key for " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000329 return false;
330 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800331 *policy = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000332 return true;
333}
334
Paul Crowleydf528a72016-03-09 09:31:37 -0800335static bool is_numeric(const char* name) {
336 for (const char* p = name; *p != '\0'; p++) {
337 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000338 }
339 return true;
340}
341
342static bool load_all_de_keys() {
Paul Crowley77df7f22020-01-23 15:29:30 -0800343 EncryptionOptions options;
344 if (!get_data_file_encryption_options(&options)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000345 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800346 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000347 if (!dirp) {
348 PLOG(ERROR) << "Unable to read de key directory";
349 return false;
350 }
351 for (;;) {
352 errno = 0;
353 auto entry = readdir(dirp.get());
354 if (!entry) {
355 if (errno) {
356 PLOG(ERROR) << "Unable to read de key directory";
357 return false;
358 }
359 break;
360 }
361 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
362 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
363 continue;
364 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600365 userid_t user_id = std::stoi(entry->d_name);
Paul Crowley77df7f22020-01-23 15:29:30 -0800366 if (s_de_policies.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000367 auto key_path = de_dir + "/" + entry->d_name;
Paul Crowley77df7f22020-01-23 15:29:30 -0800368 KeyBuffer de_key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800369 if (!retrieveKey(key_path, kEmptyAuthentication, &de_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800370 EncryptionPolicy de_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800371 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800372 s_de_policies[user_id] = de_policy;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000373 LOG(DEBUG) << "Installed de key for user " << user_id;
374 }
375 }
Eric Biggersa701c452018-10-23 13:06:55 -0700376 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000377 // correct policy set on them, and that no rogue ones exist.
378 return true;
379}
380
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700381bool fscrypt_initialize_systemwide_keys() {
382 LOG(INFO) << "fscrypt_initialize_systemwide_keys";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800383
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700384 if (s_systemwide_keys_initialized) {
Paul Crowley38132a12016-02-09 09:50:32 +0000385 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000386 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800387 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800388 EncryptionOptions options;
389 if (!get_data_file_encryption_options(&options)) return false;
390
391 KeyBuffer device_key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800392 if (!retrieveOrGenerateKey(device_key_path, device_key_temp, kEmptyAuthentication,
393 makeGen(options), &device_key))
Paul Crowley77df7f22020-01-23 15:29:30 -0800394 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800395
Paul Crowley5e53ff62019-10-24 14:55:17 -0700396 EncryptionPolicy device_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800397 if (!install_storage_key(DATA_MNT_POINT, options, device_key, &device_policy)) return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700398
Paul Crowley5e53ff62019-10-24 14:55:17 -0700399 std::string options_string;
400 if (!OptionsToString(device_policy.options, &options_string)) {
401 LOG(ERROR) << "Unable to serialize options";
402 return false;
403 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800404 std::string options_filename = std::string(DATA_MNT_POINT) + fscrypt_key_mode;
Eric Biggers83a73d72019-09-30 13:06:47 -0700405 if (!android::vold::writeStringToFile(options_string, options_filename)) return false;
Paul Lawrence6e410592016-05-24 14:20:38 -0700406
Paul Crowley77df7f22020-01-23 15:29:30 -0800407 std::string ref_filename = std::string(DATA_MNT_POINT) + fscrypt_key_ref;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700408 if (!android::vold::writeStringToFile(device_policy.key_raw_ref, ref_filename)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700409 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800410
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700411 KeyBuffer per_boot_key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800412 if (!generateStorageKey(makeGen(options), &per_boot_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800413 EncryptionPolicy per_boot_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800414 if (!install_storage_key(DATA_MNT_POINT, options, per_boot_key, &per_boot_policy)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700415 std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref;
Paul Crowley77df7f22020-01-23 15:29:30 -0800416 if (!android::vold::writeStringToFile(per_boot_policy.key_raw_ref, per_boot_ref_filename))
417 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700418 LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename;
419
Tommy Chiua98464f2019-03-26 14:14:19 +0800420 if (!android::vold::FsyncDirectory(device_key_dir)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700421 s_systemwide_keys_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000422 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800423}
424
Eric Biggersa701c452018-10-23 13:06:55 -0700425bool fscrypt_init_user0() {
426 LOG(DEBUG) << "fscrypt_init_user0";
427 if (fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000428 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
429 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
430 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700431 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000432 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000433 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700434 // TODO: switch to loading only DE_0 here once framework makes
435 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000436 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000437 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700438 // We can only safely prepare DE storage here, since CE keys are probably
439 // entangled with user credentials. The framework will always prepare CE
440 // storage once CE keys are installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700441 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700442 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000443 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700444 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700445
446 // If this is a non-FBE device that recently left an emulated mode,
447 // restore user data directories to known-good state.
Eric Biggersa701c452018-10-23 13:06:55 -0700448 if (!fscrypt_is_native() && !fscrypt_is_emulated()) {
449 fscrypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700450 }
451
Paul Crowley76107cb2016-02-09 10:04:39 +0000452 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000453}
454
Eric Biggersa701c452018-10-23 13:06:55 -0700455bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
456 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
457 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000458 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000459 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000460 // FIXME test for existence of key that is not loaded yet
Paul Crowley77df7f22020-01-23 15:29:30 -0800461 if (s_ce_policies.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700462 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800463 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000464 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000465 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800466 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000467 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000468 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000469 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000470 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800471}
472
Eric Biggersce368682019-04-03 15:44:06 -0700473// "Lock" all encrypted directories whose key has been removed. This is needed
Eric Biggersf3dc4202019-09-30 13:05:58 -0700474// in the case where the keys are being put in the session keyring (rather in
475// the newer filesystem-level keyrings), because removing a key from the session
476// keyring doesn't affect inodes in the kernel's inode cache whose per-file key
477// was already set up. So to remove the per-file keys and make the files
478// "appear encrypted", these inodes must be evicted.
Eric Biggersce368682019-04-03 15:44:06 -0700479//
480// To do this, sync() to clean all dirty inodes, then drop all reclaimable slab
481// objects systemwide. This is overkill, but it's the best available method
482// currently. Don't use drop_caches mode "3" because that also evicts pagecache
483// for in-use files; all files relevant here are already closed and sync'ed.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700484static void drop_caches_if_needed() {
485 if (android::vold::isFsKeyringSupported()) {
486 return;
487 }
Pavel Grafovb350ed02017-07-27 17:34:57 +0100488 sync();
Eric Biggersce368682019-04-03 15:44:06 -0700489 if (!writeStringToFile("2", "/proc/sys/vm/drop_caches")) {
Pavel Grafovb350ed02017-07-27 17:34:57 +0100490 PLOG(ERROR) << "Failed to drop caches during key eviction";
491 }
492}
493
Andrew Scull7ec25c72016-10-31 10:28:25 +0000494static bool evict_ce_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000495 bool success = true;
Paul Crowley77df7f22020-01-23 15:29:30 -0800496 EncryptionPolicy policy;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000497 // If we haven't loaded the CE key, no need to evict it.
Paul Crowley77df7f22020-01-23 15:29:30 -0800498 if (lookup_policy(s_ce_policies, user_id, &policy)) {
499 success &= android::vold::evictKey(DATA_MNT_POINT, policy);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700500 drop_caches_if_needed();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000501 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800502 s_ce_policies.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000503 return success;
504}
505
Eric Biggersa701c452018-10-23 13:06:55 -0700506bool fscrypt_destroy_user_key(userid_t user_id) {
507 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
508 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000509 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000510 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000511 bool success = true;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000512 success &= evict_ce_key(user_id);
Paul Crowley77df7f22020-01-23 15:29:30 -0800513 EncryptionPolicy de_policy;
514 success &= lookup_policy(s_de_policies, user_id, &de_policy) &&
515 android::vold::evictKey(DATA_MNT_POINT, de_policy);
516 s_de_policies.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000517 auto it = s_ephemeral_users.find(user_id);
518 if (it != s_ephemeral_users.end()) {
519 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000520 } else {
Paul Crowley14c8c072018-09-18 13:30:21 -0700521 for (auto const path : get_ce_key_paths(get_ce_key_directory_path(user_id))) {
Paul Crowleya3630362016-05-17 14:17:56 -0700522 success &= android::vold::destroyKey(path);
523 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700524 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700525 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700526 success &= android::vold::destroyKey(de_key_path);
527 } else {
528 LOG(INFO) << "Not present so not erasing: " << de_key_path;
529 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100530 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000531 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100532}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800533
Paul Crowley76107cb2016-02-09 10:04:39 +0000534static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700535 if (chmod(path.c_str(), 0000) != 0) {
536 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000537 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700538 }
539#if EMULATED_USES_SELINUX
540 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
541 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000542 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700543 }
544#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000545 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700546}
547
Paul Crowley76107cb2016-02-09 10:04:39 +0000548static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700549 if (chmod(path.c_str(), mode) != 0) {
550 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000551 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700552 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700553 }
554#if EMULATED_USES_SELINUX
555 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
556 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000557 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700558 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700559 }
560#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000561 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700562}
563
Paul Crowley3b71fc52017-10-09 10:55:21 -0700564static bool parse_hex(const std::string& hex, std::string* result) {
565 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800566 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000567 return true;
568 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800569 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800570 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000571 return false;
572 }
573 return true;
574}
575
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700576static std::optional<android::vold::KeyAuthentication> authentication_from_hex(
577 const std::string& token_hex, const std::string& secret_hex) {
578 std::string token, secret;
579 if (!parse_hex(token_hex, &token)) return std::optional<android::vold::KeyAuthentication>();
580 if (!parse_hex(secret_hex, &secret)) return std::optional<android::vold::KeyAuthentication>();
581 if (secret.empty()) {
582 return kEmptyAuthentication;
583 } else {
584 return android::vold::KeyAuthentication(token, secret);
585 }
586}
587
Paul Crowley3aa914d2017-10-09 16:35:51 -0700588static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
589 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
590}
591
Paul Crowley26a53882017-10-26 11:16:39 -0700592static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
593 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
594}
595
Paul Crowley3aa914d2017-10-09 16:35:51 -0700596static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
Paul Crowley5e53ff62019-10-24 14:55:17 -0700597 EncryptionPolicy* policy) {
Paul Crowley26a53882017-10-26 11:16:39 -0700598 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
599 std::string secdiscardable_hash;
600 if (android::vold::pathExists(secdiscardable_path)) {
601 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
602 return false;
603 } else {
604 if (fs_mkdirs(secdiscardable_path.c_str(), 0700) != 0) {
605 PLOG(ERROR) << "Creating directories for: " << secdiscardable_path;
606 return false;
607 }
608 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
609 return false;
610 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700611 auto key_path = volkey_path(misc_path, volume_uuid);
612 if (fs_mkdirs(key_path.c_str(), 0700) != 0) {
613 PLOG(ERROR) << "Creating directories for: " << key_path;
614 return false;
615 }
Paul Crowley26a53882017-10-26 11:16:39 -0700616 android::vold::KeyAuthentication auth("", secdiscardable_hash);
Eric Biggers83a73d72019-09-30 13:06:47 -0700617
Paul Crowley77df7f22020-01-23 15:29:30 -0800618 EncryptionOptions options;
619 if (!get_volume_file_encryption_options(&options)) return false;
620 KeyBuffer key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800621 if (!retrieveOrGenerateKey(key_path, key_path + "_tmp", auth, makeGen(options), &key))
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800622 return false;
623 if (!install_storage_key(BuildDataPath(volume_uuid), options, key, policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800624 return true;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700625}
626
627static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700628 auto path = volkey_path(misc_path, volume_uuid);
629 if (!android::vold::pathExists(path)) return true;
630 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700631}
632
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700633static bool fscrypt_rewrap_user_key(userid_t user_id, int serial,
634 const android::vold::KeyAuthentication& retrieve_auth,
635 const android::vold::KeyAuthentication& store_auth) {
636 if (s_ephemeral_users.count(user_id) != 0) return true;
637 auto const directory_path = get_ce_key_directory_path(user_id);
638 KeyBuffer ce_key;
639 std::string ce_key_current_path = get_ce_key_current_path(directory_path);
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800640 if (retrieveKey(ce_key_current_path, retrieve_auth, &ce_key)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700641 LOG(DEBUG) << "Successfully retrieved key";
642 // TODO(147732812): Remove this once Locksettingservice is fixed.
643 // Currently it calls fscrypt_clear_user_key_auth with a secret when lockscreen is
644 // changed from swipe to none or vice-versa
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800645 } else if (retrieveKey(ce_key_current_path, kEmptyAuthentication, &ce_key)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700646 LOG(DEBUG) << "Successfully retrieved key with empty auth";
647 } else {
648 LOG(ERROR) << "Failed to retrieve key for user " << user_id;
649 return false;
650 }
651 auto const paths = get_ce_key_paths(directory_path);
652 std::string ce_key_path;
653 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
654 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, store_auth, ce_key))
655 return false;
656 if (!android::vold::FsyncDirectory(directory_path)) return false;
657 return true;
658}
659
Eric Biggersa701c452018-10-23 13:06:55 -0700660bool fscrypt_add_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700661 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700662 LOG(DEBUG) << "fscrypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700663 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700664 if (!fscrypt_is_native()) return true;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700665 auto auth = authentication_from_hex(token_hex, secret_hex);
666 if (!auth) return false;
667 return fscrypt_rewrap_user_key(user_id, serial, kEmptyAuthentication, *auth);
668}
669
670bool fscrypt_clear_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
671 const std::string& secret_hex) {
672 LOG(DEBUG) << "fscrypt_clear_user_key_auth " << user_id << " serial=" << serial
673 << " token_present=" << (token_hex != "!");
674 if (!fscrypt_is_native()) return true;
675 auto auth = authentication_from_hex(token_hex, secret_hex);
676 if (!auth) return false;
677 return fscrypt_rewrap_user_key(user_id, serial, *auth, kEmptyAuthentication);
Paul Crowleya3630362016-05-17 14:17:56 -0700678}
679
Eric Biggersa701c452018-10-23 13:06:55 -0700680bool fscrypt_fixate_newest_user_key_auth(userid_t user_id) {
681 LOG(DEBUG) << "fscrypt_fixate_newest_user_key_auth " << user_id;
682 if (!fscrypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700683 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700684 auto const directory_path = get_ce_key_directory_path(user_id);
685 auto const paths = get_ce_key_paths(directory_path);
686 if (paths.empty()) {
687 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
688 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000689 }
Paul Crowleya3630362016-05-17 14:17:56 -0700690 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000691 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000692}
693
Jeff Sharkey47695b22016-02-01 17:02:29 -0700694// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Eric Biggersa701c452018-10-23 13:06:55 -0700695bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700696 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700697 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700698 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700699 if (fscrypt_is_native()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800700 if (s_ce_policies.count(user_id) != 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000701 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000702 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000703 }
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700704 auto auth = authentication_from_hex(token_hex, secret_hex);
705 if (!auth) return false;
706 if (!read_and_install_user_ce_key(user_id, *auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000707 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000708 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800709 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700710 } else {
711 // When in emulation mode, we just use chmod. However, we also
712 // unlock directories when not in emulation mode, to bring devices
713 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000714 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800715 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700716 !emulated_unlock(android::vold::BuildDataMediaCePath("", user_id), 0770) ||
717 !emulated_unlock(android::vold::BuildDataUserCePath("", user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700718 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000719 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700720 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800721 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000722 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800723}
724
Jeff Sharkey47695b22016-02-01 17:02:29 -0700725// TODO: rename to 'evict' for consistency
Eric Biggersa701c452018-10-23 13:06:55 -0700726bool fscrypt_lock_user_key(userid_t user_id) {
727 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
728 if (fscrypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000729 return evict_ce_key(user_id);
Eric Biggersa701c452018-10-23 13:06:55 -0700730 } else if (fscrypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800731 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000732 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800733 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700734 !emulated_lock(android::vold::BuildDataMediaCePath("", user_id)) ||
735 !emulated_lock(android::vold::BuildDataUserCePath("", user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000736 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000737 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800738 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800739 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700740
Paul Crowley76107cb2016-02-09 10:04:39 +0000741 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800742}
743
Paul Crowley82b41ff2017-10-20 08:17:54 -0700744static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
745 userid_t user_id, int flags) {
746 if (0 != android::vold::ForkExecvp(
747 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
748 std::to_string(user_id), std::to_string(flags)})) {
749 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700750 return false;
751 }
752 return true;
753}
754
Eric Biggersa701c452018-10-23 13:06:55 -0700755bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700756 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700757 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800758 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700759
Paul Crowley82b41ff2017-10-20 08:17:54 -0700760 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600761 // DE_sys key
762 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
763 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
764 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600765
766 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700767 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
768 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800769 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700770 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
771
Paul Crowley3b71fc52017-10-09 10:55:21 -0700772 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700773 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600774#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700775 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700776 multiuser_get_uid(user_id, AID_EVERYBODY)))
777 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600778#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700779 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600780
Paul Crowley6b756ce2017-10-05 14:07:09 -0700781 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
782 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800783 if (!prepare_dir(vendor_de_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700784 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000785 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000786
Eric Biggersa701c452018-10-23 13:06:55 -0700787 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700788 EncryptionPolicy de_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700789 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800790 if (!lookup_policy(s_de_policies, user_id, &de_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700791 if (!EnsurePolicy(de_policy, system_de_path)) return false;
792 if (!EnsurePolicy(de_policy, misc_de_path)) return false;
793 if (!EnsurePolicy(de_policy, vendor_de_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700794 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700795 if (!read_or_create_volkey(misc_de_path, volume_uuid, &de_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700796 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700797 if (!EnsurePolicy(de_policy, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700798 }
Paul Crowley285956f2016-01-20 13:12:38 +0000799 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800800
Paul Crowley82b41ff2017-10-20 08:17:54 -0700801 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600802 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700803 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
804 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800805 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600806 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
807 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800808
Paul Crowley3b71fc52017-10-09 10:55:21 -0700809 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700810 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
811 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800812 if (!prepare_dir(vendor_ce_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700813 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000814 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +0100815 // Setup quota project ID and inheritance policy
816 if (!IsFilesystemSupported("sdcardfs")) {
817 if (SetQuotaInherit(media_ce_path) != 0) return false;
Martijn Coenenaee40512020-02-18 16:29:25 +0100818 if (SetQuotaProjectId(media_ce_path,
819 multiuser_get_uid(user_id, PROJECT_ID_EXT_DEFAULT)) != 0) {
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +0100820 return false;
821 }
822 }
823
Paul Crowley76107cb2016-02-09 10:04:39 +0000824 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700825
Eric Biggersa701c452018-10-23 13:06:55 -0700826 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700827 EncryptionPolicy ce_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700828 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800829 if (!lookup_policy(s_ce_policies, user_id, &ce_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700830 if (!EnsurePolicy(ce_policy, system_ce_path)) return false;
831 if (!EnsurePolicy(ce_policy, misc_ce_path)) return false;
832 if (!EnsurePolicy(ce_policy, vendor_ce_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700833 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700834 if (!read_or_create_volkey(misc_ce_path, volume_uuid, &ce_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700835 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700836 if (!EnsurePolicy(ce_policy, media_ce_path)) return false;
837 if (!EnsurePolicy(ce_policy, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700838 }
Paul Crowley1a965262017-10-13 13:49:50 -0700839
840 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700841 // Now that credentials have been installed, we can run restorecon
842 // over these paths
843 // NOTE: these paths need to be kept in sync with libselinux
844 android::vold::RestoreconRecursive(system_ce_path);
Nick Kralevich6a3ef482019-05-14 09:30:29 -0700845 android::vold::RestoreconRecursive(vendor_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -0700846 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700847 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800848 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700849 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800850
Paul Crowley76107cb2016-02-09 10:04:39 +0000851 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800852}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600853
Eric Biggersa701c452018-10-23 13:06:55 -0700854bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
855 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600856 << ", user " << user_id << ", flags " << flags;
857 bool res = true;
858
Paul Crowley82b41ff2017-10-20 08:17:54 -0700859 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
860
861 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -0700862 // CE_n key
863 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
864 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800865 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -0700866 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
867 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
868
869 res &= destroy_dir(media_ce_path);
870 res &= destroy_dir(user_ce_path);
871 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700872 res &= destroy_dir(system_ce_path);
873 res &= destroy_dir(misc_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800874 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700875 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700876 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700877 res &= destroy_volkey(misc_ce_path, volume_uuid);
878 }
Paul Crowley8e550662017-10-16 17:01:44 -0700879 }
880 }
881
Paul Crowley82b41ff2017-10-20 08:17:54 -0700882 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600883 // DE_sys key
884 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
885 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
886 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600887
888 // DE_n key
889 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
890 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800891 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600892 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
893
Paul Crowley8e550662017-10-16 17:01:44 -0700894 res &= destroy_dir(user_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -0700895 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600896 res &= destroy_dir(system_legacy_path);
897#if MANAGE_MISC_DIRS
898 res &= destroy_dir(misc_legacy_path);
899#endif
900 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600901 res &= destroy_dir(system_de_path);
902 res &= destroy_dir(misc_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800903 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700904 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700905 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700906 res &= destroy_volkey(misc_de_path, volume_uuid);
907 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600908 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600909 }
910
911 return res;
912}
Rubin Xu2436e272017-04-27 20:43:10 +0100913
Paul Crowleyc6433a22017-10-24 14:54:43 -0700914static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
915 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
916 if (!dirp) {
917 PLOG(ERROR) << "Unable to open directory: " + directory_path;
918 return false;
919 }
920 bool res = true;
921 for (;;) {
922 errno = 0;
923 auto const entry = readdir(dirp.get());
924 if (!entry) {
925 if (errno) {
926 PLOG(ERROR) << "Unable to read directory: " + directory_path;
927 return false;
928 }
929 break;
930 }
931 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
932 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
933 continue;
934 }
935 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
936 }
937 return res;
938}
939
Eric Biggersa701c452018-10-23 13:06:55 -0700940bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700941 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -0700942 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -0700943 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
944 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -0700945 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
946 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
947 return res;
948}