blob: 603362fb07f87c394b73dfc35e01f38846dc6f89 [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
Paul Lawrence731a7a22015-04-28 22:14:15 +000046#include "cryptfs.h"
47
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070048#define EMULATED_USES_SELINUX 0
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -060049#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070050
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080051#include <cutils/fs.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070052#include <cutils/properties.h>
53
Eric Biggersa701c452018-10-23 13:06:55 -070054#include <fscrypt/fscrypt.h>
Elliott Hughesc3bda182017-05-09 17:01:04 -070055#include <keyutils.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080056
Elliott Hughes7e128fb2015-12-04 15:50:53 -080057#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080058#include <android-base/logging.h>
Paul Crowley3aa914d2017-10-09 16:35:51 -070059#include <android-base/properties.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080060#include <android-base/stringprintf.h>
Eric Biggers83a73d72019-09-30 13:06:47 -070061#include <android-base/strings.h>
Jieb6698d52018-11-12 15:26:02 +080062#include <android-base/unique_fd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000063
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080064using android::base::StringPrintf;
Tom Cherry4c5bde22019-01-29 14:34:01 -080065using android::fs_mgr::GetEntryForMountPoint;
Paul Crowley05720802016-02-08 15:55:41 +000066using android::vold::kEmptyAuthentication;
Pavel Grafove2e2d302017-08-01 17:15:53 +010067using android::vold::KeyBuffer;
Tommy Chiua98464f2019-03-26 14:14:19 +080068using android::vold::writeStringToFile;
Paul Crowley5e53ff62019-10-24 14:55:17 -070069using namespace android::fscrypt;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080070
Paul Lawrence731a7a22015-04-28 22:14:15 +000071namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000072
Eric Biggersa701c452018-10-23 13:06:55 -070073const std::string device_key_dir = std::string() + DATA_MNT_POINT + fscrypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080074const std::string device_key_path = device_key_dir + "/key";
75const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080076
Paul Crowleydf528a72016-03-09 09:31:37 -080077const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
78const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley82b41ff2017-10-20 08:17:54 -070079const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs";
Paul Crowley285956f2016-01-20 13:12:38 +000080
Paul Crowley26a53882017-10-26 11:16:39 -070081const std::string systemwide_volume_key_dir =
82 std::string() + DATA_MNT_POINT + "/misc/vold/volume_keys";
83
Paul Crowleyc8a3ef32019-09-11 15:00:08 -070084bool s_systemwide_keys_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080085
Paul Crowleydf528a72016-03-09 09:31:37 -080086// Some users are ephemeral, don't try to wipe their keys from disk
87std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080088
Paul Crowleydf528a72016-03-09 09:31:37 -080089// Map user ids to key references
90std::map<userid_t, std::string> s_de_key_raw_refs;
91std::map<userid_t, std::string> s_ce_key_raw_refs;
Paul Lawrence731a7a22015-04-28 22:14:15 +000092
Paul Crowley14c8c072018-09-18 13:30:21 -070093} // namespace
Paul Lawrence731a7a22015-04-28 22:14:15 +000094
Eric Biggersa701c452018-10-23 13:06:55 -070095static bool fscrypt_is_emulated() {
Paul Crowley38132a12016-02-09 09:50:32 +000096 return property_get_bool("persist.sys.emulate_fbe", false);
97}
98
Paul Crowley3b71fc52017-10-09 10:55:21 -070099static const char* escape_empty(const std::string& value) {
100 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000101}
102
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000103static std::string get_de_key_path(userid_t user_id) {
104 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
105}
106
Paul Crowleya3630362016-05-17 14:17:56 -0700107static std::string get_ce_key_directory_path(userid_t user_id) {
108 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
109}
110
111// Returns the keys newest first
112static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
113 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
114 if (!dirp) {
115 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
116 return std::vector<std::string>();
117 }
118 std::vector<std::string> result;
119 for (;;) {
120 errno = 0;
121 auto const entry = readdir(dirp.get());
122 if (!entry) {
123 if (errno) {
124 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
125 return std::vector<std::string>();
126 }
127 break;
128 }
129 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
130 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
131 continue;
132 }
133 result.emplace_back(directory_path + "/" + entry->d_name);
134 }
135 std::sort(result.begin(), result.end());
136 std::reverse(result.begin(), result.end());
137 return result;
138}
139
140static std::string get_ce_key_current_path(const std::string& directory_path) {
141 return directory_path + "/current";
142}
143
144static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700145 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700146 if (paths.empty()) {
147 *ce_key_path = get_ce_key_current_path(directory_path);
148 return true;
149 }
150 for (unsigned int i = 0; i < UINT_MAX; i++) {
151 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
152 if (paths[0] < candidate) {
153 *ce_key_path = candidate;
154 return true;
155 }
156 }
157 return false;
158}
159
160// Discard all keys but the named one; rename it to canonical name.
161// No point in acting on errors in this; ignore them.
Paul Crowley14c8c072018-09-18 13:30:21 -0700162static void fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700163 const std::vector<std::string>& paths) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700164 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700165 if (other_path != to_fix) {
166 android::vold::destroyKey(other_path);
167 }
168 }
169 auto const current_path = get_ce_key_current_path(directory_path);
170 if (to_fix != current_path) {
171 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
172 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
173 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
Jieb6698d52018-11-12 15:26:02 +0800174 return;
Paul Crowleya3630362016-05-17 14:17:56 -0700175 }
176 }
Paul Crowley621d9b92018-12-07 15:36:09 -0800177 android::vold::FsyncDirectory(directory_path);
Paul Crowleya3630362016-05-17 14:17:56 -0700178}
179
180static bool read_and_fixate_user_ce_key(userid_t user_id,
181 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700182 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700183 auto const directory_path = get_ce_key_directory_path(user_id);
184 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700185 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700186 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
187 if (android::vold::retrieveKey(ce_key_path, auth, ce_key)) {
188 LOG(DEBUG) << "Successfully retrieved key";
189 fixate_user_ce_key(directory_path, ce_key_path, paths);
190 return true;
191 }
192 }
193 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
194 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100195}
196
Eric Biggers83a73d72019-09-30 13:06:47 -0700197// Retrieve the options to use for encryption policies on the /data filesystem.
Paul Crowley5e53ff62019-10-24 14:55:17 -0700198static void get_data_file_encryption_options(EncryptionOptions* options) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700199 auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT);
200 if (entry == nullptr) {
201 return;
202 }
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;
206 return;
207 }
Eric Biggers83a73d72019-09-30 13:06:47 -0700208}
209
210// Retrieve the version to use for encryption policies on the /data filesystem.
211static int get_data_file_policy_version(void) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700212 EncryptionOptions options;
213 get_data_file_encryption_options(&options);
214 return options.version;
Eric Biggers83a73d72019-09-30 13:06:47 -0700215}
216
217// Retrieve the options to use for encryption policies on adoptable storage.
Paul Crowley5e53ff62019-10-24 14:55:17 -0700218static bool get_volume_file_encryption_options(EncryptionOptions* options) {
Paul Crowleyf612b8b2019-10-24 22:52:02 -0700219 auto contents_mode =
220 android::base::GetProperty("ro.crypto.volume.contents_mode", "aes-256-xts");
221 auto filenames_mode =
222 android::base::GetProperty("ro.crypto.volume.filenames_mode", "aes-256-heh");
223 return ParseOptions(android::base::GetProperty("ro.crypto.volume.options",
224 contents_mode + ":" + filenames_mode + ":v1"),
225 options);
Eric Biggers83a73d72019-09-30 13:06:47 -0700226}
227
Eric Biggersf3dc4202019-09-30 13:05:58 -0700228// Install a key for use by encrypted files on the /data filesystem.
229static bool install_data_key(const KeyBuffer& key, std::string* raw_ref) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700230 return android::vold::installKey(key, DATA_MNT_POINT, get_data_file_policy_version(), raw_ref);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700231}
232
233// Evict a key for use by encrypted files on the /data filesystem.
234static bool evict_data_key(const std::string& raw_ref) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700235 return android::vold::evictKey(DATA_MNT_POINT, raw_ref, get_data_file_policy_version());
Eric Biggersf3dc4202019-09-30 13:05:58 -0700236}
237
Paul Crowleydf528a72016-03-09 09:31:37 -0800238static bool read_and_install_user_ce_key(userid_t user_id,
239 const android::vold::KeyAuthentication& auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000240 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100241 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700242 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000243 std::string ce_raw_ref;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700244 if (!install_data_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000245 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000246 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000247 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000248}
249
Paul Crowleydf528a72016-03-09 09:31:37 -0800250static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000251 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000252 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
253 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000254 return false;
255 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000256 return true;
257}
258
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600259static bool destroy_dir(const std::string& dir) {
260 LOG(DEBUG) << "Destroying: " << dir;
261 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
262 PLOG(ERROR) << "Failed to destroy " << dir;
263 return false;
264 }
265 return true;
266}
267
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000268// NB this assumes that there is only one thread listening for crypt commands, because
269// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000270static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
Pavel Grafove2e2d302017-08-01 17:15:53 +0100271 KeyBuffer de_key, ce_key;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700272 if (!android::vold::randomKey(&de_key)) return false;
273 if (!android::vold::randomKey(&ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000274 if (create_ephemeral) {
275 // If the key should be created as ephemeral, don't store it.
276 s_ephemeral_users.insert(user_id);
277 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700278 auto const directory_path = get_ce_key_directory_path(user_id);
279 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
280 auto const paths = get_ce_key_paths(directory_path);
281 std::string ce_key_path;
282 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700283 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, kEmptyAuthentication,
284 ce_key))
285 return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700286 fixate_user_ce_key(directory_path, ce_key_path, paths);
287 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700288 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley14c8c072018-09-18 13:30:21 -0700289 kEmptyAuthentication, de_key))
290 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100291 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000292 std::string de_raw_ref;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700293 if (!install_data_key(de_key, &de_raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000294 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000295 std::string ce_raw_ref;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700296 if (!install_data_key(ce_key, &ce_raw_ref)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000297 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000298 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000299 return true;
300}
301
Paul Crowleydf528a72016-03-09 09:31:37 -0800302static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
303 std::string* raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000304 auto refi = key_map.find(user_id);
305 if (refi == key_map.end()) {
Eric Biggersd1034042019-04-02 10:38:15 -0700306 LOG(DEBUG) << "Cannot find key for " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000307 return false;
308 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800309 *raw_ref = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000310 return true;
311}
312
Paul Crowleydf528a72016-03-09 09:31:37 -0800313static bool is_numeric(const char* name) {
314 for (const char* p = name; *p != '\0'; p++) {
315 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000316 }
317 return true;
318}
319
320static bool load_all_de_keys() {
321 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800322 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000323 if (!dirp) {
324 PLOG(ERROR) << "Unable to read de key directory";
325 return false;
326 }
327 for (;;) {
328 errno = 0;
329 auto entry = readdir(dirp.get());
330 if (!entry) {
331 if (errno) {
332 PLOG(ERROR) << "Unable to read de key directory";
333 return false;
334 }
335 break;
336 }
337 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
338 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
339 continue;
340 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600341 userid_t user_id = std::stoi(entry->d_name);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000342 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000343 auto key_path = de_dir + "/" + entry->d_name;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100344 KeyBuffer key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800345 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000346 std::string raw_ref;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700347 if (!install_data_key(key, &raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000348 s_de_key_raw_refs[user_id] = raw_ref;
349 LOG(DEBUG) << "Installed de key for user " << user_id;
350 }
351 }
Eric Biggersa701c452018-10-23 13:06:55 -0700352 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000353 // correct policy set on them, and that no rogue ones exist.
354 return true;
355}
356
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700357bool fscrypt_initialize_systemwide_keys() {
358 LOG(INFO) << "fscrypt_initialize_systemwide_keys";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800359
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700360 if (s_systemwide_keys_initialized) {
Paul Crowley38132a12016-02-09 09:50:32 +0000361 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000362 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800363 }
364
Paul Crowley5e53ff62019-10-24 14:55:17 -0700365 EncryptionPolicy device_policy;
366 get_data_file_encryption_options(&device_policy.options);
Eric Biggersb45caaf2017-02-02 14:52:12 -0800367
Eric Biggers83a73d72019-09-30 13:06:47 -0700368 if (!android::vold::retrieveAndInstallKey(true, kEmptyAuthentication, device_key_path,
Paul Crowley5e53ff62019-10-24 14:55:17 -0700369 device_key_temp, "", device_policy.options.version,
370 &device_policy.key_raw_ref))
Eric Biggers83a73d72019-09-30 13:06:47 -0700371 return false;
372
Paul Crowley5e53ff62019-10-24 14:55:17 -0700373 std::string options_string;
374 if (!OptionsToString(device_policy.options, &options_string)) {
375 LOG(ERROR) << "Unable to serialize options";
376 return false;
377 }
Eric Biggers83a73d72019-09-30 13:06:47 -0700378 std::string options_filename = std::string("/data") + fscrypt_key_mode;
379 if (!android::vold::writeStringToFile(options_string, options_filename)) return false;
Paul Lawrence6e410592016-05-24 14:20:38 -0700380
Eric Biggersa701c452018-10-23 13:06:55 -0700381 std::string ref_filename = std::string("/data") + fscrypt_key_ref;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700382 if (!android::vold::writeStringToFile(device_policy.key_raw_ref, ref_filename)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700383 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800384
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700385 KeyBuffer per_boot_key;
386 if (!android::vold::randomKey(&per_boot_key)) return false;
387 std::string per_boot_raw_ref;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700388 if (!install_data_key(per_boot_key, &per_boot_raw_ref)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700389 std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref;
390 if (!android::vold::writeStringToFile(per_boot_raw_ref, per_boot_ref_filename)) return false;
391 LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename;
392
Tommy Chiua98464f2019-03-26 14:14:19 +0800393 if (!android::vold::FsyncDirectory(device_key_dir)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700394 s_systemwide_keys_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000395 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800396}
397
Eric Biggersa701c452018-10-23 13:06:55 -0700398bool fscrypt_init_user0() {
399 LOG(DEBUG) << "fscrypt_init_user0";
400 if (fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000401 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
402 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
403 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700404 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000405 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000406 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700407 // TODO: switch to loading only DE_0 here once framework makes
408 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000409 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000410 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700411 // We can only safely prepare DE storage here, since CE keys are probably
412 // entangled with user credentials. The framework will always prepare CE
413 // storage once CE keys are installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700414 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700415 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000416 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700417 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700418
419 // If this is a non-FBE device that recently left an emulated mode,
420 // restore user data directories to known-good state.
Eric Biggersa701c452018-10-23 13:06:55 -0700421 if (!fscrypt_is_native() && !fscrypt_is_emulated()) {
422 fscrypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700423 }
424
Paul Crowley76107cb2016-02-09 10:04:39 +0000425 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000426}
427
Eric Biggersa701c452018-10-23 13:06:55 -0700428bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
429 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
430 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000431 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000432 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000433 // FIXME test for existence of key that is not loaded yet
434 if (s_ce_key_raw_refs.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700435 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800436 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000437 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000438 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800439 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000440 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000441 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000442 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000443 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800444}
445
Eric Biggersce368682019-04-03 15:44:06 -0700446// "Lock" all encrypted directories whose key has been removed. This is needed
Eric Biggersf3dc4202019-09-30 13:05:58 -0700447// in the case where the keys are being put in the session keyring (rather in
448// the newer filesystem-level keyrings), because removing a key from the session
449// keyring doesn't affect inodes in the kernel's inode cache whose per-file key
450// was already set up. So to remove the per-file keys and make the files
451// "appear encrypted", these inodes must be evicted.
Eric Biggersce368682019-04-03 15:44:06 -0700452//
453// To do this, sync() to clean all dirty inodes, then drop all reclaimable slab
454// objects systemwide. This is overkill, but it's the best available method
455// currently. Don't use drop_caches mode "3" because that also evicts pagecache
456// for in-use files; all files relevant here are already closed and sync'ed.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700457static void drop_caches_if_needed() {
458 if (android::vold::isFsKeyringSupported()) {
459 return;
460 }
Pavel Grafovb350ed02017-07-27 17:34:57 +0100461 sync();
Eric Biggersce368682019-04-03 15:44:06 -0700462 if (!writeStringToFile("2", "/proc/sys/vm/drop_caches")) {
Pavel Grafovb350ed02017-07-27 17:34:57 +0100463 PLOG(ERROR) << "Failed to drop caches during key eviction";
464 }
465}
466
Andrew Scull7ec25c72016-10-31 10:28:25 +0000467static bool evict_ce_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000468 bool success = true;
469 std::string raw_ref;
470 // If we haven't loaded the CE key, no need to evict it.
471 if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) {
Eric Biggersf3dc4202019-09-30 13:05:58 -0700472 success &= evict_data_key(raw_ref);
473 drop_caches_if_needed();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000474 }
475 s_ce_key_raw_refs.erase(user_id);
476 return success;
477}
478
Eric Biggersa701c452018-10-23 13:06:55 -0700479bool fscrypt_destroy_user_key(userid_t user_id) {
480 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
481 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000482 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000483 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000484 bool success = true;
485 std::string raw_ref;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000486 success &= evict_ce_key(user_id);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700487 success &= lookup_key_ref(s_de_key_raw_refs, user_id, &raw_ref) && evict_data_key(raw_ref);
Paul Crowley05720802016-02-08 15:55:41 +0000488 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000489 auto it = s_ephemeral_users.find(user_id);
490 if (it != s_ephemeral_users.end()) {
491 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000492 } else {
Paul Crowley14c8c072018-09-18 13:30:21 -0700493 for (auto const path : get_ce_key_paths(get_ce_key_directory_path(user_id))) {
Paul Crowleya3630362016-05-17 14:17:56 -0700494 success &= android::vold::destroyKey(path);
495 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700496 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700497 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700498 success &= android::vold::destroyKey(de_key_path);
499 } else {
500 LOG(INFO) << "Not present so not erasing: " << de_key_path;
501 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100502 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000503 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100504}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800505
Paul Crowley76107cb2016-02-09 10:04:39 +0000506static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700507 if (chmod(path.c_str(), 0000) != 0) {
508 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000509 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700510 }
511#if EMULATED_USES_SELINUX
512 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
513 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000514 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700515 }
516#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000517 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700518}
519
Paul Crowley76107cb2016-02-09 10:04:39 +0000520static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700521 if (chmod(path.c_str(), mode) != 0) {
522 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000523 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700524 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700525 }
526#if EMULATED_USES_SELINUX
527 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
528 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000529 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700530 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700531 }
532#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000533 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700534}
535
Paul Crowley3b71fc52017-10-09 10:55:21 -0700536static bool parse_hex(const std::string& hex, std::string* result) {
537 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800538 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000539 return true;
540 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800541 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800542 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000543 return false;
544 }
545 return true;
546}
547
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700548static std::optional<android::vold::KeyAuthentication> authentication_from_hex(
549 const std::string& token_hex, const std::string& secret_hex) {
550 std::string token, secret;
551 if (!parse_hex(token_hex, &token)) return std::optional<android::vold::KeyAuthentication>();
552 if (!parse_hex(secret_hex, &secret)) return std::optional<android::vold::KeyAuthentication>();
553 if (secret.empty()) {
554 return kEmptyAuthentication;
555 } else {
556 return android::vold::KeyAuthentication(token, secret);
557 }
558}
559
Paul Crowley3aa914d2017-10-09 16:35:51 -0700560static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
561 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
562}
563
Paul Crowley26a53882017-10-26 11:16:39 -0700564static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
565 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
566}
567
Paul Crowley3aa914d2017-10-09 16:35:51 -0700568static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
Paul Crowley5e53ff62019-10-24 14:55:17 -0700569 EncryptionPolicy* policy) {
Paul Crowley26a53882017-10-26 11:16:39 -0700570 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
571 std::string secdiscardable_hash;
572 if (android::vold::pathExists(secdiscardable_path)) {
573 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
574 return false;
575 } else {
576 if (fs_mkdirs(secdiscardable_path.c_str(), 0700) != 0) {
577 PLOG(ERROR) << "Creating directories for: " << secdiscardable_path;
578 return false;
579 }
580 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
581 return false;
582 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700583 auto key_path = volkey_path(misc_path, volume_uuid);
584 if (fs_mkdirs(key_path.c_str(), 0700) != 0) {
585 PLOG(ERROR) << "Creating directories for: " << key_path;
586 return false;
587 }
Paul Crowley26a53882017-10-26 11:16:39 -0700588 android::vold::KeyAuthentication auth("", secdiscardable_hash);
Eric Biggers83a73d72019-09-30 13:06:47 -0700589
Paul Crowley5e53ff62019-10-24 14:55:17 -0700590 if (!get_volume_file_encryption_options(&policy->options)) return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700591
592 return android::vold::retrieveAndInstallKey(true, auth, key_path, key_path + "_tmp",
Paul Crowley5e53ff62019-10-24 14:55:17 -0700593 volume_uuid, policy->options.version,
594 &policy->key_raw_ref);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700595}
596
597static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700598 auto path = volkey_path(misc_path, volume_uuid);
599 if (!android::vold::pathExists(path)) return true;
600 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700601}
602
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700603static bool fscrypt_rewrap_user_key(userid_t user_id, int serial,
604 const android::vold::KeyAuthentication& retrieve_auth,
605 const android::vold::KeyAuthentication& store_auth) {
606 if (s_ephemeral_users.count(user_id) != 0) return true;
607 auto const directory_path = get_ce_key_directory_path(user_id);
608 KeyBuffer ce_key;
609 std::string ce_key_current_path = get_ce_key_current_path(directory_path);
610 if (android::vold::retrieveKey(ce_key_current_path, retrieve_auth, &ce_key)) {
611 LOG(DEBUG) << "Successfully retrieved key";
612 // TODO(147732812): Remove this once Locksettingservice is fixed.
613 // Currently it calls fscrypt_clear_user_key_auth with a secret when lockscreen is
614 // changed from swipe to none or vice-versa
615 } else if (android::vold::retrieveKey(ce_key_current_path, kEmptyAuthentication, &ce_key)) {
616 LOG(DEBUG) << "Successfully retrieved key with empty auth";
617 } else {
618 LOG(ERROR) << "Failed to retrieve key for user " << user_id;
619 return false;
620 }
621 auto const paths = get_ce_key_paths(directory_path);
622 std::string ce_key_path;
623 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
624 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, store_auth, ce_key))
625 return false;
626 if (!android::vold::FsyncDirectory(directory_path)) return false;
627 return true;
628}
629
Eric Biggersa701c452018-10-23 13:06:55 -0700630bool fscrypt_add_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700631 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700632 LOG(DEBUG) << "fscrypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700633 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700634 if (!fscrypt_is_native()) return true;
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700635 auto auth = authentication_from_hex(token_hex, secret_hex);
636 if (!auth) return false;
637 return fscrypt_rewrap_user_key(user_id, serial, kEmptyAuthentication, *auth);
638}
639
640bool fscrypt_clear_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
641 const std::string& secret_hex) {
642 LOG(DEBUG) << "fscrypt_clear_user_key_auth " << user_id << " serial=" << serial
643 << " token_present=" << (token_hex != "!");
644 if (!fscrypt_is_native()) return true;
645 auto auth = authentication_from_hex(token_hex, secret_hex);
646 if (!auth) return false;
647 return fscrypt_rewrap_user_key(user_id, serial, *auth, kEmptyAuthentication);
Paul Crowleya3630362016-05-17 14:17:56 -0700648}
649
Eric Biggersa701c452018-10-23 13:06:55 -0700650bool fscrypt_fixate_newest_user_key_auth(userid_t user_id) {
651 LOG(DEBUG) << "fscrypt_fixate_newest_user_key_auth " << user_id;
652 if (!fscrypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700653 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700654 auto const directory_path = get_ce_key_directory_path(user_id);
655 auto const paths = get_ce_key_paths(directory_path);
656 if (paths.empty()) {
657 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
658 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000659 }
Paul Crowleya3630362016-05-17 14:17:56 -0700660 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000661 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000662}
663
Jeff Sharkey47695b22016-02-01 17:02:29 -0700664// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Eric Biggersa701c452018-10-23 13:06:55 -0700665bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700666 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700667 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700668 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700669 if (fscrypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000670 if (s_ce_key_raw_refs.count(user_id) != 0) {
671 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000672 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000673 }
Barani Muthukumaranb1927c22019-10-31 22:59:34 -0700674 auto auth = authentication_from_hex(token_hex, secret_hex);
675 if (!auth) return false;
676 if (!read_and_install_user_ce_key(user_id, *auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000677 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000678 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800679 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700680 } else {
681 // When in emulation mode, we just use chmod. However, we also
682 // unlock directories when not in emulation mode, to bring devices
683 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000684 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800685 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700686 !emulated_unlock(android::vold::BuildDataMediaCePath("", user_id), 0770) ||
687 !emulated_unlock(android::vold::BuildDataUserCePath("", user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700688 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000689 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700690 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800691 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000692 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800693}
694
Jeff Sharkey47695b22016-02-01 17:02:29 -0700695// TODO: rename to 'evict' for consistency
Eric Biggersa701c452018-10-23 13:06:55 -0700696bool fscrypt_lock_user_key(userid_t user_id) {
697 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
698 if (fscrypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000699 return evict_ce_key(user_id);
Eric Biggersa701c452018-10-23 13:06:55 -0700700 } else if (fscrypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800701 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000702 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800703 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700704 !emulated_lock(android::vold::BuildDataMediaCePath("", user_id)) ||
705 !emulated_lock(android::vold::BuildDataUserCePath("", user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000706 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000707 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800708 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800709 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700710
Paul Crowley76107cb2016-02-09 10:04:39 +0000711 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800712}
713
Paul Crowley82b41ff2017-10-20 08:17:54 -0700714static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
715 userid_t user_id, int flags) {
716 if (0 != android::vold::ForkExecvp(
717 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
718 std::to_string(user_id), std::to_string(flags)})) {
719 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700720 return false;
721 }
722 return true;
723}
724
Eric Biggersa701c452018-10-23 13:06:55 -0700725bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700726 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700727 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800728 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700729
Paul Crowley82b41ff2017-10-20 08:17:54 -0700730 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600731 // DE_sys key
732 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
733 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
734 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600735
736 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700737 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
738 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800739 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700740 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
741
Paul Crowley3b71fc52017-10-09 10:55:21 -0700742 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700743 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600744#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700745 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700746 multiuser_get_uid(user_id, AID_EVERYBODY)))
747 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600748#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700749 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600750
Paul Crowley6b756ce2017-10-05 14:07:09 -0700751 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
752 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800753 if (!prepare_dir(vendor_de_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700754 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000755 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000756
Eric Biggersa701c452018-10-23 13:06:55 -0700757 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700758 EncryptionPolicy de_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700759 if (volume_uuid.empty()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700760 if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_policy.key_raw_ref))
761 return false;
762 get_data_file_encryption_options(&de_policy.options);
763 if (!EnsurePolicy(de_policy, system_de_path)) return false;
764 if (!EnsurePolicy(de_policy, misc_de_path)) return false;
765 if (!EnsurePolicy(de_policy, vendor_de_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700766 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700767 if (!read_or_create_volkey(misc_de_path, volume_uuid, &de_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700768 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700769 if (!EnsurePolicy(de_policy, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700770 }
Paul Crowley285956f2016-01-20 13:12:38 +0000771 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800772
Paul Crowley82b41ff2017-10-20 08:17:54 -0700773 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600774 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700775 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
776 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800777 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600778 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
779 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800780
Paul Crowley3b71fc52017-10-09 10:55:21 -0700781 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700782 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
783 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800784 if (!prepare_dir(vendor_ce_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700785 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000786 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
787 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700788
Eric Biggersa701c452018-10-23 13:06:55 -0700789 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700790 EncryptionPolicy ce_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700791 if (volume_uuid.empty()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700792 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_policy.key_raw_ref))
793 return false;
794 get_data_file_encryption_options(&ce_policy.options);
795 if (!EnsurePolicy(ce_policy, system_ce_path)) return false;
796 if (!EnsurePolicy(ce_policy, misc_ce_path)) return false;
797 if (!EnsurePolicy(ce_policy, vendor_ce_path)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700798
Paul Crowley3aa914d2017-10-09 16:35:51 -0700799 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700800 if (!read_or_create_volkey(misc_ce_path, volume_uuid, &ce_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700801 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700802 if (!EnsurePolicy(ce_policy, media_ce_path)) return false;
803 if (!EnsurePolicy(ce_policy, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700804 }
Paul Crowley1a965262017-10-13 13:49:50 -0700805
806 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700807 // Now that credentials have been installed, we can run restorecon
808 // over these paths
809 // NOTE: these paths need to be kept in sync with libselinux
810 android::vold::RestoreconRecursive(system_ce_path);
Nick Kralevich6a3ef482019-05-14 09:30:29 -0700811 android::vold::RestoreconRecursive(vendor_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -0700812 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700813 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800814 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700815 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800816
Paul Crowley76107cb2016-02-09 10:04:39 +0000817 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800818}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600819
Eric Biggersa701c452018-10-23 13:06:55 -0700820bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
821 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600822 << ", user " << user_id << ", flags " << flags;
823 bool res = true;
824
Paul Crowley82b41ff2017-10-20 08:17:54 -0700825 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
826
827 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -0700828 // CE_n key
829 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
830 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800831 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -0700832 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
833 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
834
835 res &= destroy_dir(media_ce_path);
836 res &= destroy_dir(user_ce_path);
837 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700838 res &= destroy_dir(system_ce_path);
839 res &= destroy_dir(misc_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800840 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700841 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700842 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700843 res &= destroy_volkey(misc_ce_path, volume_uuid);
844 }
Paul Crowley8e550662017-10-16 17:01:44 -0700845 }
846 }
847
Paul Crowley82b41ff2017-10-20 08:17:54 -0700848 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600849 // DE_sys key
850 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
851 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
852 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600853
854 // DE_n key
855 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
856 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800857 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600858 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
859
Paul Crowley8e550662017-10-16 17:01:44 -0700860 res &= destroy_dir(user_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -0700861 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600862 res &= destroy_dir(system_legacy_path);
863#if MANAGE_MISC_DIRS
864 res &= destroy_dir(misc_legacy_path);
865#endif
866 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600867 res &= destroy_dir(system_de_path);
868 res &= destroy_dir(misc_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800869 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700870 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700871 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700872 res &= destroy_volkey(misc_de_path, volume_uuid);
873 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600874 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600875 }
876
877 return res;
878}
Rubin Xu2436e272017-04-27 20:43:10 +0100879
Paul Crowleyc6433a22017-10-24 14:54:43 -0700880static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
881 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
882 if (!dirp) {
883 PLOG(ERROR) << "Unable to open directory: " + directory_path;
884 return false;
885 }
886 bool res = true;
887 for (;;) {
888 errno = 0;
889 auto const entry = readdir(dirp.get());
890 if (!entry) {
891 if (errno) {
892 PLOG(ERROR) << "Unable to read directory: " + directory_path;
893 return false;
894 }
895 break;
896 }
897 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
898 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
899 continue;
900 }
901 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
902 }
903 return res;
904}
905
Eric Biggersa701c452018-10-23 13:06:55 -0700906bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700907 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -0700908 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -0700909 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
910 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -0700911 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
912 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
913 return res;
914}