blob: e28002f642a5c8d5e2f9bc6655bfe4177a432018 [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;
Tom Cherry4c5bde22019-01-29 14:34:01 -080063using android::fs_mgr::GetEntryForMountPoint;
Paul Crowley05720802016-02-08 15:55:41 +000064using android::vold::kEmptyAuthentication;
Pavel Grafove2e2d302017-08-01 17:15:53 +010065using android::vold::KeyBuffer;
Tommy Chiua98464f2019-03-26 14:14:19 +080066using android::vold::writeStringToFile;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080067
Paul Lawrence731a7a22015-04-28 22:14:15 +000068namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000069
Paul Crowley3aa914d2017-10-09 16:35:51 -070070struct PolicyKeyRef {
71 std::string contents_mode;
72 std::string filenames_mode;
73 std::string key_raw_ref;
74};
75
Eric Biggersa701c452018-10-23 13:06:55 -070076const std::string device_key_dir = std::string() + DATA_MNT_POINT + fscrypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080077const std::string device_key_path = device_key_dir + "/key";
78const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080079
Paul Crowleydf528a72016-03-09 09:31:37 -080080const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
81const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley82b41ff2017-10-20 08:17:54 -070082const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs";
Paul Crowley285956f2016-01-20 13:12:38 +000083
Paul Crowley26a53882017-10-26 11:16:39 -070084const std::string systemwide_volume_key_dir =
85 std::string() + DATA_MNT_POINT + "/misc/vold/volume_keys";
86
Paul Crowleyc8a3ef32019-09-11 15:00:08 -070087bool s_systemwide_keys_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080088
Paul Crowleydf528a72016-03-09 09:31:37 -080089// Some users are ephemeral, don't try to wipe their keys from disk
90std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080091
Paul Crowleydf528a72016-03-09 09:31:37 -080092// Map user ids to key references
93std::map<userid_t, std::string> s_de_key_raw_refs;
94std::map<userid_t, std::string> s_ce_key_raw_refs;
Paul Crowley99360d72016-10-19 14:00:24 -070095// TODO abolish this map, per b/26948053
Pavel Grafove2e2d302017-08-01 17:15:53 +010096std::map<userid_t, KeyBuffer> s_ce_keys;
Paul Lawrence731a7a22015-04-28 22:14:15 +000097
Paul Crowley14c8c072018-09-18 13:30:21 -070098} // namespace
Paul Lawrence731a7a22015-04-28 22:14:15 +000099
Eric Biggersa701c452018-10-23 13:06:55 -0700100static bool fscrypt_is_emulated() {
Paul Crowley38132a12016-02-09 09:50:32 +0000101 return property_get_bool("persist.sys.emulate_fbe", false);
102}
103
Paul Crowley3b71fc52017-10-09 10:55:21 -0700104static const char* escape_empty(const std::string& value) {
105 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000106}
107
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000108static std::string get_de_key_path(userid_t user_id) {
109 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
110}
111
Paul Crowleya3630362016-05-17 14:17:56 -0700112static std::string get_ce_key_directory_path(userid_t user_id) {
113 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
114}
115
116// Returns the keys newest first
117static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
118 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
119 if (!dirp) {
120 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
121 return std::vector<std::string>();
122 }
123 std::vector<std::string> result;
124 for (;;) {
125 errno = 0;
126 auto const entry = readdir(dirp.get());
127 if (!entry) {
128 if (errno) {
129 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
130 return std::vector<std::string>();
131 }
132 break;
133 }
134 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
135 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
136 continue;
137 }
138 result.emplace_back(directory_path + "/" + entry->d_name);
139 }
140 std::sort(result.begin(), result.end());
141 std::reverse(result.begin(), result.end());
142 return result;
143}
144
145static std::string get_ce_key_current_path(const std::string& directory_path) {
146 return directory_path + "/current";
147}
148
149static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700150 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700151 if (paths.empty()) {
152 *ce_key_path = get_ce_key_current_path(directory_path);
153 return true;
154 }
155 for (unsigned int i = 0; i < UINT_MAX; i++) {
156 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
157 if (paths[0] < candidate) {
158 *ce_key_path = candidate;
159 return true;
160 }
161 }
162 return false;
163}
164
165// Discard all keys but the named one; rename it to canonical name.
166// No point in acting on errors in this; ignore them.
Paul Crowley14c8c072018-09-18 13:30:21 -0700167static void fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700168 const std::vector<std::string>& paths) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700169 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700170 if (other_path != to_fix) {
171 android::vold::destroyKey(other_path);
172 }
173 }
174 auto const current_path = get_ce_key_current_path(directory_path);
175 if (to_fix != current_path) {
176 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
177 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
178 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
Jieb6698d52018-11-12 15:26:02 +0800179 return;
Paul Crowleya3630362016-05-17 14:17:56 -0700180 }
181 }
Paul Crowley621d9b92018-12-07 15:36:09 -0800182 android::vold::FsyncDirectory(directory_path);
Paul Crowleya3630362016-05-17 14:17:56 -0700183}
184
185static bool read_and_fixate_user_ce_key(userid_t user_id,
186 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700187 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700188 auto const directory_path = get_ce_key_directory_path(user_id);
189 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700190 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700191 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
192 if (android::vold::retrieveKey(ce_key_path, auth, ce_key)) {
193 LOG(DEBUG) << "Successfully retrieved key";
194 fixate_user_ce_key(directory_path, ce_key_path, paths);
195 return true;
196 }
197 }
198 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
199 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100200}
201
Eric Biggersf3dc4202019-09-30 13:05:58 -0700202// Install a key for use by encrypted files on the /data filesystem.
203static bool install_data_key(const KeyBuffer& key, std::string* raw_ref) {
204 return android::vold::installKey(key, DATA_MNT_POINT, raw_ref);
205}
206
207// Evict a key for use by encrypted files on the /data filesystem.
208static bool evict_data_key(const std::string& raw_ref) {
209 return android::vold::evictKey(DATA_MNT_POINT, raw_ref);
210}
211
Paul Crowleydf528a72016-03-09 09:31:37 -0800212static bool read_and_install_user_ce_key(userid_t user_id,
213 const android::vold::KeyAuthentication& auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000214 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100215 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700216 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000217 std::string ce_raw_ref;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700218 if (!install_data_key(ce_key, &ce_raw_ref)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100219 s_ce_keys[user_id] = std::move(ce_key);
Paul Crowley05720802016-02-08 15:55:41 +0000220 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000221 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000222 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000223}
224
Paul Crowleydf528a72016-03-09 09:31:37 -0800225static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000226 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000227 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
228 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000229 return false;
230 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000231 return true;
232}
233
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600234static bool destroy_dir(const std::string& dir) {
235 LOG(DEBUG) << "Destroying: " << dir;
236 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
237 PLOG(ERROR) << "Failed to destroy " << dir;
238 return false;
239 }
240 return true;
241}
242
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000243// NB this assumes that there is only one thread listening for crypt commands, because
244// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000245static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
Pavel Grafove2e2d302017-08-01 17:15:53 +0100246 KeyBuffer de_key, ce_key;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700247 if (!android::vold::randomKey(&de_key)) return false;
248 if (!android::vold::randomKey(&ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000249 if (create_ephemeral) {
250 // If the key should be created as ephemeral, don't store it.
251 s_ephemeral_users.insert(user_id);
252 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700253 auto const directory_path = get_ce_key_directory_path(user_id);
254 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
255 auto const paths = get_ce_key_paths(directory_path);
256 std::string ce_key_path;
257 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700258 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, kEmptyAuthentication,
259 ce_key))
260 return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700261 fixate_user_ce_key(directory_path, ce_key_path, paths);
262 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700263 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley14c8c072018-09-18 13:30:21 -0700264 kEmptyAuthentication, de_key))
265 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100266 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000267 std::string de_raw_ref;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700268 if (!install_data_key(de_key, &de_raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000269 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000270 std::string ce_raw_ref;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700271 if (!install_data_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000272 s_ce_keys[user_id] = ce_key;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000273 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000274 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000275 return true;
276}
277
Paul Crowleydf528a72016-03-09 09:31:37 -0800278static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
279 std::string* raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000280 auto refi = key_map.find(user_id);
281 if (refi == key_map.end()) {
Eric Biggersd1034042019-04-02 10:38:15 -0700282 LOG(DEBUG) << "Cannot find key for " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000283 return false;
284 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800285 *raw_ref = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000286 return true;
287}
288
Paul Crowley3aa914d2017-10-09 16:35:51 -0700289static void get_data_file_encryption_modes(PolicyKeyRef* key_ref) {
Tom Cherry4c5bde22019-01-29 14:34:01 -0800290 auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT);
291 if (entry == nullptr) {
292 return;
293 }
294 key_ref->contents_mode = entry->file_contents_mode;
295 key_ref->filenames_mode = entry->file_names_mode;
Paul Crowleya7ca40b2017-10-06 14:29:33 -0700296}
297
Paul Crowley3aa914d2017-10-09 16:35:51 -0700298static bool ensure_policy(const PolicyKeyRef& key_ref, const std::string& path) {
Eric Biggersa701c452018-10-23 13:06:55 -0700299 return fscrypt_policy_ensure(path.c_str(), key_ref.key_raw_ref.data(),
Paul Crowley3aa914d2017-10-09 16:35:51 -0700300 key_ref.key_raw_ref.size(), key_ref.contents_mode.c_str(),
301 key_ref.filenames_mode.c_str()) == 0;
Paul Crowley95376d62015-05-06 15:04:43 +0100302}
Paul Crowleyb33e8872015-05-19 12:34:09 +0100303
Paul Crowleydf528a72016-03-09 09:31:37 -0800304static bool is_numeric(const char* name) {
305 for (const char* p = name; *p != '\0'; p++) {
306 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000307 }
308 return true;
309}
310
311static bool load_all_de_keys() {
312 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800313 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000314 if (!dirp) {
315 PLOG(ERROR) << "Unable to read de key directory";
316 return false;
317 }
318 for (;;) {
319 errno = 0;
320 auto entry = readdir(dirp.get());
321 if (!entry) {
322 if (errno) {
323 PLOG(ERROR) << "Unable to read de key directory";
324 return false;
325 }
326 break;
327 }
328 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
329 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
330 continue;
331 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600332 userid_t user_id = std::stoi(entry->d_name);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000333 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000334 auto key_path = de_dir + "/" + entry->d_name;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100335 KeyBuffer key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800336 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000337 std::string raw_ref;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700338 if (!install_data_key(key, &raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000339 s_de_key_raw_refs[user_id] = raw_ref;
340 LOG(DEBUG) << "Installed de key for user " << user_id;
341 }
342 }
Eric Biggersa701c452018-10-23 13:06:55 -0700343 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000344 // correct policy set on them, and that no rogue ones exist.
345 return true;
346}
347
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700348bool fscrypt_initialize_systemwide_keys() {
349 LOG(INFO) << "fscrypt_initialize_systemwide_keys";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800350
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700351 if (s_systemwide_keys_initialized) {
Paul Crowley38132a12016-02-09 09:50:32 +0000352 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000353 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800354 }
355
Paul Crowley3aa914d2017-10-09 16:35:51 -0700356 PolicyKeyRef device_ref;
Paul Crowley26a53882017-10-26 11:16:39 -0700357 if (!android::vold::retrieveAndInstallKey(true, kEmptyAuthentication, device_key_path,
Eric Biggersf3dc4202019-09-30 13:05:58 -0700358 device_key_temp, "", &device_ref.key_raw_ref))
Paul Crowley3aa914d2017-10-09 16:35:51 -0700359 return false;
360 get_data_file_encryption_modes(&device_ref);
Eric Biggersb45caaf2017-02-02 14:52:12 -0800361
Paul Crowley3aa914d2017-10-09 16:35:51 -0700362 std::string modestring = device_ref.contents_mode + ":" + device_ref.filenames_mode;
Eric Biggersa701c452018-10-23 13:06:55 -0700363 std::string mode_filename = std::string("/data") + fscrypt_key_mode;
Tommy Chiua98464f2019-03-26 14:14:19 +0800364 if (!android::vold::writeStringToFile(modestring, mode_filename)) return false;
Paul Lawrence6e410592016-05-24 14:20:38 -0700365
Eric Biggersa701c452018-10-23 13:06:55 -0700366 std::string ref_filename = std::string("/data") + fscrypt_key_ref;
Tommy Chiua98464f2019-03-26 14:14:19 +0800367 if (!android::vold::writeStringToFile(device_ref.key_raw_ref, ref_filename)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700368 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800369
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700370 KeyBuffer per_boot_key;
371 if (!android::vold::randomKey(&per_boot_key)) return false;
372 std::string per_boot_raw_ref;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700373 if (!install_data_key(per_boot_key, &per_boot_raw_ref)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700374 std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref;
375 if (!android::vold::writeStringToFile(per_boot_raw_ref, per_boot_ref_filename)) return false;
376 LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename;
377
Tommy Chiua98464f2019-03-26 14:14:19 +0800378 if (!android::vold::FsyncDirectory(device_key_dir)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700379 s_systemwide_keys_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000380 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800381}
382
Eric Biggersa701c452018-10-23 13:06:55 -0700383bool fscrypt_init_user0() {
384 LOG(DEBUG) << "fscrypt_init_user0";
385 if (fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000386 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
387 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
388 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700389 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000390 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000391 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700392 // TODO: switch to loading only DE_0 here once framework makes
393 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000394 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000395 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700396 // We can only safely prepare DE storage here, since CE keys are probably
397 // entangled with user credentials. The framework will always prepare CE
398 // storage once CE keys are installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700399 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700400 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000401 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700402 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700403
404 // If this is a non-FBE device that recently left an emulated mode,
405 // restore user data directories to known-good state.
Eric Biggersa701c452018-10-23 13:06:55 -0700406 if (!fscrypt_is_native() && !fscrypt_is_emulated()) {
407 fscrypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700408 }
409
Paul Crowley76107cb2016-02-09 10:04:39 +0000410 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000411}
412
Eric Biggersa701c452018-10-23 13:06:55 -0700413bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
414 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
415 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000416 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000417 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000418 // FIXME test for existence of key that is not loaded yet
419 if (s_ce_key_raw_refs.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700420 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800421 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000422 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000423 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800424 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000425 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000426 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000427 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000428 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800429}
430
Eric Biggersce368682019-04-03 15:44:06 -0700431// "Lock" all encrypted directories whose key has been removed. This is needed
Eric Biggersf3dc4202019-09-30 13:05:58 -0700432// in the case where the keys are being put in the session keyring (rather in
433// the newer filesystem-level keyrings), because removing a key from the session
434// keyring doesn't affect inodes in the kernel's inode cache whose per-file key
435// was already set up. So to remove the per-file keys and make the files
436// "appear encrypted", these inodes must be evicted.
Eric Biggersce368682019-04-03 15:44:06 -0700437//
438// To do this, sync() to clean all dirty inodes, then drop all reclaimable slab
439// objects systemwide. This is overkill, but it's the best available method
440// currently. Don't use drop_caches mode "3" because that also evicts pagecache
441// for in-use files; all files relevant here are already closed and sync'ed.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700442static void drop_caches_if_needed() {
443 if (android::vold::isFsKeyringSupported()) {
444 return;
445 }
Pavel Grafovb350ed02017-07-27 17:34:57 +0100446 sync();
Eric Biggersce368682019-04-03 15:44:06 -0700447 if (!writeStringToFile("2", "/proc/sys/vm/drop_caches")) {
Pavel Grafovb350ed02017-07-27 17:34:57 +0100448 PLOG(ERROR) << "Failed to drop caches during key eviction";
449 }
450}
451
Andrew Scull7ec25c72016-10-31 10:28:25 +0000452static bool evict_ce_key(userid_t user_id) {
Pavel Grafove2e2d302017-08-01 17:15:53 +0100453 s_ce_keys.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000454 bool success = true;
455 std::string raw_ref;
456 // If we haven't loaded the CE key, no need to evict it.
457 if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) {
Eric Biggersf3dc4202019-09-30 13:05:58 -0700458 success &= evict_data_key(raw_ref);
459 drop_caches_if_needed();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000460 }
461 s_ce_key_raw_refs.erase(user_id);
462 return success;
463}
464
Eric Biggersa701c452018-10-23 13:06:55 -0700465bool fscrypt_destroy_user_key(userid_t user_id) {
466 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
467 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000468 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000469 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000470 bool success = true;
471 std::string raw_ref;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000472 success &= evict_ce_key(user_id);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700473 success &= lookup_key_ref(s_de_key_raw_refs, user_id, &raw_ref) && evict_data_key(raw_ref);
Paul Crowley05720802016-02-08 15:55:41 +0000474 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000475 auto it = s_ephemeral_users.find(user_id);
476 if (it != s_ephemeral_users.end()) {
477 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000478 } else {
Paul Crowley14c8c072018-09-18 13:30:21 -0700479 for (auto const path : get_ce_key_paths(get_ce_key_directory_path(user_id))) {
Paul Crowleya3630362016-05-17 14:17:56 -0700480 success &= android::vold::destroyKey(path);
481 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700482 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700483 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700484 success &= android::vold::destroyKey(de_key_path);
485 } else {
486 LOG(INFO) << "Not present so not erasing: " << de_key_path;
487 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100488 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000489 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100490}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800491
Paul Crowley76107cb2016-02-09 10:04:39 +0000492static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700493 if (chmod(path.c_str(), 0000) != 0) {
494 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000495 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700496 }
497#if EMULATED_USES_SELINUX
498 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
499 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000500 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700501 }
502#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000503 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700504}
505
Paul Crowley76107cb2016-02-09 10:04:39 +0000506static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700507 if (chmod(path.c_str(), mode) != 0) {
508 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000509 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700510 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700511 }
512#if EMULATED_USES_SELINUX
513 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
514 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000515 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700516 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700517 }
518#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000519 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700520}
521
Paul Crowley3b71fc52017-10-09 10:55:21 -0700522static bool parse_hex(const std::string& hex, std::string* result) {
523 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800524 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000525 return true;
526 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800527 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800528 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000529 return false;
530 }
531 return true;
532}
533
Paul Crowley3aa914d2017-10-09 16:35:51 -0700534static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
535 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
536}
537
Paul Crowley26a53882017-10-26 11:16:39 -0700538static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
539 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
540}
541
Paul Crowley3aa914d2017-10-09 16:35:51 -0700542static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
543 PolicyKeyRef* key_ref) {
Paul Crowley26a53882017-10-26 11:16:39 -0700544 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
545 std::string secdiscardable_hash;
546 if (android::vold::pathExists(secdiscardable_path)) {
547 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
548 return false;
549 } else {
550 if (fs_mkdirs(secdiscardable_path.c_str(), 0700) != 0) {
551 PLOG(ERROR) << "Creating directories for: " << secdiscardable_path;
552 return false;
553 }
554 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
555 return false;
556 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700557 auto key_path = volkey_path(misc_path, volume_uuid);
558 if (fs_mkdirs(key_path.c_str(), 0700) != 0) {
559 PLOG(ERROR) << "Creating directories for: " << key_path;
560 return false;
561 }
Paul Crowley26a53882017-10-26 11:16:39 -0700562 android::vold::KeyAuthentication auth("", secdiscardable_hash);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700563 if (!android::vold::retrieveAndInstallKey(true, auth, key_path, key_path + "_tmp", volume_uuid,
Paul Crowley3aa914d2017-10-09 16:35:51 -0700564 &key_ref->key_raw_ref))
565 return false;
566 key_ref->contents_mode =
567 android::base::GetProperty("ro.crypto.volume.contents_mode", "aes-256-xts");
568 key_ref->filenames_mode =
569 android::base::GetProperty("ro.crypto.volume.filenames_mode", "aes-256-heh");
570 return true;
571}
572
573static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700574 auto path = volkey_path(misc_path, volume_uuid);
575 if (!android::vold::pathExists(path)) return true;
576 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700577}
578
Eric Biggersa701c452018-10-23 13:06:55 -0700579bool fscrypt_add_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700580 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700581 LOG(DEBUG) << "fscrypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700582 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700583 if (!fscrypt_is_native()) return true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000584 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700585 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800586 if (!parse_hex(token_hex, &token)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700587 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700588 auto auth =
589 secret.empty() ? kEmptyAuthentication : android::vold::KeyAuthentication(token, secret);
Paul Crowley05720802016-02-08 15:55:41 +0000590 auto it = s_ce_keys.find(user_id);
591 if (it == s_ce_keys.end()) {
592 LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000593 return false;
Paul Crowley05720802016-02-08 15:55:41 +0000594 }
Paul Crowley14c8c072018-09-18 13:30:21 -0700595 const auto& ce_key = it->second;
Paul Crowleya3630362016-05-17 14:17:56 -0700596 auto const directory_path = get_ce_key_directory_path(user_id);
597 auto const paths = get_ce_key_paths(directory_path);
598 std::string ce_key_path;
599 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700600 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, auth, ce_key)) return false;
Paul Crowley621d9b92018-12-07 15:36:09 -0800601 if (!android::vold::FsyncDirectory(directory_path)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700602 return true;
603}
604
Eric Biggersa701c452018-10-23 13:06:55 -0700605bool fscrypt_fixate_newest_user_key_auth(userid_t user_id) {
606 LOG(DEBUG) << "fscrypt_fixate_newest_user_key_auth " << user_id;
607 if (!fscrypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700608 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700609 auto const directory_path = get_ce_key_directory_path(user_id);
610 auto const paths = get_ce_key_paths(directory_path);
611 if (paths.empty()) {
612 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
613 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000614 }
Paul Crowleya3630362016-05-17 14:17:56 -0700615 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000616 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000617}
618
Jeff Sharkey47695b22016-02-01 17:02:29 -0700619// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Eric Biggersa701c452018-10-23 13:06:55 -0700620bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700621 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700622 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700623 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700624 if (fscrypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000625 if (s_ce_key_raw_refs.count(user_id) != 0) {
626 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000627 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000628 }
629 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800630 if (!parse_hex(token_hex, &token)) return false;
631 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000632 android::vold::KeyAuthentication auth(token, secret);
633 if (!read_and_install_user_ce_key(user_id, auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000634 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000635 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800636 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700637 } else {
638 // When in emulation mode, we just use chmod. However, we also
639 // unlock directories when not in emulation mode, to bring devices
640 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000641 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800642 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700643 !emulated_unlock(android::vold::BuildDataMediaCePath("", user_id), 0770) ||
644 !emulated_unlock(android::vold::BuildDataUserCePath("", user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700645 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000646 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700647 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800648 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000649 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800650}
651
Jeff Sharkey47695b22016-02-01 17:02:29 -0700652// TODO: rename to 'evict' for consistency
Eric Biggersa701c452018-10-23 13:06:55 -0700653bool fscrypt_lock_user_key(userid_t user_id) {
654 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
655 if (fscrypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000656 return evict_ce_key(user_id);
Eric Biggersa701c452018-10-23 13:06:55 -0700657 } else if (fscrypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800658 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000659 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800660 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700661 !emulated_lock(android::vold::BuildDataMediaCePath("", user_id)) ||
662 !emulated_lock(android::vold::BuildDataUserCePath("", user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000663 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000664 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800665 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800666 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700667
Paul Crowley76107cb2016-02-09 10:04:39 +0000668 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800669}
670
Paul Crowley82b41ff2017-10-20 08:17:54 -0700671static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
672 userid_t user_id, int flags) {
673 if (0 != android::vold::ForkExecvp(
674 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
675 std::to_string(user_id), std::to_string(flags)})) {
676 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700677 return false;
678 }
679 return true;
680}
681
Eric Biggersa701c452018-10-23 13:06:55 -0700682bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700683 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700684 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800685 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700686
Paul Crowley82b41ff2017-10-20 08:17:54 -0700687 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600688 // DE_sys key
689 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
690 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
691 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600692
693 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700694 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
695 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800696 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700697 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
698
Paul Crowley3b71fc52017-10-09 10:55:21 -0700699 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700700 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600701#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700702 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700703 multiuser_get_uid(user_id, AID_EVERYBODY)))
704 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600705#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700706 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600707
Paul Crowley6b756ce2017-10-05 14:07:09 -0700708 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
709 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800710 if (!prepare_dir(vendor_de_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700711 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000712 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000713
Eric Biggersa701c452018-10-23 13:06:55 -0700714 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700715 PolicyKeyRef de_ref;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700716 if (volume_uuid.empty()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700717 if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_ref.key_raw_ref)) return false;
718 get_data_file_encryption_modes(&de_ref);
719 if (!ensure_policy(de_ref, system_de_path)) return false;
720 if (!ensure_policy(de_ref, misc_de_path)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800721 if (!ensure_policy(de_ref, vendor_de_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700722 } else {
723 if (!read_or_create_volkey(misc_de_path, volume_uuid, &de_ref)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700724 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700725 if (!ensure_policy(de_ref, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700726 }
Paul Crowley285956f2016-01-20 13:12:38 +0000727 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800728
Paul Crowley82b41ff2017-10-20 08:17:54 -0700729 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600730 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700731 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
732 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800733 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600734 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
735 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800736
Paul Crowley3b71fc52017-10-09 10:55:21 -0700737 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700738 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
739 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800740 if (!prepare_dir(vendor_ce_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700741 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000742 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
743 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700744
Eric Biggersa701c452018-10-23 13:06:55 -0700745 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700746 PolicyKeyRef ce_ref;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700747 if (volume_uuid.empty()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700748 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_ref.key_raw_ref)) return false;
749 get_data_file_encryption_modes(&ce_ref);
750 if (!ensure_policy(ce_ref, system_ce_path)) return false;
751 if (!ensure_policy(ce_ref, misc_ce_path)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800752 if (!ensure_policy(ce_ref, vendor_ce_path)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700753
Paul Crowley3aa914d2017-10-09 16:35:51 -0700754 } else {
755 if (!read_or_create_volkey(misc_ce_path, volume_uuid, &ce_ref)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700756 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700757 if (!ensure_policy(ce_ref, media_ce_path)) return false;
758 if (!ensure_policy(ce_ref, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700759 }
Paul Crowley1a965262017-10-13 13:49:50 -0700760
761 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700762 // Now that credentials have been installed, we can run restorecon
763 // over these paths
764 // NOTE: these paths need to be kept in sync with libselinux
765 android::vold::RestoreconRecursive(system_ce_path);
Nick Kralevich6a3ef482019-05-14 09:30:29 -0700766 android::vold::RestoreconRecursive(vendor_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -0700767 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700768 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800769 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700770 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800771
Paul Crowley76107cb2016-02-09 10:04:39 +0000772 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800773}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600774
Eric Biggersa701c452018-10-23 13:06:55 -0700775bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
776 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600777 << ", user " << user_id << ", flags " << flags;
778 bool res = true;
779
Paul Crowley82b41ff2017-10-20 08:17:54 -0700780 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
781
782 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -0700783 // CE_n key
784 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
785 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800786 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -0700787 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
788 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
789
790 res &= destroy_dir(media_ce_path);
791 res &= destroy_dir(user_ce_path);
792 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700793 res &= destroy_dir(system_ce_path);
794 res &= destroy_dir(misc_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800795 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700796 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700797 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700798 res &= destroy_volkey(misc_ce_path, volume_uuid);
799 }
Paul Crowley8e550662017-10-16 17:01:44 -0700800 }
801 }
802
Paul Crowley82b41ff2017-10-20 08:17:54 -0700803 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600804 // DE_sys key
805 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
806 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
807 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600808
809 // DE_n key
810 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
811 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800812 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600813 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
814
Paul Crowley8e550662017-10-16 17:01:44 -0700815 res &= destroy_dir(user_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -0700816 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600817 res &= destroy_dir(system_legacy_path);
818#if MANAGE_MISC_DIRS
819 res &= destroy_dir(misc_legacy_path);
820#endif
821 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600822 res &= destroy_dir(system_de_path);
823 res &= destroy_dir(misc_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800824 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700825 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700826 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700827 res &= destroy_volkey(misc_de_path, volume_uuid);
828 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600829 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600830 }
831
832 return res;
833}
Rubin Xu2436e272017-04-27 20:43:10 +0100834
Paul Crowleyc6433a22017-10-24 14:54:43 -0700835static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
836 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
837 if (!dirp) {
838 PLOG(ERROR) << "Unable to open directory: " + directory_path;
839 return false;
840 }
841 bool res = true;
842 for (;;) {
843 errno = 0;
844 auto const entry = readdir(dirp.get());
845 if (!entry) {
846 if (errno) {
847 PLOG(ERROR) << "Unable to read directory: " + directory_path;
848 return false;
849 }
850 break;
851 }
852 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
853 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
854 continue;
855 }
856 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
857 }
858 return res;
859}
860
Eric Biggersa701c452018-10-23 13:06:55 -0700861bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700862 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -0700863 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -0700864 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
865 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -0700866 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
867 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
868 return res;
869}