blob: 21495be2fa6a78f37e51e1c275080c87537111ef [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;
Paul Crowley05720802016-02-08 15:55:41 +000065using android::vold::kEmptyAuthentication;
Pavel Grafove2e2d302017-08-01 17:15:53 +010066using android::vold::KeyBuffer;
Tommy Chiua98464f2019-03-26 14:14:19 +080067using android::vold::writeStringToFile;
Paul Crowley5e53ff62019-10-24 14:55:17 -070068using namespace android::fscrypt;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080069
Paul Lawrence731a7a22015-04-28 22:14:15 +000070namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000071
Eric Biggersa701c452018-10-23 13:06:55 -070072const std::string device_key_dir = std::string() + DATA_MNT_POINT + fscrypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080073const std::string device_key_path = device_key_dir + "/key";
74const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080075
Paul Crowleydf528a72016-03-09 09:31:37 -080076const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
77const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley82b41ff2017-10-20 08:17:54 -070078const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs";
Paul Crowley285956f2016-01-20 13:12:38 +000079
Paul Crowley26a53882017-10-26 11:16:39 -070080const std::string systemwide_volume_key_dir =
81 std::string() + DATA_MNT_POINT + "/misc/vold/volume_keys";
82
Paul Crowleyc8a3ef32019-09-11 15:00:08 -070083bool s_systemwide_keys_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080084
Paul Crowleydf528a72016-03-09 09:31:37 -080085// Some users are ephemeral, don't try to wipe their keys from disk
86std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080087
Paul Crowley77df7f22020-01-23 15:29:30 -080088// Map user ids to encryption policies
89std::map<userid_t, EncryptionPolicy> s_de_policies;
90std::map<userid_t, EncryptionPolicy> s_ce_policies;
Paul Lawrence731a7a22015-04-28 22:14:15 +000091
Paul Crowley14c8c072018-09-18 13:30:21 -070092} // namespace
Paul Lawrence731a7a22015-04-28 22:14:15 +000093
Eric Biggersa701c452018-10-23 13:06:55 -070094static bool fscrypt_is_emulated() {
Paul Crowley38132a12016-02-09 09:50:32 +000095 return property_get_bool("persist.sys.emulate_fbe", false);
96}
97
Paul Crowley3b71fc52017-10-09 10:55:21 -070098static const char* escape_empty(const std::string& value) {
99 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000100}
101
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000102static std::string get_de_key_path(userid_t user_id) {
103 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
104}
105
Paul Crowleya3630362016-05-17 14:17:56 -0700106static std::string get_ce_key_directory_path(userid_t user_id) {
107 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
108}
109
110// Returns the keys newest first
111static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
112 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
113 if (!dirp) {
114 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
115 return std::vector<std::string>();
116 }
117 std::vector<std::string> result;
118 for (;;) {
119 errno = 0;
120 auto const entry = readdir(dirp.get());
121 if (!entry) {
122 if (errno) {
123 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
124 return std::vector<std::string>();
125 }
126 break;
127 }
128 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
129 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
130 continue;
131 }
132 result.emplace_back(directory_path + "/" + entry->d_name);
133 }
134 std::sort(result.begin(), result.end());
135 std::reverse(result.begin(), result.end());
136 return result;
137}
138
139static std::string get_ce_key_current_path(const std::string& directory_path) {
140 return directory_path + "/current";
141}
142
143static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700144 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700145 if (paths.empty()) {
146 *ce_key_path = get_ce_key_current_path(directory_path);
147 return true;
148 }
149 for (unsigned int i = 0; i < UINT_MAX; i++) {
150 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
151 if (paths[0] < candidate) {
152 *ce_key_path = candidate;
153 return true;
154 }
155 }
156 return false;
157}
158
159// Discard all keys but the named one; rename it to canonical name.
160// No point in acting on errors in this; ignore them.
Paul Crowley14c8c072018-09-18 13:30:21 -0700161static void fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700162 const std::vector<std::string>& paths) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700163 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700164 if (other_path != to_fix) {
165 android::vold::destroyKey(other_path);
166 }
167 }
168 auto const current_path = get_ce_key_current_path(directory_path);
169 if (to_fix != current_path) {
170 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
171 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
172 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
Jieb6698d52018-11-12 15:26:02 +0800173 return;
Paul Crowleya3630362016-05-17 14:17:56 -0700174 }
175 }
Paul Crowley621d9b92018-12-07 15:36:09 -0800176 android::vold::FsyncDirectory(directory_path);
Paul Crowleya3630362016-05-17 14:17:56 -0700177}
178
179static bool read_and_fixate_user_ce_key(userid_t user_id,
180 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700181 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700182 auto const directory_path = get_ce_key_directory_path(user_id);
183 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700184 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700185 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
186 if (android::vold::retrieveKey(ce_key_path, auth, ce_key)) {
187 LOG(DEBUG) << "Successfully retrieved key";
188 fixate_user_ce_key(directory_path, ce_key_path, paths);
189 return true;
190 }
191 }
192 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
193 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100194}
195
Eric Biggers83a73d72019-09-30 13:06:47 -0700196// Retrieve the options to use for encryption policies on the /data filesystem.
Paul Crowley77df7f22020-01-23 15:29:30 -0800197static bool get_data_file_encryption_options(EncryptionOptions* options) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700198 auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT);
199 if (entry == nullptr) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800200 LOG(ERROR) << "No mount point entry for " << DATA_MNT_POINT;
201 return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700202 }
Paul Crowleya50f6c32019-10-24 23:21:44 -0700203 if (!ParseOptions(entry->encryption_options, options)) {
204 LOG(ERROR) << "Unable to parse encryption options for " << DATA_MNT_POINT ": "
205 << entry->encryption_options;
Paul Crowley77df7f22020-01-23 15:29:30 -0800206 return false;
Paul Crowleya50f6c32019-10-24 23:21:44 -0700207 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800208 return true;
Eric Biggers83a73d72019-09-30 13:06:47 -0700209}
210
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800211static bool install_storage_key(const std::string& mountpoint, const EncryptionOptions& options,
212 const KeyBuffer& key, EncryptionPolicy* policy) {
213 KeyBuffer ephemeral_wrapped_key;
214 if (options.use_hw_wrapped_key) {
215 if (!exportWrappedStorageKey(key, &ephemeral_wrapped_key)) {
216 LOG(ERROR) << "Failed to get ephemeral wrapped key";
217 return false;
218 }
219 }
220 return installKey(mountpoint, options, options.use_hw_wrapped_key ? ephemeral_wrapped_key : key,
221 policy);
222}
223
Eric Biggers83a73d72019-09-30 13:06:47 -0700224// Retrieve the options to use for encryption policies on adoptable storage.
Paul Crowley5e53ff62019-10-24 14:55:17 -0700225static bool get_volume_file_encryption_options(EncryptionOptions* options) {
Paul Crowleyf612b8b2019-10-24 22:52:02 -0700226 auto contents_mode =
227 android::base::GetProperty("ro.crypto.volume.contents_mode", "aes-256-xts");
228 auto filenames_mode =
229 android::base::GetProperty("ro.crypto.volume.filenames_mode", "aes-256-heh");
Paul Crowley77df7f22020-01-23 15:29:30 -0800230 auto options_string = android::base::GetProperty("ro.crypto.volume.options",
231 contents_mode + ":" + filenames_mode + ":v1");
232 if (!ParseOptions(options_string, options)) {
233 LOG(ERROR) << "Unable to parse volume encryption options: " << options_string;
234 return false;
235 }
236 return true;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700237}
238
Paul Crowleydf528a72016-03-09 09:31:37 -0800239static bool read_and_install_user_ce_key(userid_t user_id,
240 const android::vold::KeyAuthentication& auth) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800241 if (s_ce_policies.count(user_id) != 0) return true;
242 EncryptionOptions options;
243 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100244 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700245 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800246 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800247 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800248 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000249 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000250 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000251}
252
Paul Crowleydf528a72016-03-09 09:31:37 -0800253static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000254 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000255 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
256 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000257 return false;
258 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000259 return true;
260}
261
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600262static bool destroy_dir(const std::string& dir) {
263 LOG(DEBUG) << "Destroying: " << dir;
264 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
265 PLOG(ERROR) << "Failed to destroy " << dir;
266 return false;
267 }
268 return true;
269}
270
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000271// NB this assumes that there is only one thread listening for crypt commands, because
272// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000273static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800274 EncryptionOptions options;
275 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100276 KeyBuffer de_key, ce_key;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800277 if (!generateStorageKey(options, &de_key)) return false;
278 if (!generateStorageKey(options, &ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000279 if (create_ephemeral) {
280 // If the key should be created as ephemeral, don't store it.
281 s_ephemeral_users.insert(user_id);
282 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700283 auto const directory_path = get_ce_key_directory_path(user_id);
284 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
285 auto const paths = get_ce_key_paths(directory_path);
286 std::string ce_key_path;
287 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700288 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, kEmptyAuthentication,
289 ce_key))
290 return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700291 fixate_user_ce_key(directory_path, ce_key_path, paths);
292 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700293 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley14c8c072018-09-18 13:30:21 -0700294 kEmptyAuthentication, de_key))
295 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100296 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800297 EncryptionPolicy de_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800298 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800299 s_de_policies[user_id] = de_policy;
300 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800301 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800302 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000303 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000304 return true;
305}
306
Paul Crowley77df7f22020-01-23 15:29:30 -0800307static bool lookup_policy(const std::map<userid_t, EncryptionPolicy>& key_map, userid_t user_id,
308 EncryptionPolicy* policy) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000309 auto refi = key_map.find(user_id);
310 if (refi == key_map.end()) {
Eric Biggersd1034042019-04-02 10:38:15 -0700311 LOG(DEBUG) << "Cannot find key for " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000312 return false;
313 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800314 *policy = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000315 return true;
316}
317
Paul Crowleydf528a72016-03-09 09:31:37 -0800318static bool is_numeric(const char* name) {
319 for (const char* p = name; *p != '\0'; p++) {
320 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000321 }
322 return true;
323}
324
325static bool load_all_de_keys() {
Paul Crowley77df7f22020-01-23 15:29:30 -0800326 EncryptionOptions options;
327 if (!get_data_file_encryption_options(&options)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000328 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800329 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000330 if (!dirp) {
331 PLOG(ERROR) << "Unable to read de key directory";
332 return false;
333 }
334 for (;;) {
335 errno = 0;
336 auto entry = readdir(dirp.get());
337 if (!entry) {
338 if (errno) {
339 PLOG(ERROR) << "Unable to read de key directory";
340 return false;
341 }
342 break;
343 }
344 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
345 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
346 continue;
347 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600348 userid_t user_id = std::stoi(entry->d_name);
Paul Crowley77df7f22020-01-23 15:29:30 -0800349 if (s_de_policies.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000350 auto key_path = de_dir + "/" + entry->d_name;
Paul Crowley77df7f22020-01-23 15:29:30 -0800351 KeyBuffer de_key;
352 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &de_key)) return false;
353 EncryptionPolicy de_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800354 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800355 s_de_policies[user_id] = de_policy;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000356 LOG(DEBUG) << "Installed de key for user " << user_id;
357 }
358 }
Eric Biggersa701c452018-10-23 13:06:55 -0700359 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000360 // correct policy set on them, and that no rogue ones exist.
361 return true;
362}
363
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700364bool fscrypt_initialize_systemwide_keys() {
365 LOG(INFO) << "fscrypt_initialize_systemwide_keys";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800366
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700367 if (s_systemwide_keys_initialized) {
Paul Crowley38132a12016-02-09 09:50:32 +0000368 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000369 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800370 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800371 EncryptionOptions options;
372 if (!get_data_file_encryption_options(&options)) return false;
373
374 KeyBuffer device_key;
375 if (!android::vold::retrieveKey(true, kEmptyAuthentication, device_key_path, device_key_temp,
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800376 options, &device_key))
Paul Crowley77df7f22020-01-23 15:29:30 -0800377 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800378
Paul Crowley5e53ff62019-10-24 14:55:17 -0700379 EncryptionPolicy device_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800380 if (!install_storage_key(DATA_MNT_POINT, options, device_key, &device_policy)) return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700381
Paul Crowley5e53ff62019-10-24 14:55:17 -0700382 std::string options_string;
383 if (!OptionsToString(device_policy.options, &options_string)) {
384 LOG(ERROR) << "Unable to serialize options";
385 return false;
386 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800387 std::string options_filename = std::string(DATA_MNT_POINT) + fscrypt_key_mode;
Eric Biggers83a73d72019-09-30 13:06:47 -0700388 if (!android::vold::writeStringToFile(options_string, options_filename)) return false;
Paul Lawrence6e410592016-05-24 14:20:38 -0700389
Paul Crowley77df7f22020-01-23 15:29:30 -0800390 std::string ref_filename = std::string(DATA_MNT_POINT) + fscrypt_key_ref;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700391 if (!android::vold::writeStringToFile(device_policy.key_raw_ref, ref_filename)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700392 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800393
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700394 KeyBuffer per_boot_key;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800395 if (!generateStorageKey(options, &per_boot_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800396 EncryptionPolicy per_boot_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800397 if (!install_storage_key(DATA_MNT_POINT, options, per_boot_key, &per_boot_policy)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700398 std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref;
Paul Crowley77df7f22020-01-23 15:29:30 -0800399 if (!android::vold::writeStringToFile(per_boot_policy.key_raw_ref, per_boot_ref_filename))
400 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700401 LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename;
402
Tommy Chiua98464f2019-03-26 14:14:19 +0800403 if (!android::vold::FsyncDirectory(device_key_dir)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700404 s_systemwide_keys_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000405 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800406}
407
Eric Biggersa701c452018-10-23 13:06:55 -0700408bool fscrypt_init_user0() {
409 LOG(DEBUG) << "fscrypt_init_user0";
410 if (fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000411 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
412 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
413 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700414 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000415 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000416 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700417 // TODO: switch to loading only DE_0 here once framework makes
418 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000419 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000420 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700421 // We can only safely prepare DE storage here, since CE keys are probably
422 // entangled with user credentials. The framework will always prepare CE
423 // storage once CE keys are installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700424 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700425 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000426 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700427 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700428
429 // If this is a non-FBE device that recently left an emulated mode,
430 // restore user data directories to known-good state.
Eric Biggersa701c452018-10-23 13:06:55 -0700431 if (!fscrypt_is_native() && !fscrypt_is_emulated()) {
432 fscrypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700433 }
434
Paul Crowley76107cb2016-02-09 10:04:39 +0000435 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000436}
437
Eric Biggersa701c452018-10-23 13:06:55 -0700438bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
439 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
440 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000441 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000442 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000443 // FIXME test for existence of key that is not loaded yet
Paul Crowley77df7f22020-01-23 15:29:30 -0800444 if (s_ce_policies.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700445 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800446 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000447 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000448 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800449 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000450 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000451 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000452 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000453 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800454}
455
Eric Biggersce368682019-04-03 15:44:06 -0700456// "Lock" all encrypted directories whose key has been removed. This is needed
Eric Biggersf3dc4202019-09-30 13:05:58 -0700457// in the case where the keys are being put in the session keyring (rather in
458// the newer filesystem-level keyrings), because removing a key from the session
459// keyring doesn't affect inodes in the kernel's inode cache whose per-file key
460// was already set up. So to remove the per-file keys and make the files
461// "appear encrypted", these inodes must be evicted.
Eric Biggersce368682019-04-03 15:44:06 -0700462//
463// To do this, sync() to clean all dirty inodes, then drop all reclaimable slab
464// objects systemwide. This is overkill, but it's the best available method
465// currently. Don't use drop_caches mode "3" because that also evicts pagecache
466// for in-use files; all files relevant here are already closed and sync'ed.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700467static void drop_caches_if_needed() {
468 if (android::vold::isFsKeyringSupported()) {
469 return;
470 }
Pavel Grafovb350ed02017-07-27 17:34:57 +0100471 sync();
Eric Biggersce368682019-04-03 15:44:06 -0700472 if (!writeStringToFile("2", "/proc/sys/vm/drop_caches")) {
Pavel Grafovb350ed02017-07-27 17:34:57 +0100473 PLOG(ERROR) << "Failed to drop caches during key eviction";
474 }
475}
476
Andrew Scull7ec25c72016-10-31 10:28:25 +0000477static bool evict_ce_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000478 bool success = true;
Paul Crowley77df7f22020-01-23 15:29:30 -0800479 EncryptionPolicy policy;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000480 // If we haven't loaded the CE key, no need to evict it.
Paul Crowley77df7f22020-01-23 15:29:30 -0800481 if (lookup_policy(s_ce_policies, user_id, &policy)) {
482 success &= android::vold::evictKey(DATA_MNT_POINT, policy);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700483 drop_caches_if_needed();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000484 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800485 s_ce_policies.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000486 return success;
487}
488
Eric Biggersa701c452018-10-23 13:06:55 -0700489bool fscrypt_destroy_user_key(userid_t user_id) {
490 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
491 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000492 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000493 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000494 bool success = true;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000495 success &= evict_ce_key(user_id);
Paul Crowley77df7f22020-01-23 15:29:30 -0800496 EncryptionPolicy de_policy;
497 success &= lookup_policy(s_de_policies, user_id, &de_policy) &&
498 android::vold::evictKey(DATA_MNT_POINT, de_policy);
499 s_de_policies.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000500 auto it = s_ephemeral_users.find(user_id);
501 if (it != s_ephemeral_users.end()) {
502 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000503 } else {
Paul Crowley14c8c072018-09-18 13:30:21 -0700504 for (auto const path : get_ce_key_paths(get_ce_key_directory_path(user_id))) {
Paul Crowleya3630362016-05-17 14:17:56 -0700505 success &= android::vold::destroyKey(path);
506 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700507 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700508 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700509 success &= android::vold::destroyKey(de_key_path);
510 } else {
511 LOG(INFO) << "Not present so not erasing: " << de_key_path;
512 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100513 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000514 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100515}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800516
Paul Crowley76107cb2016-02-09 10:04:39 +0000517static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700518 if (chmod(path.c_str(), 0000) != 0) {
519 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000520 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700521 }
522#if EMULATED_USES_SELINUX
523 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
524 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000525 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700526 }
527#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000528 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700529}
530
Paul Crowley76107cb2016-02-09 10:04:39 +0000531static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700532 if (chmod(path.c_str(), mode) != 0) {
533 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000534 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700535 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700536 }
537#if EMULATED_USES_SELINUX
538 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
539 PLOG(WARNING) << "Failed to restorecon " << 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#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000544 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700545}
546
Paul Crowley3b71fc52017-10-09 10:55:21 -0700547static bool parse_hex(const std::string& hex, std::string* result) {
548 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800549 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000550 return true;
551 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800552 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800553 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000554 return false;
555 }
556 return true;
557}
558
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700559static std::optional<android::vold::KeyAuthentication> authentication_from_hex(
560 const std::string& token_hex, const std::string& secret_hex) {
561 std::string token, secret;
562 if (!parse_hex(token_hex, &token)) return std::optional<android::vold::KeyAuthentication>();
563 if (!parse_hex(secret_hex, &secret)) return std::optional<android::vold::KeyAuthentication>();
564 if (secret.empty()) {
565 return kEmptyAuthentication;
566 } else {
567 return android::vold::KeyAuthentication(token, secret);
568 }
569}
570
Paul Crowley3aa914d2017-10-09 16:35:51 -0700571static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
572 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
573}
574
Paul Crowley26a53882017-10-26 11:16:39 -0700575static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
576 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
577}
578
Paul Crowley3aa914d2017-10-09 16:35:51 -0700579static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
Paul Crowley5e53ff62019-10-24 14:55:17 -0700580 EncryptionPolicy* policy) {
Paul Crowley26a53882017-10-26 11:16:39 -0700581 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
582 std::string secdiscardable_hash;
583 if (android::vold::pathExists(secdiscardable_path)) {
584 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
585 return false;
586 } else {
587 if (fs_mkdirs(secdiscardable_path.c_str(), 0700) != 0) {
588 PLOG(ERROR) << "Creating directories for: " << secdiscardable_path;
589 return false;
590 }
591 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
592 return false;
593 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700594 auto key_path = volkey_path(misc_path, volume_uuid);
595 if (fs_mkdirs(key_path.c_str(), 0700) != 0) {
596 PLOG(ERROR) << "Creating directories for: " << key_path;
597 return false;
598 }
Paul Crowley26a53882017-10-26 11:16:39 -0700599 android::vold::KeyAuthentication auth("", secdiscardable_hash);
Eric Biggers83a73d72019-09-30 13:06:47 -0700600
Paul Crowley77df7f22020-01-23 15:29:30 -0800601 EncryptionOptions options;
602 if (!get_volume_file_encryption_options(&options)) return false;
603 KeyBuffer key;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800604 if (!android::vold::retrieveKey(true, auth, key_path, key_path + "_tmp", options, &key))
605 return false;
606 if (!install_storage_key(BuildDataPath(volume_uuid), options, key, policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800607 return true;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700608}
609
610static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700611 auto path = volkey_path(misc_path, volume_uuid);
612 if (!android::vold::pathExists(path)) return true;
613 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700614}
615
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700616static bool fscrypt_rewrap_user_key(userid_t user_id, int serial,
617 const android::vold::KeyAuthentication& retrieve_auth,
618 const android::vold::KeyAuthentication& store_auth) {
619 if (s_ephemeral_users.count(user_id) != 0) return true;
620 auto const directory_path = get_ce_key_directory_path(user_id);
621 KeyBuffer ce_key;
622 std::string ce_key_current_path = get_ce_key_current_path(directory_path);
623 if (android::vold::retrieveKey(ce_key_current_path, retrieve_auth, &ce_key)) {
624 LOG(DEBUG) << "Successfully retrieved key";
625 // TODO(147732812): Remove this once Locksettingservice is fixed.
626 // Currently it calls fscrypt_clear_user_key_auth with a secret when lockscreen is
627 // changed from swipe to none or vice-versa
628 } else if (android::vold::retrieveKey(ce_key_current_path, kEmptyAuthentication, &ce_key)) {
629 LOG(DEBUG) << "Successfully retrieved key with empty auth";
630 } else {
631 LOG(ERROR) << "Failed to retrieve key for user " << user_id;
632 return false;
633 }
634 auto const paths = get_ce_key_paths(directory_path);
635 std::string ce_key_path;
636 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
637 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, store_auth, ce_key))
638 return false;
639 if (!android::vold::FsyncDirectory(directory_path)) return false;
640 return true;
641}
642
Eric Biggersa701c452018-10-23 13:06:55 -0700643bool fscrypt_add_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700644 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700645 LOG(DEBUG) << "fscrypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700646 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700647 if (!fscrypt_is_native()) return true;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700648 auto auth = authentication_from_hex(token_hex, secret_hex);
649 if (!auth) return false;
650 return fscrypt_rewrap_user_key(user_id, serial, kEmptyAuthentication, *auth);
651}
652
653bool fscrypt_clear_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
654 const std::string& secret_hex) {
655 LOG(DEBUG) << "fscrypt_clear_user_key_auth " << user_id << " serial=" << serial
656 << " token_present=" << (token_hex != "!");
657 if (!fscrypt_is_native()) return true;
658 auto auth = authentication_from_hex(token_hex, secret_hex);
659 if (!auth) return false;
660 return fscrypt_rewrap_user_key(user_id, serial, *auth, kEmptyAuthentication);
Paul Crowleya3630362016-05-17 14:17:56 -0700661}
662
Eric Biggersa701c452018-10-23 13:06:55 -0700663bool fscrypt_fixate_newest_user_key_auth(userid_t user_id) {
664 LOG(DEBUG) << "fscrypt_fixate_newest_user_key_auth " << user_id;
665 if (!fscrypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700666 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700667 auto const directory_path = get_ce_key_directory_path(user_id);
668 auto const paths = get_ce_key_paths(directory_path);
669 if (paths.empty()) {
670 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
671 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000672 }
Paul Crowleya3630362016-05-17 14:17:56 -0700673 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000674 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000675}
676
Jeff Sharkey47695b22016-02-01 17:02:29 -0700677// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Eric Biggersa701c452018-10-23 13:06:55 -0700678bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700679 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700680 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700681 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700682 if (fscrypt_is_native()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800683 if (s_ce_policies.count(user_id) != 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000684 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000685 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000686 }
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700687 auto auth = authentication_from_hex(token_hex, secret_hex);
688 if (!auth) return false;
689 if (!read_and_install_user_ce_key(user_id, *auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000690 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000691 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800692 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700693 } else {
694 // When in emulation mode, we just use chmod. However, we also
695 // unlock directories when not in emulation mode, to bring devices
696 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000697 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800698 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700699 !emulated_unlock(android::vold::BuildDataMediaCePath("", user_id), 0770) ||
700 !emulated_unlock(android::vold::BuildDataUserCePath("", user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700701 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000702 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700703 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800704 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000705 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800706}
707
Jeff Sharkey47695b22016-02-01 17:02:29 -0700708// TODO: rename to 'evict' for consistency
Eric Biggersa701c452018-10-23 13:06:55 -0700709bool fscrypt_lock_user_key(userid_t user_id) {
710 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
711 if (fscrypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000712 return evict_ce_key(user_id);
Eric Biggersa701c452018-10-23 13:06:55 -0700713 } else if (fscrypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800714 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000715 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800716 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700717 !emulated_lock(android::vold::BuildDataMediaCePath("", user_id)) ||
718 !emulated_lock(android::vold::BuildDataUserCePath("", user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000719 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000720 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800721 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800722 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700723
Paul Crowley76107cb2016-02-09 10:04:39 +0000724 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800725}
726
Paul Crowley82b41ff2017-10-20 08:17:54 -0700727static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
728 userid_t user_id, int flags) {
729 if (0 != android::vold::ForkExecvp(
730 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
731 std::to_string(user_id), std::to_string(flags)})) {
732 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700733 return false;
734 }
735 return true;
736}
737
Eric Biggersa701c452018-10-23 13:06:55 -0700738bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700739 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700740 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800741 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700742
Paul Crowley82b41ff2017-10-20 08:17:54 -0700743 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600744 // DE_sys key
745 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
746 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
747 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600748
749 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700750 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
751 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800752 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700753 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
754
Paul Crowley3b71fc52017-10-09 10:55:21 -0700755 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700756 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600757#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700758 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700759 multiuser_get_uid(user_id, AID_EVERYBODY)))
760 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600761#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700762 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600763
Paul Crowley6b756ce2017-10-05 14:07:09 -0700764 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
765 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800766 if (!prepare_dir(vendor_de_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700767 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000768 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000769
Eric Biggersa701c452018-10-23 13:06:55 -0700770 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700771 EncryptionPolicy de_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700772 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800773 if (!lookup_policy(s_de_policies, user_id, &de_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700774 if (!EnsurePolicy(de_policy, system_de_path)) return false;
775 if (!EnsurePolicy(de_policy, misc_de_path)) return false;
776 if (!EnsurePolicy(de_policy, vendor_de_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700777 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700778 if (!read_or_create_volkey(misc_de_path, volume_uuid, &de_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700779 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700780 if (!EnsurePolicy(de_policy, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700781 }
Paul Crowley285956f2016-01-20 13:12:38 +0000782 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800783
Paul Crowley82b41ff2017-10-20 08:17:54 -0700784 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600785 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700786 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
787 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800788 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600789 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
790 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800791
Paul Crowley3b71fc52017-10-09 10:55:21 -0700792 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700793 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
794 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800795 if (!prepare_dir(vendor_ce_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700796 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000797 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
798 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700799
Eric Biggersa701c452018-10-23 13:06:55 -0700800 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700801 EncryptionPolicy ce_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700802 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800803 if (!lookup_policy(s_ce_policies, user_id, &ce_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700804 if (!EnsurePolicy(ce_policy, system_ce_path)) return false;
805 if (!EnsurePolicy(ce_policy, misc_ce_path)) return false;
806 if (!EnsurePolicy(ce_policy, vendor_ce_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700807 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700808 if (!read_or_create_volkey(misc_ce_path, volume_uuid, &ce_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700809 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700810 if (!EnsurePolicy(ce_policy, media_ce_path)) return false;
811 if (!EnsurePolicy(ce_policy, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700812 }
Paul Crowley1a965262017-10-13 13:49:50 -0700813
814 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700815 // Now that credentials have been installed, we can run restorecon
816 // over these paths
817 // NOTE: these paths need to be kept in sync with libselinux
818 android::vold::RestoreconRecursive(system_ce_path);
Nick Kralevich6a3ef482019-05-14 09:30:29 -0700819 android::vold::RestoreconRecursive(vendor_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -0700820 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700821 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800822 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700823 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800824
Paul Crowley76107cb2016-02-09 10:04:39 +0000825 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800826}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600827
Eric Biggersa701c452018-10-23 13:06:55 -0700828bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
829 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600830 << ", user " << user_id << ", flags " << flags;
831 bool res = true;
832
Paul Crowley82b41ff2017-10-20 08:17:54 -0700833 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
834
835 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -0700836 // CE_n key
837 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
838 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800839 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -0700840 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
841 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
842
843 res &= destroy_dir(media_ce_path);
844 res &= destroy_dir(user_ce_path);
845 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700846 res &= destroy_dir(system_ce_path);
847 res &= destroy_dir(misc_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800848 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700849 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700850 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700851 res &= destroy_volkey(misc_ce_path, volume_uuid);
852 }
Paul Crowley8e550662017-10-16 17:01:44 -0700853 }
854 }
855
Paul Crowley82b41ff2017-10-20 08:17:54 -0700856 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600857 // DE_sys key
858 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
859 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
860 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600861
862 // DE_n key
863 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
864 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800865 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600866 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
867
Paul Crowley8e550662017-10-16 17:01:44 -0700868 res &= destroy_dir(user_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -0700869 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600870 res &= destroy_dir(system_legacy_path);
871#if MANAGE_MISC_DIRS
872 res &= destroy_dir(misc_legacy_path);
873#endif
874 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600875 res &= destroy_dir(system_de_path);
876 res &= destroy_dir(misc_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800877 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700878 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700879 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700880 res &= destroy_volkey(misc_de_path, volume_uuid);
881 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600882 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600883 }
884
885 return res;
886}
Rubin Xu2436e272017-04-27 20:43:10 +0100887
Paul Crowleyc6433a22017-10-24 14:54:43 -0700888static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
889 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
890 if (!dirp) {
891 PLOG(ERROR) << "Unable to open directory: " + directory_path;
892 return false;
893 }
894 bool res = true;
895 for (;;) {
896 errno = 0;
897 auto const entry = readdir(dirp.get());
898 if (!entry) {
899 if (errno) {
900 PLOG(ERROR) << "Unable to read directory: " + directory_path;
901 return false;
902 }
903 break;
904 }
905 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
906 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
907 continue;
908 }
909 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
910 }
911 return res;
912}
913
Eric Biggersa701c452018-10-23 13:06:55 -0700914bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700915 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -0700916 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -0700917 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
918 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -0700919 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
920 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
921 return res;
922}