blob: 8682bdc15249d08802fa143980333aeffe4592ba [file] [log] [blame]
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -08001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Eric Biggersa701c452018-10-23 13:06:55 -070017#include "FsCrypt.h"
Paul Lawrence731a7a22015-04-28 22:14:15 +000018
Paul Crowley1ef25582016-01-21 20:26:12 +000019#include "KeyStorage.h"
Paul Crowleyf71ace32016-06-02 11:01:19 -070020#include "KeyUtil.h"
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080021#include "Utils.h"
Paul Crowleya7ca40b2017-10-06 14:29:33 -070022#include "VoldUtil.h"
23
Paul Crowleya3630362016-05-17 14:17:56 -070024#include <algorithm>
Paul Lawrence731a7a22015-04-28 22:14:15 +000025#include <map>
Barani Muthukumaranb1927c22019-10-31 22:59:34 -070026#include <optional>
Paul Crowleyb1f3d242016-01-28 10:09:46 +000027#include <set>
Paul Lawrencefd7db732015-04-10 07:48:51 -070028#include <sstream>
Paul Crowleydf528a72016-03-09 09:31:37 -080029#include <string>
Paul Crowleyf71ace32016-06-02 11:01:19 -070030#include <vector>
Paul Lawrence731a7a22015-04-28 22:14:15 +000031
Paul Crowleydf528a72016-03-09 09:31:37 -080032#include <dirent.h>
33#include <errno.h>
34#include <fcntl.h>
Paul Crowleya3630362016-05-17 14:17:56 -070035#include <limits.h>
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070036#include <selinux/android.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080037#include <sys/mount.h>
38#include <sys/stat.h>
39#include <sys/types.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070040#include <unistd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000041
Paul Crowley480fcd22015-08-24 14:53:28 +010042#include <private/android_filesystem_config.h>
Martijn Coenenaee40512020-02-18 16:29:25 +010043#include <private/android_projectid_config.h>
Paul Crowley480fcd22015-08-24 14:53:28 +010044
Paul Crowley82b41ff2017-10-20 08:17:54 -070045#include "android/os/IVold.h"
46
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070047#define EMULATED_USES_SELINUX 0
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -060048#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070049
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080050#include <cutils/fs.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070051#include <cutils/properties.h>
52
Eric Biggersa701c452018-10-23 13:06:55 -070053#include <fscrypt/fscrypt.h>
Elliott Hughesc3bda182017-05-09 17:01:04 -070054#include <keyutils.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080055
Elliott Hughes7e128fb2015-12-04 15:50:53 -080056#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080057#include <android-base/logging.h>
Paul Crowley3aa914d2017-10-09 16:35:51 -070058#include <android-base/properties.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080059#include <android-base/stringprintf.h>
Eric Biggers83a73d72019-09-30 13:06:47 -070060#include <android-base/strings.h>
Jieb6698d52018-11-12 15:26:02 +080061#include <android-base/unique_fd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000062
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080063using android::base::StringPrintf;
Tom Cherry4c5bde22019-01-29 14:34:01 -080064using android::fs_mgr::GetEntryForMountPoint;
Paul Crowley77df7f22020-01-23 15:29:30 -080065using android::vold::BuildDataPath;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +010066using android::vold::IsFilesystemSupported;
Paul Crowley05720802016-02-08 15:55:41 +000067using android::vold::kEmptyAuthentication;
Pavel Grafove2e2d302017-08-01 17:15:53 +010068using android::vold::KeyBuffer;
Paul Crowleyb3d018a2020-02-12 11:04:05 -080069using android::vold::makeGen;
70using android::vold::retrieveKey;
71using android::vold::retrieveOrGenerateKey;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +010072using android::vold::SetQuotaInherit;
73using android::vold::SetQuotaProjectId;
Tommy Chiua98464f2019-03-26 14:14:19 +080074using android::vold::writeStringToFile;
Paul Crowley5e53ff62019-10-24 14:55:17 -070075using namespace android::fscrypt;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080076
Paul Lawrence731a7a22015-04-28 22:14:15 +000077namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000078
Eric Biggersa701c452018-10-23 13:06:55 -070079const std::string device_key_dir = std::string() + DATA_MNT_POINT + fscrypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080080const std::string device_key_path = device_key_dir + "/key";
81const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080082
Paul Crowleydf528a72016-03-09 09:31:37 -080083const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
84const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley82b41ff2017-10-20 08:17:54 -070085const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs";
Paul Crowley285956f2016-01-20 13:12:38 +000086
Paul Crowley26a53882017-10-26 11:16:39 -070087const std::string systemwide_volume_key_dir =
88 std::string() + DATA_MNT_POINT + "/misc/vold/volume_keys";
89
Paul Crowleyc8a3ef32019-09-11 15:00:08 -070090bool s_systemwide_keys_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080091
Paul Crowleydf528a72016-03-09 09:31:37 -080092// Some users are ephemeral, don't try to wipe their keys from disk
93std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080094
Paul Crowley77df7f22020-01-23 15:29:30 -080095// Map user ids to encryption policies
96std::map<userid_t, EncryptionPolicy> s_de_policies;
97std::map<userid_t, EncryptionPolicy> s_ce_policies;
Paul Lawrence731a7a22015-04-28 22:14:15 +000098
Paul Crowley14c8c072018-09-18 13:30:21 -070099} // namespace
Paul Lawrence731a7a22015-04-28 22:14:15 +0000100
Eric Biggersa701c452018-10-23 13:06:55 -0700101static bool fscrypt_is_emulated() {
Paul Crowley38132a12016-02-09 09:50:32 +0000102 return property_get_bool("persist.sys.emulate_fbe", false);
103}
104
Paul Crowley3b71fc52017-10-09 10:55:21 -0700105static const char* escape_empty(const std::string& value) {
106 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000107}
108
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000109static std::string get_de_key_path(userid_t user_id) {
110 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
111}
112
Paul Crowleya3630362016-05-17 14:17:56 -0700113static std::string get_ce_key_directory_path(userid_t user_id) {
114 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
115}
116
117// Returns the keys newest first
118static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
119 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
120 if (!dirp) {
121 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
122 return std::vector<std::string>();
123 }
124 std::vector<std::string> result;
125 for (;;) {
126 errno = 0;
127 auto const entry = readdir(dirp.get());
128 if (!entry) {
129 if (errno) {
130 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
131 return std::vector<std::string>();
132 }
133 break;
134 }
135 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
136 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
137 continue;
138 }
139 result.emplace_back(directory_path + "/" + entry->d_name);
140 }
141 std::sort(result.begin(), result.end());
142 std::reverse(result.begin(), result.end());
143 return result;
144}
145
146static std::string get_ce_key_current_path(const std::string& directory_path) {
147 return directory_path + "/current";
148}
149
150static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700151 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700152 if (paths.empty()) {
153 *ce_key_path = get_ce_key_current_path(directory_path);
154 return true;
155 }
156 for (unsigned int i = 0; i < UINT_MAX; i++) {
157 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
158 if (paths[0] < candidate) {
159 *ce_key_path = candidate;
160 return true;
161 }
162 }
163 return false;
164}
165
166// Discard all keys but the named one; rename it to canonical name.
167// No point in acting on errors in this; ignore them.
Paul Crowley14c8c072018-09-18 13:30:21 -0700168static void fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700169 const std::vector<std::string>& paths) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700170 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700171 if (other_path != to_fix) {
172 android::vold::destroyKey(other_path);
173 }
174 }
175 auto const current_path = get_ce_key_current_path(directory_path);
176 if (to_fix != current_path) {
177 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
178 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
179 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
Jieb6698d52018-11-12 15:26:02 +0800180 return;
Paul Crowleya3630362016-05-17 14:17:56 -0700181 }
182 }
Paul Crowley621d9b92018-12-07 15:36:09 -0800183 android::vold::FsyncDirectory(directory_path);
Paul Crowleya3630362016-05-17 14:17:56 -0700184}
185
186static bool read_and_fixate_user_ce_key(userid_t user_id,
187 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700188 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700189 auto const directory_path = get_ce_key_directory_path(user_id);
190 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700191 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700192 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800193 if (retrieveKey(ce_key_path, auth, ce_key)) {
Paul Crowleya3630362016-05-17 14:17:56 -0700194 LOG(DEBUG) << "Successfully retrieved key";
195 fixate_user_ce_key(directory_path, ce_key_path, paths);
196 return true;
197 }
198 }
199 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
200 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100201}
202
Eric Biggers83a73d72019-09-30 13:06:47 -0700203// Retrieve the options to use for encryption policies on the /data filesystem.
Paul Crowley77df7f22020-01-23 15:29:30 -0800204static bool get_data_file_encryption_options(EncryptionOptions* options) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700205 auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT);
206 if (entry == nullptr) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800207 LOG(ERROR) << "No mount point entry for " << DATA_MNT_POINT;
208 return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700209 }
Paul Crowleya50f6c32019-10-24 23:21:44 -0700210 if (!ParseOptions(entry->encryption_options, options)) {
211 LOG(ERROR) << "Unable to parse encryption options for " << DATA_MNT_POINT ": "
212 << entry->encryption_options;
Paul Crowley77df7f22020-01-23 15:29:30 -0800213 return false;
Paul Crowleya50f6c32019-10-24 23:21:44 -0700214 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800215 return true;
Eric Biggers83a73d72019-09-30 13:06:47 -0700216}
217
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800218static bool install_storage_key(const std::string& mountpoint, const EncryptionOptions& options,
219 const KeyBuffer& key, EncryptionPolicy* policy) {
220 KeyBuffer ephemeral_wrapped_key;
221 if (options.use_hw_wrapped_key) {
222 if (!exportWrappedStorageKey(key, &ephemeral_wrapped_key)) {
223 LOG(ERROR) << "Failed to get ephemeral wrapped key";
224 return false;
225 }
226 }
227 return installKey(mountpoint, options, options.use_hw_wrapped_key ? ephemeral_wrapped_key : key,
228 policy);
229}
230
Eric Biggers83a73d72019-09-30 13:06:47 -0700231// Retrieve the options to use for encryption policies on adoptable storage.
Paul Crowley5e53ff62019-10-24 14:55:17 -0700232static bool get_volume_file_encryption_options(EncryptionOptions* options) {
Paul Crowleyf612b8b2019-10-24 22:52:02 -0700233 auto contents_mode =
234 android::base::GetProperty("ro.crypto.volume.contents_mode", "aes-256-xts");
235 auto filenames_mode =
236 android::base::GetProperty("ro.crypto.volume.filenames_mode", "aes-256-heh");
Paul Crowley77df7f22020-01-23 15:29:30 -0800237 auto options_string = android::base::GetProperty("ro.crypto.volume.options",
238 contents_mode + ":" + filenames_mode + ":v1");
239 if (!ParseOptions(options_string, options)) {
240 LOG(ERROR) << "Unable to parse volume encryption options: " << options_string;
241 return false;
242 }
243 return true;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700244}
245
Paul Crowleydf528a72016-03-09 09:31:37 -0800246static bool read_and_install_user_ce_key(userid_t user_id,
247 const android::vold::KeyAuthentication& auth) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800248 if (s_ce_policies.count(user_id) != 0) return true;
249 EncryptionOptions options;
250 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100251 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700252 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800253 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800254 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800255 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000256 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000257 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000258}
259
Paul Crowleydf528a72016-03-09 09:31:37 -0800260static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000261 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000262 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
263 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000264 return false;
265 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000266 return true;
267}
268
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600269static bool destroy_dir(const std::string& dir) {
270 LOG(DEBUG) << "Destroying: " << dir;
271 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
272 PLOG(ERROR) << "Failed to destroy " << dir;
273 return false;
274 }
275 return true;
276}
277
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000278// NB this assumes that there is only one thread listening for crypt commands, because
279// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000280static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800281 EncryptionOptions options;
282 if (!get_data_file_encryption_options(&options)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100283 KeyBuffer de_key, ce_key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800284 if (!generateStorageKey(makeGen(options), &de_key)) return false;
285 if (!generateStorageKey(makeGen(options), &ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000286 if (create_ephemeral) {
287 // If the key should be created as ephemeral, don't store it.
288 s_ephemeral_users.insert(user_id);
289 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700290 auto const directory_path = get_ce_key_directory_path(user_id);
291 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
292 auto const paths = get_ce_key_paths(directory_path);
293 std::string ce_key_path;
294 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700295 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, kEmptyAuthentication,
296 ce_key))
297 return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700298 fixate_user_ce_key(directory_path, ce_key_path, paths);
299 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700300 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley14c8c072018-09-18 13:30:21 -0700301 kEmptyAuthentication, de_key))
302 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100303 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800304 EncryptionPolicy de_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800305 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800306 s_de_policies[user_id] = de_policy;
307 EncryptionPolicy ce_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800308 if (!install_storage_key(DATA_MNT_POINT, options, ce_key, &ce_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800309 s_ce_policies[user_id] = ce_policy;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000310 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000311 return true;
312}
313
Paul Crowley77df7f22020-01-23 15:29:30 -0800314static bool lookup_policy(const std::map<userid_t, EncryptionPolicy>& key_map, userid_t user_id,
315 EncryptionPolicy* policy) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000316 auto refi = key_map.find(user_id);
317 if (refi == key_map.end()) {
Eric Biggersd1034042019-04-02 10:38:15 -0700318 LOG(DEBUG) << "Cannot find key for " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000319 return false;
320 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800321 *policy = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000322 return true;
323}
324
Paul Crowleydf528a72016-03-09 09:31:37 -0800325static bool is_numeric(const char* name) {
326 for (const char* p = name; *p != '\0'; p++) {
327 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000328 }
329 return true;
330}
331
332static bool load_all_de_keys() {
Paul Crowley77df7f22020-01-23 15:29:30 -0800333 EncryptionOptions options;
334 if (!get_data_file_encryption_options(&options)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000335 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800336 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000337 if (!dirp) {
338 PLOG(ERROR) << "Unable to read de key directory";
339 return false;
340 }
341 for (;;) {
342 errno = 0;
343 auto entry = readdir(dirp.get());
344 if (!entry) {
345 if (errno) {
346 PLOG(ERROR) << "Unable to read de key directory";
347 return false;
348 }
349 break;
350 }
351 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
352 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
353 continue;
354 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600355 userid_t user_id = std::stoi(entry->d_name);
Paul Crowley77df7f22020-01-23 15:29:30 -0800356 if (s_de_policies.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000357 auto key_path = de_dir + "/" + entry->d_name;
Paul Crowley77df7f22020-01-23 15:29:30 -0800358 KeyBuffer de_key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800359 if (!retrieveKey(key_path, kEmptyAuthentication, &de_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800360 EncryptionPolicy de_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800361 if (!install_storage_key(DATA_MNT_POINT, options, de_key, &de_policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800362 s_de_policies[user_id] = de_policy;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000363 LOG(DEBUG) << "Installed de key for user " << user_id;
364 }
365 }
Eric Biggersa701c452018-10-23 13:06:55 -0700366 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000367 // correct policy set on them, and that no rogue ones exist.
368 return true;
369}
370
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700371bool fscrypt_initialize_systemwide_keys() {
372 LOG(INFO) << "fscrypt_initialize_systemwide_keys";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800373
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700374 if (s_systemwide_keys_initialized) {
Paul Crowley38132a12016-02-09 09:50:32 +0000375 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000376 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800377 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800378 EncryptionOptions options;
379 if (!get_data_file_encryption_options(&options)) return false;
380
381 KeyBuffer device_key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800382 if (!retrieveOrGenerateKey(device_key_path, device_key_temp, kEmptyAuthentication,
383 makeGen(options), &device_key))
Paul Crowley77df7f22020-01-23 15:29:30 -0800384 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800385
Paul Crowley5e53ff62019-10-24 14:55:17 -0700386 EncryptionPolicy device_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800387 if (!install_storage_key(DATA_MNT_POINT, options, device_key, &device_policy)) return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700388
Paul Crowley5e53ff62019-10-24 14:55:17 -0700389 std::string options_string;
390 if (!OptionsToString(device_policy.options, &options_string)) {
391 LOG(ERROR) << "Unable to serialize options";
392 return false;
393 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800394 std::string options_filename = std::string(DATA_MNT_POINT) + fscrypt_key_mode;
Eric Biggers83a73d72019-09-30 13:06:47 -0700395 if (!android::vold::writeStringToFile(options_string, options_filename)) return false;
Paul Lawrence6e410592016-05-24 14:20:38 -0700396
Paul Crowley77df7f22020-01-23 15:29:30 -0800397 std::string ref_filename = std::string(DATA_MNT_POINT) + fscrypt_key_ref;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700398 if (!android::vold::writeStringToFile(device_policy.key_raw_ref, ref_filename)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700399 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800400
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700401 KeyBuffer per_boot_key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800402 if (!generateStorageKey(makeGen(options), &per_boot_key)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800403 EncryptionPolicy per_boot_policy;
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800404 if (!install_storage_key(DATA_MNT_POINT, options, per_boot_key, &per_boot_policy)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700405 std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref;
Paul Crowley77df7f22020-01-23 15:29:30 -0800406 if (!android::vold::writeStringToFile(per_boot_policy.key_raw_ref, per_boot_ref_filename))
407 return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700408 LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename;
409
Tommy Chiua98464f2019-03-26 14:14:19 +0800410 if (!android::vold::FsyncDirectory(device_key_dir)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700411 s_systemwide_keys_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000412 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800413}
414
Eric Biggersa701c452018-10-23 13:06:55 -0700415bool fscrypt_init_user0() {
416 LOG(DEBUG) << "fscrypt_init_user0";
417 if (fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000418 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
419 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
420 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700421 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000422 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000423 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700424 // TODO: switch to loading only DE_0 here once framework makes
425 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000426 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000427 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700428 // We can only safely prepare DE storage here, since CE keys are probably
429 // entangled with user credentials. The framework will always prepare CE
430 // storage once CE keys are installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700431 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700432 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000433 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700434 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700435
436 // If this is a non-FBE device that recently left an emulated mode,
437 // restore user data directories to known-good state.
Eric Biggersa701c452018-10-23 13:06:55 -0700438 if (!fscrypt_is_native() && !fscrypt_is_emulated()) {
439 fscrypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700440 }
441
Paul Crowley76107cb2016-02-09 10:04:39 +0000442 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000443}
444
Eric Biggersa701c452018-10-23 13:06:55 -0700445bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
446 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
447 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000448 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000449 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000450 // FIXME test for existence of key that is not loaded yet
Paul Crowley77df7f22020-01-23 15:29:30 -0800451 if (s_ce_policies.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700452 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800453 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000454 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000455 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800456 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000457 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000458 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000459 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000460 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800461}
462
Eric Biggersce368682019-04-03 15:44:06 -0700463// "Lock" all encrypted directories whose key has been removed. This is needed
Eric Biggersf3dc4202019-09-30 13:05:58 -0700464// in the case where the keys are being put in the session keyring (rather in
465// the newer filesystem-level keyrings), because removing a key from the session
466// keyring doesn't affect inodes in the kernel's inode cache whose per-file key
467// was already set up. So to remove the per-file keys and make the files
468// "appear encrypted", these inodes must be evicted.
Eric Biggersce368682019-04-03 15:44:06 -0700469//
470// To do this, sync() to clean all dirty inodes, then drop all reclaimable slab
471// objects systemwide. This is overkill, but it's the best available method
472// currently. Don't use drop_caches mode "3" because that also evicts pagecache
473// for in-use files; all files relevant here are already closed and sync'ed.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700474static void drop_caches_if_needed() {
475 if (android::vold::isFsKeyringSupported()) {
476 return;
477 }
Pavel Grafovb350ed02017-07-27 17:34:57 +0100478 sync();
Eric Biggersce368682019-04-03 15:44:06 -0700479 if (!writeStringToFile("2", "/proc/sys/vm/drop_caches")) {
Pavel Grafovb350ed02017-07-27 17:34:57 +0100480 PLOG(ERROR) << "Failed to drop caches during key eviction";
481 }
482}
483
Andrew Scull7ec25c72016-10-31 10:28:25 +0000484static bool evict_ce_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000485 bool success = true;
Paul Crowley77df7f22020-01-23 15:29:30 -0800486 EncryptionPolicy policy;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000487 // If we haven't loaded the CE key, no need to evict it.
Paul Crowley77df7f22020-01-23 15:29:30 -0800488 if (lookup_policy(s_ce_policies, user_id, &policy)) {
489 success &= android::vold::evictKey(DATA_MNT_POINT, policy);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700490 drop_caches_if_needed();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000491 }
Paul Crowley77df7f22020-01-23 15:29:30 -0800492 s_ce_policies.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000493 return success;
494}
495
Eric Biggersa701c452018-10-23 13:06:55 -0700496bool fscrypt_destroy_user_key(userid_t user_id) {
497 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
498 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000499 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000500 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000501 bool success = true;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000502 success &= evict_ce_key(user_id);
Paul Crowley77df7f22020-01-23 15:29:30 -0800503 EncryptionPolicy de_policy;
504 success &= lookup_policy(s_de_policies, user_id, &de_policy) &&
505 android::vold::evictKey(DATA_MNT_POINT, de_policy);
506 s_de_policies.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000507 auto it = s_ephemeral_users.find(user_id);
508 if (it != s_ephemeral_users.end()) {
509 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000510 } else {
Paul Crowley14c8c072018-09-18 13:30:21 -0700511 for (auto const path : get_ce_key_paths(get_ce_key_directory_path(user_id))) {
Paul Crowleya3630362016-05-17 14:17:56 -0700512 success &= android::vold::destroyKey(path);
513 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700514 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700515 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700516 success &= android::vold::destroyKey(de_key_path);
517 } else {
518 LOG(INFO) << "Not present so not erasing: " << de_key_path;
519 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100520 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000521 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100522}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800523
Paul Crowley76107cb2016-02-09 10:04:39 +0000524static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700525 if (chmod(path.c_str(), 0000) != 0) {
526 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000527 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700528 }
529#if EMULATED_USES_SELINUX
530 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
531 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000532 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700533 }
534#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000535 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700536}
537
Paul Crowley76107cb2016-02-09 10:04:39 +0000538static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700539 if (chmod(path.c_str(), mode) != 0) {
540 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000541 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700542 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700543 }
544#if EMULATED_USES_SELINUX
545 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
546 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000547 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700548 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700549 }
550#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000551 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700552}
553
Paul Crowley3b71fc52017-10-09 10:55:21 -0700554static bool parse_hex(const std::string& hex, std::string* result) {
555 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800556 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000557 return true;
558 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800559 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800560 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000561 return false;
562 }
563 return true;
564}
565
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700566static std::optional<android::vold::KeyAuthentication> authentication_from_hex(
567 const std::string& token_hex, const std::string& secret_hex) {
568 std::string token, secret;
569 if (!parse_hex(token_hex, &token)) return std::optional<android::vold::KeyAuthentication>();
570 if (!parse_hex(secret_hex, &secret)) return std::optional<android::vold::KeyAuthentication>();
571 if (secret.empty()) {
572 return kEmptyAuthentication;
573 } else {
574 return android::vold::KeyAuthentication(token, secret);
575 }
576}
577
Paul Crowley3aa914d2017-10-09 16:35:51 -0700578static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
579 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
580}
581
Paul Crowley26a53882017-10-26 11:16:39 -0700582static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
583 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
584}
585
Paul Crowley3aa914d2017-10-09 16:35:51 -0700586static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
Paul Crowley5e53ff62019-10-24 14:55:17 -0700587 EncryptionPolicy* policy) {
Paul Crowley26a53882017-10-26 11:16:39 -0700588 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
589 std::string secdiscardable_hash;
590 if (android::vold::pathExists(secdiscardable_path)) {
591 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
592 return false;
593 } else {
594 if (fs_mkdirs(secdiscardable_path.c_str(), 0700) != 0) {
595 PLOG(ERROR) << "Creating directories for: " << secdiscardable_path;
596 return false;
597 }
598 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
599 return false;
600 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700601 auto key_path = volkey_path(misc_path, volume_uuid);
602 if (fs_mkdirs(key_path.c_str(), 0700) != 0) {
603 PLOG(ERROR) << "Creating directories for: " << key_path;
604 return false;
605 }
Paul Crowley26a53882017-10-26 11:16:39 -0700606 android::vold::KeyAuthentication auth("", secdiscardable_hash);
Eric Biggers83a73d72019-09-30 13:06:47 -0700607
Paul Crowley77df7f22020-01-23 15:29:30 -0800608 EncryptionOptions options;
609 if (!get_volume_file_encryption_options(&options)) return false;
610 KeyBuffer key;
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800611 if (!retrieveOrGenerateKey(key_path, key_path + "_tmp", auth, makeGen(options), &key))
Barani Muthukumaran3dfb0942020-02-03 13:06:45 -0800612 return false;
613 if (!install_storage_key(BuildDataPath(volume_uuid), options, key, policy)) return false;
Paul Crowley77df7f22020-01-23 15:29:30 -0800614 return true;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700615}
616
617static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700618 auto path = volkey_path(misc_path, volume_uuid);
619 if (!android::vold::pathExists(path)) return true;
620 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700621}
622
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700623static bool fscrypt_rewrap_user_key(userid_t user_id, int serial,
624 const android::vold::KeyAuthentication& retrieve_auth,
625 const android::vold::KeyAuthentication& store_auth) {
626 if (s_ephemeral_users.count(user_id) != 0) return true;
627 auto const directory_path = get_ce_key_directory_path(user_id);
628 KeyBuffer ce_key;
629 std::string ce_key_current_path = get_ce_key_current_path(directory_path);
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800630 if (retrieveKey(ce_key_current_path, retrieve_auth, &ce_key)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700631 LOG(DEBUG) << "Successfully retrieved key";
632 // TODO(147732812): Remove this once Locksettingservice is fixed.
633 // Currently it calls fscrypt_clear_user_key_auth with a secret when lockscreen is
634 // changed from swipe to none or vice-versa
Paul Crowleyb3d018a2020-02-12 11:04:05 -0800635 } else if (retrieveKey(ce_key_current_path, kEmptyAuthentication, &ce_key)) {
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700636 LOG(DEBUG) << "Successfully retrieved key with empty auth";
637 } else {
638 LOG(ERROR) << "Failed to retrieve key for user " << user_id;
639 return false;
640 }
641 auto const paths = get_ce_key_paths(directory_path);
642 std::string ce_key_path;
643 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
644 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, store_auth, ce_key))
645 return false;
646 if (!android::vold::FsyncDirectory(directory_path)) return false;
647 return true;
648}
649
Eric Biggersa701c452018-10-23 13:06:55 -0700650bool fscrypt_add_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700651 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700652 LOG(DEBUG) << "fscrypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700653 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700654 if (!fscrypt_is_native()) return true;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700655 auto auth = authentication_from_hex(token_hex, secret_hex);
656 if (!auth) return false;
657 return fscrypt_rewrap_user_key(user_id, serial, kEmptyAuthentication, *auth);
658}
659
660bool fscrypt_clear_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
661 const std::string& secret_hex) {
662 LOG(DEBUG) << "fscrypt_clear_user_key_auth " << user_id << " serial=" << serial
663 << " token_present=" << (token_hex != "!");
664 if (!fscrypt_is_native()) return true;
665 auto auth = authentication_from_hex(token_hex, secret_hex);
666 if (!auth) return false;
667 return fscrypt_rewrap_user_key(user_id, serial, *auth, kEmptyAuthentication);
Paul Crowleya3630362016-05-17 14:17:56 -0700668}
669
Eric Biggersa701c452018-10-23 13:06:55 -0700670bool fscrypt_fixate_newest_user_key_auth(userid_t user_id) {
671 LOG(DEBUG) << "fscrypt_fixate_newest_user_key_auth " << user_id;
672 if (!fscrypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700673 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700674 auto const directory_path = get_ce_key_directory_path(user_id);
675 auto const paths = get_ce_key_paths(directory_path);
676 if (paths.empty()) {
677 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
678 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000679 }
Paul Crowleya3630362016-05-17 14:17:56 -0700680 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000681 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000682}
683
Jeff Sharkey47695b22016-02-01 17:02:29 -0700684// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Eric Biggersa701c452018-10-23 13:06:55 -0700685bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700686 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700687 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700688 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700689 if (fscrypt_is_native()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800690 if (s_ce_policies.count(user_id) != 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000691 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000692 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000693 }
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700694 auto auth = authentication_from_hex(token_hex, secret_hex);
695 if (!auth) return false;
696 if (!read_and_install_user_ce_key(user_id, *auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000697 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000698 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800699 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700700 } else {
701 // When in emulation mode, we just use chmod. However, we also
702 // unlock directories when not in emulation mode, to bring devices
703 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000704 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800705 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700706 !emulated_unlock(android::vold::BuildDataMediaCePath("", user_id), 0770) ||
707 !emulated_unlock(android::vold::BuildDataUserCePath("", user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700708 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000709 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700710 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800711 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000712 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800713}
714
Jeff Sharkey47695b22016-02-01 17:02:29 -0700715// TODO: rename to 'evict' for consistency
Eric Biggersa701c452018-10-23 13:06:55 -0700716bool fscrypt_lock_user_key(userid_t user_id) {
717 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
718 if (fscrypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000719 return evict_ce_key(user_id);
Eric Biggersa701c452018-10-23 13:06:55 -0700720 } else if (fscrypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800721 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000722 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800723 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700724 !emulated_lock(android::vold::BuildDataMediaCePath("", user_id)) ||
725 !emulated_lock(android::vold::BuildDataUserCePath("", user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000726 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000727 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800728 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800729 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700730
Paul Crowley76107cb2016-02-09 10:04:39 +0000731 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800732}
733
Paul Crowley82b41ff2017-10-20 08:17:54 -0700734static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
735 userid_t user_id, int flags) {
736 if (0 != android::vold::ForkExecvp(
737 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
738 std::to_string(user_id), std::to_string(flags)})) {
739 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700740 return false;
741 }
742 return true;
743}
744
Eric Biggersa701c452018-10-23 13:06:55 -0700745bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700746 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700747 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800748 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700749
Paul Crowley82b41ff2017-10-20 08:17:54 -0700750 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600751 // DE_sys key
752 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
753 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
754 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600755
756 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700757 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
758 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800759 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700760 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
761
Paul Crowley3b71fc52017-10-09 10:55:21 -0700762 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700763 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600764#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700765 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700766 multiuser_get_uid(user_id, AID_EVERYBODY)))
767 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600768#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700769 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600770
Paul Crowley6b756ce2017-10-05 14:07:09 -0700771 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
772 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800773 if (!prepare_dir(vendor_de_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700774 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000775 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000776
Eric Biggersa701c452018-10-23 13:06:55 -0700777 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700778 EncryptionPolicy de_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700779 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800780 if (!lookup_policy(s_de_policies, user_id, &de_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700781 if (!EnsurePolicy(de_policy, system_de_path)) return false;
782 if (!EnsurePolicy(de_policy, misc_de_path)) return false;
783 if (!EnsurePolicy(de_policy, vendor_de_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700784 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700785 if (!read_or_create_volkey(misc_de_path, volume_uuid, &de_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700786 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700787 if (!EnsurePolicy(de_policy, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700788 }
Paul Crowley285956f2016-01-20 13:12:38 +0000789 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800790
Paul Crowley82b41ff2017-10-20 08:17:54 -0700791 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600792 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700793 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
794 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800795 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600796 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
797 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800798
Paul Crowley3b71fc52017-10-09 10:55:21 -0700799 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700800 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
801 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800802 if (!prepare_dir(vendor_ce_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700803 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000804 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +0100805 // Setup quota project ID and inheritance policy
806 if (!IsFilesystemSupported("sdcardfs")) {
807 if (SetQuotaInherit(media_ce_path) != 0) return false;
Martijn Coenenaee40512020-02-18 16:29:25 +0100808 if (SetQuotaProjectId(media_ce_path,
809 multiuser_get_uid(user_id, PROJECT_ID_EXT_DEFAULT)) != 0) {
Martijn Coenenfd9cdbf2020-02-11 14:20:29 +0100810 return false;
811 }
812 }
813
Paul Crowley76107cb2016-02-09 10:04:39 +0000814 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700815
Eric Biggersa701c452018-10-23 13:06:55 -0700816 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700817 EncryptionPolicy ce_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700818 if (volume_uuid.empty()) {
Paul Crowley77df7f22020-01-23 15:29:30 -0800819 if (!lookup_policy(s_ce_policies, user_id, &ce_policy)) return false;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700820 if (!EnsurePolicy(ce_policy, system_ce_path)) return false;
821 if (!EnsurePolicy(ce_policy, misc_ce_path)) return false;
822 if (!EnsurePolicy(ce_policy, vendor_ce_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700823 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700824 if (!read_or_create_volkey(misc_ce_path, volume_uuid, &ce_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700825 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700826 if (!EnsurePolicy(ce_policy, media_ce_path)) return false;
827 if (!EnsurePolicy(ce_policy, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700828 }
Paul Crowley1a965262017-10-13 13:49:50 -0700829
830 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700831 // Now that credentials have been installed, we can run restorecon
832 // over these paths
833 // NOTE: these paths need to be kept in sync with libselinux
834 android::vold::RestoreconRecursive(system_ce_path);
Nick Kralevich6a3ef482019-05-14 09:30:29 -0700835 android::vold::RestoreconRecursive(vendor_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -0700836 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700837 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800838 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700839 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800840
Paul Crowley76107cb2016-02-09 10:04:39 +0000841 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800842}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600843
Eric Biggersa701c452018-10-23 13:06:55 -0700844bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
845 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600846 << ", user " << user_id << ", flags " << flags;
847 bool res = true;
848
Paul Crowley82b41ff2017-10-20 08:17:54 -0700849 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
850
851 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -0700852 // CE_n key
853 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
854 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800855 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -0700856 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
857 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
858
859 res &= destroy_dir(media_ce_path);
860 res &= destroy_dir(user_ce_path);
861 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700862 res &= destroy_dir(system_ce_path);
863 res &= destroy_dir(misc_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800864 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700865 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700866 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700867 res &= destroy_volkey(misc_ce_path, volume_uuid);
868 }
Paul Crowley8e550662017-10-16 17:01:44 -0700869 }
870 }
871
Paul Crowley82b41ff2017-10-20 08:17:54 -0700872 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600873 // DE_sys key
874 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
875 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
876 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600877
878 // DE_n key
879 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
880 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800881 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600882 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
883
Paul Crowley8e550662017-10-16 17:01:44 -0700884 res &= destroy_dir(user_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -0700885 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600886 res &= destroy_dir(system_legacy_path);
887#if MANAGE_MISC_DIRS
888 res &= destroy_dir(misc_legacy_path);
889#endif
890 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600891 res &= destroy_dir(system_de_path);
892 res &= destroy_dir(misc_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800893 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700894 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700895 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700896 res &= destroy_volkey(misc_de_path, volume_uuid);
897 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600898 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600899 }
900
901 return res;
902}
Rubin Xu2436e272017-04-27 20:43:10 +0100903
Paul Crowleyc6433a22017-10-24 14:54:43 -0700904static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
905 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
906 if (!dirp) {
907 PLOG(ERROR) << "Unable to open directory: " + directory_path;
908 return false;
909 }
910 bool res = true;
911 for (;;) {
912 errno = 0;
913 auto const entry = readdir(dirp.get());
914 if (!entry) {
915 if (errno) {
916 PLOG(ERROR) << "Unable to read directory: " + directory_path;
917 return false;
918 }
919 break;
920 }
921 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
922 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
923 continue;
924 }
925 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
926 }
927 return res;
928}
929
Eric Biggersa701c452018-10-23 13:06:55 -0700930bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700931 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -0700932 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -0700933 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
934 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -0700935 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
936 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
937 return res;
938}