blob: d1fa256de4bda07b7c9804654f488ab617663894 [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>
Eric Biggers83a73d72019-09-30 13:06:47 -070060#include <android-base/strings.h>
Jieb6698d52018-11-12 15:26:02 +080061#include <android-base/unique_fd.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000062
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080063using android::base::StringPrintf;
Tom Cherry4c5bde22019-01-29 14:34:01 -080064using android::fs_mgr::GetEntryForMountPoint;
Paul Crowley05720802016-02-08 15:55:41 +000065using android::vold::kEmptyAuthentication;
Pavel Grafove2e2d302017-08-01 17:15:53 +010066using android::vold::KeyBuffer;
Tommy Chiua98464f2019-03-26 14:14:19 +080067using android::vold::writeStringToFile;
Paul Crowley5e53ff62019-10-24 14:55:17 -070068using namespace android::fscrypt;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080069
Paul Lawrence731a7a22015-04-28 22:14:15 +000070namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000071
Eric Biggersa701c452018-10-23 13:06:55 -070072const std::string device_key_dir = std::string() + DATA_MNT_POINT + fscrypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080073const std::string device_key_path = device_key_dir + "/key";
74const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080075
Paul Crowleydf528a72016-03-09 09:31:37 -080076const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
77const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley82b41ff2017-10-20 08:17:54 -070078const std::string prepare_subdirs_path = "/system/bin/vold_prepare_subdirs";
Paul Crowley285956f2016-01-20 13:12:38 +000079
Paul Crowley26a53882017-10-26 11:16:39 -070080const std::string systemwide_volume_key_dir =
81 std::string() + DATA_MNT_POINT + "/misc/vold/volume_keys";
82
Paul Crowleyc8a3ef32019-09-11 15:00:08 -070083bool s_systemwide_keys_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080084
Paul Crowleydf528a72016-03-09 09:31:37 -080085// Some users are ephemeral, don't try to wipe their keys from disk
86std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080087
Paul Crowleydf528a72016-03-09 09:31:37 -080088// Map user ids to key references
89std::map<userid_t, std::string> s_de_key_raw_refs;
90std::map<userid_t, std::string> s_ce_key_raw_refs;
Paul Crowley99360d72016-10-19 14:00:24 -070091// TODO abolish this map, per b/26948053
Pavel Grafove2e2d302017-08-01 17:15:53 +010092std::map<userid_t, KeyBuffer> s_ce_keys;
Paul Lawrence731a7a22015-04-28 22:14:15 +000093
Paul Crowley14c8c072018-09-18 13:30:21 -070094} // namespace
Paul Lawrence731a7a22015-04-28 22:14:15 +000095
Eric Biggersa701c452018-10-23 13:06:55 -070096static bool fscrypt_is_emulated() {
Paul Crowley38132a12016-02-09 09:50:32 +000097 return property_get_bool("persist.sys.emulate_fbe", false);
98}
99
Paul Crowley3b71fc52017-10-09 10:55:21 -0700100static const char* escape_empty(const std::string& value) {
101 return value.empty() ? "null" : value.c_str();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000102}
103
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000104static std::string get_de_key_path(userid_t user_id) {
105 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
106}
107
Paul Crowleya3630362016-05-17 14:17:56 -0700108static std::string get_ce_key_directory_path(userid_t user_id) {
109 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
110}
111
112// Returns the keys newest first
113static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
114 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
115 if (!dirp) {
116 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
117 return std::vector<std::string>();
118 }
119 std::vector<std::string> result;
120 for (;;) {
121 errno = 0;
122 auto const entry = readdir(dirp.get());
123 if (!entry) {
124 if (errno) {
125 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
126 return std::vector<std::string>();
127 }
128 break;
129 }
130 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
131 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
132 continue;
133 }
134 result.emplace_back(directory_path + "/" + entry->d_name);
135 }
136 std::sort(result.begin(), result.end());
137 std::reverse(result.begin(), result.end());
138 return result;
139}
140
141static std::string get_ce_key_current_path(const std::string& directory_path) {
142 return directory_path + "/current";
143}
144
145static bool get_ce_key_new_path(const std::string& directory_path,
Paul Crowley14c8c072018-09-18 13:30:21 -0700146 const std::vector<std::string>& paths, std::string* ce_key_path) {
Paul Crowleya3630362016-05-17 14:17:56 -0700147 if (paths.empty()) {
148 *ce_key_path = get_ce_key_current_path(directory_path);
149 return true;
150 }
151 for (unsigned int i = 0; i < UINT_MAX; i++) {
152 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
153 if (paths[0] < candidate) {
154 *ce_key_path = candidate;
155 return true;
156 }
157 }
158 return false;
159}
160
161// Discard all keys but the named one; rename it to canonical name.
162// No point in acting on errors in this; ignore them.
Paul Crowley14c8c072018-09-18 13:30:21 -0700163static void fixate_user_ce_key(const std::string& directory_path, const std::string& to_fix,
Paul Crowleya3630362016-05-17 14:17:56 -0700164 const std::vector<std::string>& paths) {
Paul Crowley14c8c072018-09-18 13:30:21 -0700165 for (auto const other_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700166 if (other_path != to_fix) {
167 android::vold::destroyKey(other_path);
168 }
169 }
170 auto const current_path = get_ce_key_current_path(directory_path);
171 if (to_fix != current_path) {
172 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
173 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
174 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
Jieb6698d52018-11-12 15:26:02 +0800175 return;
Paul Crowleya3630362016-05-17 14:17:56 -0700176 }
177 }
Paul Crowley621d9b92018-12-07 15:36:09 -0800178 android::vold::FsyncDirectory(directory_path);
Paul Crowleya3630362016-05-17 14:17:56 -0700179}
180
181static bool read_and_fixate_user_ce_key(userid_t user_id,
182 const android::vold::KeyAuthentication& auth,
Paul Crowley14c8c072018-09-18 13:30:21 -0700183 KeyBuffer* ce_key) {
Paul Crowleya3630362016-05-17 14:17:56 -0700184 auto const directory_path = get_ce_key_directory_path(user_id);
185 auto const paths = get_ce_key_paths(directory_path);
Paul Crowley14c8c072018-09-18 13:30:21 -0700186 for (auto const ce_key_path : paths) {
Paul Crowleya3630362016-05-17 14:17:56 -0700187 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
188 if (android::vold::retrieveKey(ce_key_path, auth, ce_key)) {
189 LOG(DEBUG) << "Successfully retrieved key";
190 fixate_user_ce_key(directory_path, ce_key_path, paths);
191 return true;
192 }
193 }
194 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
195 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100196}
197
Eric Biggers83a73d72019-09-30 13:06:47 -0700198// Retrieve the options to use for encryption policies on the /data filesystem.
Paul Crowley5e53ff62019-10-24 14:55:17 -0700199static void get_data_file_encryption_options(EncryptionOptions* options) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700200 auto entry = GetEntryForMountPoint(&fstab_default, DATA_MNT_POINT);
201 if (entry == nullptr) {
202 return;
203 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700204 ParseOptionsParts(entry->file_contents_mode, entry->file_names_mode, entry->file_policy_version,
205 options);
Eric Biggers83a73d72019-09-30 13:06:47 -0700206}
207
208// Retrieve the version to use for encryption policies on the /data filesystem.
209static int get_data_file_policy_version(void) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700210 EncryptionOptions options;
211 get_data_file_encryption_options(&options);
212 return options.version;
Eric Biggers83a73d72019-09-30 13:06:47 -0700213}
214
215// Retrieve the options to use for encryption policies on adoptable storage.
Paul Crowley5e53ff62019-10-24 14:55:17 -0700216static bool get_volume_file_encryption_options(EncryptionOptions* options) {
Paul Crowleyf612b8b2019-10-24 22:52:02 -0700217 auto contents_mode =
218 android::base::GetProperty("ro.crypto.volume.contents_mode", "aes-256-xts");
219 auto filenames_mode =
220 android::base::GetProperty("ro.crypto.volume.filenames_mode", "aes-256-heh");
221 return ParseOptions(android::base::GetProperty("ro.crypto.volume.options",
222 contents_mode + ":" + filenames_mode + ":v1"),
223 options);
Eric Biggers83a73d72019-09-30 13:06:47 -0700224}
225
Eric Biggersf3dc4202019-09-30 13:05:58 -0700226// Install a key for use by encrypted files on the /data filesystem.
227static bool install_data_key(const KeyBuffer& key, std::string* raw_ref) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700228 return android::vold::installKey(key, DATA_MNT_POINT, get_data_file_policy_version(), raw_ref);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700229}
230
231// Evict a key for use by encrypted files on the /data filesystem.
232static bool evict_data_key(const std::string& raw_ref) {
Eric Biggers83a73d72019-09-30 13:06:47 -0700233 return android::vold::evictKey(DATA_MNT_POINT, raw_ref, get_data_file_policy_version());
Eric Biggersf3dc4202019-09-30 13:05:58 -0700234}
235
Paul Crowleydf528a72016-03-09 09:31:37 -0800236static bool read_and_install_user_ce_key(userid_t user_id,
237 const android::vold::KeyAuthentication& auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000238 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100239 KeyBuffer ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700240 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000241 std::string ce_raw_ref;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700242 if (!install_data_key(ce_key, &ce_raw_ref)) return false;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100243 s_ce_keys[user_id] = std::move(ce_key);
Paul Crowley05720802016-02-08 15:55:41 +0000244 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000245 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000246 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000247}
248
Paul Crowleydf528a72016-03-09 09:31:37 -0800249static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000250 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000251 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
252 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000253 return false;
254 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000255 return true;
256}
257
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600258static bool destroy_dir(const std::string& dir) {
259 LOG(DEBUG) << "Destroying: " << dir;
260 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
261 PLOG(ERROR) << "Failed to destroy " << dir;
262 return false;
263 }
264 return true;
265}
266
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000267// NB this assumes that there is only one thread listening for crypt commands, because
268// it creates keys in a fixed location.
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000269static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
Pavel Grafove2e2d302017-08-01 17:15:53 +0100270 KeyBuffer de_key, ce_key;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700271 if (!android::vold::randomKey(&de_key)) return false;
272 if (!android::vold::randomKey(&ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000273 if (create_ephemeral) {
274 // If the key should be created as ephemeral, don't store it.
275 s_ephemeral_users.insert(user_id);
276 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700277 auto const directory_path = get_ce_key_directory_path(user_id);
278 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
279 auto const paths = get_ce_key_paths(directory_path);
280 std::string ce_key_path;
281 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700282 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, kEmptyAuthentication,
283 ce_key))
284 return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700285 fixate_user_ce_key(directory_path, ce_key_path, paths);
286 // Write DE key second; once this is written, all is good.
Paul Crowleyf71ace32016-06-02 11:01:19 -0700287 if (!android::vold::storeKeyAtomically(get_de_key_path(user_id), user_key_temp,
Paul Crowley14c8c072018-09-18 13:30:21 -0700288 kEmptyAuthentication, de_key))
289 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100290 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000291 std::string de_raw_ref;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700292 if (!install_data_key(de_key, &de_raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000293 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000294 std::string ce_raw_ref;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700295 if (!install_data_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000296 s_ce_keys[user_id] = ce_key;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000297 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000298 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000299 return true;
300}
301
Paul Crowleydf528a72016-03-09 09:31:37 -0800302static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
303 std::string* raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000304 auto refi = key_map.find(user_id);
305 if (refi == key_map.end()) {
Eric Biggersd1034042019-04-02 10:38:15 -0700306 LOG(DEBUG) << "Cannot find key for " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000307 return false;
308 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800309 *raw_ref = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000310 return true;
311}
312
Paul Crowleydf528a72016-03-09 09:31:37 -0800313static bool is_numeric(const char* name) {
314 for (const char* p = name; *p != '\0'; p++) {
315 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000316 }
317 return true;
318}
319
320static bool load_all_de_keys() {
321 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800322 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000323 if (!dirp) {
324 PLOG(ERROR) << "Unable to read de key directory";
325 return false;
326 }
327 for (;;) {
328 errno = 0;
329 auto entry = readdir(dirp.get());
330 if (!entry) {
331 if (errno) {
332 PLOG(ERROR) << "Unable to read de key directory";
333 return false;
334 }
335 break;
336 }
337 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
338 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
339 continue;
340 }
Jeff Sharkey95440eb2017-09-18 18:19:28 -0600341 userid_t user_id = std::stoi(entry->d_name);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000342 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000343 auto key_path = de_dir + "/" + entry->d_name;
Pavel Grafove2e2d302017-08-01 17:15:53 +0100344 KeyBuffer key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800345 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000346 std::string raw_ref;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700347 if (!install_data_key(key, &raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000348 s_de_key_raw_refs[user_id] = raw_ref;
349 LOG(DEBUG) << "Installed de key for user " << user_id;
350 }
351 }
Eric Biggersa701c452018-10-23 13:06:55 -0700352 // fscrypt:TODO: go through all DE directories, ensure that all user dirs have the
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000353 // correct policy set on them, and that no rogue ones exist.
354 return true;
355}
356
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700357bool fscrypt_initialize_systemwide_keys() {
358 LOG(INFO) << "fscrypt_initialize_systemwide_keys";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800359
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700360 if (s_systemwide_keys_initialized) {
Paul Crowley38132a12016-02-09 09:50:32 +0000361 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000362 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800363 }
364
Paul Crowley5e53ff62019-10-24 14:55:17 -0700365 EncryptionPolicy device_policy;
366 get_data_file_encryption_options(&device_policy.options);
Eric Biggersb45caaf2017-02-02 14:52:12 -0800367
Eric Biggers83a73d72019-09-30 13:06:47 -0700368 if (!android::vold::retrieveAndInstallKey(true, kEmptyAuthentication, device_key_path,
Paul Crowley5e53ff62019-10-24 14:55:17 -0700369 device_key_temp, "", device_policy.options.version,
370 &device_policy.key_raw_ref))
Eric Biggers83a73d72019-09-30 13:06:47 -0700371 return false;
372
Paul Crowley5e53ff62019-10-24 14:55:17 -0700373 std::string options_string;
374 if (!OptionsToString(device_policy.options, &options_string)) {
375 LOG(ERROR) << "Unable to serialize options";
376 return false;
377 }
Eric Biggers83a73d72019-09-30 13:06:47 -0700378 std::string options_filename = std::string("/data") + fscrypt_key_mode;
379 if (!android::vold::writeStringToFile(options_string, options_filename)) return false;
Paul Lawrence6e410592016-05-24 14:20:38 -0700380
Eric Biggersa701c452018-10-23 13:06:55 -0700381 std::string ref_filename = std::string("/data") + fscrypt_key_ref;
Paul Crowley5e53ff62019-10-24 14:55:17 -0700382 if (!android::vold::writeStringToFile(device_policy.key_raw_ref, ref_filename)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700383 LOG(INFO) << "Wrote system DE key reference to:" << ref_filename;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800384
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700385 KeyBuffer per_boot_key;
386 if (!android::vold::randomKey(&per_boot_key)) return false;
387 std::string per_boot_raw_ref;
Eric Biggersf3dc4202019-09-30 13:05:58 -0700388 if (!install_data_key(per_boot_key, &per_boot_raw_ref)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700389 std::string per_boot_ref_filename = std::string("/data") + fscrypt_key_per_boot_ref;
390 if (!android::vold::writeStringToFile(per_boot_raw_ref, per_boot_ref_filename)) return false;
391 LOG(INFO) << "Wrote per boot key reference to:" << per_boot_ref_filename;
392
Tommy Chiua98464f2019-03-26 14:14:19 +0800393 if (!android::vold::FsyncDirectory(device_key_dir)) return false;
Paul Crowleyc8a3ef32019-09-11 15:00:08 -0700394 s_systemwide_keys_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000395 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800396}
397
Eric Biggersa701c452018-10-23 13:06:55 -0700398bool fscrypt_init_user0() {
399 LOG(DEBUG) << "fscrypt_init_user0";
400 if (fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000401 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
402 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
403 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700404 if (!android::vold::pathExists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000405 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000406 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700407 // TODO: switch to loading only DE_0 here once framework makes
408 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000409 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000410 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700411 // We can only safely prepare DE storage here, since CE keys are probably
412 // entangled with user credentials. The framework will always prepare CE
413 // storage once CE keys are installed.
Eric Biggersa701c452018-10-23 13:06:55 -0700414 if (!fscrypt_prepare_user_storage("", 0, 0, android::os::IVold::STORAGE_FLAG_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700415 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000416 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700417 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700418
419 // If this is a non-FBE device that recently left an emulated mode,
420 // restore user data directories to known-good state.
Eric Biggersa701c452018-10-23 13:06:55 -0700421 if (!fscrypt_is_native() && !fscrypt_is_emulated()) {
422 fscrypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700423 }
424
Paul Crowley76107cb2016-02-09 10:04:39 +0000425 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000426}
427
Eric Biggersa701c452018-10-23 13:06:55 -0700428bool fscrypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
429 LOG(DEBUG) << "fscrypt_vold_create_user_key for " << user_id << " serial " << serial;
430 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000431 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000432 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000433 // FIXME test for existence of key that is not loaded yet
434 if (s_ce_key_raw_refs.count(user_id) != 0) {
Eric Biggersa701c452018-10-23 13:06:55 -0700435 LOG(ERROR) << "Already exists, can't fscrypt_vold_create_user_key for " << user_id
Paul Crowleydf528a72016-03-09 09:31:37 -0800436 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000437 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000438 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800439 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000440 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000441 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000442 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000443 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800444}
445
Eric Biggersce368682019-04-03 15:44:06 -0700446// "Lock" all encrypted directories whose key has been removed. This is needed
Eric Biggersf3dc4202019-09-30 13:05:58 -0700447// in the case where the keys are being put in the session keyring (rather in
448// the newer filesystem-level keyrings), because removing a key from the session
449// keyring doesn't affect inodes in the kernel's inode cache whose per-file key
450// was already set up. So to remove the per-file keys and make the files
451// "appear encrypted", these inodes must be evicted.
Eric Biggersce368682019-04-03 15:44:06 -0700452//
453// To do this, sync() to clean all dirty inodes, then drop all reclaimable slab
454// objects systemwide. This is overkill, but it's the best available method
455// currently. Don't use drop_caches mode "3" because that also evicts pagecache
456// for in-use files; all files relevant here are already closed and sync'ed.
Eric Biggersf3dc4202019-09-30 13:05:58 -0700457static void drop_caches_if_needed() {
458 if (android::vold::isFsKeyringSupported()) {
459 return;
460 }
Pavel Grafovb350ed02017-07-27 17:34:57 +0100461 sync();
Eric Biggersce368682019-04-03 15:44:06 -0700462 if (!writeStringToFile("2", "/proc/sys/vm/drop_caches")) {
Pavel Grafovb350ed02017-07-27 17:34:57 +0100463 PLOG(ERROR) << "Failed to drop caches during key eviction";
464 }
465}
466
Andrew Scull7ec25c72016-10-31 10:28:25 +0000467static bool evict_ce_key(userid_t user_id) {
Pavel Grafove2e2d302017-08-01 17:15:53 +0100468 s_ce_keys.erase(user_id);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000469 bool success = true;
470 std::string raw_ref;
471 // If we haven't loaded the CE key, no need to evict it.
472 if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) {
Eric Biggersf3dc4202019-09-30 13:05:58 -0700473 success &= evict_data_key(raw_ref);
474 drop_caches_if_needed();
Andrew Scull7ec25c72016-10-31 10:28:25 +0000475 }
476 s_ce_key_raw_refs.erase(user_id);
477 return success;
478}
479
Eric Biggersa701c452018-10-23 13:06:55 -0700480bool fscrypt_destroy_user_key(userid_t user_id) {
481 LOG(DEBUG) << "fscrypt_destroy_user_key(" << user_id << ")";
482 if (!fscrypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000483 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000484 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000485 bool success = true;
486 std::string raw_ref;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000487 success &= evict_ce_key(user_id);
Eric Biggersf3dc4202019-09-30 13:05:58 -0700488 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 +0000489 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000490 auto it = s_ephemeral_users.find(user_id);
491 if (it != s_ephemeral_users.end()) {
492 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000493 } else {
Paul Crowley14c8c072018-09-18 13:30:21 -0700494 for (auto const path : get_ce_key_paths(get_ce_key_directory_path(user_id))) {
Paul Crowleya3630362016-05-17 14:17:56 -0700495 success &= android::vold::destroyKey(path);
496 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700497 auto de_key_path = get_de_key_path(user_id);
Paul Crowleyf71ace32016-06-02 11:01:19 -0700498 if (android::vold::pathExists(de_key_path)) {
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700499 success &= android::vold::destroyKey(de_key_path);
500 } else {
501 LOG(INFO) << "Not present so not erasing: " << de_key_path;
502 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100503 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000504 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100505}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800506
Paul Crowley76107cb2016-02-09 10:04:39 +0000507static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700508 if (chmod(path.c_str(), 0000) != 0) {
509 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000510 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700511 }
512#if EMULATED_USES_SELINUX
513 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
514 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000515 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700516 }
517#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000518 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700519}
520
Paul Crowley76107cb2016-02-09 10:04:39 +0000521static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700522 if (chmod(path.c_str(), mode) != 0) {
523 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000524 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700525 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700526 }
527#if EMULATED_USES_SELINUX
528 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
529 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000530 // FIXME temporary workaround for b/26713622
Eric Biggersa701c452018-10-23 13:06:55 -0700531 if (fscrypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700532 }
533#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000534 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700535}
536
Paul Crowley3b71fc52017-10-09 10:55:21 -0700537static bool parse_hex(const std::string& hex, std::string* result) {
538 if (hex == "!") {
Paul Crowleya051eb72016-03-08 16:08:32 -0800539 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000540 return true;
541 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800542 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800543 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000544 return false;
545 }
546 return true;
547}
548
Paul Crowley3aa914d2017-10-09 16:35:51 -0700549static std::string volkey_path(const std::string& misc_path, const std::string& volume_uuid) {
550 return misc_path + "/vold/volume_keys/" + volume_uuid + "/default";
551}
552
Paul Crowley26a53882017-10-26 11:16:39 -0700553static std::string volume_secdiscardable_path(const std::string& volume_uuid) {
554 return systemwide_volume_key_dir + "/" + volume_uuid + "/secdiscardable";
555}
556
Paul Crowley3aa914d2017-10-09 16:35:51 -0700557static bool read_or_create_volkey(const std::string& misc_path, const std::string& volume_uuid,
Paul Crowley5e53ff62019-10-24 14:55:17 -0700558 EncryptionPolicy* policy) {
Paul Crowley26a53882017-10-26 11:16:39 -0700559 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
560 std::string secdiscardable_hash;
561 if (android::vold::pathExists(secdiscardable_path)) {
562 if (!android::vold::readSecdiscardable(secdiscardable_path, &secdiscardable_hash))
563 return false;
564 } else {
565 if (fs_mkdirs(secdiscardable_path.c_str(), 0700) != 0) {
566 PLOG(ERROR) << "Creating directories for: " << secdiscardable_path;
567 return false;
568 }
569 if (!android::vold::createSecdiscardable(secdiscardable_path, &secdiscardable_hash))
570 return false;
571 }
Paul Crowley3aa914d2017-10-09 16:35:51 -0700572 auto key_path = volkey_path(misc_path, volume_uuid);
573 if (fs_mkdirs(key_path.c_str(), 0700) != 0) {
574 PLOG(ERROR) << "Creating directories for: " << key_path;
575 return false;
576 }
Paul Crowley26a53882017-10-26 11:16:39 -0700577 android::vold::KeyAuthentication auth("", secdiscardable_hash);
Eric Biggers83a73d72019-09-30 13:06:47 -0700578
Paul Crowley5e53ff62019-10-24 14:55:17 -0700579 if (!get_volume_file_encryption_options(&policy->options)) return false;
Eric Biggers83a73d72019-09-30 13:06:47 -0700580
581 return android::vold::retrieveAndInstallKey(true, auth, key_path, key_path + "_tmp",
Paul Crowley5e53ff62019-10-24 14:55:17 -0700582 volume_uuid, policy->options.version,
583 &policy->key_raw_ref);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700584}
585
586static bool destroy_volkey(const std::string& misc_path, const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700587 auto path = volkey_path(misc_path, volume_uuid);
588 if (!android::vold::pathExists(path)) return true;
589 return android::vold::destroyKey(path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700590}
591
Eric Biggersa701c452018-10-23 13:06:55 -0700592bool fscrypt_add_user_key_auth(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700593 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700594 LOG(DEBUG) << "fscrypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700595 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700596 if (!fscrypt_is_native()) return true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000597 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700598 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800599 if (!parse_hex(token_hex, &token)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700600 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley14c8c072018-09-18 13:30:21 -0700601 auto auth =
602 secret.empty() ? kEmptyAuthentication : android::vold::KeyAuthentication(token, secret);
Paul Crowley05720802016-02-08 15:55:41 +0000603 auto it = s_ce_keys.find(user_id);
604 if (it == s_ce_keys.end()) {
605 LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000606 return false;
Paul Crowley05720802016-02-08 15:55:41 +0000607 }
Paul Crowley14c8c072018-09-18 13:30:21 -0700608 const auto& ce_key = it->second;
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 std::string ce_key_path;
612 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
Paul Crowleyf71ace32016-06-02 11:01:19 -0700613 if (!android::vold::storeKeyAtomically(ce_key_path, user_key_temp, auth, ce_key)) return false;
Paul Crowley621d9b92018-12-07 15:36:09 -0800614 if (!android::vold::FsyncDirectory(directory_path)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700615 return true;
616}
617
Eric Biggersa701c452018-10-23 13:06:55 -0700618bool fscrypt_fixate_newest_user_key_auth(userid_t user_id) {
619 LOG(DEBUG) << "fscrypt_fixate_newest_user_key_auth " << user_id;
620 if (!fscrypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700621 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700622 auto const directory_path = get_ce_key_directory_path(user_id);
623 auto const paths = get_ce_key_paths(directory_path);
624 if (paths.empty()) {
625 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
626 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000627 }
Paul Crowleya3630362016-05-17 14:17:56 -0700628 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000629 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000630}
631
Jeff Sharkey47695b22016-02-01 17:02:29 -0700632// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Eric Biggersa701c452018-10-23 13:06:55 -0700633bool fscrypt_unlock_user_key(userid_t user_id, int serial, const std::string& token_hex,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700634 const std::string& secret_hex) {
Eric Biggersa701c452018-10-23 13:06:55 -0700635 LOG(DEBUG) << "fscrypt_unlock_user_key " << user_id << " serial=" << serial
Paul Crowley3b71fc52017-10-09 10:55:21 -0700636 << " token_present=" << (token_hex != "!");
Eric Biggersa701c452018-10-23 13:06:55 -0700637 if (fscrypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000638 if (s_ce_key_raw_refs.count(user_id) != 0) {
639 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000640 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000641 }
642 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800643 if (!parse_hex(token_hex, &token)) return false;
644 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000645 android::vold::KeyAuthentication auth(token, secret);
646 if (!read_and_install_user_ce_key(user_id, auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000647 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000648 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800649 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700650 } else {
651 // When in emulation mode, we just use chmod. However, we also
652 // unlock directories when not in emulation mode, to bring devices
653 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000654 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800655 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700656 !emulated_unlock(android::vold::BuildDataMediaCePath("", user_id), 0770) ||
657 !emulated_unlock(android::vold::BuildDataUserCePath("", user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700658 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000659 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700660 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800661 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000662 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800663}
664
Jeff Sharkey47695b22016-02-01 17:02:29 -0700665// TODO: rename to 'evict' for consistency
Eric Biggersa701c452018-10-23 13:06:55 -0700666bool fscrypt_lock_user_key(userid_t user_id) {
667 LOG(DEBUG) << "fscrypt_lock_user_key " << user_id;
668 if (fscrypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000669 return evict_ce_key(user_id);
Eric Biggersa701c452018-10-23 13:06:55 -0700670 } else if (fscrypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800671 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000672 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800673 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Paul Crowley3b71fc52017-10-09 10:55:21 -0700674 !emulated_lock(android::vold::BuildDataMediaCePath("", user_id)) ||
675 !emulated_lock(android::vold::BuildDataUserCePath("", user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000676 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000677 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800678 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800679 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700680
Paul Crowley76107cb2016-02-09 10:04:39 +0000681 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800682}
683
Paul Crowley82b41ff2017-10-20 08:17:54 -0700684static bool prepare_subdirs(const std::string& action, const std::string& volume_uuid,
685 userid_t user_id, int flags) {
686 if (0 != android::vold::ForkExecvp(
687 std::vector<std::string>{prepare_subdirs_path, action, volume_uuid,
688 std::to_string(user_id), std::to_string(flags)})) {
689 LOG(ERROR) << "vold_prepare_subdirs failed";
Paul Crowley8e550662017-10-16 17:01:44 -0700690 return false;
691 }
692 return true;
693}
694
Eric Biggersa701c452018-10-23 13:06:55 -0700695bool fscrypt_prepare_user_storage(const std::string& volume_uuid, userid_t user_id, int serial,
Paul Crowley3b71fc52017-10-09 10:55:21 -0700696 int flags) {
Eric Biggersa701c452018-10-23 13:06:55 -0700697 LOG(DEBUG) << "fscrypt_prepare_user_storage for volume " << escape_empty(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800698 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700699
Paul Crowley82b41ff2017-10-20 08:17:54 -0700700 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600701 // DE_sys key
702 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
703 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
704 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600705
706 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700707 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
708 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800709 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700710 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
711
Paul Crowley3b71fc52017-10-09 10:55:21 -0700712 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700713 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600714#if MANAGE_MISC_DIRS
Paul Crowley6b756ce2017-10-05 14:07:09 -0700715 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
Paul Crowley14c8c072018-09-18 13:30:21 -0700716 multiuser_get_uid(user_id, AID_EVERYBODY)))
717 return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600718#endif
Paul Crowley6b756ce2017-10-05 14:07:09 -0700719 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600720
Paul Crowley6b756ce2017-10-05 14:07:09 -0700721 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
722 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800723 if (!prepare_dir(vendor_de_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700724 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000725 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000726
Eric Biggersa701c452018-10-23 13:06:55 -0700727 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700728 EncryptionPolicy de_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700729 if (volume_uuid.empty()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700730 if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_policy.key_raw_ref))
731 return false;
732 get_data_file_encryption_options(&de_policy.options);
733 if (!EnsurePolicy(de_policy, system_de_path)) return false;
734 if (!EnsurePolicy(de_policy, misc_de_path)) return false;
735 if (!EnsurePolicy(de_policy, vendor_de_path)) return false;
Paul Crowley3aa914d2017-10-09 16:35:51 -0700736 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700737 if (!read_or_create_volkey(misc_de_path, volume_uuid, &de_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700738 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700739 if (!EnsurePolicy(de_policy, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700740 }
Paul Crowley285956f2016-01-20 13:12:38 +0000741 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800742
Paul Crowley82b41ff2017-10-20 08:17:54 -0700743 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600744 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700745 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
746 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800747 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600748 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
749 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800750
Paul Crowley3b71fc52017-10-09 10:55:21 -0700751 if (volume_uuid.empty()) {
Paul Crowley6b756ce2017-10-05 14:07:09 -0700752 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
753 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
Andreas Huber71cd43f2018-01-22 11:25:29 -0800754 if (!prepare_dir(vendor_ce_path, 0771, AID_ROOT, AID_ROOT)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700755 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000756 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
757 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700758
Eric Biggersa701c452018-10-23 13:06:55 -0700759 if (fscrypt_is_native()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700760 EncryptionPolicy ce_policy;
Paul Crowley3b71fc52017-10-09 10:55:21 -0700761 if (volume_uuid.empty()) {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700762 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_policy.key_raw_ref))
763 return false;
764 get_data_file_encryption_options(&ce_policy.options);
765 if (!EnsurePolicy(ce_policy, system_ce_path)) return false;
766 if (!EnsurePolicy(ce_policy, misc_ce_path)) return false;
767 if (!EnsurePolicy(ce_policy, vendor_ce_path)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700768
Paul Crowley3aa914d2017-10-09 16:35:51 -0700769 } else {
Paul Crowley5e53ff62019-10-24 14:55:17 -0700770 if (!read_or_create_volkey(misc_ce_path, volume_uuid, &ce_policy)) return false;
Paul Crowley6b756ce2017-10-05 14:07:09 -0700771 }
Paul Crowley5e53ff62019-10-24 14:55:17 -0700772 if (!EnsurePolicy(ce_policy, media_ce_path)) return false;
773 if (!EnsurePolicy(ce_policy, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700774 }
Paul Crowley1a965262017-10-13 13:49:50 -0700775
776 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700777 // Now that credentials have been installed, we can run restorecon
778 // over these paths
779 // NOTE: these paths need to be kept in sync with libselinux
780 android::vold::RestoreconRecursive(system_ce_path);
Nick Kralevich6a3ef482019-05-14 09:30:29 -0700781 android::vold::RestoreconRecursive(vendor_ce_path);
Paul Crowley8e550662017-10-16 17:01:44 -0700782 android::vold::RestoreconRecursive(misc_ce_path);
Paul Crowley1a965262017-10-13 13:49:50 -0700783 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800784 }
Paul Crowley82b41ff2017-10-20 08:17:54 -0700785 if (!prepare_subdirs("prepare", volume_uuid, user_id, flags)) return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800786
Paul Crowley76107cb2016-02-09 10:04:39 +0000787 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800788}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600789
Eric Biggersa701c452018-10-23 13:06:55 -0700790bool fscrypt_destroy_user_storage(const std::string& volume_uuid, userid_t user_id, int flags) {
791 LOG(DEBUG) << "fscrypt_destroy_user_storage for volume " << escape_empty(volume_uuid)
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600792 << ", user " << user_id << ", flags " << flags;
793 bool res = true;
794
Paul Crowley82b41ff2017-10-20 08:17:54 -0700795 res &= prepare_subdirs("destroy", volume_uuid, user_id, flags);
796
797 if (flags & android::os::IVold::STORAGE_FLAG_CE) {
Paul Crowley8e550662017-10-16 17:01:44 -0700798 // CE_n key
799 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
800 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800801 auto vendor_ce_path = android::vold::BuildDataVendorCePath(user_id);
Paul Crowley8e550662017-10-16 17:01:44 -0700802 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
803 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
804
805 res &= destroy_dir(media_ce_path);
806 res &= destroy_dir(user_ce_path);
807 if (volume_uuid.empty()) {
Paul Crowley8e550662017-10-16 17:01:44 -0700808 res &= destroy_dir(system_ce_path);
809 res &= destroy_dir(misc_ce_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800810 res &= destroy_dir(vendor_ce_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700811 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700812 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700813 res &= destroy_volkey(misc_ce_path, volume_uuid);
814 }
Paul Crowley8e550662017-10-16 17:01:44 -0700815 }
816 }
817
Paul Crowley82b41ff2017-10-20 08:17:54 -0700818 if (flags & android::os::IVold::STORAGE_FLAG_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600819 // DE_sys key
820 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
821 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
822 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600823
824 // DE_n key
825 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
826 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800827 auto vendor_de_path = android::vold::BuildDataVendorDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600828 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
829
Paul Crowley8e550662017-10-16 17:01:44 -0700830 res &= destroy_dir(user_de_path);
Paul Crowley3b71fc52017-10-09 10:55:21 -0700831 if (volume_uuid.empty()) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600832 res &= destroy_dir(system_legacy_path);
833#if MANAGE_MISC_DIRS
834 res &= destroy_dir(misc_legacy_path);
835#endif
836 res &= destroy_dir(profiles_de_path);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600837 res &= destroy_dir(system_de_path);
838 res &= destroy_dir(misc_de_path);
Andreas Huber71cd43f2018-01-22 11:25:29 -0800839 res &= destroy_dir(vendor_de_path);
Paul Crowley3aa914d2017-10-09 16:35:51 -0700840 } else {
Eric Biggersa701c452018-10-23 13:06:55 -0700841 if (fscrypt_is_native()) {
Paul Crowley3aa914d2017-10-09 16:35:51 -0700842 res &= destroy_volkey(misc_de_path, volume_uuid);
843 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600844 }
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600845 }
846
847 return res;
848}
Rubin Xu2436e272017-04-27 20:43:10 +0100849
Paul Crowleyc6433a22017-10-24 14:54:43 -0700850static bool destroy_volume_keys(const std::string& directory_path, const std::string& volume_uuid) {
851 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
852 if (!dirp) {
853 PLOG(ERROR) << "Unable to open directory: " + directory_path;
854 return false;
855 }
856 bool res = true;
857 for (;;) {
858 errno = 0;
859 auto const entry = readdir(dirp.get());
860 if (!entry) {
861 if (errno) {
862 PLOG(ERROR) << "Unable to read directory: " + directory_path;
863 return false;
864 }
865 break;
866 }
867 if (entry->d_type != DT_DIR || entry->d_name[0] == '.') {
868 LOG(DEBUG) << "Skipping non-user " << entry->d_name;
869 continue;
870 }
871 res &= destroy_volkey(directory_path + "/" + entry->d_name, volume_uuid);
872 }
873 return res;
874}
875
Eric Biggersa701c452018-10-23 13:06:55 -0700876bool fscrypt_destroy_volume_keys(const std::string& volume_uuid) {
Paul Crowleyc6433a22017-10-24 14:54:43 -0700877 bool res = true;
Eric Biggersa701c452018-10-23 13:06:55 -0700878 LOG(DEBUG) << "fscrypt_destroy_volume_keys for volume " << escape_empty(volume_uuid);
Paul Crowley26a53882017-10-26 11:16:39 -0700879 auto secdiscardable_path = volume_secdiscardable_path(volume_uuid);
880 res &= android::vold::runSecdiscardSingle(secdiscardable_path);
Paul Crowleyc6433a22017-10-24 14:54:43 -0700881 res &= destroy_volume_keys("/data/misc_ce", volume_uuid);
882 res &= destroy_volume_keys("/data/misc_de", volume_uuid);
883 return res;
884}