blob: eaac26a2b85b2ccae380e9de3ad0d04a44fbafd4 [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 Lawrencefd7db732015-04-10 07:48:51 -070022#include <iomanip>
Paul Lawrence731a7a22015-04-28 22:14:15 +000023#include <map>
Paul Crowleyb1f3d242016-01-28 10:09:46 +000024#include <set>
Paul Lawrencefd7db732015-04-10 07:48:51 -070025#include <sstream>
Paul Crowleydf528a72016-03-09 09:31:37 -080026#include <string>
Paul Lawrence731a7a22015-04-28 22:14:15 +000027
Paul Lawrence731a7a22015-04-28 22:14:15 +000028#include <cutils/properties.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080029#include <dirent.h>
30#include <errno.h>
31#include <fcntl.h>
Paul Lawrencefd7db732015-04-10 07:48:51 -070032#include <openssl/sha.h>
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070033#include <selinux/android.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080034#include <stdio.h>
35#include <sys/mount.h>
36#include <sys/stat.h>
37#include <sys/types.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000038
Paul Crowley480fcd22015-08-24 14:53:28 +010039#include <private/android_filesystem_config.h>
40
Paul Lawrence731a7a22015-04-28 22:14:15 +000041#include "cryptfs.h"
Jeff Sharkey47695b22016-02-01 17:02:29 -070042#include "ext4_crypt.h"
Paul Crowleydf528a72016-03-09 09:31:37 -080043#include "key_control.h"
Paul Lawrence731a7a22015-04-28 22:14:15 +000044
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070045#define EMULATED_USES_SELINUX 0
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -060046#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070047
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080048#include <cutils/fs.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080049
Elliott Hughes7e128fb2015-12-04 15:50:53 -080050#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080051#include <android-base/logging.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080052#include <android-base/stringprintf.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000053
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080054using android::base::StringPrintf;
Paul Crowley05720802016-02-08 15:55:41 +000055using android::vold::kEmptyAuthentication;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080056
Jeff Sharkey47695b22016-02-01 17:02:29 -070057// NOTE: keep in sync with StorageManager
58static constexpr int FLAG_STORAGE_DE = 1 << 0;
59static constexpr int FLAG_STORAGE_CE = 1 << 1;
60
Paul Lawrence731a7a22015-04-28 22:14:15 +000061namespace {
Paul Crowleydf528a72016-03-09 09:31:37 -080062const std::string device_key_dir = std::string() + DATA_MNT_POINT + "/unencrypted";
63const std::string device_key_path = device_key_dir + "/key";
64const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080065
Paul Crowleydf528a72016-03-09 09:31:37 -080066const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
67const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley285956f2016-01-20 13:12:38 +000068
Paul Crowleydf528a72016-03-09 09:31:37 -080069bool s_global_de_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080070
Paul Crowleydf528a72016-03-09 09:31:37 -080071// Some users are ephemeral, don't try to wipe their keys from disk
72std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080073
Paul Crowleydf528a72016-03-09 09:31:37 -080074// Map user ids to key references
75std::map<userid_t, std::string> s_de_key_raw_refs;
76std::map<userid_t, std::string> s_ce_key_raw_refs;
77// TODO abolish this map. Keys should not be long-lived in user memory, only kernel memory.
78// See b/26948053
79std::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 Lawrencef10544d2016-02-04 08:18:52 -080096// TODO replace with proper function to test for file encryption
Paul Crowley38132a12016-02-09 09:50:32 +000097bool e4crypt_is_native() {
98 char value[PROPERTY_VALUE_MAX];
99 property_get("ro.crypto.type", value, "none");
100 return !strcmp(value, "file");
101}
102
103static bool e4crypt_is_emulated() {
104 return property_get_bool("persist.sys.emulate_fbe", false);
105}
106
107static const char* escape_null(const char* value) {
108 return (value == nullptr) ? "null" : value;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000109}
110
Paul Crowley93363482015-07-07 15:17:22 +0100111// Get raw keyref - used to make keyname and to pass to ioctl
Paul Crowleydf528a72016-03-09 09:31:37 -0800112static std::string generate_key_ref(const char* key, int length) {
Paul Lawrencefd7db732015-04-10 07:48:51 -0700113 SHA512_CTX c;
114
115 SHA512_Init(&c);
116 SHA512_Update(&c, key, length);
Paul Crowley285956f2016-01-20 13:12:38 +0000117 unsigned char key_ref1[SHA512_DIGEST_LENGTH];
Paul Lawrencefd7db732015-04-10 07:48:51 -0700118 SHA512_Final(key_ref1, &c);
119
120 SHA512_Init(&c);
Paul Crowley285956f2016-01-20 13:12:38 +0000121 SHA512_Update(&c, key_ref1, SHA512_DIGEST_LENGTH);
122 unsigned char key_ref2[SHA512_DIGEST_LENGTH];
Paul Lawrencefd7db732015-04-10 07:48:51 -0700123 SHA512_Final(key_ref2, &c);
124
Paul Crowleyd9b92952016-03-04 13:45:00 -0800125 static_assert(EXT4_KEY_DESCRIPTOR_SIZE <= SHA512_DIGEST_LENGTH,
Paul Crowleydf528a72016-03-09 09:31:37 -0800126 "Hash too short for descriptor");
Paul Lawrencefd7db732015-04-10 07:48:51 -0700127 return std::string((char*)key_ref2, EXT4_KEY_DESCRIPTOR_SIZE);
128}
129
Paul Crowleydf528a72016-03-09 09:31:37 -0800130static bool fill_key(const std::string& key, ext4_encryption_key* ext4_key) {
Paul Crowley21990692016-03-02 09:15:07 -0800131 if (key.size() != EXT4_AES_256_XTS_KEY_SIZE) {
132 LOG(ERROR) << "Wrong size key " << key.size();
133 return false;
134 }
Paul Crowleydf528a72016-03-09 09:31:37 -0800135 static_assert(EXT4_AES_256_XTS_KEY_SIZE <= sizeof(ext4_key->raw), "Key too long!");
Paul Crowleya051eb72016-03-08 16:08:32 -0800136 ext4_key->mode = EXT4_ENCRYPTION_MODE_AES_256_XTS;
137 ext4_key->size = key.size();
138 memset(ext4_key->raw, 0, sizeof(ext4_key->raw));
139 memcpy(ext4_key->raw, key.data(), key.size());
Paul Crowley21990692016-03-02 09:15:07 -0800140 return true;
Paul Crowley93363482015-07-07 15:17:22 +0100141}
Paul Lawrence731a7a22015-04-28 22:14:15 +0000142
Paul Crowleydf528a72016-03-09 09:31:37 -0800143static std::string keyname(const std::string& raw_ref) {
Paul Lawrencefd7db732015-04-10 07:48:51 -0700144 std::ostringstream o;
Paul Crowley93363482015-07-07 15:17:22 +0100145 o << "ext4:";
Paul Crowleydf528a72016-03-09 09:31:37 -0800146 for (auto i : raw_ref) {
Paul Crowleyd9b92952016-03-04 13:45:00 -0800147 o << std::hex << std::setw(2) << std::setfill('0') << (int)i;
Paul Lawrencefd7db732015-04-10 07:48:51 -0700148 }
Paul Crowley93363482015-07-07 15:17:22 +0100149 return o.str();
150}
Paul Lawrencefd7db732015-04-10 07:48:51 -0700151
Paul Crowley93363482015-07-07 15:17:22 +0100152// Get the keyring we store all keys in
Paul Crowleydf528a72016-03-09 09:31:37 -0800153static bool e4crypt_keyring(key_serial_t* device_keyring) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800154 *device_keyring = keyctl_search(KEY_SPEC_SESSION_KEYRING, "keyring", "e4crypt", 0);
155 if (*device_keyring == -1) {
Paul Crowleyd9b92952016-03-04 13:45:00 -0800156 PLOG(ERROR) << "Unable to find device keyring";
157 return false;
158 }
159 return true;
Paul Crowley93363482015-07-07 15:17:22 +0100160}
Paul Lawrence731a7a22015-04-28 22:14:15 +0000161
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000162// Install password into global keyring
163// Return raw key reference for use in policy
Paul Crowleydf528a72016-03-09 09:31:37 -0800164static bool install_key(const std::string& key, std::string* raw_ref) {
Paul Crowley21990692016-03-02 09:15:07 -0800165 ext4_encryption_key ext4_key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800166 if (!fill_key(key, &ext4_key)) return false;
167 *raw_ref = generate_key_ref(ext4_key.raw, ext4_key.size);
168 auto ref = keyname(*raw_ref);
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 Crowleydf528a72016-03-09 09:31:37 -0800171 key_serial_t key_id =
172 add_key("logon", ref.c_str(), (void*)&ext4_key, sizeof(ext4_key), device_keyring);
Paul Lawrence731a7a22015-04-28 22:14:15 +0000173 if (key_id == -1) {
Paul Crowley285956f2016-01-20 13:12:38 +0000174 PLOG(ERROR) << "Failed to insert key into keyring " << device_keyring;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000175 return false;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000176 }
Paul Crowleydf528a72016-03-09 09:31:37 -0800177 LOG(DEBUG) << "Added key " << key_id << " (" << ref << ") to keyring " << device_keyring
178 << " in process " << getpid();
Paul Lawrence85e3d8c2016-04-26 12:50:53 -0700179
180 // *TODO* Remove this code when kernel is fixed - see b/28373400
181 // Kernel preserves caches across a key insertion with ext4ice, which leads
182 // to contradictory dirents
183 if (!android::base::WriteStringToFile("3", "/proc/sys/vm/drop_caches")) {
184 PLOG(ERROR) << "Failed to drop_caches";
185 }
186
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000187 return true;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000188}
189
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000190static std::string get_de_key_path(userid_t user_id) {
191 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
192}
193
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000194static std::string get_ce_key_path(userid_t user_id) {
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000195 return StringPrintf("%s/ce/%d/current", user_key_dir.c_str(), user_id);
Paul Crowleyb33e8872015-05-19 12:34:09 +0100196}
197
Paul Crowleydf528a72016-03-09 09:31:37 -0800198static bool read_and_install_user_ce_key(userid_t user_id,
199 const android::vold::KeyAuthentication& auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000200 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Paul Crowley05720802016-02-08 15:55:41 +0000201 const auto ce_key_path = get_ce_key_path(user_id);
202 std::string ce_key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800203 if (!android::vold::retrieveKey(ce_key_path, auth, &ce_key)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000204 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800205 if (!install_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000206 s_ce_keys[user_id] = ce_key;
207 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000208 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000209 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000210}
211
Paul Crowleydf528a72016-03-09 09:31:37 -0800212static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000213 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000214 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
215 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000216 return false;
217 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000218 return true;
219}
220
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600221static bool destroy_dir(const std::string& dir) {
222 LOG(DEBUG) << "Destroying: " << dir;
223 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
224 PLOG(ERROR) << "Failed to destroy " << dir;
225 return false;
226 }
227 return true;
228}
229
Paul Crowleydf528a72016-03-09 09:31:37 -0800230static bool random_key(std::string* key) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800231 if (android::vold::ReadRandomBytes(EXT4_AES_256_XTS_KEY_SIZE, *key) != 0) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000232 // TODO status_t plays badly with PLOG, fix it.
233 LOG(ERROR) << "Random read failed";
Paul Crowley285956f2016-01-20 13:12:38 +0000234 return false;
235 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000236 return true;
237}
238
Paul Crowleydf528a72016-03-09 09:31:37 -0800239static bool path_exists(const std::string& path) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000240 return access(path.c_str(), F_OK) == 0;
241}
242
243// NB this assumes that there is only one thread listening for crypt commands, because
244// it creates keys in a fixed location.
Paul Crowleydf528a72016-03-09 09:31:37 -0800245static bool store_key(const std::string& key_path, const std::string& tmp_path,
246 const android::vold::KeyAuthentication& auth, const std::string& key) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000247 if (path_exists(key_path)) {
248 LOG(ERROR) << "Already exists, cannot create key at: " << key_path;
249 return false;
250 }
Paul Crowley38132a12016-02-09 09:50:32 +0000251 if (path_exists(tmp_path)) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800252 android::vold::destroyKey(tmp_path); // May be partially created so ignore errors
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000253 }
Paul Crowley38132a12016-02-09 09:50:32 +0000254 if (!android::vold::storeKey(tmp_path, auth, key)) return false;
255 if (rename(tmp_path.c_str(), key_path.c_str()) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000256 PLOG(ERROR) << "Unable to move new key to location: " << key_path;
257 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100258 }
Paul Crowley285956f2016-01-20 13:12:38 +0000259 LOG(DEBUG) << "Created key " << key_path;
Paul Crowley95376d62015-05-06 15:04:43 +0100260 return true;
261}
262
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000263static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
264 std::string de_key, ce_key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800265 if (!random_key(&de_key)) return false;
266 if (!random_key(&ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000267 if (create_ephemeral) {
268 // If the key should be created as ephemeral, don't store it.
269 s_ephemeral_users.insert(user_id);
270 } else {
Paul Crowley38132a12016-02-09 09:50:32 +0000271 if (!store_key(get_de_key_path(user_id), user_key_temp,
272 kEmptyAuthentication, de_key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000273 if (!prepare_dir(user_key_dir + "/ce/" + std::to_string(user_id),
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000274 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000275 if (!store_key(get_ce_key_path(user_id), user_key_temp,
276 kEmptyAuthentication, ce_key)) return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100277 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000278 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800279 if (!install_key(de_key, &de_raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000280 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000281 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800282 if (!install_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000283 s_ce_keys[user_id] = ce_key;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000284 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000285 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000286 return true;
287}
288
Paul Crowleydf528a72016-03-09 09:31:37 -0800289static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
290 std::string* raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000291 auto refi = key_map.find(user_id);
292 if (refi == key_map.end()) {
293 LOG(ERROR) << "Cannot find key for " << user_id;
294 return false;
295 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800296 *raw_ref = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000297 return true;
298}
299
Paul Crowleydf528a72016-03-09 09:31:37 -0800300static bool ensure_policy(const std::string& raw_ref, const std::string& path) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700301 if (e4crypt_policy_ensure(path.c_str(), raw_ref.data(), raw_ref.size()) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000302 LOG(ERROR) << "Failed to set policy on: " << path;
303 return false;
304 }
305 return true;
Paul Crowley95376d62015-05-06 15:04:43 +0100306}
Paul Crowleyb33e8872015-05-19 12:34:09 +0100307
Paul Crowleydf528a72016-03-09 09:31:37 -0800308static bool is_numeric(const char* name) {
309 for (const char* p = name; *p != '\0'; p++) {
310 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000311 }
312 return true;
313}
314
315static bool load_all_de_keys() {
316 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800317 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000318 if (!dirp) {
319 PLOG(ERROR) << "Unable to read de key directory";
320 return false;
321 }
322 for (;;) {
323 errno = 0;
324 auto entry = readdir(dirp.get());
325 if (!entry) {
326 if (errno) {
327 PLOG(ERROR) << "Unable to read de key directory";
328 return false;
329 }
330 break;
331 }
332 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
333 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
334 continue;
335 }
336 userid_t user_id = atoi(entry->d_name);
337 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000338 auto key_path = de_dir + "/" + entry->d_name;
339 std::string key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800340 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000341 std::string raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800342 if (!install_key(key, &raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000343 s_de_key_raw_refs[user_id] = raw_ref;
344 LOG(DEBUG) << "Installed de key for user " << user_id;
345 }
346 }
347 // ext4enc:TODO: go through all DE directories, ensure that all user dirs have the
348 // correct policy set on them, and that no rogue ones exist.
349 return true;
350}
351
Paul Crowleydf528a72016-03-09 09:31:37 -0800352bool e4crypt_initialize_global_de() {
Paul Crowley38132a12016-02-09 09:50:32 +0000353 LOG(INFO) << "e4crypt_initialize_global_de";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800354
Paul Crowley38132a12016-02-09 09:50:32 +0000355 if (s_global_de_initialized) {
356 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000357 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800358 }
359
360 std::string device_key;
Paul Crowley38132a12016-02-09 09:50:32 +0000361 if (path_exists(device_key_path)) {
362 if (!android::vold::retrieveKey(device_key_path,
Paul Crowleya051eb72016-03-08 16:08:32 -0800363 kEmptyAuthentication, &device_key)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000364 } else {
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800365 LOG(INFO) << "Creating new key";
Paul Crowleya051eb72016-03-08 16:08:32 -0800366 if (!random_key(&device_key)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000367 if (!store_key(device_key_path, device_key_temp,
Paul Crowley76107cb2016-02-09 10:04:39 +0000368 kEmptyAuthentication, device_key)) return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800369 }
370
371 std::string device_key_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800372 if (!install_key(device_key, &device_key_ref)) {
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800373 LOG(ERROR) << "Failed to install device key";
Paul Crowley76107cb2016-02-09 10:04:39 +0000374 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800375 }
376
Paul Lawrencef10544d2016-02-04 08:18:52 -0800377 std::string ref_filename = std::string("/data") + e4crypt_key_ref;
378 if (!android::base::WriteStringToFile(device_key_ref, ref_filename)) {
379 PLOG(ERROR) << "Cannot save key reference";
Paul Crowley76107cb2016-02-09 10:04:39 +0000380 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800381 }
382
Paul Crowley38132a12016-02-09 09:50:32 +0000383 s_global_de_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000384 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800385}
386
Paul Crowley76107cb2016-02-09 10:04:39 +0000387bool e4crypt_init_user0() {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000388 LOG(DEBUG) << "e4crypt_init_user0";
389 if (e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000390 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
391 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
392 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000393 auto de_path = get_de_key_path(0);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000394 auto ce_path = get_ce_key_path(0);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000395 if (!path_exists(de_path) || !path_exists(ce_path)) {
396 if (path_exists(de_path)) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800397 android::vold::destroyKey(de_path); // May be partially created so ignore errors
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000398 }
399 if (path_exists(ce_path)) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800400 android::vold::destroyKey(ce_path); // May be partially created so ignore errors
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000401 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000402 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000403 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700404 // TODO: switch to loading only DE_0 here once framework makes
405 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000406 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000407 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700408 // We can only safely prepare DE storage here, since CE keys are probably
409 // entangled with user credentials. The framework will always prepare CE
410 // storage once CE keys are installed.
Paul Crowley76107cb2016-02-09 10:04:39 +0000411 if (!e4crypt_prepare_user_storage(nullptr, 0, 0, FLAG_STORAGE_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700412 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000413 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700414 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700415
416 // If this is a non-FBE device that recently left an emulated mode,
417 // restore user data directories to known-good state.
418 if (!e4crypt_is_native() && !e4crypt_is_emulated()) {
Jeff Sharkey695d9282016-02-08 18:10:34 -0700419 e4crypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700420 }
421
Paul Crowley76107cb2016-02-09 10:04:39 +0000422 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000423}
424
Paul Crowley76107cb2016-02-09 10:04:39 +0000425bool e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
Paul Crowley285956f2016-01-20 13:12:38 +0000426 LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial;
Paul Crowleyea62e262016-01-28 12:23:53 +0000427 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000428 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000429 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000430 // FIXME test for existence of key that is not loaded yet
431 if (s_ce_key_raw_refs.count(user_id) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800432 LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for " << user_id
433 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000434 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000435 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800436 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000437 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000438 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000439 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000440 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800441}
442
Paul Crowleydf528a72016-03-09 09:31:37 -0800443static bool evict_key(const std::string& raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000444 auto ref = keyname(raw_ref);
Paul Crowleyd9b92952016-03-04 13:45:00 -0800445 key_serial_t device_keyring;
Paul Crowleya051eb72016-03-08 16:08:32 -0800446 if (!e4crypt_keyring(&device_keyring)) return false;
Paul Crowleyd9b92952016-03-04 13:45:00 -0800447 auto key_serial = keyctl_search(device_keyring, "logon", ref.c_str(), 0);
Paul Crowley1ef25582016-01-21 20:26:12 +0000448 if (keyctl_revoke(key_serial) != 0) {
Paul Crowley285956f2016-01-20 13:12:38 +0000449 PLOG(ERROR) << "Failed to revoke key with serial " << key_serial << " ref " << ref;
Paul Crowley1ef25582016-01-21 20:26:12 +0000450 return false;
Paul Crowley93363482015-07-07 15:17:22 +0100451 }
Paul Crowley1ef25582016-01-21 20:26:12 +0000452 LOG(DEBUG) << "Revoked key with serial " << key_serial << " ref " << ref;
453 return true;
454}
455
Paul Crowley76107cb2016-02-09 10:04:39 +0000456bool e4crypt_destroy_user_key(userid_t user_id) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000457 LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")";
Paul Crowleyea62e262016-01-28 12:23:53 +0000458 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000459 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000460 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000461 bool success = true;
Paul Crowley05720802016-02-08 15:55:41 +0000462 s_ce_keys.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000463 std::string raw_ref;
Paul Crowley71ee6622016-03-25 15:50:01 -0700464 // If we haven't loaded the CE key, no need to evict it.
465 if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) {
466 success &= evict_key(raw_ref);
467 }
Paul Crowley05720802016-02-08 15:55:41 +0000468 s_ce_key_raw_refs.erase(user_id);
Paul Crowleya051eb72016-03-08 16:08:32 -0800469 success &= lookup_key_ref(s_de_key_raw_refs, user_id, &raw_ref) && evict_key(raw_ref);
Paul Crowley05720802016-02-08 15:55:41 +0000470 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000471 auto it = s_ephemeral_users.find(user_id);
472 if (it != s_ephemeral_users.end()) {
473 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000474 } else {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000475 success &= android::vold::destroyKey(get_ce_key_path(user_id));
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000476 success &= android::vold::destroyKey(get_de_key_path(user_id));
Lenka Trochtova395039f2015-11-25 10:13:03 +0100477 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000478 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100479}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800480
Paul Crowley76107cb2016-02-09 10:04:39 +0000481static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700482 if (chmod(path.c_str(), 0000) != 0) {
483 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000484 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700485 }
486#if EMULATED_USES_SELINUX
487 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
488 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000489 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700490 }
491#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000492 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700493}
494
Paul Crowley76107cb2016-02-09 10:04:39 +0000495static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700496 if (chmod(path.c_str(), mode) != 0) {
497 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000498 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000499 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700500 }
501#if EMULATED_USES_SELINUX
502 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
503 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000504 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000505 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700506 }
507#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000508 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700509}
510
Paul Crowleydf528a72016-03-09 09:31:37 -0800511static bool parse_hex(const char* hex, std::string* result) {
Paul Crowley05720802016-02-08 15:55:41 +0000512 if (strcmp("!", hex) == 0) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800513 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000514 return true;
515 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800516 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800517 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000518 return false;
519 }
520 return true;
521}
522
Paul Crowleydf528a72016-03-09 09:31:37 -0800523bool e4crypt_change_user_key(userid_t user_id, int serial, const char* token_hex,
524 const char* old_secret_hex, const char* new_secret_hex) {
525 LOG(DEBUG) << "e4crypt_change_user_key " << user_id << " serial=" << serial
526 << " token_present=" << (strcmp(token_hex, "!") != 0);
Paul Crowley76107cb2016-02-09 10:04:39 +0000527 if (!e4crypt_is_native()) return true;
528 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowley05720802016-02-08 15:55:41 +0000529 std::string token, old_secret, new_secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800530 if (!parse_hex(token_hex, &token)) return false;
531 if (!parse_hex(old_secret_hex, &old_secret)) return false;
532 if (!parse_hex(new_secret_hex, &new_secret)) return false;
Paul Crowleydf528a72016-03-09 09:31:37 -0800533 auto old_auth = old_secret.empty() ? kEmptyAuthentication
534 : android::vold::KeyAuthentication(token, old_secret);
535 auto new_auth = new_secret.empty() ? kEmptyAuthentication
536 : android::vold::KeyAuthentication(token, new_secret);
Paul Crowley05720802016-02-08 15:55:41 +0000537 auto it = s_ce_keys.find(user_id);
538 if (it == s_ce_keys.end()) {
539 LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000540 return false;
Paul Crowley05720802016-02-08 15:55:41 +0000541 }
542 auto ce_key = it->second;
543 auto ce_key_path = get_ce_key_path(user_id);
Paul Crowleyad2eb642016-02-10 17:56:05 +0000544 std::string trial_key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800545 if (!android::vold::retrieveKey(ce_key_path, old_auth, &trial_key)) {
Paul Crowleyad2eb642016-02-10 17:56:05 +0000546 LOG(WARNING) << "change_user_key wasn't given enough info to reconstruct the key";
547 } else if (ce_key != trial_key) {
548 LOG(WARNING) << "Reconstructed key != stored key";
549 }
Paul Crowley05720802016-02-08 15:55:41 +0000550 android::vold::destroyKey(ce_key_path);
Paul Crowleyad2eb642016-02-10 17:56:05 +0000551 if (!store_key(ce_key_path, user_key_temp, new_auth, ce_key)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000552 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000553}
554
Jeff Sharkey47695b22016-02-01 17:02:29 -0700555// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Paul Crowleydf528a72016-03-09 09:31:37 -0800556bool e4crypt_unlock_user_key(userid_t user_id, int serial, const char* token_hex,
557 const char* secret_hex) {
558 LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " serial=" << serial
559 << " token_present=" << (strcmp(token_hex, "!") != 0);
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700560 if (e4crypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000561 if (s_ce_key_raw_refs.count(user_id) != 0) {
562 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000563 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000564 }
565 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800566 if (!parse_hex(token_hex, &token)) return false;
567 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000568 android::vold::KeyAuthentication auth(token, secret);
569 if (!read_and_install_user_ce_key(user_id, auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000570 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000571 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800572 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700573 } else {
574 // When in emulation mode, we just use chmod. However, we also
575 // unlock directories when not in emulation mode, to bring devices
576 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000577 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800578 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600579 !emulated_unlock(android::vold::BuildDataMediaCePath(nullptr, user_id), 0770) ||
580 !emulated_unlock(android::vold::BuildDataUserCePath(nullptr, user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700581 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000582 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700583 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800584 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000585 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800586}
587
Jeff Sharkey47695b22016-02-01 17:02:29 -0700588// TODO: rename to 'evict' for consistency
Paul Crowley76107cb2016-02-09 10:04:39 +0000589bool e4crypt_lock_user_key(userid_t user_id) {
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700590 if (e4crypt_is_native()) {
591 // TODO: remove from kernel keyring
592 } else if (e4crypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800593 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000594 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800595 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600596 !emulated_lock(android::vold::BuildDataMediaCePath(nullptr, user_id)) ||
597 !emulated_lock(android::vold::BuildDataUserCePath(nullptr, user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000598 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000599 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800600 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800601 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700602
Paul Crowley76107cb2016-02-09 10:04:39 +0000603 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800604}
605
Paul Crowleydf528a72016-03-09 09:31:37 -0800606bool e4crypt_prepare_user_storage(const char* volume_uuid, userid_t user_id, int serial,
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600607 int flags) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700608 LOG(DEBUG) << "e4crypt_prepare_user_storage for volume " << escape_null(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800609 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700610
611 if (flags & FLAG_STORAGE_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600612 // DE_sys key
613 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
614 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
615 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
616 auto foreign_de_path = android::vold::BuildDataProfilesForeignDexDePath(user_id);
617
618 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700619 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
620 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
621 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
622
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600623 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
624#if MANAGE_MISC_DIRS
625 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
626 multiuser_get_uid(user_id, AID_EVERYBODY))) return false;
627#endif
628 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
629 if (!prepare_dir(foreign_de_path, 0773, AID_SYSTEM, AID_SYSTEM)) return false;
630
Paul Crowley76107cb2016-02-09 10:04:39 +0000631 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
632 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
633 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000634
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600635 // For now, FBE is only supported on internal storage
636 if (e4crypt_is_native() && volume_uuid == nullptr) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700637 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800638 if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000639 if (!ensure_policy(de_raw_ref, system_de_path)) return false;
640 if (!ensure_policy(de_raw_ref, misc_de_path)) return false;
641 if (!ensure_policy(de_raw_ref, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700642 }
Paul Crowley285956f2016-01-20 13:12:38 +0000643 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800644
Jeff Sharkey47695b22016-02-01 17:02:29 -0700645 if (flags & FLAG_STORAGE_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600646 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700647 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
648 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600649 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
650 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800651
Paul Crowley76107cb2016-02-09 10:04:39 +0000652 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
653 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
654 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
655 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700656
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600657 // For now, FBE is only supported on internal storage
658 if (e4crypt_is_native() && volume_uuid == nullptr) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700659 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800660 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000661 if (!ensure_policy(ce_raw_ref, system_ce_path)) return false;
662 if (!ensure_policy(ce_raw_ref, misc_ce_path)) return false;
663 if (!ensure_policy(ce_raw_ref, media_ce_path)) return false;
664 if (!ensure_policy(ce_raw_ref, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700665 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800666 }
667
Paul Crowley76107cb2016-02-09 10:04:39 +0000668 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800669}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600670
671bool e4crypt_destroy_user_storage(const char* volume_uuid, userid_t user_id, int flags) {
672 LOG(DEBUG) << "e4crypt_destroy_user_storage for volume " << escape_null(volume_uuid)
673 << ", user " << user_id << ", flags " << flags;
674 bool res = true;
675
676 if (flags & FLAG_STORAGE_DE) {
677 // DE_sys key
678 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
679 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
680 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
681 auto foreign_de_path = android::vold::BuildDataProfilesForeignDexDePath(user_id);
682
683 // DE_n key
684 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
685 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
686 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
687
688 if (volume_uuid == nullptr) {
689 res &= destroy_dir(system_legacy_path);
690#if MANAGE_MISC_DIRS
691 res &= destroy_dir(misc_legacy_path);
692#endif
693 res &= destroy_dir(profiles_de_path);
694 res &= destroy_dir(foreign_de_path);
695 res &= destroy_dir(system_de_path);
696 res &= destroy_dir(misc_de_path);
697 }
698 res &= destroy_dir(user_de_path);
699 }
700
701 if (flags & FLAG_STORAGE_CE) {
702 // CE_n key
703 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
704 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
705 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
706 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
707
708 if (volume_uuid == nullptr) {
709 res &= destroy_dir(system_ce_path);
710 res &= destroy_dir(misc_ce_path);
711 }
712 res &= destroy_dir(media_ce_path);
713 res &= destroy_dir(user_ce_path);
714 }
715
716 return res;
717}