blob: 6fd611ce1f97d4d5be97f6686dee67d4df5045dc [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
Shivaprasad Hongal92292622018-07-05 14:49:12 -070019#include "Keymaster.h"
Paul Crowley1ef25582016-01-21 20:26:12 +000020#include "KeyStorage.h"
Paul Crowleyf71ace32016-06-02 11:01:19 -070021#include "KeyUtil.h"
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080022#include "Utils.h"
Paul Crowleya7ca40b2017-10-06 14:29:33 -070023#include "VoldUtil.h"
24
Paul Crowleya3630362016-05-17 14:17:56 -070025#include <algorithm>
Paul Lawrence731a7a22015-04-28 22:14:15 +000026#include <map>
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>
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;
Pavel Grafovb350ed02017-07-27 17:34:57 +010064using android::base::WriteStringToFile;
Paul Crowley05720802016-02-08 15:55:41 +000065using android::vold::kEmptyAuthentication;
Pavel Grafove2e2d302017-08-01 17:15:53 +010066using android::vold::KeyBuffer;
Shivaprasad Hongal92292622018-07-05 14:49:12 -070067using android::vold::Keymaster;
68using android::hardware::keymaster::V4_0::KeyFormat;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080069
Paul Lawrence731a7a22015-04-28 22:14:15 +000070namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000071
Paul Crowley3aa914d2017-10-09 16:35:51 -070072struct PolicyKeyRef {
73 std::string contents_mode;
74 std::string filenames_mode;
75 std::string key_raw_ref;
76};
77
Eric Biggersa701c452018-10-23 13:06:55 -070078const std::string device_key_dir = std::string() + DATA_MNT_POINT + fscrypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080079const std::string device_key_path = device_key_dir + "/key";
80const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080081
Paul Crowleydf528a72016-03-09 09:31:37 -080082const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
83const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley82b41ff2017-10-20 08:17:54 -070084const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs";
Paul Crowley285956f2016-01-20 13:12:38 +000085
Paul Crowley26a53882017-10-26 11:16:39 -070086const std::string systemwide_volume_key_dir =
87 std::string() + DATA_MNT_POINT + "/misc/vold/volume_keys";
88
Paul Crowleydf528a72016-03-09 09:31:37 -080089bool s_global_de_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080090
Paul Crowleydf528a72016-03-09 09:31:37 -080091// Some users are ephemeral, don't try to wipe their keys from disk
92std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080093
Paul Crowleydf528a72016-03-09 09:31:37 -080094// Map user ids to key references
95std::map<userid_t, std::string> s_de_key_raw_refs;
96std::map<userid_t, std::string> s_ce_key_raw_refs;
Paul Crowley99360d72016-10-19 14:00:24 -070097// TODO abolish this map, per b/26948053
Pavel Grafove2e2d302017-08-01 17:15:53 +010098std::map<userid_t, KeyBuffer> s_ce_keys;
Paul Lawrence731a7a22015-04-28 22:14:15 +000099
Paul Crowley14c8c072018-09-18 13:30:21 -0700100} // namespace
Paul Lawrence731a7a22015-04-28 22:14:15 +0000101
Eric Biggersa701c452018-10-23 13:06:55 -0700102static bool fscrypt_is_emulated() {
Paul Crowley38132a12016-02-09 09:50:32 +0000103 return property_get_bool("persist.sys.emulate_fbe", false);
104}
105
Paul Crowley3b71fc52017-10-09 10:55:21 -0700106static const char* escape_empty(const std::string& value) {
107 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000108}
109
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000110static std::string get_de_key_path(userid_t user_id) {
111 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
112}
113
Paul Crowleya3630362016-05-17 14:17:56 -0700114static std::string get_ce_key_directory_path(userid_t user_id) {
115 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
116}
117
118// Returns the keys newest first
119static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
120 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
121 if (!dirp) {
122 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
123 return std::vector<std::string>();
124 }
125 std::vector<std::string> result;
126 for (;;) {
127 errno = 0;
128 auto const entry = readdir(dirp.get());
129 if (!entry) {
130 if (errno) {
131 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
132 return std::vector<std::string>();
133 }
134 break;
135 }
136 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
137 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
138 continue;
139 }
140 result.emplace_back(directory_path + "/" + entry->d_name);
141 }
142 std::sort(result.begin(), result.end());
143 std::reverse(result.begin(), result.end());
144 return result;
145}
146
147static std::string get_ce_key_current_path(const std::string& directory_path) {
148 return directory_path + "/current";
149}
150
151static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700152 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700153 if (paths.empty()) {
154 *ce_key_path = get_ce_key_current_path(directory_path);
155 return true;
156 }
157 for (unsigned int i = 0; i < UINT_MAX; i++) {
158 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
159 if (paths[0] < candidate) {
160 *ce_key_path = candidate;
161 return true;
162 }
163 }
164 return false;
165}
166
167// Discard all keys but the named one; rename it to canonical name.
168// No point in acting on errors in this; ignore them.
Paul Crowley14c8c072018-09-18 13:30:21 -0700169static void fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700170 const std::vector<std::string>& paths) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700171 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700172 if (other_path != to_fix) {
173 android::vold::destroyKey(other_path);
174 }
175 }
176 auto const current_path = get_ce_key_current_path(directory_path);
177 if (to_fix != current_path) {
178 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
Jieb6698d52018-11-12 15:26:02 +0800179 android::base::unique_fd fd(TEMP_FAILURE_RETRY(
180 open(to_fix.c_str(), O_RDONLY | O_CLOEXEC)));
181 if (fd == -1) {
182 PLOG(ERROR) << "Failed to open " << to_fix;
183 return;
184 }
185 if (fsync(fd) == -1) {
186 if (errno == EROFS || errno == EINVAL) {
187 PLOG(WARNING) << "Skip fsync " << to_fix
188 << " on a file system does not support synchronization";
189 } else {
190 PLOG(ERROR) << "Failed to fsync " << to_fix;
191 unlink(to_fix.c_str());
192 return;
193 }
194 }
Paul Crowleya3630362016-05-17 14:17:56 -0700195 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
196 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
Jieb6698d52018-11-12 15:26:02 +0800197 return;
Paul Crowleya3630362016-05-17 14:17:56 -0700198 }
199 }
200}
201
202static bool read_and_fixate_user_ce_key(userid_t user_id,
203 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700204 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700205 auto const directory_path = get_ce_key_directory_path(user_id);
206 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700207 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700208 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
209 if (android::vold::retrieveKey(ce_key_path, auth, ce_key)) {
210 LOG(DEBUG) << "Successfully retrieved key";
211 fixate_user_ce_key(directory_path, ce_key_path, paths);
212 return true;
213 }
214 }
215 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
216 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100217}
218
Shivaprasad Hongal92292622018-07-05 14:49:12 -0700219bool is_wrapped_key_supported() {
Shivaprasad Hongal0fe25652018-09-15 17:36:19 -0700220 return fs_mgr_is_wrapped_key_supported(
221 fs_mgr_get_entry_for_mount_point(fstab_default, DATA_MNT_POINT));
Shivaprasad Hongal92292622018-07-05 14:49:12 -0700222}
223
224bool is_wrapped_key_supported_external() {
225 return false;
226}
227
Paul Crowleydf528a72016-03-09 09:31:37 -0800228static bool read_and_install_user_ce_key(userid_t user_id,
229 const android::vold::KeyAuthentication& auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000230 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100231 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700232 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000233 std::string ce_raw_ref;
Shivaprasad Hongal92292622018-07-05 14:49:12 -0700234
235 if (is_wrapped_key_supported()) {
236 KeyBuffer ephemeral_wrapped_key;
237 if (!getEphemeralWrappedKey(KeyFormat::RAW, ce_key, &ephemeral_wrapped_key)) {
238 LOG(ERROR) << "Failed to export ce key";
239 return false;
240 }
241 ce_key = std::move(ephemeral_wrapped_key);
242 }
Paul Crowleyf71ace32016-06-02 11:01:19 -0700243 if (!android::vold::installKey(ce_key, &ce_raw_ref)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100244 s_ce_keys[user_id] = std::move(ce_key);
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;
Shivaprasad Hongal92292622018-07-05 14:49:12 -0700272
273 if(is_wrapped_key_supported()) {
274 if (!generateWrappedKey(user_id, android::vold::KeyType::DE_USER, &de_key)) return false;
275 if (!generateWrappedKey(user_id, android::vold::KeyType::CE_USER, &ce_key)) return false;
276 } else {
277 if (!android::vold::randomKey(&de_key)) return false;
278 if (!android::vold::randomKey(&ce_key)) return false;
279 }
280
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000281 if (create_ephemeral) {
282 // If the key should be created as ephemeral, don't store it.
283 s_ephemeral_users.insert(user_id);
284 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700285 auto const directory_path = get_ce_key_directory_path(user_id);
286 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
287 auto const paths = get_ce_key_paths(directory_path);
288 std::string ce_key_path;
289 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700290 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, kEmptyAuthentication,
291 ce_key))
292 return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700293 fixate_user_ce_key(directory_path, ce_key_path, paths);
294 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700295 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley14c8c072018-09-18 13:30:21 -0700296 kEmptyAuthentication, de_key))
297 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100298 }
Shivaprasad Hongal92292622018-07-05 14:49:12 -0700299
300 /* Install the DE keys */
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000301 std::string de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000302 std::string ce_raw_ref;
Shivaprasad Hongal92292622018-07-05 14:49:12 -0700303
304 if (is_wrapped_key_supported()) {
305 KeyBuffer ephemeral_wrapped_de_key;
306 KeyBuffer ephemeral_wrapped_ce_key;
307
308 /* Export and install the DE keys */
309 if (!getEphemeralWrappedKey(KeyFormat::RAW, de_key, &ephemeral_wrapped_de_key)) {
310 LOG(ERROR) << "Failed to export de_key";
311 return false;
312 }
313 /* Export and install the CE keys */
314 if (!getEphemeralWrappedKey(KeyFormat::RAW, ce_key, &ephemeral_wrapped_ce_key)) {
315 LOG(ERROR) << "Failed to export de_key";
316 return false;
317 }
318
319 de_key = std::move(ephemeral_wrapped_de_key);
320 ce_key = std::move(ephemeral_wrapped_ce_key);
321 }
322 if (!android::vold::installKey(de_key, &de_raw_ref)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700323 if (!android::vold::installKey(ce_key, &ce_raw_ref)) return false;
Shivaprasad Hongal92292622018-07-05 14:49:12 -0700324 s_ce_keys[user_id] = std::move(ce_key);
325
326 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000327 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Shivaprasad Hongal92292622018-07-05 14:49:12 -0700328
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000329 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000330 return true;
331}
332
Paul Crowleydf528a72016-03-09 09:31:37 -0800333static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
334 std::string* raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000335 auto refi = key_map.find(user_id);
336 if (refi == key_map.end()) {
337 LOG(ERROR) << "Cannot find key for " << user_id;
338 return false;
339 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800340 *raw_ref = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000341 return true;
342}
343
Paul Crowley3aa914d2017-10-09 16:35:51 -0700344static void get_data_file_encryption_modes(PolicyKeyRef* key_ref) {
Paul Crowleya7ca40b2017-10-06 14:29:33 -0700345 struct fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab_default, DATA_MNT_POINT);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700346 char const* contents_mode;
347 char const* filenames_mode;
348 fs_mgr_get_file_encryption_modes(rec, &contents_mode, &filenames_mode);
349 key_ref->contents_mode = contents_mode;
350 key_ref->filenames_mode = filenames_mode;
Paul Crowleya7ca40b2017-10-06 14:29:33 -0700351}
352
Paul Crowley3aa914d2017-10-09 16:35:51 -0700353static bool ensure_policy(const PolicyKeyRef& key_ref, const std::string& path) {
Eric Biggersa701c452018-10-23 13:06:55 -0700354 return fscrypt_policy_ensure(path.c_str(), key_ref.key_raw_ref.data(),
Paul Crowley3aa914d2017-10-09 16:35:51 -0700355 key_ref.key_raw_ref.size(), key_ref.contents_mode.c_str(),
356 key_ref.filenames_mode.c_str()) == 0;
Paul Crowley95376d62015-05-06 15:04:43 +0100357}
Paul Crowleyb33e8872015-05-19 12:34:09 +0100358
Paul Crowleydf528a72016-03-09 09:31:37 -0800359static bool is_numeric(const char* name) {
360 for (const char* p = name; *p != '\0'; p++) {
361 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000362 }
363 return true;
364}
365
366static bool load_all_de_keys() {
367 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800368 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000369 if (!dirp) {
370 PLOG(ERROR) << "Unable to read de key directory";
371 return false;
372 }
373 for (;;) {
374 errno = 0;
375 auto entry = readdir(dirp.get());
376 if (!entry) {
377 if (errno) {
378 PLOG(ERROR) << "Unable to read de key directory";
379 return false;
380 }
381 break;
382 }
383 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
384 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
385 continue;
386 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600387 userid_t user_id = std::stoi(entry->d_name);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000388 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000389 auto key_path = de_dir + "/" + entry->d_name;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100390 KeyBuffer key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800391 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000392 std::string raw_ref;
Shivaprasad Hongal92292622018-07-05 14:49:12 -0700393 if (is_wrapped_key_supported()) {
394 KeyBuffer ephemeral_wrapped_key;
395 if (!getEphemeralWrappedKey(KeyFormat::RAW, key, &ephemeral_wrapped_key)) {
396 LOG(ERROR) << "Failed to export de_key in create_and_install_user_keys";
397 return false;
398 }
399 key = std::move(ephemeral_wrapped_key);
400 }
Paul Crowleyf71ace32016-06-02 11:01:19 -0700401 if (!android::vold::installKey(key, &raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000402 s_de_key_raw_refs[user_id] = raw_ref;
403 LOG(DEBUG) << "Installed de key for user " << user_id;
404 }
405 }
Eric Biggersa701c452018-10-23 13:06:55 -0700406 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000407 // correct policy set on them, and that no rogue ones exist.
408 return true;
409}
410
Eric Biggersa701c452018-10-23 13:06:55 -0700411bool fscrypt_initialize_global_de() {
412 LOG(INFO) << "fscrypt_initialize_global_de";
Shivaprasad Hongal92292622018-07-05 14:49:12 -0700413 bool wrapped_key_supported = false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800414
Paul Crowley38132a12016-02-09 09:50:32 +0000415 if (s_global_de_initialized) {
416 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000417 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800418 }
419
Paul Crowley3aa914d2017-10-09 16:35:51 -0700420 PolicyKeyRef device_ref;
Shivaprasad Hongal92292622018-07-05 14:49:12 -0700421 wrapped_key_supported = is_wrapped_key_supported();
422
423 if (!android::vold::retrieveAndInstallKey(true, kEmptyAuthentication,
424 device_key_path, device_key_temp,
425 &device_ref.key_raw_ref, wrapped_key_supported))
Paul Crowley3aa914d2017-10-09 16:35:51 -0700426 return false;
427 get_data_file_encryption_modes(&device_ref);
Eric Biggersb45caaf2017-02-02 14:52:12 -0800428
Paul Crowley3aa914d2017-10-09 16:35:51 -0700429 std::string modestring = device_ref.contents_mode + ":" + device_ref.filenames_mode;
Eric Biggersa701c452018-10-23 13:06:55 -0700430 std::string mode_filename = std::string("/data") + fscrypt_key_mode;
Eric Biggersb45caaf2017-02-02 14:52:12 -0800431 if (!android::base::WriteStringToFile(modestring, mode_filename)) {
Paul Lawrence6e410592016-05-24 14:20:38 -0700432 PLOG(ERROR) << "Cannot save type";
433 return false;
434 }
435
Eric Biggersa701c452018-10-23 13:06:55 -0700436 std::string ref_filename = std::string("/data") + fscrypt_key_ref;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700437 if (!android::base::WriteStringToFile(device_ref.key_raw_ref, ref_filename)) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700438 PLOG(ERROR) << "Cannot save key reference to:" << ref_filename;
Paul Crowley76107cb2016-02-09 10:04:39 +0000439 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800440 }
Paul Crowleyf71ace32016-06-02 11:01:19 -0700441 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800442
Paul Crowley38132a12016-02-09 09:50:32 +0000443 s_global_de_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000444 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800445}
446
Eric Biggersa701c452018-10-23 13:06:55 -0700447bool fscrypt_init_user0() {
448 LOG(DEBUG) << "fscrypt_init_user0";
449 if (fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000450 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
451 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
452 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700453 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000454 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000455 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700456 // TODO: switch to loading only DE_0 here once framework makes
457 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000458 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000459 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700460 // We can only safely prepare DE storage here, since CE keys are probably
461 // entangled with user credentials. The framework will always prepare CE
462 // storage once CE keys are installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700463 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700464 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000465 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700466 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700467
468 // If this is a non-FBE device that recently left an emulated mode,
469 // restore user data directories to known-good state.
Eric Biggersa701c452018-10-23 13:06:55 -0700470 if (!fscrypt_is_native() && !fscrypt_is_emulated()) {
471 fscrypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700472 }
473
Paul Crowley76107cb2016-02-09 10:04:39 +0000474 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000475}
476
Eric Biggersa701c452018-10-23 13:06:55 -0700477bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
478 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
479 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000480 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000481 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000482 // FIXME test for existence of key that is not loaded yet
483 if (s_ce_key_raw_refs.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700484 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800485 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000486 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000487 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800488 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000489 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000490 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000491 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000492 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800493}
494
Pavel Grafovb350ed02017-07-27 17:34:57 +0100495static void drop_caches() {
496 // Clean any dirty pages (otherwise they won't be dropped).
497 sync();
498 // Drop inode and page caches.
499 if (!WriteStringToFile("3", "/proc/sys/vm/drop_caches")) {
500 PLOG(ERROR) << "Failed to drop caches during key eviction";
501 }
502}
503
Andrew Scull7ec25c72016-10-31 10:28:25 +0000504static bool evict_ce_key(userid_t user_id) {
Pavel Grafove2e2d302017-08-01 17:15:53 +0100505 s_ce_keys.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000506 bool success = true;
507 std::string raw_ref;
508 // If we haven't loaded the CE key, no need to evict it.
509 if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700510 success &= android::vold::evictKey(raw_ref);
Pavel Grafovb350ed02017-07-27 17:34:57 +0100511 drop_caches();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000512 }
513 s_ce_key_raw_refs.erase(user_id);
514 return success;
515}
516
Eric Biggersa701c452018-10-23 13:06:55 -0700517bool fscrypt_destroy_user_key(userid_t user_id) {
518 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
519 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000520 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000521 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000522 bool success = true;
523 std::string raw_ref;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000524 success &= evict_ce_key(user_id);
Paul Crowley14c8c072018-09-18 13:30:21 -0700525 success &=
526 lookup_key_ref(s_de_key_raw_refs, user_id, &raw_ref) && android::vold::evictKey(raw_ref);
Paul Crowley05720802016-02-08 15:55:41 +0000527 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000528 auto it = s_ephemeral_users.find(user_id);
529 if (it != s_ephemeral_users.end()) {
530 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000531 } else {
Paul Crowley14c8c072018-09-18 13:30:21 -0700532 for (auto const path : get_ce_key_paths(get_ce_key_directory_path(user_id))) {
Paul Crowleya3630362016-05-17 14:17:56 -0700533 success &= android::vold::destroyKey(path);
534 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700535 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700536 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700537 success &= android::vold::destroyKey(de_key_path);
538 } else {
539 LOG(INFO) << "Not present so not erasing: " << de_key_path;
540 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100541 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000542 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100543}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800544
Paul Crowley76107cb2016-02-09 10:04:39 +0000545static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700546 if (chmod(path.c_str(), 0000) != 0) {
547 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000548 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700549 }
550#if EMULATED_USES_SELINUX
551 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
552 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000553 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700554 }
555#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000556 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700557}
558
Paul Crowley76107cb2016-02-09 10:04:39 +0000559static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700560 if (chmod(path.c_str(), mode) != 0) {
561 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000562 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700563 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700564 }
565#if EMULATED_USES_SELINUX
566 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
567 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000568 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700569 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700570 }
571#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000572 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700573}
574
Paul Crowley3b71fc52017-10-09 10:55:21 -0700575static bool parse_hex(const std::string& hex, std::string* result) {
576 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800577 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000578 return true;
579 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800580 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800581 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000582 return false;
583 }
584 return true;
585}
586
Paul Crowley3aa914d2017-10-09 16:35:51 -0700587static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
588 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
589}
590
Paul Crowley26a53882017-10-26 11:16:39 -0700591static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
592 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
593}
594
Paul Crowley3aa914d2017-10-09 16:35:51 -0700595static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
596 PolicyKeyRef* key_ref) {
Paul Crowley26a53882017-10-26 11:16:39 -0700597 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
598 std::string secdiscardable_hash;
Shivaprasad Hongal92292622018-07-05 14:49:12 -0700599 bool wrapped_key_supported = false;
Paul Crowley26a53882017-10-26 11:16:39 -0700600 if (android::vold::pathExists(secdiscardable_path)) {
601 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
602 return false;
603 } else {
604 if (fs_mkdirs(secdiscardable_path.c_str(), 0700) != 0) {
605 PLOG(ERROR) << "Creating directories for: " << secdiscardable_path;
606 return false;
607 }
608 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
609 return false;
610 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700611 auto key_path = volkey_path(misc_path, volume_uuid);
612 if (fs_mkdirs(key_path.c_str(), 0700) != 0) {
613 PLOG(ERROR) << "Creating directories for: " << key_path;
614 return false;
615 }
Paul Crowley26a53882017-10-26 11:16:39 -0700616 android::vold::KeyAuthentication auth("", secdiscardable_hash);
Shivaprasad Hongal92292622018-07-05 14:49:12 -0700617 wrapped_key_supported = is_wrapped_key_supported_external();
618
Paul Crowley26a53882017-10-26 11:16:39 -0700619 if (!android::vold::retrieveAndInstallKey(true, auth, key_path, key_path + "_tmp",
Shivaprasad Hongal92292622018-07-05 14:49:12 -0700620 &key_ref->key_raw_ref, wrapped_key_supported))
Paul Crowley3aa914d2017-10-09 16:35:51 -0700621 return false;
622 key_ref->contents_mode =
623 android::base::GetProperty("ro.crypto.volume.contents_mode", "aes-256-xts");
624 key_ref->filenames_mode =
625 android::base::GetProperty("ro.crypto.volume.filenames_mode", "aes-256-heh");
626 return true;
627}
628
629static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700630 auto path = volkey_path(misc_path, volume_uuid);
631 if (!android::vold::pathExists(path)) return true;
632 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700633}
634
Eric Biggersa701c452018-10-23 13:06:55 -0700635bool fscrypt_add_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700636 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700637 LOG(DEBUG) << "fscrypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700638 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700639 if (!fscrypt_is_native()) return true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000640 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700641 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800642 if (!parse_hex(token_hex, &token)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700643 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700644 auto auth =
645 secret.empty() ? kEmptyAuthentication : android::vold::KeyAuthentication(token, secret);
Paul Crowleya3630362016-05-17 14:17:56 -0700646 auto const directory_path = get_ce_key_directory_path(user_id);
647 auto const paths = get_ce_key_paths(directory_path);
Shivaprasad Hongal92292622018-07-05 14:49:12 -0700648
649 KeyBuffer ce_key;
650 if(is_wrapped_key_supported()) {
651 std::string ce_key_current_path = get_ce_key_current_path(directory_path);
652 if (android::vold::retrieveKey(ce_key_current_path, kEmptyAuthentication, &ce_key)) {
653 LOG(DEBUG) << "Successfully retrieved key";
654 } else {
655 if (android::vold::retrieveKey(ce_key_current_path, auth, &ce_key)) {
656 LOG(DEBUG) << "Successfully retrieved key";
657 }
658 }
659 } else {
660 auto it = s_ce_keys.find(user_id);
661 if (it == s_ce_keys.end()) {
662 LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
663 return false;
664 }
665 ce_key = it->second;
666 }
667
Paul Crowleya3630362016-05-17 14:17:56 -0700668 std::string ce_key_path;
669 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700670 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, auth, ce_key)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700671 return true;
672}
673
Diego Wilsondd0a81e2018-11-20 11:38:50 -0800674bool fscrypt_clear_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
Shivaprasad Hongal92292622018-07-05 14:49:12 -0700675 const std::string& secret_hex) {
Diego Wilsondd0a81e2018-11-20 11:38:50 -0800676 LOG(DEBUG) << "fscrypt_clear_user_key_auth " << user_id << " serial=" << serial
Shivaprasad Hongal92292622018-07-05 14:49:12 -0700677 << " token_present=" << (token_hex != "!");
Diego Wilsondd0a81e2018-11-20 11:38:50 -0800678 if (!fscrypt_is_native()) return true;
Shivaprasad Hongal92292622018-07-05 14:49:12 -0700679 if (s_ephemeral_users.count(user_id) != 0) return true;
680 std::string token, secret;
681
682 if (!parse_hex(token_hex, &token)) return false;
683 if (!parse_hex(secret_hex, &secret)) return false;
684
685 if (is_wrapped_key_supported()) {
686 auto const directory_path = get_ce_key_directory_path(user_id);
687 auto const paths = get_ce_key_paths(directory_path);
688
689 KeyBuffer ce_key;
690 std::string ce_key_current_path = get_ce_key_current_path(directory_path);
691
692 auto auth = android::vold::KeyAuthentication(token, secret);
693 /* Retrieve key while removing a pin. A secret is needed */
694 if (android::vold::retrieveKey(ce_key_current_path, auth, &ce_key)) {
695 LOG(DEBUG) << "Successfully retrieved key";
696 } else {
697 /* Retrieve key when going None to swipe and vice versa when a
698 synthetic password is present */
699 if (android::vold::retrieveKey(ce_key_current_path, kEmptyAuthentication, &ce_key)) {
700 LOG(DEBUG) << "Successfully retrieved key";
701 }
702 }
703
704 std::string ce_key_path;
705 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
706 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, kEmptyAuthentication, ce_key))
707 return false;
708 } else {
Diego Wilsondd0a81e2018-11-20 11:38:50 -0800709 if(!fscrypt_add_user_key_auth(user_id, serial, "!", "!")) return false;
Shivaprasad Hongal92292622018-07-05 14:49:12 -0700710 }
711 return true;
712}
713
Eric Biggersa701c452018-10-23 13:06:55 -0700714bool fscrypt_fixate_newest_user_key_auth(userid_t user_id) {
715 LOG(DEBUG) << "fscrypt_fixate_newest_user_key_auth " << user_id;
716 if (!fscrypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700717 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700718 auto const directory_path = get_ce_key_directory_path(user_id);
719 auto const paths = get_ce_key_paths(directory_path);
720 if (paths.empty()) {
721 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
722 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000723 }
Paul Crowleya3630362016-05-17 14:17:56 -0700724 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000725 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000726}
727
Jeff Sharkey47695b22016-02-01 17:02:29 -0700728// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Eric Biggersa701c452018-10-23 13:06:55 -0700729bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700730 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700731 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700732 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700733 if (fscrypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000734 if (s_ce_key_raw_refs.count(user_id) != 0) {
735 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000736 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000737 }
738 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800739 if (!parse_hex(token_hex, &token)) return false;
740 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000741 android::vold::KeyAuthentication auth(token, secret);
742 if (!read_and_install_user_ce_key(user_id, auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000743 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000744 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800745 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700746 } else {
747 // When in emulation mode, we just use chmod. However, we also
748 // unlock directories when not in emulation mode, to bring devices
749 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000750 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800751 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700752 !emulated_unlock(android::vold::BuildDataMediaCePath("", user_id), 0770) ||
753 !emulated_unlock(android::vold::BuildDataUserCePath("", user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700754 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000755 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700756 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800757 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000758 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800759}
760
Jeff Sharkey47695b22016-02-01 17:02:29 -0700761// TODO: rename to 'evict' for consistency
Eric Biggersa701c452018-10-23 13:06:55 -0700762bool fscrypt_lock_user_key(userid_t user_id) {
763 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
764 if (fscrypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000765 return evict_ce_key(user_id);
Eric Biggersa701c452018-10-23 13:06:55 -0700766 } else if (fscrypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800767 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000768 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800769 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700770 !emulated_lock(android::vold::BuildDataMediaCePath("", user_id)) ||
771 !emulated_lock(android::vold::BuildDataUserCePath("", user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000772 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000773 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800774 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800775 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700776
Paul Crowley76107cb2016-02-09 10:04:39 +0000777 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800778}
779
Paul Crowley82b41ff2017-10-20 08:17:54 -0700780static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
781 userid_t user_id, int flags) {
782 if (0 != android::vold::ForkExecvp(
783 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
784 std::to_string(user_id), std::to_string(flags)})) {
785 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700786 return false;
787 }
788 return true;
789}
790
Eric Biggersa701c452018-10-23 13:06:55 -0700791bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700792 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700793 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800794 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700795
Paul Crowley82b41ff2017-10-20 08:17:54 -0700796 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600797 // DE_sys key
798 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
799 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
800 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600801
802 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700803 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
804 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800805 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700806 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
807
Paul Crowley3b71fc52017-10-09 10:55:21 -0700808 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700809 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600810#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700811 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700812 multiuser_get_uid(user_id, AID_EVERYBODY)))
813 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600814#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700815 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600816
Paul Crowley6b756ce2017-10-05 14:07:09 -0700817 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
818 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800819 if (!prepare_dir(vendor_de_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700820 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000821 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000822
Eric Biggersa701c452018-10-23 13:06:55 -0700823 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700824 PolicyKeyRef de_ref;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700825 if (volume_uuid.empty()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700826 if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_ref.key_raw_ref)) return false;
827 get_data_file_encryption_modes(&de_ref);
828 if (!ensure_policy(de_ref, system_de_path)) return false;
829 if (!ensure_policy(de_ref, misc_de_path)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800830 if (!ensure_policy(de_ref, vendor_de_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700831 } else {
832 if (!read_or_create_volkey(misc_de_path, volume_uuid, &de_ref)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700833 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700834 if (!ensure_policy(de_ref, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700835 }
Paul Crowley285956f2016-01-20 13:12:38 +0000836 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800837
Paul Crowley82b41ff2017-10-20 08:17:54 -0700838 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600839 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700840 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
841 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800842 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600843 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
844 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800845
Paul Crowley3b71fc52017-10-09 10:55:21 -0700846 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700847 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
848 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800849 if (!prepare_dir(vendor_ce_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700850 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000851 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
852 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700853
Eric Biggersa701c452018-10-23 13:06:55 -0700854 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700855 PolicyKeyRef ce_ref;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700856 if (volume_uuid.empty()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700857 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_ref.key_raw_ref)) return false;
858 get_data_file_encryption_modes(&ce_ref);
859 if (!ensure_policy(ce_ref, system_ce_path)) return false;
860 if (!ensure_policy(ce_ref, misc_ce_path)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800861 if (!ensure_policy(ce_ref, vendor_ce_path)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700862
Paul Crowley3aa914d2017-10-09 16:35:51 -0700863 } else {
864 if (!read_or_create_volkey(misc_ce_path, volume_uuid, &ce_ref)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700865 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700866 if (!ensure_policy(ce_ref, media_ce_path)) return false;
867 if (!ensure_policy(ce_ref, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700868 }
Paul Crowley1a965262017-10-13 13:49:50 -0700869
870 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700871 // Now that credentials have been installed, we can run restorecon
872 // over these paths
873 // NOTE: these paths need to be kept in sync with libselinux
874 android::vold::RestoreconRecursive(system_ce_path);
875 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700876 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800877 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700878 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800879
Paul Crowley76107cb2016-02-09 10:04:39 +0000880 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800881}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600882
Eric Biggersa701c452018-10-23 13:06:55 -0700883bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
884 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600885 << ", user " << user_id << ", flags " << flags;
886 bool res = true;
887
Paul Crowley82b41ff2017-10-20 08:17:54 -0700888 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
889
890 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -0700891 // CE_n key
892 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
893 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800894 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -0700895 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
896 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
897
898 res &= destroy_dir(media_ce_path);
899 res &= destroy_dir(user_ce_path);
900 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700901 res &= destroy_dir(system_ce_path);
902 res &= destroy_dir(misc_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800903 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700904 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700905 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700906 res &= destroy_volkey(misc_ce_path, volume_uuid);
907 }
Paul Crowley8e550662017-10-16 17:01:44 -0700908 }
909 }
910
Paul Crowley82b41ff2017-10-20 08:17:54 -0700911 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600912 // DE_sys key
913 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
914 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
915 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600916
917 // DE_n key
918 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
919 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800920 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600921 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
922
Paul Crowley8e550662017-10-16 17:01:44 -0700923 res &= destroy_dir(user_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -0700924 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600925 res &= destroy_dir(system_legacy_path);
926#if MANAGE_MISC_DIRS
927 res &= destroy_dir(misc_legacy_path);
928#endif
929 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600930 res &= destroy_dir(system_de_path);
931 res &= destroy_dir(misc_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800932 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700933 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700934 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700935 res &= destroy_volkey(misc_de_path, volume_uuid);
936 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600937 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600938 }
939
940 return res;
941}
Rubin Xu2436e272017-04-27 20:43:10 +0100942
Paul Crowleyc6433a22017-10-24 14:54:43 -0700943static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
944 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
945 if (!dirp) {
946 PLOG(ERROR) << "Unable to open directory: " + directory_path;
947 return false;
948 }
949 bool res = true;
950 for (;;) {
951 errno = 0;
952 auto const entry = readdir(dirp.get());
953 if (!entry) {
954 if (errno) {
955 PLOG(ERROR) << "Unable to read directory: " + directory_path;
956 return false;
957 }
958 break;
959 }
960 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
961 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
962 continue;
963 }
964 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
965 }
966 return res;
967}
968
Eric Biggersa701c452018-10-23 13:06:55 -0700969bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700970 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -0700971 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -0700972 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
973 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -0700974 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
975 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
976 return res;
977}