blob: 0063bef165e27cbf82000e0c857b68da14e03626 [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>
49#include <ext4_utils/key_control.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 {
Paul Crowley4d2d5242016-04-27 10:25:12 -070063const std::string device_key_dir = std::string() + DATA_MNT_POINT + e4crypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080064const std::string device_key_path = device_key_dir + "/key";
65const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080066
Paul Crowleydf528a72016-03-09 09:31:37 -080067const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
68const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley285956f2016-01-20 13:12:38 +000069
Paul Crowleydf528a72016-03-09 09:31:37 -080070bool s_global_de_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080071
Paul Crowleydf528a72016-03-09 09:31:37 -080072// Some users are ephemeral, don't try to wipe their keys from disk
73std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080074
Paul Crowleydf528a72016-03-09 09:31:37 -080075// Map user ids to key references
76std::map<userid_t, std::string> s_de_key_raw_refs;
77std::map<userid_t, std::string> s_ce_key_raw_refs;
Paul Crowley99360d72016-10-19 14:00:24 -070078// TODO abolish this map, per b/26948053
Paul Crowleydf528a72016-03-09 09:31:37 -080079std::map<userid_t, std::string> s_ce_keys;
Paul Lawrence731a7a22015-04-28 22:14:15 +000080
Paul Crowleydf528a72016-03-09 09:31:37 -080081// ext4enc:TODO get this const from somewhere good
82const int EXT4_KEY_DESCRIPTOR_SIZE = 8;
Paul Lawrencefd7db732015-04-10 07:48:51 -070083
Paul Crowleydf528a72016-03-09 09:31:37 -080084// ext4enc:TODO Include structure from somewhere sensible
85// MUST be in sync with ext4_crypto.c in kernel
86constexpr int EXT4_ENCRYPTION_MODE_AES_256_XTS = 1;
87constexpr int EXT4_AES_256_XTS_KEY_SIZE = 64;
88constexpr int EXT4_MAX_KEY_SIZE = 64;
89struct ext4_encryption_key {
90 uint32_t mode;
91 char raw[EXT4_MAX_KEY_SIZE];
92 uint32_t size;
93};
Paul Lawrence731a7a22015-04-28 22:14:15 +000094}
95
Paul Crowley38132a12016-02-09 09:50:32 +000096static bool e4crypt_is_emulated() {
97 return property_get_bool("persist.sys.emulate_fbe", false);
98}
99
100static const char* escape_null(const char* value) {
101 return (value == nullptr) ? "null" : value;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000102}
103
Paul Crowley93363482015-07-07 15:17:22 +0100104// Get raw keyref - used to make keyname and to pass to ioctl
Paul Crowleydf528a72016-03-09 09:31:37 -0800105static std::string generate_key_ref(const char* key, int length) {
Paul Lawrencefd7db732015-04-10 07:48:51 -0700106 SHA512_CTX c;
107
108 SHA512_Init(&c);
109 SHA512_Update(&c, key, length);
Paul Crowley285956f2016-01-20 13:12:38 +0000110 unsigned char key_ref1[SHA512_DIGEST_LENGTH];
Paul Lawrencefd7db732015-04-10 07:48:51 -0700111 SHA512_Final(key_ref1, &c);
112
113 SHA512_Init(&c);
Paul Crowley285956f2016-01-20 13:12:38 +0000114 SHA512_Update(&c, key_ref1, SHA512_DIGEST_LENGTH);
115 unsigned char key_ref2[SHA512_DIGEST_LENGTH];
Paul Lawrencefd7db732015-04-10 07:48:51 -0700116 SHA512_Final(key_ref2, &c);
117
Paul Crowleyd9b92952016-03-04 13:45:00 -0800118 static_assert(EXT4_KEY_DESCRIPTOR_SIZE <= SHA512_DIGEST_LENGTH,
Paul Crowleydf528a72016-03-09 09:31:37 -0800119 "Hash too short for descriptor");
Paul Lawrencefd7db732015-04-10 07:48:51 -0700120 return std::string((char*)key_ref2, EXT4_KEY_DESCRIPTOR_SIZE);
121}
122
Paul Crowleydf528a72016-03-09 09:31:37 -0800123static bool fill_key(const std::string& key, ext4_encryption_key* ext4_key) {
Paul Crowley21990692016-03-02 09:15:07 -0800124 if (key.size() != EXT4_AES_256_XTS_KEY_SIZE) {
125 LOG(ERROR) << "Wrong size key " << key.size();
126 return false;
127 }
Paul Crowleydf528a72016-03-09 09:31:37 -0800128 static_assert(EXT4_AES_256_XTS_KEY_SIZE <= sizeof(ext4_key->raw), "Key too long!");
Paul Crowleya051eb72016-03-08 16:08:32 -0800129 ext4_key->mode = EXT4_ENCRYPTION_MODE_AES_256_XTS;
130 ext4_key->size = key.size();
131 memset(ext4_key->raw, 0, sizeof(ext4_key->raw));
132 memcpy(ext4_key->raw, key.data(), key.size());
Paul Crowley21990692016-03-02 09:15:07 -0800133 return true;
Paul Crowley93363482015-07-07 15:17:22 +0100134}
Paul Lawrence731a7a22015-04-28 22:14:15 +0000135
Paul Crowleydf528a72016-03-09 09:31:37 -0800136static std::string keyname(const std::string& raw_ref) {
Paul Lawrencefd7db732015-04-10 07:48:51 -0700137 std::ostringstream o;
Paul Crowley93363482015-07-07 15:17:22 +0100138 o << "ext4:";
Paul Crowleydf528a72016-03-09 09:31:37 -0800139 for (auto i : raw_ref) {
Paul Crowleyd9b92952016-03-04 13:45:00 -0800140 o << std::hex << std::setw(2) << std::setfill('0') << (int)i;
Paul Lawrencefd7db732015-04-10 07:48:51 -0700141 }
Paul Crowley93363482015-07-07 15:17:22 +0100142 return o.str();
143}
Paul Lawrencefd7db732015-04-10 07:48:51 -0700144
Paul Crowley93363482015-07-07 15:17:22 +0100145// Get the keyring we store all keys in
Paul Crowleydf528a72016-03-09 09:31:37 -0800146static bool e4crypt_keyring(key_serial_t* device_keyring) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800147 *device_keyring = keyctl_search(KEY_SPEC_SESSION_KEYRING, "keyring", "e4crypt", 0);
148 if (*device_keyring == -1) {
Paul Crowleyd9b92952016-03-04 13:45:00 -0800149 PLOG(ERROR) << "Unable to find device keyring";
150 return false;
151 }
152 return true;
Paul Crowley93363482015-07-07 15:17:22 +0100153}
Paul Lawrence731a7a22015-04-28 22:14:15 +0000154
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000155// Install password into global keyring
156// Return raw key reference for use in policy
Paul Crowleydf528a72016-03-09 09:31:37 -0800157static bool install_key(const std::string& key, std::string* raw_ref) {
Paul Crowley21990692016-03-02 09:15:07 -0800158 ext4_encryption_key ext4_key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800159 if (!fill_key(key, &ext4_key)) return false;
160 *raw_ref = generate_key_ref(ext4_key.raw, ext4_key.size);
161 auto ref = keyname(*raw_ref);
Paul Crowleyd9b92952016-03-04 13:45:00 -0800162 key_serial_t device_keyring;
Paul Crowleya051eb72016-03-08 16:08:32 -0800163 if (!e4crypt_keyring(&device_keyring)) return false;
Paul Crowleydf528a72016-03-09 09:31:37 -0800164 key_serial_t key_id =
165 add_key("logon", ref.c_str(), (void*)&ext4_key, sizeof(ext4_key), device_keyring);
Paul Lawrence731a7a22015-04-28 22:14:15 +0000166 if (key_id == -1) {
Paul Crowley285956f2016-01-20 13:12:38 +0000167 PLOG(ERROR) << "Failed to insert key into keyring " << device_keyring;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000168 return false;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000169 }
Paul Crowleydf528a72016-03-09 09:31:37 -0800170 LOG(DEBUG) << "Added key " << key_id << " (" << ref << ") to keyring " << device_keyring
171 << " in process " << getpid();
Paul Lawrence85e3d8c2016-04-26 12:50:53 -0700172
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000173 return true;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000174}
175
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000176static std::string get_de_key_path(userid_t user_id) {
177 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
178}
179
Paul Crowleya3630362016-05-17 14:17:56 -0700180static std::string get_ce_key_directory_path(userid_t user_id) {
181 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
182}
183
184// Returns the keys newest first
185static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
186 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
187 if (!dirp) {
188 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
189 return std::vector<std::string>();
190 }
191 std::vector<std::string> result;
192 for (;;) {
193 errno = 0;
194 auto const entry = readdir(dirp.get());
195 if (!entry) {
196 if (errno) {
197 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
198 return std::vector<std::string>();
199 }
200 break;
201 }
202 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
203 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
204 continue;
205 }
206 result.emplace_back(directory_path + "/" + entry->d_name);
207 }
208 std::sort(result.begin(), result.end());
209 std::reverse(result.begin(), result.end());
210 return result;
211}
212
213static std::string get_ce_key_current_path(const std::string& directory_path) {
214 return directory_path + "/current";
215}
216
217static bool get_ce_key_new_path(const std::string& directory_path,
218 const std::vector<std::string>& paths,
219 std::string *ce_key_path) {
220 if (paths.empty()) {
221 *ce_key_path = get_ce_key_current_path(directory_path);
222 return true;
223 }
224 for (unsigned int i = 0; i < UINT_MAX; i++) {
225 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
226 if (paths[0] < candidate) {
227 *ce_key_path = candidate;
228 return true;
229 }
230 }
231 return false;
232}
233
234// Discard all keys but the named one; rename it to canonical name.
235// No point in acting on errors in this; ignore them.
236static void fixate_user_ce_key(const std::string& directory_path, const std::string &to_fix,
237 const std::vector<std::string>& paths) {
238 for (auto const other_path: paths) {
239 if (other_path != to_fix) {
240 android::vold::destroyKey(other_path);
241 }
242 }
243 auto const current_path = get_ce_key_current_path(directory_path);
244 if (to_fix != current_path) {
245 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
246 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
247 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
248 }
249 }
250}
251
252static bool read_and_fixate_user_ce_key(userid_t user_id,
253 const android::vold::KeyAuthentication& auth,
254 std::string *ce_key) {
255 auto const directory_path = get_ce_key_directory_path(user_id);
256 auto const paths = get_ce_key_paths(directory_path);
257 for (auto const ce_key_path: paths) {
258 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
259 if (android::vold::retrieveKey(ce_key_path, auth, ce_key)) {
260 LOG(DEBUG) << "Successfully retrieved key";
261 fixate_user_ce_key(directory_path, ce_key_path, paths);
262 return true;
263 }
264 }
265 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
266 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100267}
268
Paul Crowleydf528a72016-03-09 09:31:37 -0800269static bool read_and_install_user_ce_key(userid_t user_id,
270 const android::vold::KeyAuthentication& auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000271 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Paul Crowley05720802016-02-08 15:55:41 +0000272 std::string ce_key;
Paul Crowleya3630362016-05-17 14:17:56 -0700273 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000274 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800275 if (!install_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000276 s_ce_keys[user_id] = ce_key;
277 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000278 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000279 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000280}
281
Paul Crowleydf528a72016-03-09 09:31:37 -0800282static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000283 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000284 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
285 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000286 return false;
287 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000288 return true;
289}
290
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600291static bool destroy_dir(const std::string& dir) {
292 LOG(DEBUG) << "Destroying: " << dir;
293 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
294 PLOG(ERROR) << "Failed to destroy " << dir;
295 return false;
296 }
297 return true;
298}
299
Paul Crowleydf528a72016-03-09 09:31:37 -0800300static bool random_key(std::string* key) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800301 if (android::vold::ReadRandomBytes(EXT4_AES_256_XTS_KEY_SIZE, *key) != 0) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000302 // TODO status_t plays badly with PLOG, fix it.
303 LOG(ERROR) << "Random read failed";
Paul Crowley285956f2016-01-20 13:12:38 +0000304 return false;
305 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000306 return true;
307}
308
Paul Crowleydf528a72016-03-09 09:31:37 -0800309static bool path_exists(const std::string& path) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000310 return access(path.c_str(), F_OK) == 0;
311}
312
313// NB this assumes that there is only one thread listening for crypt commands, because
314// it creates keys in a fixed location.
Paul Crowleydf528a72016-03-09 09:31:37 -0800315static bool store_key(const std::string& key_path, const std::string& tmp_path,
316 const android::vold::KeyAuthentication& auth, const std::string& key) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000317 if (path_exists(key_path)) {
318 LOG(ERROR) << "Already exists, cannot create key at: " << key_path;
319 return false;
320 }
Paul Crowley38132a12016-02-09 09:50:32 +0000321 if (path_exists(tmp_path)) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800322 android::vold::destroyKey(tmp_path); // May be partially created so ignore errors
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000323 }
Paul Crowley38132a12016-02-09 09:50:32 +0000324 if (!android::vold::storeKey(tmp_path, auth, key)) return false;
325 if (rename(tmp_path.c_str(), key_path.c_str()) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000326 PLOG(ERROR) << "Unable to move new key to location: " << key_path;
327 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100328 }
Paul Crowley285956f2016-01-20 13:12:38 +0000329 LOG(DEBUG) << "Created key " << key_path;
Paul Crowley95376d62015-05-06 15:04:43 +0100330 return true;
331}
332
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000333static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
334 std::string de_key, ce_key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800335 if (!random_key(&de_key)) return false;
336 if (!random_key(&ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000337 if (create_ephemeral) {
338 // If the key should be created as ephemeral, don't store it.
339 s_ephemeral_users.insert(user_id);
340 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700341 auto const directory_path = get_ce_key_directory_path(user_id);
342 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
343 auto const paths = get_ce_key_paths(directory_path);
344 std::string ce_key_path;
345 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
346 if (!store_key(ce_key_path, user_key_temp,
347 kEmptyAuthentication, ce_key)) return false;
348 fixate_user_ce_key(directory_path, ce_key_path, paths);
349 // Write DE key second; once this is written, all is good.
Paul Crowley38132a12016-02-09 09:50:32 +0000350 if (!store_key(get_de_key_path(user_id), user_key_temp,
351 kEmptyAuthentication, de_key)) return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100352 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000353 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800354 if (!install_key(de_key, &de_raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000355 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000356 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800357 if (!install_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000358 s_ce_keys[user_id] = ce_key;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000359 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000360 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000361 return true;
362}
363
Paul Crowleydf528a72016-03-09 09:31:37 -0800364static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
365 std::string* raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000366 auto refi = key_map.find(user_id);
367 if (refi == key_map.end()) {
368 LOG(ERROR) << "Cannot find key for " << user_id;
369 return false;
370 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800371 *raw_ref = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000372 return true;
373}
374
Paul Crowleydf528a72016-03-09 09:31:37 -0800375static bool ensure_policy(const std::string& raw_ref, const std::string& path) {
Paul Lawrence6e410592016-05-24 14:20:38 -0700376 if (e4crypt_policy_ensure(path.c_str(),
377 raw_ref.data(), raw_ref.size(),
378 cryptfs_get_file_encryption_mode()) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000379 LOG(ERROR) << "Failed to set policy on: " << path;
380 return false;
381 }
382 return true;
Paul Crowley95376d62015-05-06 15:04:43 +0100383}
Paul Crowleyb33e8872015-05-19 12:34:09 +0100384
Paul Crowleydf528a72016-03-09 09:31:37 -0800385static bool is_numeric(const char* name) {
386 for (const char* p = name; *p != '\0'; p++) {
387 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000388 }
389 return true;
390}
391
392static bool load_all_de_keys() {
393 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800394 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000395 if (!dirp) {
396 PLOG(ERROR) << "Unable to read de key directory";
397 return false;
398 }
399 for (;;) {
400 errno = 0;
401 auto entry = readdir(dirp.get());
402 if (!entry) {
403 if (errno) {
404 PLOG(ERROR) << "Unable to read de key directory";
405 return false;
406 }
407 break;
408 }
409 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
410 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
411 continue;
412 }
413 userid_t user_id = atoi(entry->d_name);
414 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000415 auto key_path = de_dir + "/" + entry->d_name;
416 std::string key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800417 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000418 std::string raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800419 if (!install_key(key, &raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000420 s_de_key_raw_refs[user_id] = raw_ref;
421 LOG(DEBUG) << "Installed de key for user " << user_id;
422 }
423 }
424 // ext4enc:TODO: go through all DE directories, ensure that all user dirs have the
425 // correct policy set on them, and that no rogue ones exist.
426 return true;
427}
428
Paul Crowleydf528a72016-03-09 09:31:37 -0800429bool e4crypt_initialize_global_de() {
Paul Crowley38132a12016-02-09 09:50:32 +0000430 LOG(INFO) << "e4crypt_initialize_global_de";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800431
Paul Crowley38132a12016-02-09 09:50:32 +0000432 if (s_global_de_initialized) {
433 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000434 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800435 }
436
Paul Lawrence6e410592016-05-24 14:20:38 -0700437 std::string mode_filename = std::string("/data") + e4crypt_key_mode;
438 std::string mode = cryptfs_get_file_encryption_mode();
439 if (!android::base::WriteStringToFile(mode, mode_filename)) {
440 PLOG(ERROR) << "Cannot save type";
441 return false;
442 }
443
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800444 std::string device_key;
Paul Crowley38132a12016-02-09 09:50:32 +0000445 if (path_exists(device_key_path)) {
446 if (!android::vold::retrieveKey(device_key_path,
Paul Crowleya051eb72016-03-08 16:08:32 -0800447 kEmptyAuthentication, &device_key)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000448 } else {
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800449 LOG(INFO) << "Creating new key";
Paul Crowleya051eb72016-03-08 16:08:32 -0800450 if (!random_key(&device_key)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000451 if (!store_key(device_key_path, device_key_temp,
Paul Crowley76107cb2016-02-09 10:04:39 +0000452 kEmptyAuthentication, device_key)) return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800453 }
454
455 std::string device_key_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800456 if (!install_key(device_key, &device_key_ref)) {
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800457 LOG(ERROR) << "Failed to install device key";
Paul Crowley76107cb2016-02-09 10:04:39 +0000458 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800459 }
460
Paul Lawrencef10544d2016-02-04 08:18:52 -0800461 std::string ref_filename = std::string("/data") + e4crypt_key_ref;
462 if (!android::base::WriteStringToFile(device_key_ref, ref_filename)) {
463 PLOG(ERROR) << "Cannot save key reference";
Paul Crowley76107cb2016-02-09 10:04:39 +0000464 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800465 }
466
Paul Crowley38132a12016-02-09 09:50:32 +0000467 s_global_de_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000468 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800469}
470
Paul Crowley76107cb2016-02-09 10:04:39 +0000471bool e4crypt_init_user0() {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000472 LOG(DEBUG) << "e4crypt_init_user0";
473 if (e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000474 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
475 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
476 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700477 if (!path_exists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000478 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000479 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700480 // TODO: switch to loading only DE_0 here once framework makes
481 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000482 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000483 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700484 // We can only safely prepare DE storage here, since CE keys are probably
485 // entangled with user credentials. The framework will always prepare CE
486 // storage once CE keys are installed.
Paul Crowley76107cb2016-02-09 10:04:39 +0000487 if (!e4crypt_prepare_user_storage(nullptr, 0, 0, FLAG_STORAGE_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700488 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000489 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700490 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700491
492 // If this is a non-FBE device that recently left an emulated mode,
493 // restore user data directories to known-good state.
494 if (!e4crypt_is_native() && !e4crypt_is_emulated()) {
Jeff Sharkey695d9282016-02-08 18:10:34 -0700495 e4crypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700496 }
497
Paul Crowley76107cb2016-02-09 10:04:39 +0000498 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000499}
500
Paul Crowley76107cb2016-02-09 10:04:39 +0000501bool e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
Paul Crowley285956f2016-01-20 13:12:38 +0000502 LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial;
Paul Crowleyea62e262016-01-28 12:23:53 +0000503 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000504 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000505 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000506 // FIXME test for existence of key that is not loaded yet
507 if (s_ce_key_raw_refs.count(user_id) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800508 LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for " << user_id
509 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000510 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000511 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800512 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000513 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000514 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000515 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000516 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800517}
518
Paul Crowley76107cb2016-02-09 10:04:39 +0000519bool e4crypt_destroy_user_key(userid_t user_id) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000520 LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")";
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 bool success = true;
Paul Crowley05720802016-02-08 15:55:41 +0000525 s_ce_keys.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000526 std::string raw_ref;
Paul Crowley05720802016-02-08 15:55:41 +0000527 s_ce_key_raw_refs.erase(user_id);
Paul Crowley05720802016-02-08 15:55:41 +0000528 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000529 auto it = s_ephemeral_users.find(user_id);
530 if (it != s_ephemeral_users.end()) {
531 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000532 } else {
Paul Crowleya3630362016-05-17 14:17:56 -0700533 for (auto const path: get_ce_key_paths(get_ce_key_directory_path(user_id))) {
534 success &= android::vold::destroyKey(path);
535 }
Paul Crowleyab0b56a2016-07-19 15:29:53 -0700536 auto de_key_path = get_de_key_path(user_id);
537 if (path_exists(de_key_path)) {
538 success &= android::vold::destroyKey(de_key_path);
539 } else {
540 LOG(INFO) << "Not present so not erasing: " << de_key_path;
541 }
Lenka Trochtova395039f2015-11-25 10:13:03 +0100542 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000543 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100544}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800545
Paul Crowley76107cb2016-02-09 10:04:39 +0000546static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700547 if (chmod(path.c_str(), 0000) != 0) {
548 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000549 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700550 }
551#if EMULATED_USES_SELINUX
552 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
553 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000554 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700555 }
556#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000557 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700558}
559
Paul Crowley76107cb2016-02-09 10:04:39 +0000560static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700561 if (chmod(path.c_str(), mode) != 0) {
562 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000563 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000564 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700565 }
566#if EMULATED_USES_SELINUX
567 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
568 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000569 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000570 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700571 }
572#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000573 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700574}
575
Paul Crowleydf528a72016-03-09 09:31:37 -0800576static bool parse_hex(const char* hex, std::string* result) {
Paul Crowley05720802016-02-08 15:55:41 +0000577 if (strcmp("!", hex) == 0) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800578 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000579 return true;
580 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800581 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800582 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000583 return false;
584 }
585 return true;
586}
587
Paul Crowleya3630362016-05-17 14:17:56 -0700588bool e4crypt_add_user_key_auth(userid_t user_id, int serial, const char* token_hex,
589 const char* secret_hex) {
590 LOG(DEBUG) << "e4crypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowleydf528a72016-03-09 09:31:37 -0800591 << " token_present=" << (strcmp(token_hex, "!") != 0);
Paul Crowley76107cb2016-02-09 10:04:39 +0000592 if (!e4crypt_is_native()) return true;
593 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700594 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800595 if (!parse_hex(token_hex, &token)) return false;
Paul Crowleya3630362016-05-17 14:17:56 -0700596 if (!parse_hex(secret_hex, &secret)) return false;
597 auto auth = secret.empty() ? kEmptyAuthentication
598 : android::vold::KeyAuthentication(token, secret);
Paul Crowley05720802016-02-08 15:55:41 +0000599 auto it = s_ce_keys.find(user_id);
600 if (it == s_ce_keys.end()) {
601 LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000602 return false;
Paul Crowley05720802016-02-08 15:55:41 +0000603 }
604 auto ce_key = it->second;
Paul Crowleya3630362016-05-17 14:17:56 -0700605 auto const directory_path = get_ce_key_directory_path(user_id);
606 auto const paths = get_ce_key_paths(directory_path);
607 std::string ce_key_path;
608 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
609 if (!store_key(ce_key_path, user_key_temp, auth, ce_key)) return false;
610 return true;
611}
612
613bool e4crypt_fixate_newest_user_key_auth(userid_t user_id) {
614 LOG(DEBUG) << "e4crypt_fixate_newest_user_key_auth " << user_id;
615 if (!e4crypt_is_native()) return true;
Paul Crowley25a71382016-07-25 15:55:36 -0700616 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleya3630362016-05-17 14:17:56 -0700617 auto const directory_path = get_ce_key_directory_path(user_id);
618 auto const paths = get_ce_key_paths(directory_path);
619 if (paths.empty()) {
620 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
621 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000622 }
Paul Crowleya3630362016-05-17 14:17:56 -0700623 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000624 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000625}
626
Jeff Sharkey47695b22016-02-01 17:02:29 -0700627// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Paul Crowleydf528a72016-03-09 09:31:37 -0800628bool e4crypt_unlock_user_key(userid_t user_id, int serial, const char* token_hex,
629 const char* secret_hex) {
630 LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " serial=" << serial
631 << " token_present=" << (strcmp(token_hex, "!") != 0);
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700632 if (e4crypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000633 if (s_ce_key_raw_refs.count(user_id) != 0) {
634 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000635 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000636 }
637 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800638 if (!parse_hex(token_hex, &token)) return false;
639 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000640 android::vold::KeyAuthentication auth(token, secret);
641 if (!read_and_install_user_ce_key(user_id, auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000642 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000643 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800644 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700645 } else {
646 // When in emulation mode, we just use chmod. However, we also
647 // unlock directories when not in emulation mode, to bring devices
648 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000649 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800650 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600651 !emulated_unlock(android::vold::BuildDataMediaCePath(nullptr, user_id), 0770) ||
652 !emulated_unlock(android::vold::BuildDataUserCePath(nullptr, user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700653 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000654 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700655 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800656 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000657 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800658}
659
Jeff Sharkey47695b22016-02-01 17:02:29 -0700660// TODO: rename to 'evict' for consistency
Paul Crowley76107cb2016-02-09 10:04:39 +0000661bool e4crypt_lock_user_key(userid_t user_id) {
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700662 if (e4crypt_is_native()) {
663 // TODO: remove from kernel keyring
664 } else if (e4crypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800665 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000666 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800667 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600668 !emulated_lock(android::vold::BuildDataMediaCePath(nullptr, user_id)) ||
669 !emulated_lock(android::vold::BuildDataUserCePath(nullptr, user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000670 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000671 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800672 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800673 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700674
Paul Crowley76107cb2016-02-09 10:04:39 +0000675 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800676}
677
Paul Crowleydf528a72016-03-09 09:31:37 -0800678bool e4crypt_prepare_user_storage(const char* volume_uuid, userid_t user_id, int serial,
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600679 int flags) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700680 LOG(DEBUG) << "e4crypt_prepare_user_storage for volume " << escape_null(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800681 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700682
683 if (flags & FLAG_STORAGE_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600684 // DE_sys key
685 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
686 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
687 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
688 auto foreign_de_path = android::vold::BuildDataProfilesForeignDexDePath(user_id);
689
690 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700691 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
692 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
693 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
694
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600695 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
696#if MANAGE_MISC_DIRS
697 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
698 multiuser_get_uid(user_id, AID_EVERYBODY))) return false;
699#endif
700 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
701 if (!prepare_dir(foreign_de_path, 0773, AID_SYSTEM, AID_SYSTEM)) return false;
702
Paul Crowley76107cb2016-02-09 10:04:39 +0000703 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
704 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
705 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000706
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600707 // For now, FBE is only supported on internal storage
708 if (e4crypt_is_native() && volume_uuid == nullptr) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700709 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800710 if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000711 if (!ensure_policy(de_raw_ref, system_de_path)) return false;
712 if (!ensure_policy(de_raw_ref, misc_de_path)) return false;
713 if (!ensure_policy(de_raw_ref, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700714 }
Paul Crowley285956f2016-01-20 13:12:38 +0000715 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800716
Jeff Sharkey47695b22016-02-01 17:02:29 -0700717 if (flags & FLAG_STORAGE_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600718 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700719 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
720 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600721 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
722 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800723
Paul Crowley76107cb2016-02-09 10:04:39 +0000724 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
725 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
726 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
727 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700728
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600729 // For now, FBE is only supported on internal storage
730 if (e4crypt_is_native() && volume_uuid == nullptr) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700731 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800732 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000733 if (!ensure_policy(ce_raw_ref, system_ce_path)) return false;
734 if (!ensure_policy(ce_raw_ref, misc_ce_path)) return false;
735 if (!ensure_policy(ce_raw_ref, media_ce_path)) return false;
736 if (!ensure_policy(ce_raw_ref, user_ce_path)) return false;
Jeff Sharkeyd24aeda2016-07-15 16:20:22 -0600737
738 // Now that credentials have been installed, we can run restorecon
739 // over these paths
740 // NOTE: these paths need to be kept in sync with libselinux
741 android::vold::RestoreconRecursive(system_ce_path);
742 android::vold::RestoreconRecursive(misc_ce_path);
Jeff Sharkey47695b22016-02-01 17:02:29 -0700743 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800744 }
745
Paul Crowley76107cb2016-02-09 10:04:39 +0000746 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800747}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600748
749bool e4crypt_destroy_user_storage(const char* volume_uuid, userid_t user_id, int flags) {
750 LOG(DEBUG) << "e4crypt_destroy_user_storage for volume " << escape_null(volume_uuid)
751 << ", user " << user_id << ", flags " << flags;
752 bool res = true;
753
754 if (flags & FLAG_STORAGE_DE) {
755 // DE_sys key
756 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
757 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
758 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
759 auto foreign_de_path = android::vold::BuildDataProfilesForeignDexDePath(user_id);
760
761 // DE_n key
762 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
763 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
764 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
765
766 if (volume_uuid == nullptr) {
767 res &= destroy_dir(system_legacy_path);
768#if MANAGE_MISC_DIRS
769 res &= destroy_dir(misc_legacy_path);
770#endif
771 res &= destroy_dir(profiles_de_path);
772 res &= destroy_dir(foreign_de_path);
773 res &= destroy_dir(system_de_path);
774 res &= destroy_dir(misc_de_path);
775 }
776 res &= destroy_dir(user_de_path);
777 }
778
779 if (flags & FLAG_STORAGE_CE) {
780 // CE_n key
781 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
782 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
783 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
784 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
785
786 if (volume_uuid == nullptr) {
787 res &= destroy_dir(system_ce_path);
788 res &= destroy_dir(misc_ce_path);
789 }
790 res &= destroy_dir(media_ce_path);
791 res &= destroy_dir(user_ce_path);
792 }
793
794 return res;
795}