blob: 141f4c9cb839052782f10439ddf222692cc4ece1 [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 Crowleyb3d018a2020-02-12 11:04:05 -080068using android::vold::makeGen;
69using 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
Eric Biggersa701c452018-10-23 13:06:55 -0700100static bool fscrypt_is_emulated() {
Paul Crowley38132a12016-02-09 09:50:32 +0000101 return property_get_bool("persist.sys.emulate_fbe", false);
102}
103
Paul Crowley3b71fc52017-10-09 10:55:21 -0700104static const char* escape_empty(const std::string& value) {
105 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000106}
107
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000108static std::string get_de_key_path(userid_t user_id) {
109 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
110}
111
Paul Crowleya3630362016-05-17 14:17:56 -0700112static std::string get_ce_key_directory_path(userid_t user_id) {
113 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
114}
115
116// Returns the keys newest first
117static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
118 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
119 if (!dirp) {
120 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
121 return std::vector<std::string>();
122 }
123 std::vector<std::string> result;
124 for (;;) {
125 errno = 0;
126 auto const entry = readdir(dirp.get());
127 if (!entry) {
128 if (errno) {
129 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
130 return std::vector<std::string>();
131 }
132 break;
133 }
134 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
135 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
136 continue;
137 }
138 result.emplace_back(directory_path + "/" + entry->d_name);
139 }
140 std::sort(result.begin(), result.end());
141 std::reverse(result.begin(), result.end());
142 return result;
143}
144
145static std::string get_ce_key_current_path(const std::string& directory_path) {
146 return directory_path + "/current";
147}
148
149static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700150 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700151 if (paths.empty()) {
152 *ce_key_path = get_ce_key_current_path(directory_path);
153 return true;
154 }
155 for (unsigned int i = 0; i < UINT_MAX; i++) {
156 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
157 if (paths[0] < candidate) {
158 *ce_key_path = candidate;
159 return true;
160 }
161 }
162 return false;
163}
164
165// Discard all keys but the named one; rename it to canonical name.
166// No point in acting on errors in this; ignore them.
Paul Crowley14c8c072018-09-18 13:30:21 -0700167static void fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700168 const std::vector<std::string>& paths) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700169 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700170 if (other_path != to_fix) {
171 android::vold::destroyKey(other_path);
172 }
173 }
174 auto const current_path = get_ce_key_current_path(directory_path);
175 if (to_fix != current_path) {
176 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
177 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
178 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
Jieb6698d52018-11-12 15:26:02 +0800179 return;
Paul Crowleya3630362016-05-17 14:17:56 -0700180 }
181 }
Paul Crowley621d9b92018-12-07 15:36:09 -0800182 android::vold::FsyncDirectory(directory_path);
Paul Crowleya3630362016-05-17 14:17:56 -0700183}
184
185static bool read_and_fixate_user_ce_key(userid_t user_id,
186 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700187 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700188 auto const directory_path = get_ce_key_directory_path(user_id);
189 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700190 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700191 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800192 if (retrieveKey(ce_key_path, auth, ce_key)) {
Paul Crowleya3630362016-05-17 14:17:56 -0700193 LOG(DEBUG) << "Successfully retrieved key";
194 fixate_user_ce_key(directory_path, ce_key_path, paths);
195 return true;
196 }
197 }
198 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
199 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100200}
201
Eric Biggers83a73d72019-09-30 13:06:47 -0700202// Retrieve the options to use for encryption policies on the /data filesystem.
Paul Crowley77df7f22020-01-23 15:29:30 -0800203static bool get_data_file_encryption_options(EncryptionOptions* options) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700204 auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT);
205 if (entry == nullptr) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800206 LOG(ERROR) << "No mount point entry for " << DATA_MNT_POINT;
207 return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700208 }
Paul Crowleya50f6c32019-10-24 23:21:44 -0700209 if (!ParseOptions(entry->encryption_options, options)) {
210 LOG(ERROR) << "Unable to parse encryption options for " << DATA_MNT_POINT ": "
211 << entry->encryption_options;
Paul Crowley77df7f22020-01-23 15:29:30 -0800212 return false;
Paul Crowleya50f6c32019-10-24 23:21:44 -0700213 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800214 return true;
Eric Biggers83a73d72019-09-30 13:06:47 -0700215}
216
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800217static bool install_storage_key(const std::string& mountpoint, const EncryptionOptions& options,
218 const KeyBuffer& key, EncryptionPolicy* policy) {
219 KeyBuffer ephemeral_wrapped_key;
220 if (options.use_hw_wrapped_key) {
221 if (!exportWrappedStorageKey(key, &ephemeral_wrapped_key)) {
222 LOG(ERROR) << "Failed to get ephemeral wrapped key";
223 return false;
224 }
225 }
226 return installKey(mountpoint, options, options.use_hw_wrapped_key ? ephemeral_wrapped_key : key,
227 policy);
228}
229
Eric Biggers83a73d72019-09-30 13:06:47 -0700230// Retrieve the options to use for encryption policies on adoptable storage.
Paul Crowley5e53ff62019-10-24 14:55:17 -0700231static bool get_volume_file_encryption_options(EncryptionOptions* options) {
Paul Crowleyf612b8b2019-10-24 22:52:02 -0700232 auto contents_mode =
233 android::base::GetProperty("ro.crypto.volume.contents_mode", "aes-256-xts");
234 auto filenames_mode =
235 android::base::GetProperty("ro.crypto.volume.filenames_mode", "aes-256-heh");
Paul Crowley77df7f22020-01-23 15:29:30 -0800236 auto options_string = android::base::GetProperty("ro.crypto.volume.options",
237 contents_mode + ":" + filenames_mode + ":v1");
238 if (!ParseOptions(options_string, options)) {
239 LOG(ERROR) << "Unable to parse volume encryption options: " << options_string;
240 return false;
241 }
242 return true;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700243}
244
Paul Crowleydf528a72016-03-09 09:31:37 -0800245static bool read_and_install_user_ce_key(userid_t user_id,
246 const android::vold::KeyAuthentication& auth) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800247 if (s_ce_policies.count(user_id) != 0) return true;
248 EncryptionOptions options;
249 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100250 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700251 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800252 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800253 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800254 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000255 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000256 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000257}
258
Paul Crowleydf528a72016-03-09 09:31:37 -0800259static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000260 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000261 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
262 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000263 return false;
264 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000265 return true;
266}
267
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600268static bool destroy_dir(const std::string& dir) {
269 LOG(DEBUG) << "Destroying: " << dir;
270 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
271 PLOG(ERROR) << "Failed to destroy " << dir;
272 return false;
273 }
274 return true;
275}
276
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000277// NB this assumes that there is only one thread listening for crypt commands, because
278// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000279static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800280 EncryptionOptions options;
281 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100282 KeyBuffer de_key, ce_key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800283 if (!generateStorageKey(makeGen(options), &de_key)) return false;
284 if (!generateStorageKey(makeGen(options), &ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000285 if (create_ephemeral) {
286 // If the key should be created as ephemeral, don't store it.
287 s_ephemeral_users.insert(user_id);
288 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700289 auto const directory_path = get_ce_key_directory_path(user_id);
290 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
291 auto const paths = get_ce_key_paths(directory_path);
292 std::string ce_key_path;
293 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700294 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, kEmptyAuthentication,
295 ce_key))
296 return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700297 fixate_user_ce_key(directory_path, ce_key_path, paths);
298 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700299 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley14c8c072018-09-18 13:30:21 -0700300 kEmptyAuthentication, de_key))
301 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100302 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800303 EncryptionPolicy de_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800304 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800305 s_de_policies[user_id] = de_policy;
306 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800307 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800308 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000309 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000310 return true;
311}
312
Paul Crowley77df7f22020-01-23 15:29:30 -0800313static bool lookup_policy(const std::map<userid_t, EncryptionPolicy>& key_map, userid_t user_id,
314 EncryptionPolicy* policy) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000315 auto refi = key_map.find(user_id);
316 if (refi == key_map.end()) {
Eric Biggersd1034042019-04-02 10:38:15 -0700317 LOG(DEBUG) << "Cannot find key for " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000318 return false;
319 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800320 *policy = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000321 return true;
322}
323
Paul Crowleydf528a72016-03-09 09:31:37 -0800324static bool is_numeric(const char* name) {
325 for (const char* p = name; *p != '\0'; p++) {
326 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000327 }
328 return true;
329}
330
331static bool load_all_de_keys() {
Paul Crowley77df7f22020-01-23 15:29:30 -0800332 EncryptionOptions options;
333 if (!get_data_file_encryption_options(&options)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000334 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800335 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000336 if (!dirp) {
337 PLOG(ERROR) << "Unable to read de key directory";
338 return false;
339 }
340 for (;;) {
341 errno = 0;
342 auto entry = readdir(dirp.get());
343 if (!entry) {
344 if (errno) {
345 PLOG(ERROR) << "Unable to read de key directory";
346 return false;
347 }
348 break;
349 }
350 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
351 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
352 continue;
353 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600354 userid_t user_id = std::stoi(entry->d_name);
Paul Crowley77df7f22020-01-23 15:29:30 -0800355 if (s_de_policies.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000356 auto key_path = de_dir + "/" + entry->d_name;
Paul Crowley77df7f22020-01-23 15:29:30 -0800357 KeyBuffer de_key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800358 if (!retrieveKey(key_path, kEmptyAuthentication, &de_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800359 EncryptionPolicy de_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800360 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800361 s_de_policies[user_id] = de_policy;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000362 LOG(DEBUG) << "Installed de key for user " << user_id;
363 }
364 }
Eric Biggersa701c452018-10-23 13:06:55 -0700365 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000366 // correct policy set on them, and that no rogue ones exist.
367 return true;
368}
369
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700370bool fscrypt_initialize_systemwide_keys() {
371 LOG(INFO) << "fscrypt_initialize_systemwide_keys";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800372
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700373 if (s_systemwide_keys_initialized) {
Paul Crowley38132a12016-02-09 09:50:32 +0000374 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000375 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800376 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800377 EncryptionOptions options;
378 if (!get_data_file_encryption_options(&options)) return false;
379
380 KeyBuffer device_key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800381 if (!retrieveOrGenerateKey(device_key_path, device_key_temp, kEmptyAuthentication,
382 makeGen(options), &device_key))
Paul Crowley77df7f22020-01-23 15:29:30 -0800383 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800384
Paul Crowley5e53ff62019-10-24 14:55:17 -0700385 EncryptionPolicy device_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800386 if (!install_storage_key(DATA_MNT_POINT, options, device_key, &device_policy)) return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700387
Paul Crowley5e53ff62019-10-24 14:55:17 -0700388 std::string options_string;
389 if (!OptionsToString(device_policy.options, &options_string)) {
390 LOG(ERROR) << "Unable to serialize options";
391 return false;
392 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800393 std::string options_filename = std::string(DATA_MNT_POINT) + fscrypt_key_mode;
Eric Biggers83a73d72019-09-30 13:06:47 -0700394 if (!android::vold::writeStringToFile(options_string, options_filename)) return false;
Paul Lawrence6e410592016-05-24 14:20:38 -0700395
Paul Crowley77df7f22020-01-23 15:29:30 -0800396 std::string ref_filename = std::string(DATA_MNT_POINT) + fscrypt_key_ref;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700397 if (!android::vold::writeStringToFile(device_policy.key_raw_ref, ref_filename)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700398 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800399
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700400 KeyBuffer per_boot_key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800401 if (!generateStorageKey(makeGen(options), &per_boot_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800402 EncryptionPolicy per_boot_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800403 if (!install_storage_key(DATA_MNT_POINT, options, per_boot_key, &per_boot_policy)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700404 std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref;
Paul Crowley77df7f22020-01-23 15:29:30 -0800405 if (!android::vold::writeStringToFile(per_boot_policy.key_raw_ref, per_boot_ref_filename))
406 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700407 LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename;
408
Tommy Chiua98464f2019-03-26 14:14:19 +0800409 if (!android::vold::FsyncDirectory(device_key_dir)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700410 s_systemwide_keys_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000411 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800412}
413
Eric Biggersa701c452018-10-23 13:06:55 -0700414bool fscrypt_init_user0() {
415 LOG(DEBUG) << "fscrypt_init_user0";
416 if (fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000417 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
418 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
419 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700420 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000421 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000422 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700423 // TODO: switch to loading only DE_0 here once framework makes
424 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000425 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000426 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700427 // We can only safely prepare DE storage here, since CE keys are probably
428 // entangled with user credentials. The framework will always prepare CE
429 // storage once CE keys are installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700430 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700431 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000432 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700433 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700434
435 // If this is a non-FBE device that recently left an emulated mode,
436 // restore user data directories to known-good state.
Eric Biggersa701c452018-10-23 13:06:55 -0700437 if (!fscrypt_is_native() && !fscrypt_is_emulated()) {
438 fscrypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700439 }
440
Paul Crowley76107cb2016-02-09 10:04:39 +0000441 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000442}
443
Eric Biggersa701c452018-10-23 13:06:55 -0700444bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
445 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
446 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000447 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000448 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000449 // FIXME test for existence of key that is not loaded yet
Paul Crowley77df7f22020-01-23 15:29:30 -0800450 if (s_ce_policies.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700451 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800452 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000453 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000454 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800455 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000456 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000457 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000458 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000459 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800460}
461
Eric Biggersce368682019-04-03 15:44:06 -0700462// "Lock" all encrypted directories whose key has been removed. This is needed
Eric Biggersf3dc4202019-09-30 13:05:58 -0700463// in the case where the keys are being put in the session keyring (rather in
464// the newer filesystem-level keyrings), because removing a key from the session
465// keyring doesn't affect inodes in the kernel's inode cache whose per-file key
466// was already set up. So to remove the per-file keys and make the files
467// "appear encrypted", these inodes must be evicted.
Eric Biggersce368682019-04-03 15:44:06 -0700468//
469// To do this, sync() to clean all dirty inodes, then drop all reclaimable slab
470// objects systemwide. This is overkill, but it's the best available method
471// currently. Don't use drop_caches mode "3" because that also evicts pagecache
472// for in-use files; all files relevant here are already closed and sync'ed.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700473static void drop_caches_if_needed() {
474 if (android::vold::isFsKeyringSupported()) {
475 return;
476 }
Pavel Grafovb350ed02017-07-27 17:34:57 +0100477 sync();
Eric Biggersce368682019-04-03 15:44:06 -0700478 if (!writeStringToFile("2", "/proc/sys/vm/drop_caches")) {
Pavel Grafovb350ed02017-07-27 17:34:57 +0100479 PLOG(ERROR) << "Failed to drop caches during key eviction";
480 }
481}
482
Andrew Scull7ec25c72016-10-31 10:28:25 +0000483static bool evict_ce_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000484 bool success = true;
Paul Crowley77df7f22020-01-23 15:29:30 -0800485 EncryptionPolicy policy;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000486 // If we haven't loaded the CE key, no need to evict it.
Paul Crowley77df7f22020-01-23 15:29:30 -0800487 if (lookup_policy(s_ce_policies, user_id, &policy)) {
488 success &= android::vold::evictKey(DATA_MNT_POINT, policy);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700489 drop_caches_if_needed();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000490 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800491 s_ce_policies.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000492 return success;
493}
494
Eric Biggersa701c452018-10-23 13:06:55 -0700495bool fscrypt_destroy_user_key(userid_t user_id) {
496 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
497 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000498 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000499 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000500 bool success = true;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000501 success &= evict_ce_key(user_id);
Paul Crowley77df7f22020-01-23 15:29:30 -0800502 EncryptionPolicy de_policy;
503 success &= lookup_policy(s_de_policies, user_id, &de_policy) &&
504 android::vold::evictKey(DATA_MNT_POINT, de_policy);
505 s_de_policies.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000506 auto it = s_ephemeral_users.find(user_id);
507 if (it != s_ephemeral_users.end()) {
508 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000509 } else {
Paul Crowley14c8c072018-09-18 13:30:21 -0700510 for (auto const path : get_ce_key_paths(get_ce_key_directory_path(user_id))) {
Paul Crowleya3630362016-05-17 14:17:56 -0700511 success &= android::vold::destroyKey(path);
512 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700513 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700514 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700515 success &= android::vold::destroyKey(de_key_path);
516 } else {
517 LOG(INFO) << "Not present so not erasing: " << de_key_path;
518 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100519 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000520 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100521}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800522
Paul Crowley76107cb2016-02-09 10:04:39 +0000523static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700524 if (chmod(path.c_str(), 0000) != 0) {
525 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000526 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700527 }
528#if EMULATED_USES_SELINUX
529 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
530 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000531 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700532 }
533#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000534 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700535}
536
Paul Crowley76107cb2016-02-09 10:04:39 +0000537static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700538 if (chmod(path.c_str(), mode) != 0) {
539 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000540 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700541 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700542 }
543#if EMULATED_USES_SELINUX
544 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
545 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000546 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700547 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700548 }
549#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000550 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700551}
552
Paul Crowley3b71fc52017-10-09 10:55:21 -0700553static bool parse_hex(const std::string& hex, std::string* result) {
554 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800555 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000556 return true;
557 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800558 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800559 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000560 return false;
561 }
562 return true;
563}
564
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700565static std::optional<android::vold::KeyAuthentication> authentication_from_hex(
566 const std::string& token_hex, const std::string& secret_hex) {
567 std::string token, secret;
568 if (!parse_hex(token_hex, &token)) return std::optional<android::vold::KeyAuthentication>();
569 if (!parse_hex(secret_hex, &secret)) return std::optional<android::vold::KeyAuthentication>();
570 if (secret.empty()) {
571 return kEmptyAuthentication;
572 } else {
573 return android::vold::KeyAuthentication(token, secret);
574 }
575}
576
Paul Crowley3aa914d2017-10-09 16:35:51 -0700577static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
578 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
579}
580
Paul Crowley26a53882017-10-26 11:16:39 -0700581static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
582 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
583}
584
Paul Crowley3aa914d2017-10-09 16:35:51 -0700585static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
Paul Crowley5e53ff62019-10-24 14:55:17 -0700586 EncryptionPolicy* policy) {
Paul Crowley26a53882017-10-26 11:16:39 -0700587 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
588 std::string secdiscardable_hash;
589 if (android::vold::pathExists(secdiscardable_path)) {
590 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
591 return false;
592 } else {
593 if (fs_mkdirs(secdiscardable_path.c_str(), 0700) != 0) {
594 PLOG(ERROR) << "Creating directories for: " << secdiscardable_path;
595 return false;
596 }
597 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
598 return false;
599 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700600 auto key_path = volkey_path(misc_path, volume_uuid);
601 if (fs_mkdirs(key_path.c_str(), 0700) != 0) {
602 PLOG(ERROR) << "Creating directories for: " << key_path;
603 return false;
604 }
Paul Crowley26a53882017-10-26 11:16:39 -0700605 android::vold::KeyAuthentication auth("", secdiscardable_hash);
Eric Biggers83a73d72019-09-30 13:06:47 -0700606
Paul Crowley77df7f22020-01-23 15:29:30 -0800607 EncryptionOptions options;
608 if (!get_volume_file_encryption_options(&options)) return false;
609 KeyBuffer key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800610 if (!retrieveOrGenerateKey(key_path, key_path + "_tmp", auth, makeGen(options), &key))
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800611 return false;
612 if (!install_storage_key(BuildDataPath(volume_uuid), options, key, policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800613 return true;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700614}
615
616static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700617 auto path = volkey_path(misc_path, volume_uuid);
618 if (!android::vold::pathExists(path)) return true;
619 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700620}
621
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700622static bool fscrypt_rewrap_user_key(userid_t user_id, int serial,
623 const android::vold::KeyAuthentication& retrieve_auth,
624 const android::vold::KeyAuthentication& store_auth) {
625 if (s_ephemeral_users.count(user_id) != 0) return true;
626 auto const directory_path = get_ce_key_directory_path(user_id);
627 KeyBuffer ce_key;
628 std::string ce_key_current_path = get_ce_key_current_path(directory_path);
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800629 if (retrieveKey(ce_key_current_path, retrieve_auth, &ce_key)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700630 LOG(DEBUG) << "Successfully retrieved key";
631 // TODO(147732812): Remove this once Locksettingservice is fixed.
632 // Currently it calls fscrypt_clear_user_key_auth with a secret when lockscreen is
633 // changed from swipe to none or vice-versa
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800634 } else if (retrieveKey(ce_key_current_path, kEmptyAuthentication, &ce_key)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700635 LOG(DEBUG) << "Successfully retrieved key with empty auth";
636 } else {
637 LOG(ERROR) << "Failed to retrieve key for user " << user_id;
638 return false;
639 }
640 auto const paths = get_ce_key_paths(directory_path);
641 std::string ce_key_path;
642 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
643 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, store_auth, ce_key))
644 return false;
645 if (!android::vold::FsyncDirectory(directory_path)) return false;
646 return true;
647}
648
Eric Biggersa701c452018-10-23 13:06:55 -0700649bool fscrypt_add_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700650 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700651 LOG(DEBUG) << "fscrypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700652 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700653 if (!fscrypt_is_native()) return true;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700654 auto auth = authentication_from_hex(token_hex, secret_hex);
655 if (!auth) return false;
656 return fscrypt_rewrap_user_key(user_id, serial, kEmptyAuthentication, *auth);
657}
658
659bool fscrypt_clear_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
660 const std::string& secret_hex) {
661 LOG(DEBUG) << "fscrypt_clear_user_key_auth " << user_id << " serial=" << serial
662 << " token_present=" << (token_hex != "!");
663 if (!fscrypt_is_native()) return true;
664 auto auth = authentication_from_hex(token_hex, secret_hex);
665 if (!auth) return false;
666 return fscrypt_rewrap_user_key(user_id, serial, *auth, kEmptyAuthentication);
Paul Crowleya3630362016-05-17 14:17:56 -0700667}
668
Eric Biggersa701c452018-10-23 13:06:55 -0700669bool fscrypt_fixate_newest_user_key_auth(userid_t user_id) {
670 LOG(DEBUG) << "fscrypt_fixate_newest_user_key_auth " << user_id;
671 if (!fscrypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700672 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700673 auto const directory_path = get_ce_key_directory_path(user_id);
674 auto const paths = get_ce_key_paths(directory_path);
675 if (paths.empty()) {
676 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
677 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000678 }
Paul Crowleya3630362016-05-17 14:17:56 -0700679 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000680 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000681}
682
Jeff Sharkey47695b22016-02-01 17:02:29 -0700683// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Eric Biggersa701c452018-10-23 13:06:55 -0700684bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700685 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700686 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700687 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700688 if (fscrypt_is_native()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800689 if (s_ce_policies.count(user_id) != 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000690 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000691 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000692 }
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700693 auto auth = authentication_from_hex(token_hex, secret_hex);
694 if (!auth) return false;
695 if (!read_and_install_user_ce_key(user_id, *auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000696 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000697 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800698 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700699 } else {
700 // When in emulation mode, we just use chmod. However, we also
701 // unlock directories when not in emulation mode, to bring devices
702 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000703 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800704 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700705 !emulated_unlock(android::vold::BuildDataMediaCePath("", user_id), 0770) ||
706 !emulated_unlock(android::vold::BuildDataUserCePath("", user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700707 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000708 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700709 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800710 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000711 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800712}
713
Jeff Sharkey47695b22016-02-01 17:02:29 -0700714// TODO: rename to 'evict' for consistency
Eric Biggersa701c452018-10-23 13:06:55 -0700715bool fscrypt_lock_user_key(userid_t user_id) {
716 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
717 if (fscrypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000718 return evict_ce_key(user_id);
Eric Biggersa701c452018-10-23 13:06:55 -0700719 } else if (fscrypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800720 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000721 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800722 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700723 !emulated_lock(android::vold::BuildDataMediaCePath("", user_id)) ||
724 !emulated_lock(android::vold::BuildDataUserCePath("", user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000725 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000726 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800727 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800728 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700729
Paul Crowley76107cb2016-02-09 10:04:39 +0000730 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800731}
732
Paul Crowley82b41ff2017-10-20 08:17:54 -0700733static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
734 userid_t user_id, int flags) {
735 if (0 != android::vold::ForkExecvp(
736 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
737 std::to_string(user_id), std::to_string(flags)})) {
738 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700739 return false;
740 }
741 return true;
742}
743
Eric Biggersa701c452018-10-23 13:06:55 -0700744bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700745 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700746 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800747 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700748
Paul Crowley82b41ff2017-10-20 08:17:54 -0700749 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600750 // DE_sys key
751 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
752 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
753 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600754
755 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700756 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
757 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800758 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700759 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
760
Paul Crowley3b71fc52017-10-09 10:55:21 -0700761 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700762 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600763#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700764 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700765 multiuser_get_uid(user_id, AID_EVERYBODY)))
766 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600767#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700768 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600769
Paul Crowley6b756ce2017-10-05 14:07:09 -0700770 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
771 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800772 if (!prepare_dir(vendor_de_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700773 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000774 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000775
Eric Biggersa701c452018-10-23 13:06:55 -0700776 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700777 EncryptionPolicy de_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700778 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800779 if (!lookup_policy(s_de_policies, user_id, &de_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700780 if (!EnsurePolicy(de_policy, system_de_path)) return false;
781 if (!EnsurePolicy(de_policy, misc_de_path)) return false;
782 if (!EnsurePolicy(de_policy, vendor_de_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700783 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700784 if (!read_or_create_volkey(misc_de_path, volume_uuid, &de_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700785 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700786 if (!EnsurePolicy(de_policy, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700787 }
Paul Crowley285956f2016-01-20 13:12:38 +0000788 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800789
Paul Crowley82b41ff2017-10-20 08:17:54 -0700790 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600791 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700792 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
793 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800794 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600795 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
796 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800797
Paul Crowley3b71fc52017-10-09 10:55:21 -0700798 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700799 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
800 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800801 if (!prepare_dir(vendor_ce_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700802 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000803 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +0100804 // Setup quota project ID and inheritance policy
805 if (!IsFilesystemSupported("sdcardfs")) {
806 if (SetQuotaInherit(media_ce_path) != 0) return false;
807 if (SetQuotaProjectId(media_ce_path, multiuser_get_uid(user_id, AID_MEDIA_RW)) != 0) {
808 return false;
809 }
810 }
811
Paul Crowley76107cb2016-02-09 10:04:39 +0000812 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700813
Eric Biggersa701c452018-10-23 13:06:55 -0700814 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700815 EncryptionPolicy ce_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700816 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800817 if (!lookup_policy(s_ce_policies, user_id, &ce_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700818 if (!EnsurePolicy(ce_policy, system_ce_path)) return false;
819 if (!EnsurePolicy(ce_policy, misc_ce_path)) return false;
820 if (!EnsurePolicy(ce_policy, vendor_ce_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700821 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700822 if (!read_or_create_volkey(misc_ce_path, volume_uuid, &ce_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700823 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700824 if (!EnsurePolicy(ce_policy, media_ce_path)) return false;
825 if (!EnsurePolicy(ce_policy, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700826 }
Paul Crowley1a965262017-10-13 13:49:50 -0700827
828 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700829 // Now that credentials have been installed, we can run restorecon
830 // over these paths
831 // NOTE: these paths need to be kept in sync with libselinux
832 android::vold::RestoreconRecursive(system_ce_path);
Nick Kralevich6a3ef482019-05-14 09:30:29 -0700833 android::vold::RestoreconRecursive(vendor_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -0700834 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700835 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800836 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700837 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800838
Paul Crowley76107cb2016-02-09 10:04:39 +0000839 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800840}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600841
Eric Biggersa701c452018-10-23 13:06:55 -0700842bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
843 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600844 << ", user " << user_id << ", flags " << flags;
845 bool res = true;
846
Paul Crowley82b41ff2017-10-20 08:17:54 -0700847 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
848
849 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -0700850 // CE_n key
851 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
852 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800853 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -0700854 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
855 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
856
857 res &= destroy_dir(media_ce_path);
858 res &= destroy_dir(user_ce_path);
859 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700860 res &= destroy_dir(system_ce_path);
861 res &= destroy_dir(misc_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800862 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700863 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700864 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700865 res &= destroy_volkey(misc_ce_path, volume_uuid);
866 }
Paul Crowley8e550662017-10-16 17:01:44 -0700867 }
868 }
869
Paul Crowley82b41ff2017-10-20 08:17:54 -0700870 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600871 // DE_sys key
872 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
873 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
874 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600875
876 // DE_n key
877 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
878 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800879 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600880 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
881
Paul Crowley8e550662017-10-16 17:01:44 -0700882 res &= destroy_dir(user_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -0700883 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600884 res &= destroy_dir(system_legacy_path);
885#if MANAGE_MISC_DIRS
886 res &= destroy_dir(misc_legacy_path);
887#endif
888 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600889 res &= destroy_dir(system_de_path);
890 res &= destroy_dir(misc_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800891 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700892 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700893 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700894 res &= destroy_volkey(misc_de_path, volume_uuid);
895 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600896 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600897 }
898
899 return res;
900}
Rubin Xu2436e272017-04-27 20:43:10 +0100901
Paul Crowleyc6433a22017-10-24 14:54:43 -0700902static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
903 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
904 if (!dirp) {
905 PLOG(ERROR) << "Unable to open directory: " + directory_path;
906 return false;
907 }
908 bool res = true;
909 for (;;) {
910 errno = 0;
911 auto const entry = readdir(dirp.get());
912 if (!entry) {
913 if (errno) {
914 PLOG(ERROR) << "Unable to read directory: " + directory_path;
915 return false;
916 }
917 break;
918 }
919 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
920 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
921 continue;
922 }
923 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
924 }
925 return res;
926}
927
Eric Biggersa701c452018-10-23 13:06:55 -0700928bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700929 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -0700930 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -0700931 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
932 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -0700933 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
934 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
935 return res;
936}