blob: 74617ec43526dfd9b285ae96fc010d5eb4c34268 [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
Paul Lawrence731a7a22015-04-28 22:14:15 +000017#include "Ext4Crypt.h"
18
Paul Crowley1ef25582016-01-21 20:26:12 +000019#include "KeyStorage.h"
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080020#include "Utils.h"
21
Paul Crowleya3630362016-05-17 14:17:56 -070022#include <algorithm>
Paul Lawrencefd7db732015-04-10 07:48:51 -070023#include <iomanip>
Paul Lawrence731a7a22015-04-28 22:14:15 +000024#include <map>
Paul Crowleyb1f3d242016-01-28 10:09:46 +000025#include <set>
Paul Lawrencefd7db732015-04-10 07:48:51 -070026#include <sstream>
Paul Crowleydf528a72016-03-09 09:31:37 -080027#include <string>
Paul Lawrence731a7a22015-04-28 22:14:15 +000028
Paul Crowleydf528a72016-03-09 09:31:37 -080029#include <dirent.h>
30#include <errno.h>
31#include <fcntl.h>
Paul Crowleya3630362016-05-17 14:17:56 -070032#include <limits.h>
Paul Lawrencefd7db732015-04-10 07:48:51 -070033#include <openssl/sha.h>
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070034#include <selinux/android.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080035#include <stdio.h>
36#include <sys/mount.h>
37#include <sys/stat.h>
38#include <sys/types.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000039
Paul Crowley480fcd22015-08-24 14:53:28 +010040#include <private/android_filesystem_config.h>
41
Paul Lawrence731a7a22015-04-28 22:14:15 +000042#include "cryptfs.h"
43
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070044#define EMULATED_USES_SELINUX 0
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -060045#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070046
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080047#include <cutils/fs.h>
Tao Bao989fec22016-10-05 18:01:19 -070048#include <ext4_utils/ext4_crypt.h>
Elliott Hughes12d13122017-05-09 17:01:04 -070049#include <keyutils.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080050
Elliott Hughes7e128fb2015-12-04 15:50:53 -080051#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080052#include <android-base/logging.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080053#include <android-base/stringprintf.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000054
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080055using android::base::StringPrintf;
Paul Crowley05720802016-02-08 15:55:41 +000056using android::vold::kEmptyAuthentication;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080057
Jeff Sharkey47695b22016-02-01 17:02:29 -070058// NOTE: keep in sync with StorageManager
59static constexpr int FLAG_STORAGE_DE = 1 << 0;
60static constexpr int FLAG_STORAGE_CE = 1 << 1;
61
Paul Lawrence731a7a22015-04-28 22:14:15 +000062namespace {
Andrew Scull7ec25c72016-10-31 10:28:25 +000063
Paul Crowley4d2d5242016-04-27 10:25:12 -070064const std::string device_key_dir = std::string() + DATA_MNT_POINT + e4crypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080065const std::string device_key_path = device_key_dir + "/key";
66const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080067
Paul Crowleydf528a72016-03-09 09:31:37 -080068const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
69const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley285956f2016-01-20 13:12:38 +000070
Paul Crowleydf528a72016-03-09 09:31:37 -080071bool s_global_de_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080072
Paul Crowleydf528a72016-03-09 09:31:37 -080073// Some users are ephemeral, don't try to wipe their keys from disk
74std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080075
Paul Crowleydf528a72016-03-09 09:31:37 -080076// Map user ids to key references
77std::map<userid_t, std::string> s_de_key_raw_refs;
78std::map<userid_t, std::string> s_ce_key_raw_refs;
Paul Crowley99360d72016-10-19 14:00:24 -070079// TODO abolish this map, per b/26948053
Paul Crowleydf528a72016-03-09 09:31:37 -080080std::map<userid_t, std::string> s_ce_keys;
Paul Lawrence731a7a22015-04-28 22:14:15 +000081
Paul Crowleydf528a72016-03-09 09:31:37 -080082// ext4enc:TODO get this const from somewhere good
83const int EXT4_KEY_DESCRIPTOR_SIZE = 8;
Paul Lawrencefd7db732015-04-10 07:48:51 -070084
Paul Crowleydf528a72016-03-09 09:31:37 -080085// ext4enc:TODO Include structure from somewhere sensible
86// MUST be in sync with ext4_crypto.c in kernel
87constexpr int EXT4_ENCRYPTION_MODE_AES_256_XTS = 1;
88constexpr int EXT4_AES_256_XTS_KEY_SIZE = 64;
89constexpr int EXT4_MAX_KEY_SIZE = 64;
90struct ext4_encryption_key {
91 uint32_t mode;
92 char raw[EXT4_MAX_KEY_SIZE];
93 uint32_t size;
94};
Paul Lawrence731a7a22015-04-28 22:14:15 +000095}
96
Paul Crowley38132a12016-02-09 09:50:32 +000097static bool e4crypt_is_emulated() {
98 return property_get_bool("persist.sys.emulate_fbe", false);
99}
100
101static const char* escape_null(const char* value) {
102 return (value == nullptr) ? "null" : value;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000103}
104
Paul Crowley93363482015-07-07 15:17:22 +0100105// Get raw keyref - used to make keyname and to pass to ioctl
Paul Crowleydf528a72016-03-09 09:31:37 -0800106static std::string generate_key_ref(const char* key, int length) {
Paul Lawrencefd7db732015-04-10 07:48:51 -0700107 SHA512_CTX c;
108
109 SHA512_Init(&c);
110 SHA512_Update(&c, key, length);
Paul Crowley285956f2016-01-20 13:12:38 +0000111 unsigned char key_ref1[SHA512_DIGEST_LENGTH];
Paul Lawrencefd7db732015-04-10 07:48:51 -0700112 SHA512_Final(key_ref1, &c);
113
114 SHA512_Init(&c);
Paul Crowley285956f2016-01-20 13:12:38 +0000115 SHA512_Update(&c, key_ref1, SHA512_DIGEST_LENGTH);
116 unsigned char key_ref2[SHA512_DIGEST_LENGTH];
Paul Lawrencefd7db732015-04-10 07:48:51 -0700117 SHA512_Final(key_ref2, &c);
118
Paul Crowleyd9b92952016-03-04 13:45:00 -0800119 static_assert(EXT4_KEY_DESCRIPTOR_SIZE <= SHA512_DIGEST_LENGTH,
Paul Crowleydf528a72016-03-09 09:31:37 -0800120 "Hash too short for descriptor");
Paul Lawrencefd7db732015-04-10 07:48:51 -0700121 return std::string((char*)key_ref2, EXT4_KEY_DESCRIPTOR_SIZE);
122}
123
Paul Crowleydf528a72016-03-09 09:31:37 -0800124static bool fill_key(const std::string& key, ext4_encryption_key* ext4_key) {
Paul Crowley21990692016-03-02 09:15:07 -0800125 if (key.size() != EXT4_AES_256_XTS_KEY_SIZE) {
126 LOG(ERROR) << "Wrong size key " << key.size();
127 return false;
128 }
Paul Crowleydf528a72016-03-09 09:31:37 -0800129 static_assert(EXT4_AES_256_XTS_KEY_SIZE <= sizeof(ext4_key->raw), "Key too long!");
Paul Crowleya051eb72016-03-08 16:08:32 -0800130 ext4_key->mode = EXT4_ENCRYPTION_MODE_AES_256_XTS;
131 ext4_key->size = key.size();
132 memset(ext4_key->raw, 0, sizeof(ext4_key->raw));
133 memcpy(ext4_key->raw, key.data(), key.size());
Paul Crowley21990692016-03-02 09:15:07 -0800134 return true;
Paul Crowley93363482015-07-07 15:17:22 +0100135}
Paul Lawrence731a7a22015-04-28 22:14:15 +0000136
Paul Crowleyab4cc782017-06-19 16:05:55 -0700137static char const* const NAME_PREFIXES[] = {
138 "ext4",
139 "f2fs",
140 "fscrypt",
141 nullptr
142};
143
144static std::string keyname(const std::string& prefix, const std::string& raw_ref) {
Paul Lawrencefd7db732015-04-10 07:48:51 -0700145 std::ostringstream o;
Paul Crowleyab4cc782017-06-19 16:05:55 -0700146 o << prefix << ":";
Yong Yao392c4db2017-04-05 05:52:48 -0400147 for (unsigned char i : raw_ref) {
Paul Crowleyd9b92952016-03-04 13:45:00 -0800148 o << std::hex << std::setw(2) << std::setfill('0') << (int)i;
Paul Lawrencefd7db732015-04-10 07:48:51 -0700149 }
Paul Crowley93363482015-07-07 15:17:22 +0100150 return o.str();
151}
Paul Lawrencefd7db732015-04-10 07:48:51 -0700152
Paul Crowley93363482015-07-07 15:17:22 +0100153// Get the keyring we store all keys in
Paul Crowleydf528a72016-03-09 09:31:37 -0800154static bool e4crypt_keyring(key_serial_t* device_keyring) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800155 *device_keyring = keyctl_search(KEY_SPEC_SESSION_KEYRING, "keyring", "e4crypt", 0);
156 if (*device_keyring == -1) {
Paul Crowleyd9b92952016-03-04 13:45:00 -0800157 PLOG(ERROR) << "Unable to find device keyring";
158 return false;
159 }
160 return true;
Paul Crowley93363482015-07-07 15:17:22 +0100161}
Paul Lawrence731a7a22015-04-28 22:14:15 +0000162
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000163// Install password into global keyring
164// Return raw key reference for use in policy
Paul Crowleydf528a72016-03-09 09:31:37 -0800165static bool install_key(const std::string& key, std::string* raw_ref) {
Paul Crowley21990692016-03-02 09:15:07 -0800166 ext4_encryption_key ext4_key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800167 if (!fill_key(key, &ext4_key)) return false;
168 *raw_ref = generate_key_ref(ext4_key.raw, ext4_key.size);
Paul Crowleyd9b92952016-03-04 13:45:00 -0800169 key_serial_t device_keyring;
Paul Crowleya051eb72016-03-08 16:08:32 -0800170 if (!e4crypt_keyring(&device_keyring)) return false;
Paul Crowleyab4cc782017-06-19 16:05:55 -0700171 for (char const* const* name_prefix = NAME_PREFIXES; *name_prefix != nullptr; name_prefix++) {
172 auto ref = keyname(*name_prefix, *raw_ref);
173 key_serial_t key_id =
174 add_key("logon", ref.c_str(), (void*)&ext4_key, sizeof(ext4_key), device_keyring);
175 if (key_id == -1) {
176 PLOG(ERROR) << "Failed to insert key into keyring " << device_keyring;
177 return false;
178 }
179 LOG(DEBUG) << "Added key " << key_id << " (" << ref << ") to keyring " << device_keyring
180 << " in process " << getpid();
Paul Lawrence731a7a22015-04-28 22:14:15 +0000181 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000182 return true;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000183}
184
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000185static std::string get_de_key_path(userid_t user_id) {
186 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
187}
188
Paul Crowleya3630362016-05-17 14:17:56 -0700189static std::string get_ce_key_directory_path(userid_t user_id) {
190 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
191}
192
193// Returns the keys newest first
194static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
195 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
196 if (!dirp) {
197 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
198 return std::vector<std::string>();
199 }
200 std::vector<std::string> result;
201 for (;;) {
202 errno = 0;
203 auto const entry = readdir(dirp.get());
204 if (!entry) {
205 if (errno) {
206 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
207 return std::vector<std::string>();
208 }
209 break;
210 }
211 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
212 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
213 continue;
214 }
215 result.emplace_back(directory_path + "/" + entry->d_name);
216 }
217 std::sort(result.begin(), result.end());
218 std::reverse(result.begin(), result.end());
219 return result;
220}
221
222static std::string get_ce_key_current_path(const std::string& directory_path) {
223 return directory_path + "/current";
224}
225
226static bool get_ce_key_new_path(const std::string& directory_path,
227 const std::vector<std::string>& paths,
228 std::string *ce_key_path) {
229 if (paths.empty()) {
230 *ce_key_path = get_ce_key_current_path(directory_path);
231 return true;
232 }
233 for (unsigned int i = 0; i < UINT_MAX; i++) {
234 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
235 if (paths[0] < candidate) {
236 *ce_key_path = candidate;
237 return true;
238 }
239 }
240 return false;
241}
242
243// Discard all keys but the named one; rename it to canonical name.
244// No point in acting on errors in this; ignore them.
245static void fixate_user_ce_key(const std::string& directory_path, const std::string &to_fix,
246 const std::vector<std::string>& paths) {
247 for (auto const other_path: paths) {
248 if (other_path != to_fix) {
249 android::vold::destroyKey(other_path);
250 }
251 }
252 auto const current_path = get_ce_key_current_path(directory_path);
253 if (to_fix != current_path) {
254 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
255 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
256 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
257 }
258 }
259}
260
261static bool read_and_fixate_user_ce_key(userid_t user_id,
262 const android::vold::KeyAuthentication& auth,
263 std::string *ce_key) {
264 auto const directory_path = get_ce_key_directory_path(user_id);
265 auto const paths = get_ce_key_paths(directory_path);
266 for (auto const ce_key_path: paths) {
267 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
268 if (android::vold::retrieveKey(ce_key_path, auth, ce_key)) {
269 LOG(DEBUG) << "Successfully retrieved key";
270 fixate_user_ce_key(directory_path, ce_key_path, paths);
271 return true;
272 }
273 }
274 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
275 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100276}
277
Paul Crowleydf528a72016-03-09 09:31:37 -0800278static bool read_and_install_user_ce_key(userid_t user_id,
279 const android::vold::KeyAuthentication& auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000280 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Paul Crowley05720802016-02-08 15:55:41 +0000281 std::string ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700282 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000283 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800284 if (!install_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000285 s_ce_keys[user_id] = ce_key;
286 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000287 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000288 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000289}
290
Paul Crowleydf528a72016-03-09 09:31:37 -0800291static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000292 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000293 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
294 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000295 return false;
296 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000297 return true;
298}
299
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600300static bool destroy_dir(const std::string& dir) {
301 LOG(DEBUG) << "Destroying: " << dir;
302 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
303 PLOG(ERROR) << "Failed to destroy " << dir;
304 return false;
305 }
306 return true;
307}
308
Paul Crowleydf528a72016-03-09 09:31:37 -0800309static bool random_key(std::string* key) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800310 if (android::vold::ReadRandomBytes(EXT4_AES_256_XTS_KEY_SIZE, *key) != 0) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000311 // TODO status_t plays badly with PLOG, fix it.
312 LOG(ERROR) << "Random read failed";
Paul Crowley285956f2016-01-20 13:12:38 +0000313 return false;
314 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000315 return true;
316}
317
Paul Crowleydf528a72016-03-09 09:31:37 -0800318static bool path_exists(const std::string& path) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000319 return access(path.c_str(), F_OK) == 0;
320}
321
322// NB this assumes that there is only one thread listening for crypt commands, because
323// it creates keys in a fixed location.
Paul Crowleydf528a72016-03-09 09:31:37 -0800324static bool store_key(const std::string& key_path, const std::string& tmp_path,
325 const android::vold::KeyAuthentication& auth, const std::string& key) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000326 if (path_exists(key_path)) {
327 LOG(ERROR) << "Already exists, cannot create key at: " << key_path;
328 return false;
329 }
Paul Crowley38132a12016-02-09 09:50:32 +0000330 if (path_exists(tmp_path)) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800331 android::vold::destroyKey(tmp_path); // May be partially created so ignore errors
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000332 }
Paul Crowley38132a12016-02-09 09:50:32 +0000333 if (!android::vold::storeKey(tmp_path, auth, key)) return false;
334 if (rename(tmp_path.c_str(), key_path.c_str()) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000335 PLOG(ERROR) << "Unable to move new key to location: " << key_path;
336 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100337 }
Paul Crowley285956f2016-01-20 13:12:38 +0000338 LOG(DEBUG) << "Created key " << key_path;
Paul Crowley95376d62015-05-06 15:04:43 +0100339 return true;
340}
341
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000342static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
343 std::string de_key, ce_key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800344 if (!random_key(&de_key)) return false;
345 if (!random_key(&ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000346 if (create_ephemeral) {
347 // If the key should be created as ephemeral, don't store it.
348 s_ephemeral_users.insert(user_id);
349 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700350 auto const directory_path = get_ce_key_directory_path(user_id);
351 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
352 auto const paths = get_ce_key_paths(directory_path);
353 std::string ce_key_path;
354 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
355 if (!store_key(ce_key_path, user_key_temp,
356 kEmptyAuthentication, ce_key)) return false;
357 fixate_user_ce_key(directory_path, ce_key_path, paths);
358 // Write DE key second; once this is written, all is good.
Paul Crowley38132a12016-02-09 09:50:32 +0000359 if (!store_key(get_de_key_path(user_id), user_key_temp,
360 kEmptyAuthentication, de_key)) return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100361 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000362 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800363 if (!install_key(de_key, &de_raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000364 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000365 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800366 if (!install_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000367 s_ce_keys[user_id] = ce_key;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000368 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000369 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000370 return true;
371}
372
Paul Crowleydf528a72016-03-09 09:31:37 -0800373static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
374 std::string* raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000375 auto refi = key_map.find(user_id);
376 if (refi == key_map.end()) {
377 LOG(ERROR) << "Cannot find key for " << user_id;
378 return false;
379 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800380 *raw_ref = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000381 return true;
382}
383
Paul Crowleydf528a72016-03-09 09:31:37 -0800384static bool ensure_policy(const std::string& raw_ref, const std::string& path) {
Eric Biggersb45caaf2017-02-02 14:52:12 -0800385 const char *contents_mode;
386 const char *filenames_mode;
387
388 cryptfs_get_file_encryption_modes(&contents_mode, &filenames_mode);
389
Paul Lawrence6e410592016-05-24 14:20:38 -0700390 if (e4crypt_policy_ensure(path.c_str(),
391 raw_ref.data(), raw_ref.size(),
Eric Biggersb45caaf2017-02-02 14:52:12 -0800392 contents_mode, filenames_mode) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000393 LOG(ERROR) << "Failed to set policy on: " << path;
394 return false;
395 }
396 return true;
Paul Crowley95376d62015-05-06 15:04:43 +0100397}
Paul Crowleyb33e8872015-05-19 12:34:09 +0100398
Paul Crowleydf528a72016-03-09 09:31:37 -0800399static bool is_numeric(const char* name) {
400 for (const char* p = name; *p != '\0'; p++) {
401 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000402 }
403 return true;
404}
405
406static bool load_all_de_keys() {
407 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800408 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000409 if (!dirp) {
410 PLOG(ERROR) << "Unable to read de key directory";
411 return false;
412 }
413 for (;;) {
414 errno = 0;
415 auto entry = readdir(dirp.get());
416 if (!entry) {
417 if (errno) {
418 PLOG(ERROR) << "Unable to read de key directory";
419 return false;
420 }
421 break;
422 }
423 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
424 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
425 continue;
426 }
427 userid_t user_id = atoi(entry->d_name);
428 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000429 auto key_path = de_dir + "/" + entry->d_name;
430 std::string key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800431 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000432 std::string raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800433 if (!install_key(key, &raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000434 s_de_key_raw_refs[user_id] = raw_ref;
435 LOG(DEBUG) << "Installed de key for user " << user_id;
436 }
437 }
438 // ext4enc:TODO: go through all DE directories, ensure that all user dirs have the
439 // correct policy set on them, and that no rogue ones exist.
440 return true;
441}
442
Paul Crowleydf528a72016-03-09 09:31:37 -0800443bool e4crypt_initialize_global_de() {
Paul Crowley38132a12016-02-09 09:50:32 +0000444 LOG(INFO) << "e4crypt_initialize_global_de";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800445
Paul Crowley38132a12016-02-09 09:50:32 +0000446 if (s_global_de_initialized) {
447 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000448 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800449 }
450
Eric Biggersb45caaf2017-02-02 14:52:12 -0800451 const char *contents_mode;
452 const char *filenames_mode;
453 cryptfs_get_file_encryption_modes(&contents_mode, &filenames_mode);
454 std::string modestring = std::string(contents_mode) + ":" + filenames_mode;
455
Paul Lawrence6e410592016-05-24 14:20:38 -0700456 std::string mode_filename = std::string("/data") + e4crypt_key_mode;
Eric Biggersb45caaf2017-02-02 14:52:12 -0800457 if (!android::base::WriteStringToFile(modestring, mode_filename)) {
Paul Lawrence6e410592016-05-24 14:20:38 -0700458 PLOG(ERROR) << "Cannot save type";
459 return false;
460 }
461
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800462 std::string device_key;
Paul Crowley38132a12016-02-09 09:50:32 +0000463 if (path_exists(device_key_path)) {
464 if (!android::vold::retrieveKey(device_key_path,
Paul Crowleya051eb72016-03-08 16:08:32 -0800465 kEmptyAuthentication, &device_key)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000466 } else {
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800467 LOG(INFO) << "Creating new key";
Paul Crowleya051eb72016-03-08 16:08:32 -0800468 if (!random_key(&device_key)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000469 if (!store_key(device_key_path, device_key_temp,
Paul Crowley76107cb2016-02-09 10:04:39 +0000470 kEmptyAuthentication, device_key)) return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800471 }
472
473 std::string device_key_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800474 if (!install_key(device_key, &device_key_ref)) {
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800475 LOG(ERROR) << "Failed to install device key";
Paul Crowley76107cb2016-02-09 10:04:39 +0000476 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800477 }
478
Paul Lawrencef10544d2016-02-04 08:18:52 -0800479 std::string ref_filename = std::string("/data") + e4crypt_key_ref;
480 if (!android::base::WriteStringToFile(device_key_ref, ref_filename)) {
481 PLOG(ERROR) << "Cannot save key reference";
Paul Crowley76107cb2016-02-09 10:04:39 +0000482 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800483 }
484
Paul Crowley38132a12016-02-09 09:50:32 +0000485 s_global_de_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000486 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800487}
488
Paul Crowley76107cb2016-02-09 10:04:39 +0000489bool e4crypt_init_user0() {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000490 LOG(DEBUG) << "e4crypt_init_user0";
491 if (e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000492 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
493 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
494 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700495 if (!path_exists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000496 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000497 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700498 // TODO: switch to loading only DE_0 here once framework makes
499 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000500 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000501 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700502 // We can only safely prepare DE storage here, since CE keys are probably
503 // entangled with user credentials. The framework will always prepare CE
504 // storage once CE keys are installed.
Paul Crowley76107cb2016-02-09 10:04:39 +0000505 if (!e4crypt_prepare_user_storage(nullptr, 0, 0, FLAG_STORAGE_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700506 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000507 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700508 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700509
510 // If this is a non-FBE device that recently left an emulated mode,
511 // restore user data directories to known-good state.
512 if (!e4crypt_is_native() && !e4crypt_is_emulated()) {
Jeff Sharkey695d9282016-02-08 18:10:34 -0700513 e4crypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700514 }
515
Paul Crowley76107cb2016-02-09 10:04:39 +0000516 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000517}
518
Paul Crowley76107cb2016-02-09 10:04:39 +0000519bool e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
Paul Crowley285956f2016-01-20 13:12:38 +0000520 LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial;
Paul Crowleyea62e262016-01-28 12:23:53 +0000521 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000522 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000523 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000524 // FIXME test for existence of key that is not loaded yet
525 if (s_ce_key_raw_refs.count(user_id) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800526 LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for " << user_id
527 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000528 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000529 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800530 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000531 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000532 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000533 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000534 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800535}
536
Eric Biggersfa4039b2017-04-03 15:48:09 -0700537static bool evict_key(const std::string &raw_ref) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000538 key_serial_t device_keyring;
Eric Biggersfa4039b2017-04-03 15:48:09 -0700539 if (!e4crypt_keyring(&device_keyring)) return false;
Paul Crowleyddb542f2017-06-27 09:33:39 -0700540 bool success = true;
541 for (char const* const* name_prefix = NAME_PREFIXES; *name_prefix != nullptr; name_prefix++) {
542 auto ref = keyname(*name_prefix, raw_ref);
543 auto key_serial = keyctl_search(device_keyring, "logon", ref.c_str(), 0);
Andrew Scull7ec25c72016-10-31 10:28:25 +0000544
Paul Crowleyddb542f2017-06-27 09:33:39 -0700545 // Unlink the key from the keyring. Prefer unlinking to revoking or
546 // invalidating, since unlinking is actually no less secure currently, and
547 // it avoids bugs in certain kernel versions where the keyring key is
548 // referenced from places it shouldn't be.
549 if (keyctl_unlink(key_serial, device_keyring) != 0) {
550 PLOG(ERROR) << "Failed to unlink key with serial " << key_serial << " ref " << ref;
551 success = false;
552 } else {
553 LOG(DEBUG) << "Unlinked key with serial " << key_serial << " ref " << ref;
554 }
Eric Biggersfa4039b2017-04-03 15:48:09 -0700555 }
Paul Crowleyddb542f2017-06-27 09:33:39 -0700556 return success;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000557}
558
559static bool evict_ce_key(userid_t user_id) {
560 s_ce_keys.erase(user_id);
561 bool success = true;
562 std::string raw_ref;
563 // If we haven't loaded the CE key, no need to evict it.
564 if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) {
565 success &= evict_key(raw_ref);
566 }
567 s_ce_key_raw_refs.erase(user_id);
568 return success;
569}
570
Paul Crowley76107cb2016-02-09 10:04:39 +0000571bool e4crypt_destroy_user_key(userid_t user_id) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000572 LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")";
Paul Crowleyea62e262016-01-28 12:23:53 +0000573 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000574 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000575 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000576 bool success = true;
577 std::string raw_ref;
Andrew Scull7ec25c72016-10-31 10:28:25 +0000578 success &= evict_ce_key(user_id);
579 success &= lookup_key_ref(s_de_key_raw_refs, user_id, &raw_ref) && evict_key(raw_ref);
Paul Crowley05720802016-02-08 15:55:41 +0000580 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000581 auto it = s_ephemeral_users.find(user_id);
582 if (it != s_ephemeral_users.end()) {
583 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000584 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700585 for (auto const path: get_ce_key_paths(get_ce_key_directory_path(user_id))) {
586 success &= android::vold::destroyKey(path);
587 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700588 auto de_key_path = get_de_key_path(user_id);
589 if (path_exists(de_key_path)) {
590 success &= android::vold::destroyKey(de_key_path);
591 } else {
592 LOG(INFO) << "Not present so not erasing: " << de_key_path;
593 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100594 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000595 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100596}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800597
Paul Crowley76107cb2016-02-09 10:04:39 +0000598static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700599 if (chmod(path.c_str(), 0000) != 0) {
600 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000601 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700602 }
603#if EMULATED_USES_SELINUX
604 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
605 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000606 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700607 }
608#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000609 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700610}
611
Paul Crowley76107cb2016-02-09 10:04:39 +0000612static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700613 if (chmod(path.c_str(), mode) != 0) {
614 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000615 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000616 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700617 }
618#if EMULATED_USES_SELINUX
619 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
620 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000621 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000622 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700623 }
624#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000625 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700626}
627
Paul Crowleydf528a72016-03-09 09:31:37 -0800628static bool parse_hex(const char* hex, std::string* result) {
Paul Crowley05720802016-02-08 15:55:41 +0000629 if (strcmp("!", hex) == 0) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800630 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000631 return true;
632 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800633 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800634 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000635 return false;
636 }
637 return true;
638}
639
Paul Crowleya3630362016-05-17 14:17:56 -0700640bool e4crypt_add_user_key_auth(userid_t user_id, int serial, const char* token_hex,
641 const char* secret_hex) {
642 LOG(DEBUG) << "e4crypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowleydf528a72016-03-09 09:31:37 -0800643 << " token_present=" << (strcmp(token_hex, "!") != 0);
Paul Crowley76107cb2016-02-09 10:04:39 +0000644 if (!e4crypt_is_native()) return true;
645 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700646 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800647 if (!parse_hex(token_hex, &token)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700648 if (!parse_hex(secret_hex, &secret)) return false;
649 auto auth = secret.empty() ? kEmptyAuthentication
650 : android::vold::KeyAuthentication(token, secret);
Paul Crowley05720802016-02-08 15:55:41 +0000651 auto it = s_ce_keys.find(user_id);
652 if (it == s_ce_keys.end()) {
653 LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000654 return false;
Paul Crowley05720802016-02-08 15:55:41 +0000655 }
656 auto ce_key = it->second;
Paul Crowleya3630362016-05-17 14:17:56 -0700657 auto const directory_path = get_ce_key_directory_path(user_id);
658 auto const paths = get_ce_key_paths(directory_path);
659 std::string ce_key_path;
660 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
661 if (!store_key(ce_key_path, user_key_temp, auth, ce_key)) return false;
662 return true;
663}
664
665bool e4crypt_fixate_newest_user_key_auth(userid_t user_id) {
666 LOG(DEBUG) << "e4crypt_fixate_newest_user_key_auth " << user_id;
667 if (!e4crypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700668 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700669 auto const directory_path = get_ce_key_directory_path(user_id);
670 auto const paths = get_ce_key_paths(directory_path);
671 if (paths.empty()) {
672 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
673 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000674 }
Paul Crowleya3630362016-05-17 14:17:56 -0700675 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000676 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000677}
678
Jeff Sharkey47695b22016-02-01 17:02:29 -0700679// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Paul Crowleydf528a72016-03-09 09:31:37 -0800680bool e4crypt_unlock_user_key(userid_t user_id, int serial, const char* token_hex,
681 const char* secret_hex) {
682 LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " serial=" << serial
683 << " token_present=" << (strcmp(token_hex, "!") != 0);
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700684 if (e4crypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000685 if (s_ce_key_raw_refs.count(user_id) != 0) {
686 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000687 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000688 }
689 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800690 if (!parse_hex(token_hex, &token)) return false;
691 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000692 android::vold::KeyAuthentication auth(token, secret);
693 if (!read_and_install_user_ce_key(user_id, auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000694 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000695 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800696 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700697 } else {
698 // When in emulation mode, we just use chmod. However, we also
699 // unlock directories when not in emulation mode, to bring devices
700 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000701 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800702 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600703 !emulated_unlock(android::vold::BuildDataMediaCePath(nullptr, user_id), 0770) ||
704 !emulated_unlock(android::vold::BuildDataUserCePath(nullptr, user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700705 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000706 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700707 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800708 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000709 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800710}
711
Jeff Sharkey47695b22016-02-01 17:02:29 -0700712// TODO: rename to 'evict' for consistency
Paul Crowley76107cb2016-02-09 10:04:39 +0000713bool e4crypt_lock_user_key(userid_t user_id) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000714 LOG(DEBUG) << "e4crypt_lock_user_key " << user_id;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700715 if (e4crypt_is_native()) {
Andrew Scull7ec25c72016-10-31 10:28:25 +0000716 return evict_ce_key(user_id);
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700717 } else if (e4crypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800718 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000719 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800720 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600721 !emulated_lock(android::vold::BuildDataMediaCePath(nullptr, user_id)) ||
722 !emulated_lock(android::vold::BuildDataUserCePath(nullptr, user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000723 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000724 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800725 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800726 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700727
Paul Crowley76107cb2016-02-09 10:04:39 +0000728 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800729}
730
Paul Crowleydf528a72016-03-09 09:31:37 -0800731bool e4crypt_prepare_user_storage(const char* volume_uuid, userid_t user_id, int serial,
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600732 int flags) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700733 LOG(DEBUG) << "e4crypt_prepare_user_storage for volume " << escape_null(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800734 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700735
736 if (flags & FLAG_STORAGE_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600737 // DE_sys key
738 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
739 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
740 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600741
742 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700743 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
744 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
745 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
746
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600747 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
748#if MANAGE_MISC_DIRS
749 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
750 multiuser_get_uid(user_id, AID_EVERYBODY))) return false;
751#endif
752 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600753
Paul Crowley76107cb2016-02-09 10:04:39 +0000754 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
755 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
756 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000757
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600758 // For now, FBE is only supported on internal storage
759 if (e4crypt_is_native() && volume_uuid == nullptr) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700760 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800761 if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000762 if (!ensure_policy(de_raw_ref, system_de_path)) return false;
763 if (!ensure_policy(de_raw_ref, misc_de_path)) return false;
764 if (!ensure_policy(de_raw_ref, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700765 }
Paul Crowley285956f2016-01-20 13:12:38 +0000766 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800767
Jeff Sharkey47695b22016-02-01 17:02:29 -0700768 if (flags & FLAG_STORAGE_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600769 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700770 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
771 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600772 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
773 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800774
Paul Crowley76107cb2016-02-09 10:04:39 +0000775 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
776 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
777 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
778 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700779
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600780 // For now, FBE is only supported on internal storage
781 if (e4crypt_is_native() && volume_uuid == nullptr) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700782 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800783 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000784 if (!ensure_policy(ce_raw_ref, system_ce_path)) return false;
785 if (!ensure_policy(ce_raw_ref, misc_ce_path)) return false;
786 if (!ensure_policy(ce_raw_ref, media_ce_path)) return false;
787 if (!ensure_policy(ce_raw_ref, user_ce_path)) return false;
Jeff Sharkeyd24aeda2016-07-15 16:20:22 -0600788
789 // Now that credentials have been installed, we can run restorecon
790 // over these paths
791 // NOTE: these paths need to be kept in sync with libselinux
792 android::vold::RestoreconRecursive(system_ce_path);
793 android::vold::RestoreconRecursive(misc_ce_path);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700794 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800795 }
796
Paul Crowley76107cb2016-02-09 10:04:39 +0000797 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800798}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600799
800bool e4crypt_destroy_user_storage(const char* volume_uuid, userid_t user_id, int flags) {
801 LOG(DEBUG) << "e4crypt_destroy_user_storage for volume " << escape_null(volume_uuid)
802 << ", user " << user_id << ", flags " << flags;
803 bool res = true;
804
805 if (flags & FLAG_STORAGE_DE) {
806 // DE_sys key
807 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
808 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
809 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600810
811 // DE_n key
812 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
813 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
814 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
815
816 if (volume_uuid == nullptr) {
817 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);
824 }
825 res &= destroy_dir(user_de_path);
826 }
827
828 if (flags & FLAG_STORAGE_CE) {
829 // CE_n key
830 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
831 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
832 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
833 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
834
835 if (volume_uuid == nullptr) {
836 res &= destroy_dir(system_ce_path);
837 res &= destroy_dir(misc_ce_path);
838 }
839 res &= destroy_dir(media_ce_path);
840 res &= destroy_dir(user_ce_path);
841 }
842
843 return res;
844}
Rubin Xuf8d604c2017-04-27 20:43:10 +0100845
846bool e4crypt_secdiscard(const char* path) {
847 return android::vold::runSecdiscardSingle(std::string(path));
848}