blob: cf179c41951e05090c6849909dbdb610b464e846 [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>
Paul Crowleyb1f3d242016-01-28 10:09:46 +000026#include <set>
Paul Lawrencefd7db732015-04-10 07:48:51 -070027#include <sstream>
Paul Crowleydf528a72016-03-09 09:31:37 -080028#include <string>
Paul Crowleyf71ace32016-06-02 11:01:19 -070029#include <vector>
Paul Lawrence731a7a22015-04-28 22:14:15 +000030
Paul Crowleydf528a72016-03-09 09:31:37 -080031#include <dirent.h>
32#include <errno.h>
33#include <fcntl.h>
Paul Crowleya3630362016-05-17 14:17:56 -070034#include <limits.h>
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070035#include <selinux/android.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080036#include <sys/mount.h>
37#include <sys/stat.h>
38#include <sys/types.h>
Paul Crowley14c8c072018-09-18 13:30:21 -070039#include <unistd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000040
Paul Crowley480fcd22015-08-24 14:53:28 +010041#include <private/android_filesystem_config.h>
42
Paul Crowley82b41ff2017-10-20 08:17:54 -070043#include "android/os/IVold.h"
44
Paul Lawrence731a7a22015-04-28 22:14:15 +000045#include "cryptfs.h"
46
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070047#define EMULATED_USES_SELINUX 0
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -060048#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070049
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080050#include <cutils/fs.h>
Paul Crowleyf71ace32016-06-02 11:01:19 -070051#include <cutils/properties.h>
52
Eric Biggersa701c452018-10-23 13:06:55 -070053#include <fscrypt/fscrypt.h>
Elliott Hughesc3bda182017-05-09 17:01:04 -070054#include <keyutils.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080055
Elliott Hughes7e128fb2015-12-04 15:50:53 -080056#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080057#include <android-base/logging.h>
Paul Crowley3aa914d2017-10-09 16:35:51 -070058#include <android-base/properties.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080059#include <android-base/stringprintf.h>
Jieb6698d52018-11-12 15:26:02 +080060#include <android-base/unique_fd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000061
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080062using android::base::StringPrintf;
Pavel Grafovb350ed02017-07-27 17:34:57 +010063using android::base::WriteStringToFile;
Paul Crowley05720802016-02-08 15:55:41 +000064using android::vold::kEmptyAuthentication;
Pavel Grafove2e2d302017-08-01 17:15:53 +010065using android::vold::KeyBuffer;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080066
Paul Lawrence731a7a22015-04-28 22:14:15 +000067namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000068
Paul Crowley3aa914d2017-10-09 16:35:51 -070069struct PolicyKeyRef {
70 std::string contents_mode;
71 std::string filenames_mode;
72 std::string key_raw_ref;
73};
74
Eric Biggersa701c452018-10-23 13:06:55 -070075const std::string device_key_dir = std::string() + DATA_MNT_POINT + fscrypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080076const std::string device_key_path = device_key_dir + "/key";
77const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080078
Paul Crowleydf528a72016-03-09 09:31:37 -080079const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
80const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley82b41ff2017-10-20 08:17:54 -070081const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs";
Paul Crowley285956f2016-01-20 13:12:38 +000082
Paul Crowley26a53882017-10-26 11:16:39 -070083const std::string systemwide_volume_key_dir =
84 std::string() + DATA_MNT_POINT + "/misc/vold/volume_keys";
85
Paul Crowleydf528a72016-03-09 09:31:37 -080086bool s_global_de_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080087
Paul Crowleydf528a72016-03-09 09:31:37 -080088// Some users are ephemeral, don't try to wipe their keys from disk
89std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080090
Paul Crowleydf528a72016-03-09 09:31:37 -080091// Map user ids to key references
92std::map<userid_t, std::string> s_de_key_raw_refs;
93std::map<userid_t, std::string> s_ce_key_raw_refs;
Paul Crowley99360d72016-10-19 14:00:24 -070094// TODO abolish this map, per b/26948053
Pavel Grafove2e2d302017-08-01 17:15:53 +010095std::map<userid_t, KeyBuffer> s_ce_keys;
Paul Lawrence731a7a22015-04-28 22:14:15 +000096
Paul Crowley14c8c072018-09-18 13:30:21 -070097} // namespace
Paul Lawrence731a7a22015-04-28 22:14:15 +000098
Eric Biggersa701c452018-10-23 13:06:55 -070099static bool fscrypt_is_emulated() {
Paul Crowley38132a12016-02-09 09:50:32 +0000100 return property_get_bool("persist.sys.emulate_fbe", false);
101}
102
Paul Crowley3b71fc52017-10-09 10:55:21 -0700103static const char* escape_empty(const std::string& value) {
104 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000105}
106
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000107static std::string get_de_key_path(userid_t user_id) {
108 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
109}
110
Paul Crowleya3630362016-05-17 14:17:56 -0700111static std::string get_ce_key_directory_path(userid_t user_id) {
112 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
113}
114
115// Returns the keys newest first
116static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
117 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
118 if (!dirp) {
119 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
120 return std::vector<std::string>();
121 }
122 std::vector<std::string> result;
123 for (;;) {
124 errno = 0;
125 auto const entry = readdir(dirp.get());
126 if (!entry) {
127 if (errno) {
128 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
129 return std::vector<std::string>();
130 }
131 break;
132 }
133 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
134 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
135 continue;
136 }
137 result.emplace_back(directory_path + "/" + entry->d_name);
138 }
139 std::sort(result.begin(), result.end());
140 std::reverse(result.begin(), result.end());
141 return result;
142}
143
144static std::string get_ce_key_current_path(const std::string& directory_path) {
145 return directory_path + "/current";
146}
147
148static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700149 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700150 if (paths.empty()) {
151 *ce_key_path = get_ce_key_current_path(directory_path);
152 return true;
153 }
154 for (unsigned int i = 0; i < UINT_MAX; i++) {
155 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
156 if (paths[0] < candidate) {
157 *ce_key_path = candidate;
158 return true;
159 }
160 }
161 return false;
162}
163
164// Discard all keys but the named one; rename it to canonical name.
165// No point in acting on errors in this; ignore them.
Paul Crowley14c8c072018-09-18 13:30:21 -0700166static void fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700167 const std::vector<std::string>& paths) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700168 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700169 if (other_path != to_fix) {
170 android::vold::destroyKey(other_path);
171 }
172 }
173 auto const current_path = get_ce_key_current_path(directory_path);
174 if (to_fix != current_path) {
175 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
Jieb6698d52018-11-12 15:26:02 +0800176 android::base::unique_fd fd(TEMP_FAILURE_RETRY(
177 open(to_fix.c_str(), O_RDONLY | O_CLOEXEC)));
178 if (fd == -1) {
179 PLOG(ERROR) << "Failed to open " << to_fix;
180 return;
181 }
182 if (fsync(fd) == -1) {
183 if (errno == EROFS || errno == EINVAL) {
184 PLOG(WARNING) << "Skip fsync " << to_fix
185 << " on a file system does not support synchronization";
186 } else {
187 PLOG(ERROR) << "Failed to fsync " << to_fix;
188 unlink(to_fix.c_str());
189 return;
190 }
191 }
Paul Crowleya3630362016-05-17 14:17:56 -0700192 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
193 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
Jieb6698d52018-11-12 15:26:02 +0800194 return;
Paul Crowleya3630362016-05-17 14:17:56 -0700195 }
196 }
197}
198
199static bool read_and_fixate_user_ce_key(userid_t user_id,
200 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700201 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700202 auto const directory_path = get_ce_key_directory_path(user_id);
203 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700204 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700205 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
206 if (android::vold::retrieveKey(ce_key_path, auth, ce_key)) {
207 LOG(DEBUG) << "Successfully retrieved key";
208 fixate_user_ce_key(directory_path, ce_key_path, paths);
209 return true;
210 }
211 }
212 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
213 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100214}
215
Paul Crowleydf528a72016-03-09 09:31:37 -0800216static bool read_and_install_user_ce_key(userid_t user_id,
217 const android::vold::KeyAuthentication& auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000218 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100219 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700220 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000221 std::string ce_raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700222 if (!android::vold::installKey(ce_key, &ce_raw_ref)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100223 s_ce_keys[user_id] = std::move(ce_key);
Paul Crowley05720802016-02-08 15:55:41 +0000224 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000225 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000226 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000227}
228
Paul Crowleydf528a72016-03-09 09:31:37 -0800229static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000230 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000231 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
232 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000233 return false;
234 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000235 return true;
236}
237
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600238static bool destroy_dir(const std::string& dir) {
239 LOG(DEBUG) << "Destroying: " << dir;
240 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
241 PLOG(ERROR) << "Failed to destroy " << dir;
242 return false;
243 }
244 return true;
245}
246
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000247// NB this assumes that there is only one thread listening for crypt commands, because
248// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000249static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
Pavel Grafove2e2d302017-08-01 17:15:53 +0100250 KeyBuffer de_key, ce_key;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700251 if (!android::vold::randomKey(&de_key)) return false;
252 if (!android::vold::randomKey(&ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000253 if (create_ephemeral) {
254 // If the key should be created as ephemeral, don't store it.
255 s_ephemeral_users.insert(user_id);
256 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700257 auto const directory_path = get_ce_key_directory_path(user_id);
258 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
259 auto const paths = get_ce_key_paths(directory_path);
260 std::string ce_key_path;
261 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700262 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, kEmptyAuthentication,
263 ce_key))
264 return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700265 fixate_user_ce_key(directory_path, ce_key_path, paths);
266 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700267 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley14c8c072018-09-18 13:30:21 -0700268 kEmptyAuthentication, de_key))
269 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100270 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000271 std::string de_raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700272 if (!android::vold::installKey(de_key, &de_raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000273 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000274 std::string ce_raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700275 if (!android::vold::installKey(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000276 s_ce_keys[user_id] = ce_key;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000277 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000278 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000279 return true;
280}
281
Paul Crowleydf528a72016-03-09 09:31:37 -0800282static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
283 std::string* raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000284 auto refi = key_map.find(user_id);
285 if (refi == key_map.end()) {
286 LOG(ERROR) << "Cannot find key for " << user_id;
287 return false;
288 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800289 *raw_ref = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000290 return true;
291}
292
Paul Crowley3aa914d2017-10-09 16:35:51 -0700293static void get_data_file_encryption_modes(PolicyKeyRef* key_ref) {
Paul Crowleya7ca40b2017-10-06 14:29:33 -0700294 struct fstab_rec* rec = fs_mgr_get_entry_for_mount_point(fstab_default, DATA_MNT_POINT);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700295 char const* contents_mode;
296 char const* filenames_mode;
297 fs_mgr_get_file_encryption_modes(rec, &contents_mode, &filenames_mode);
298 key_ref->contents_mode = contents_mode;
299 key_ref->filenames_mode = filenames_mode;
Paul Crowleya7ca40b2017-10-06 14:29:33 -0700300}
301
Paul Crowley3aa914d2017-10-09 16:35:51 -0700302static bool ensure_policy(const PolicyKeyRef& key_ref, const std::string& path) {
Eric Biggersa701c452018-10-23 13:06:55 -0700303 return fscrypt_policy_ensure(path.c_str(), key_ref.key_raw_ref.data(),
Paul Crowley3aa914d2017-10-09 16:35:51 -0700304 key_ref.key_raw_ref.size(), key_ref.contents_mode.c_str(),
305 key_ref.filenames_mode.c_str()) == 0;
Paul Crowley95376d62015-05-06 15:04:43 +0100306}
Paul Crowleyb33e8872015-05-19 12:34:09 +0100307
Paul Crowleydf528a72016-03-09 09:31:37 -0800308static bool is_numeric(const char* name) {
309 for (const char* p = name; *p != '\0'; p++) {
310 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000311 }
312 return true;
313}
314
315static bool load_all_de_keys() {
316 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800317 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000318 if (!dirp) {
319 PLOG(ERROR) << "Unable to read de key directory";
320 return false;
321 }
322 for (;;) {
323 errno = 0;
324 auto entry = readdir(dirp.get());
325 if (!entry) {
326 if (errno) {
327 PLOG(ERROR) << "Unable to read de key directory";
328 return false;
329 }
330 break;
331 }
332 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
333 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
334 continue;
335 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600336 userid_t user_id = std::stoi(entry->d_name);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000337 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000338 auto key_path = de_dir + "/" + entry->d_name;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100339 KeyBuffer key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800340 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000341 std::string raw_ref;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700342 if (!android::vold::installKey(key, &raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000343 s_de_key_raw_refs[user_id] = raw_ref;
344 LOG(DEBUG) << "Installed de key for user " << user_id;
345 }
346 }
Eric Biggersa701c452018-10-23 13:06:55 -0700347 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000348 // correct policy set on them, and that no rogue ones exist.
349 return true;
350}
351
Eric Biggersa701c452018-10-23 13:06:55 -0700352bool fscrypt_initialize_global_de() {
353 LOG(INFO) << "fscrypt_initialize_global_de";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800354
Paul Crowley38132a12016-02-09 09:50:32 +0000355 if (s_global_de_initialized) {
356 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000357 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800358 }
359
Paul Crowley3aa914d2017-10-09 16:35:51 -0700360 PolicyKeyRef device_ref;
Paul Crowley26a53882017-10-26 11:16:39 -0700361 if (!android::vold::retrieveAndInstallKey(true, kEmptyAuthentication, device_key_path,
362 device_key_temp, &device_ref.key_raw_ref))
Paul Crowley3aa914d2017-10-09 16:35:51 -0700363 return false;
364 get_data_file_encryption_modes(&device_ref);
Eric Biggersb45caaf2017-02-02 14:52:12 -0800365
Paul Crowley3aa914d2017-10-09 16:35:51 -0700366 std::string modestring = device_ref.contents_mode + ":" + device_ref.filenames_mode;
Eric Biggersa701c452018-10-23 13:06:55 -0700367 std::string mode_filename = std::string("/data") + fscrypt_key_mode;
Eric Biggersb45caaf2017-02-02 14:52:12 -0800368 if (!android::base::WriteStringToFile(modestring, mode_filename)) {
Paul Lawrence6e410592016-05-24 14:20:38 -0700369 PLOG(ERROR) << "Cannot save type";
370 return false;
371 }
372
Eric Biggersa701c452018-10-23 13:06:55 -0700373 std::string ref_filename = std::string("/data") + fscrypt_key_ref;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700374 if (!android::base::WriteStringToFile(device_ref.key_raw_ref, ref_filename)) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700375 PLOG(ERROR) << "Cannot save key reference to:" << ref_filename;
Paul Crowley76107cb2016-02-09 10:04:39 +0000376 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800377 }
Paul Crowleyf71ace32016-06-02 11:01:19 -0700378 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800379
Paul Crowley38132a12016-02-09 09:50:32 +0000380 s_global_de_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000381 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800382}
383
Eric Biggersa701c452018-10-23 13:06:55 -0700384bool fscrypt_init_user0() {
385 LOG(DEBUG) << "fscrypt_init_user0";
386 if (fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000387 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
388 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
389 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700390 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000391 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000392 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700393 // TODO: switch to loading only DE_0 here once framework makes
394 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000395 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000396 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700397 // We can only safely prepare DE storage here, since CE keys are probably
398 // entangled with user credentials. The framework will always prepare CE
399 // storage once CE keys are installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700400 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700401 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000402 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700403 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700404
405 // If this is a non-FBE device that recently left an emulated mode,
406 // restore user data directories to known-good state.
Eric Biggersa701c452018-10-23 13:06:55 -0700407 if (!fscrypt_is_native() && !fscrypt_is_emulated()) {
408 fscrypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700409 }
410
Paul Crowley76107cb2016-02-09 10:04:39 +0000411 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000412}
413
Eric Biggersa701c452018-10-23 13:06:55 -0700414bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
415 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
416 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000417 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000418 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000419 // FIXME test for existence of key that is not loaded yet
420 if (s_ce_key_raw_refs.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700421 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800422 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000423 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000424 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800425 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000426 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000427 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000428 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000429 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800430}
431
Pavel Grafovb350ed02017-07-27 17:34:57 +0100432static void drop_caches() {
433 // Clean any dirty pages (otherwise they won't be dropped).
434 sync();
435 // Drop inode and page caches.
436 if (!WriteStringToFile("3", "/proc/sys/vm/drop_caches")) {
437 PLOG(ERROR) << "Failed to drop caches during key eviction";
438 }
439}
440
Andrew Scull7ec25c72016-10-31 10:28:25 +0000441static bool evict_ce_key(userid_t user_id) {
Pavel Grafove2e2d302017-08-01 17:15:53 +0100442 s_ce_keys.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000443 bool success = true;
444 std::string raw_ref;
445 // If we haven't loaded the CE key, no need to evict it.
446 if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) {
Paul Crowleyf71ace32016-06-02 11:01:19 -0700447 success &= android::vold::evictKey(raw_ref);
Pavel Grafovb350ed02017-07-27 17:34:57 +0100448 drop_caches();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000449 }
450 s_ce_key_raw_refs.erase(user_id);
451 return success;
452}
453
Eric Biggersa701c452018-10-23 13:06:55 -0700454bool fscrypt_destroy_user_key(userid_t user_id) {
455 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
456 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000457 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000458 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000459 bool success = true;
460 std::string raw_ref;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000461 success &= evict_ce_key(user_id);
Paul Crowley14c8c072018-09-18 13:30:21 -0700462 success &=
463 lookup_key_ref(s_de_key_raw_refs, user_id, &raw_ref) && android::vold::evictKey(raw_ref);
Paul Crowley05720802016-02-08 15:55:41 +0000464 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000465 auto it = s_ephemeral_users.find(user_id);
466 if (it != s_ephemeral_users.end()) {
467 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000468 } else {
Paul Crowley14c8c072018-09-18 13:30:21 -0700469 for (auto const path : get_ce_key_paths(get_ce_key_directory_path(user_id))) {
Paul Crowleya3630362016-05-17 14:17:56 -0700470 success &= android::vold::destroyKey(path);
471 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700472 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700473 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700474 success &= android::vold::destroyKey(de_key_path);
475 } else {
476 LOG(INFO) << "Not present so not erasing: " << de_key_path;
477 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100478 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000479 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100480}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800481
Paul Crowley76107cb2016-02-09 10:04:39 +0000482static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700483 if (chmod(path.c_str(), 0000) != 0) {
484 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000485 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700486 }
487#if EMULATED_USES_SELINUX
488 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
489 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000490 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700491 }
492#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000493 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700494}
495
Paul Crowley76107cb2016-02-09 10:04:39 +0000496static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700497 if (chmod(path.c_str(), mode) != 0) {
498 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000499 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700500 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700501 }
502#if EMULATED_USES_SELINUX
503 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
504 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000505 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700506 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700507 }
508#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000509 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700510}
511
Paul Crowley3b71fc52017-10-09 10:55:21 -0700512static bool parse_hex(const std::string& hex, std::string* result) {
513 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800514 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000515 return true;
516 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800517 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800518 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000519 return false;
520 }
521 return true;
522}
523
Paul Crowley3aa914d2017-10-09 16:35:51 -0700524static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
525 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
526}
527
Paul Crowley26a53882017-10-26 11:16:39 -0700528static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
529 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
530}
531
Paul Crowley3aa914d2017-10-09 16:35:51 -0700532static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
533 PolicyKeyRef* key_ref) {
Paul Crowley26a53882017-10-26 11:16:39 -0700534 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
535 std::string secdiscardable_hash;
536 if (android::vold::pathExists(secdiscardable_path)) {
537 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
538 return false;
539 } else {
540 if (fs_mkdirs(secdiscardable_path.c_str(), 0700) != 0) {
541 PLOG(ERROR) << "Creating directories for: " << secdiscardable_path;
542 return false;
543 }
544 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
545 return false;
546 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700547 auto key_path = volkey_path(misc_path, volume_uuid);
548 if (fs_mkdirs(key_path.c_str(), 0700) != 0) {
549 PLOG(ERROR) << "Creating directories for: " << key_path;
550 return false;
551 }
Paul Crowley26a53882017-10-26 11:16:39 -0700552 android::vold::KeyAuthentication auth("", secdiscardable_hash);
553 if (!android::vold::retrieveAndInstallKey(true, auth, key_path, key_path + "_tmp",
Paul Crowley3aa914d2017-10-09 16:35:51 -0700554 &key_ref->key_raw_ref))
555 return false;
556 key_ref->contents_mode =
557 android::base::GetProperty("ro.crypto.volume.contents_mode", "aes-256-xts");
558 key_ref->filenames_mode =
559 android::base::GetProperty("ro.crypto.volume.filenames_mode", "aes-256-heh");
560 return true;
561}
562
563static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700564 auto path = volkey_path(misc_path, volume_uuid);
565 if (!android::vold::pathExists(path)) return true;
566 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700567}
568
Eric Biggersa701c452018-10-23 13:06:55 -0700569bool fscrypt_add_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700570 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700571 LOG(DEBUG) << "fscrypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700572 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700573 if (!fscrypt_is_native()) return true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000574 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700575 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800576 if (!parse_hex(token_hex, &token)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700577 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700578 auto auth =
579 secret.empty() ? kEmptyAuthentication : android::vold::KeyAuthentication(token, secret);
Paul Crowley05720802016-02-08 15:55:41 +0000580 auto it = s_ce_keys.find(user_id);
581 if (it == s_ce_keys.end()) {
582 LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000583 return false;
Paul Crowley05720802016-02-08 15:55:41 +0000584 }
Paul Crowley14c8c072018-09-18 13:30:21 -0700585 const auto& ce_key = it->second;
Paul Crowleya3630362016-05-17 14:17:56 -0700586 auto const directory_path = get_ce_key_directory_path(user_id);
587 auto const paths = get_ce_key_paths(directory_path);
588 std::string ce_key_path;
589 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700590 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, auth, ce_key)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700591 return true;
592}
593
Eric Biggersa701c452018-10-23 13:06:55 -0700594bool fscrypt_fixate_newest_user_key_auth(userid_t user_id) {
595 LOG(DEBUG) << "fscrypt_fixate_newest_user_key_auth " << user_id;
596 if (!fscrypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700597 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700598 auto const directory_path = get_ce_key_directory_path(user_id);
599 auto const paths = get_ce_key_paths(directory_path);
600 if (paths.empty()) {
601 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
602 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000603 }
Paul Crowleya3630362016-05-17 14:17:56 -0700604 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000605 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000606}
607
Jeff Sharkey47695b22016-02-01 17:02:29 -0700608// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Eric Biggersa701c452018-10-23 13:06:55 -0700609bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700610 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700611 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700612 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700613 if (fscrypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000614 if (s_ce_key_raw_refs.count(user_id) != 0) {
615 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000616 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000617 }
618 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800619 if (!parse_hex(token_hex, &token)) return false;
620 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000621 android::vold::KeyAuthentication auth(token, secret);
622 if (!read_and_install_user_ce_key(user_id, auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000623 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000624 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800625 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700626 } else {
627 // When in emulation mode, we just use chmod. However, we also
628 // unlock directories when not in emulation mode, to bring devices
629 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000630 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800631 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700632 !emulated_unlock(android::vold::BuildDataMediaCePath("", user_id), 0770) ||
633 !emulated_unlock(android::vold::BuildDataUserCePath("", user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700634 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000635 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700636 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800637 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000638 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800639}
640
Jeff Sharkey47695b22016-02-01 17:02:29 -0700641// TODO: rename to 'evict' for consistency
Eric Biggersa701c452018-10-23 13:06:55 -0700642bool fscrypt_lock_user_key(userid_t user_id) {
643 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
644 if (fscrypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000645 return evict_ce_key(user_id);
Eric Biggersa701c452018-10-23 13:06:55 -0700646 } else if (fscrypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800647 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000648 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800649 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700650 !emulated_lock(android::vold::BuildDataMediaCePath("", user_id)) ||
651 !emulated_lock(android::vold::BuildDataUserCePath("", user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000652 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000653 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800654 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800655 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700656
Paul Crowley76107cb2016-02-09 10:04:39 +0000657 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800658}
659
Paul Crowley82b41ff2017-10-20 08:17:54 -0700660static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
661 userid_t user_id, int flags) {
662 if (0 != android::vold::ForkExecvp(
663 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
664 std::to_string(user_id), std::to_string(flags)})) {
665 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700666 return false;
667 }
668 return true;
669}
670
Eric Biggersa701c452018-10-23 13:06:55 -0700671bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700672 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700673 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800674 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700675
Paul Crowley82b41ff2017-10-20 08:17:54 -0700676 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600677 // DE_sys key
678 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
679 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
680 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600681
682 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700683 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
684 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800685 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700686 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
687
Paul Crowley3b71fc52017-10-09 10:55:21 -0700688 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700689 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600690#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700691 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700692 multiuser_get_uid(user_id, AID_EVERYBODY)))
693 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600694#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700695 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600696
Paul Crowley6b756ce2017-10-05 14:07:09 -0700697 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
698 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800699 if (!prepare_dir(vendor_de_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700700 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000701 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000702
Eric Biggersa701c452018-10-23 13:06:55 -0700703 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700704 PolicyKeyRef de_ref;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700705 if (volume_uuid.empty()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700706 if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_ref.key_raw_ref)) return false;
707 get_data_file_encryption_modes(&de_ref);
708 if (!ensure_policy(de_ref, system_de_path)) return false;
709 if (!ensure_policy(de_ref, misc_de_path)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800710 if (!ensure_policy(de_ref, vendor_de_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700711 } else {
712 if (!read_or_create_volkey(misc_de_path, volume_uuid, &de_ref)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700713 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700714 if (!ensure_policy(de_ref, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700715 }
Paul Crowley285956f2016-01-20 13:12:38 +0000716 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800717
Paul Crowley82b41ff2017-10-20 08:17:54 -0700718 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600719 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700720 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
721 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800722 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600723 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
724 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800725
Paul Crowley3b71fc52017-10-09 10:55:21 -0700726 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700727 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
728 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800729 if (!prepare_dir(vendor_ce_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700730 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000731 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
732 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700733
Eric Biggersa701c452018-10-23 13:06:55 -0700734 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700735 PolicyKeyRef ce_ref;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700736 if (volume_uuid.empty()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700737 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_ref.key_raw_ref)) return false;
738 get_data_file_encryption_modes(&ce_ref);
739 if (!ensure_policy(ce_ref, system_ce_path)) return false;
740 if (!ensure_policy(ce_ref, misc_ce_path)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800741 if (!ensure_policy(ce_ref, vendor_ce_path)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700742
Paul Crowley3aa914d2017-10-09 16:35:51 -0700743 } else {
744 if (!read_or_create_volkey(misc_ce_path, volume_uuid, &ce_ref)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700745 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700746 if (!ensure_policy(ce_ref, media_ce_path)) return false;
747 if (!ensure_policy(ce_ref, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700748 }
Paul Crowley1a965262017-10-13 13:49:50 -0700749
750 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700751 // Now that credentials have been installed, we can run restorecon
752 // over these paths
753 // NOTE: these paths need to be kept in sync with libselinux
754 android::vold::RestoreconRecursive(system_ce_path);
755 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700756 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800757 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700758 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800759
Paul Crowley76107cb2016-02-09 10:04:39 +0000760 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800761}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600762
Eric Biggersa701c452018-10-23 13:06:55 -0700763bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
764 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600765 << ", user " << user_id << ", flags " << flags;
766 bool res = true;
767
Paul Crowley82b41ff2017-10-20 08:17:54 -0700768 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
769
770 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -0700771 // CE_n key
772 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
773 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800774 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -0700775 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
776 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
777
778 res &= destroy_dir(media_ce_path);
779 res &= destroy_dir(user_ce_path);
780 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700781 res &= destroy_dir(system_ce_path);
782 res &= destroy_dir(misc_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800783 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700784 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700785 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700786 res &= destroy_volkey(misc_ce_path, volume_uuid);
787 }
Paul Crowley8e550662017-10-16 17:01:44 -0700788 }
789 }
790
Paul Crowley82b41ff2017-10-20 08:17:54 -0700791 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600792 // DE_sys key
793 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
794 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
795 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600796
797 // DE_n key
798 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
799 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800800 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600801 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
802
Paul Crowley8e550662017-10-16 17:01:44 -0700803 res &= destroy_dir(user_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -0700804 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600805 res &= destroy_dir(system_legacy_path);
806#if MANAGE_MISC_DIRS
807 res &= destroy_dir(misc_legacy_path);
808#endif
809 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600810 res &= destroy_dir(system_de_path);
811 res &= destroy_dir(misc_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800812 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700813 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700814 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700815 res &= destroy_volkey(misc_de_path, volume_uuid);
816 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600817 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600818 }
819
820 return res;
821}
Rubin Xu2436e272017-04-27 20:43:10 +0100822
Paul Crowleyc6433a22017-10-24 14:54:43 -0700823static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
824 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
825 if (!dirp) {
826 PLOG(ERROR) << "Unable to open directory: " + directory_path;
827 return false;
828 }
829 bool res = true;
830 for (;;) {
831 errno = 0;
832 auto const entry = readdir(dirp.get());
833 if (!entry) {
834 if (errno) {
835 PLOG(ERROR) << "Unable to read directory: " + directory_path;
836 return false;
837 }
838 break;
839 }
840 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
841 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
842 continue;
843 }
844 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
845 }
846 return res;
847}
848
Eric Biggersa701c452018-10-23 13:06:55 -0700849bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700850 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -0700851 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -0700852 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
853 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -0700854 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
855 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
856 return res;
857}