blob: 4e8957594b3f5a31178cc26ea0494b19ff8394ba [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 Crowleydf528a72016-03-09 09:31:37 -080028#include <dirent.h>
29#include <errno.h>
30#include <fcntl.h>
Paul Lawrencefd7db732015-04-10 07:48:51 -070031#include <openssl/sha.h>
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070032#include <selinux/android.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080033#include <stdio.h>
34#include <sys/mount.h>
35#include <sys/stat.h>
36#include <sys/types.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000037
Paul Crowley480fcd22015-08-24 14:53:28 +010038#include <private/android_filesystem_config.h>
39
Paul Lawrence731a7a22015-04-28 22:14:15 +000040#include "cryptfs.h"
Jeff Sharkey47695b22016-02-01 17:02:29 -070041#include "ext4_crypt.h"
Paul Crowleydf528a72016-03-09 09:31:37 -080042#include "key_control.h"
Paul Lawrence731a7a22015-04-28 22:14:15 +000043
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>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080048
Elliott Hughes7e128fb2015-12-04 15:50:53 -080049#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080050#include <android-base/logging.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080051#include <android-base/stringprintf.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000052
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080053using android::base::StringPrintf;
Paul Crowley05720802016-02-08 15:55:41 +000054using android::vold::kEmptyAuthentication;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080055
Jeff Sharkey47695b22016-02-01 17:02:29 -070056// NOTE: keep in sync with StorageManager
57static constexpr int FLAG_STORAGE_DE = 1 << 0;
58static constexpr int FLAG_STORAGE_CE = 1 << 1;
59
Paul Lawrence731a7a22015-04-28 22:14:15 +000060namespace {
Paul Crowley4d2d5242016-04-27 10:25:12 -070061const std::string device_key_dir = std::string() + DATA_MNT_POINT + e4crypt_unencrypted_folder;
Paul Crowleydf528a72016-03-09 09:31:37 -080062const std::string device_key_path = device_key_dir + "/key";
63const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080064
Paul Crowleydf528a72016-03-09 09:31:37 -080065const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
66const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley285956f2016-01-20 13:12:38 +000067
Paul Crowleydf528a72016-03-09 09:31:37 -080068bool s_global_de_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080069
Paul Crowleydf528a72016-03-09 09:31:37 -080070// Some users are ephemeral, don't try to wipe their keys from disk
71std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080072
Paul Crowleydf528a72016-03-09 09:31:37 -080073// Map user ids to key references
74std::map<userid_t, std::string> s_de_key_raw_refs;
75std::map<userid_t, std::string> s_ce_key_raw_refs;
76// TODO abolish this map. Keys should not be long-lived in user memory, only kernel memory.
77// See b/26948053
78std::map<userid_t, std::string> s_ce_keys;
Paul Lawrence731a7a22015-04-28 22:14:15 +000079
Paul Crowleydf528a72016-03-09 09:31:37 -080080// ext4enc:TODO get this const from somewhere good
81const int EXT4_KEY_DESCRIPTOR_SIZE = 8;
Paul Lawrencefd7db732015-04-10 07:48:51 -070082
Paul Crowleydf528a72016-03-09 09:31:37 -080083// ext4enc:TODO Include structure from somewhere sensible
84// MUST be in sync with ext4_crypto.c in kernel
85constexpr int EXT4_ENCRYPTION_MODE_AES_256_XTS = 1;
86constexpr int EXT4_AES_256_XTS_KEY_SIZE = 64;
87constexpr int EXT4_MAX_KEY_SIZE = 64;
88struct ext4_encryption_key {
89 uint32_t mode;
90 char raw[EXT4_MAX_KEY_SIZE];
91 uint32_t size;
92};
Paul Lawrence731a7a22015-04-28 22:14:15 +000093}
94
Paul Crowley38132a12016-02-09 09:50:32 +000095static bool e4crypt_is_emulated() {
96 return property_get_bool("persist.sys.emulate_fbe", false);
97}
98
99static const char* escape_null(const char* value) {
100 return (value == nullptr) ? "null" : value;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000101}
102
Paul Crowley93363482015-07-07 15:17:22 +0100103// Get raw keyref - used to make keyname and to pass to ioctl
Paul Crowleydf528a72016-03-09 09:31:37 -0800104static std::string generate_key_ref(const char* key, int length) {
Paul Lawrencefd7db732015-04-10 07:48:51 -0700105 SHA512_CTX c;
106
107 SHA512_Init(&c);
108 SHA512_Update(&c, key, length);
Paul Crowley285956f2016-01-20 13:12:38 +0000109 unsigned char key_ref1[SHA512_DIGEST_LENGTH];
Paul Lawrencefd7db732015-04-10 07:48:51 -0700110 SHA512_Final(key_ref1, &c);
111
112 SHA512_Init(&c);
Paul Crowley285956f2016-01-20 13:12:38 +0000113 SHA512_Update(&c, key_ref1, SHA512_DIGEST_LENGTH);
114 unsigned char key_ref2[SHA512_DIGEST_LENGTH];
Paul Lawrencefd7db732015-04-10 07:48:51 -0700115 SHA512_Final(key_ref2, &c);
116
Paul Crowleyd9b92952016-03-04 13:45:00 -0800117 static_assert(EXT4_KEY_DESCRIPTOR_SIZE <= SHA512_DIGEST_LENGTH,
Paul Crowleydf528a72016-03-09 09:31:37 -0800118 "Hash too short for descriptor");
Paul Lawrencefd7db732015-04-10 07:48:51 -0700119 return std::string((char*)key_ref2, EXT4_KEY_DESCRIPTOR_SIZE);
120}
121
Paul Crowleydf528a72016-03-09 09:31:37 -0800122static bool fill_key(const std::string& key, ext4_encryption_key* ext4_key) {
Paul Crowley21990692016-03-02 09:15:07 -0800123 if (key.size() != EXT4_AES_256_XTS_KEY_SIZE) {
124 LOG(ERROR) << "Wrong size key " << key.size();
125 return false;
126 }
Paul Crowleydf528a72016-03-09 09:31:37 -0800127 static_assert(EXT4_AES_256_XTS_KEY_SIZE <= sizeof(ext4_key->raw), "Key too long!");
Paul Crowleya051eb72016-03-08 16:08:32 -0800128 ext4_key->mode = EXT4_ENCRYPTION_MODE_AES_256_XTS;
129 ext4_key->size = key.size();
130 memset(ext4_key->raw, 0, sizeof(ext4_key->raw));
131 memcpy(ext4_key->raw, key.data(), key.size());
Paul Crowley21990692016-03-02 09:15:07 -0800132 return true;
Paul Crowley93363482015-07-07 15:17:22 +0100133}
Paul Lawrence731a7a22015-04-28 22:14:15 +0000134
Paul Crowleydf528a72016-03-09 09:31:37 -0800135static std::string keyname(const std::string& raw_ref) {
Paul Lawrencefd7db732015-04-10 07:48:51 -0700136 std::ostringstream o;
Paul Crowley93363482015-07-07 15:17:22 +0100137 o << "ext4:";
Paul Crowleydf528a72016-03-09 09:31:37 -0800138 for (auto i : raw_ref) {
Paul Crowleyd9b92952016-03-04 13:45:00 -0800139 o << std::hex << std::setw(2) << std::setfill('0') << (int)i;
Paul Lawrencefd7db732015-04-10 07:48:51 -0700140 }
Paul Crowley93363482015-07-07 15:17:22 +0100141 return o.str();
142}
Paul Lawrencefd7db732015-04-10 07:48:51 -0700143
Paul Crowley93363482015-07-07 15:17:22 +0100144// Get the keyring we store all keys in
Paul Crowleydf528a72016-03-09 09:31:37 -0800145static bool e4crypt_keyring(key_serial_t* device_keyring) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800146 *device_keyring = keyctl_search(KEY_SPEC_SESSION_KEYRING, "keyring", "e4crypt", 0);
147 if (*device_keyring == -1) {
Paul Crowleyd9b92952016-03-04 13:45:00 -0800148 PLOG(ERROR) << "Unable to find device keyring";
149 return false;
150 }
151 return true;
Paul Crowley93363482015-07-07 15:17:22 +0100152}
Paul Lawrence731a7a22015-04-28 22:14:15 +0000153
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000154// Install password into global keyring
155// Return raw key reference for use in policy
Paul Crowleydf528a72016-03-09 09:31:37 -0800156static bool install_key(const std::string& key, std::string* raw_ref) {
Paul Crowley21990692016-03-02 09:15:07 -0800157 ext4_encryption_key ext4_key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800158 if (!fill_key(key, &ext4_key)) return false;
159 *raw_ref = generate_key_ref(ext4_key.raw, ext4_key.size);
160 auto ref = keyname(*raw_ref);
Paul Crowleyd9b92952016-03-04 13:45:00 -0800161 key_serial_t device_keyring;
Paul Crowleya051eb72016-03-08 16:08:32 -0800162 if (!e4crypt_keyring(&device_keyring)) return false;
Paul Crowleydf528a72016-03-09 09:31:37 -0800163 key_serial_t key_id =
164 add_key("logon", ref.c_str(), (void*)&ext4_key, sizeof(ext4_key), device_keyring);
Paul Lawrence731a7a22015-04-28 22:14:15 +0000165 if (key_id == -1) {
Paul Crowley285956f2016-01-20 13:12:38 +0000166 PLOG(ERROR) << "Failed to insert key into keyring " << device_keyring;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000167 return false;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000168 }
Paul Crowleydf528a72016-03-09 09:31:37 -0800169 LOG(DEBUG) << "Added key " << key_id << " (" << ref << ") to keyring " << device_keyring
170 << " in process " << getpid();
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000171 return true;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000172}
173
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000174static std::string get_de_key_path(userid_t user_id) {
175 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
176}
177
Paul Crowleyd4023892016-05-10 20:36:43 +0000178static std::string get_ce_key_path(userid_t user_id) {
179 return StringPrintf("%s/ce/%d/current", user_key_dir.c_str(), user_id);
Paul Crowleyb33e8872015-05-19 12:34:09 +0100180}
181
Paul Crowleydf528a72016-03-09 09:31:37 -0800182static bool read_and_install_user_ce_key(userid_t user_id,
183 const android::vold::KeyAuthentication& auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000184 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Paul Crowleyd4023892016-05-10 20:36:43 +0000185 const auto ce_key_path = get_ce_key_path(user_id);
Paul Crowley05720802016-02-08 15:55:41 +0000186 std::string ce_key;
Paul Crowleyd4023892016-05-10 20:36:43 +0000187 if (!android::vold::retrieveKey(ce_key_path, auth, &ce_key)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000188 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800189 if (!install_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000190 s_ce_keys[user_id] = ce_key;
191 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000192 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000193 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000194}
195
Paul Crowleydf528a72016-03-09 09:31:37 -0800196static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000197 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000198 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
199 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000200 return false;
201 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000202 return true;
203}
204
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600205static bool destroy_dir(const std::string& dir) {
206 LOG(DEBUG) << "Destroying: " << dir;
207 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
208 PLOG(ERROR) << "Failed to destroy " << dir;
209 return false;
210 }
211 return true;
212}
213
Paul Crowleydf528a72016-03-09 09:31:37 -0800214static bool random_key(std::string* key) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800215 if (android::vold::ReadRandomBytes(EXT4_AES_256_XTS_KEY_SIZE, *key) != 0) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000216 // TODO status_t plays badly with PLOG, fix it.
217 LOG(ERROR) << "Random read failed";
Paul Crowley285956f2016-01-20 13:12:38 +0000218 return false;
219 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000220 return true;
221}
222
Paul Crowleydf528a72016-03-09 09:31:37 -0800223static bool path_exists(const std::string& path) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000224 return access(path.c_str(), F_OK) == 0;
225}
226
227// NB this assumes that there is only one thread listening for crypt commands, because
228// it creates keys in a fixed location.
Paul Crowleydf528a72016-03-09 09:31:37 -0800229static bool store_key(const std::string& key_path, const std::string& tmp_path,
230 const android::vold::KeyAuthentication& auth, const std::string& key) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000231 if (path_exists(key_path)) {
232 LOG(ERROR) << "Already exists, cannot create key at: " << key_path;
233 return false;
234 }
Paul Crowley38132a12016-02-09 09:50:32 +0000235 if (path_exists(tmp_path)) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800236 android::vold::destroyKey(tmp_path); // May be partially created so ignore errors
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000237 }
Paul Crowley38132a12016-02-09 09:50:32 +0000238 if (!android::vold::storeKey(tmp_path, auth, key)) return false;
239 if (rename(tmp_path.c_str(), key_path.c_str()) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000240 PLOG(ERROR) << "Unable to move new key to location: " << key_path;
241 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100242 }
Paul Crowley285956f2016-01-20 13:12:38 +0000243 LOG(DEBUG) << "Created key " << key_path;
Paul Crowley95376d62015-05-06 15:04:43 +0100244 return true;
245}
246
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000247static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
248 std::string de_key, ce_key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800249 if (!random_key(&de_key)) return false;
250 if (!random_key(&ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000251 if (create_ephemeral) {
252 // If the key should be created as ephemeral, don't store it.
253 s_ephemeral_users.insert(user_id);
254 } else {
Paul Crowley38132a12016-02-09 09:50:32 +0000255 if (!store_key(get_de_key_path(user_id), user_key_temp,
256 kEmptyAuthentication, de_key)) return false;
Paul Crowleyd4023892016-05-10 20:36:43 +0000257 if (!prepare_dir(user_key_dir + "/ce/" + std::to_string(user_id),
258 0700, AID_ROOT, AID_ROOT)) return false;
259 if (!store_key(get_ce_key_path(user_id), user_key_temp,
260 kEmptyAuthentication, ce_key)) return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100261 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000262 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800263 if (!install_key(de_key, &de_raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000264 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000265 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800266 if (!install_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000267 s_ce_keys[user_id] = ce_key;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000268 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000269 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000270 return true;
271}
272
Paul Crowleydf528a72016-03-09 09:31:37 -0800273static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
274 std::string* raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000275 auto refi = key_map.find(user_id);
276 if (refi == key_map.end()) {
277 LOG(ERROR) << "Cannot find key for " << user_id;
278 return false;
279 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800280 *raw_ref = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000281 return true;
282}
283
Paul Crowleydf528a72016-03-09 09:31:37 -0800284static bool ensure_policy(const std::string& raw_ref, const std::string& path) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700285 if (e4crypt_policy_ensure(path.c_str(), raw_ref.data(), raw_ref.size()) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000286 LOG(ERROR) << "Failed to set policy on: " << path;
287 return false;
288 }
289 return true;
Paul Crowley95376d62015-05-06 15:04:43 +0100290}
Paul Crowleyb33e8872015-05-19 12:34:09 +0100291
Paul Crowleydf528a72016-03-09 09:31:37 -0800292static bool is_numeric(const char* name) {
293 for (const char* p = name; *p != '\0'; p++) {
294 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000295 }
296 return true;
297}
298
299static bool load_all_de_keys() {
300 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800301 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000302 if (!dirp) {
303 PLOG(ERROR) << "Unable to read de key directory";
304 return false;
305 }
306 for (;;) {
307 errno = 0;
308 auto entry = readdir(dirp.get());
309 if (!entry) {
310 if (errno) {
311 PLOG(ERROR) << "Unable to read de key directory";
312 return false;
313 }
314 break;
315 }
316 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
317 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
318 continue;
319 }
320 userid_t user_id = atoi(entry->d_name);
321 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000322 auto key_path = de_dir + "/" + entry->d_name;
323 std::string key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800324 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000325 std::string raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800326 if (!install_key(key, &raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000327 s_de_key_raw_refs[user_id] = raw_ref;
328 LOG(DEBUG) << "Installed de key for user " << user_id;
329 }
330 }
331 // ext4enc:TODO: go through all DE directories, ensure that all user dirs have the
332 // correct policy set on them, and that no rogue ones exist.
333 return true;
334}
335
Paul Crowleydf528a72016-03-09 09:31:37 -0800336bool e4crypt_initialize_global_de() {
Paul Crowley38132a12016-02-09 09:50:32 +0000337 LOG(INFO) << "e4crypt_initialize_global_de";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800338
Paul Crowley38132a12016-02-09 09:50:32 +0000339 if (s_global_de_initialized) {
340 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000341 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800342 }
343
344 std::string device_key;
Paul Crowley38132a12016-02-09 09:50:32 +0000345 if (path_exists(device_key_path)) {
346 if (!android::vold::retrieveKey(device_key_path,
Paul Crowleya051eb72016-03-08 16:08:32 -0800347 kEmptyAuthentication, &device_key)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000348 } else {
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800349 LOG(INFO) << "Creating new key";
Paul Crowleya051eb72016-03-08 16:08:32 -0800350 if (!random_key(&device_key)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000351 if (!store_key(device_key_path, device_key_temp,
Paul Crowley76107cb2016-02-09 10:04:39 +0000352 kEmptyAuthentication, device_key)) return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800353 }
354
355 std::string device_key_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800356 if (!install_key(device_key, &device_key_ref)) {
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800357 LOG(ERROR) << "Failed to install device key";
Paul Crowley76107cb2016-02-09 10:04:39 +0000358 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800359 }
360
Paul Lawrencef10544d2016-02-04 08:18:52 -0800361 std::string ref_filename = std::string("/data") + e4crypt_key_ref;
362 if (!android::base::WriteStringToFile(device_key_ref, ref_filename)) {
363 PLOG(ERROR) << "Cannot save key reference";
Paul Crowley76107cb2016-02-09 10:04:39 +0000364 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800365 }
366
Paul Crowley38132a12016-02-09 09:50:32 +0000367 s_global_de_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000368 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800369}
370
Paul Crowley76107cb2016-02-09 10:04:39 +0000371bool e4crypt_init_user0() {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000372 LOG(DEBUG) << "e4crypt_init_user0";
373 if (e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000374 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
375 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
376 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowleyd4023892016-05-10 20:36:43 +0000377 auto de_path = get_de_key_path(0);
378 auto ce_path = get_ce_key_path(0);
379 if (!path_exists(de_path) || !path_exists(ce_path)) {
380 if (path_exists(de_path)) {
381 android::vold::destroyKey(de_path); // May be partially created so ignore errors
382 }
383 if (path_exists(ce_path)) {
384 android::vold::destroyKey(ce_path); // May be partially created so ignore errors
385 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000386 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000387 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700388 // TODO: switch to loading only DE_0 here once framework makes
389 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000390 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000391 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700392 // We can only safely prepare DE storage here, since CE keys are probably
393 // entangled with user credentials. The framework will always prepare CE
394 // storage once CE keys are installed.
Paul Crowley76107cb2016-02-09 10:04:39 +0000395 if (!e4crypt_prepare_user_storage(nullptr, 0, 0, FLAG_STORAGE_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700396 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000397 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700398 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700399
400 // If this is a non-FBE device that recently left an emulated mode,
401 // restore user data directories to known-good state.
402 if (!e4crypt_is_native() && !e4crypt_is_emulated()) {
Jeff Sharkey695d9282016-02-08 18:10:34 -0700403 e4crypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700404 }
405
Paul Crowley76107cb2016-02-09 10:04:39 +0000406 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000407}
408
Paul Crowley76107cb2016-02-09 10:04:39 +0000409bool e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
Paul Crowley285956f2016-01-20 13:12:38 +0000410 LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial;
Paul Crowleyea62e262016-01-28 12:23:53 +0000411 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000412 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000413 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000414 // FIXME test for existence of key that is not loaded yet
415 if (s_ce_key_raw_refs.count(user_id) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800416 LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for " << user_id
417 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000418 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000419 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800420 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000421 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000422 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000423 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000424 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800425}
426
Paul Crowleydf528a72016-03-09 09:31:37 -0800427static bool evict_key(const std::string& raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000428 auto ref = keyname(raw_ref);
Paul Crowleyd9b92952016-03-04 13:45:00 -0800429 key_serial_t device_keyring;
Paul Crowleya051eb72016-03-08 16:08:32 -0800430 if (!e4crypt_keyring(&device_keyring)) return false;
Paul Crowleyd9b92952016-03-04 13:45:00 -0800431 auto key_serial = keyctl_search(device_keyring, "logon", ref.c_str(), 0);
Paul Crowley1ef25582016-01-21 20:26:12 +0000432 if (keyctl_revoke(key_serial) != 0) {
Paul Crowley285956f2016-01-20 13:12:38 +0000433 PLOG(ERROR) << "Failed to revoke key with serial " << key_serial << " ref " << ref;
Paul Crowley1ef25582016-01-21 20:26:12 +0000434 return false;
Paul Crowley93363482015-07-07 15:17:22 +0100435 }
Paul Crowley1ef25582016-01-21 20:26:12 +0000436 LOG(DEBUG) << "Revoked key with serial " << key_serial << " ref " << ref;
437 return true;
438}
439
Paul Crowley76107cb2016-02-09 10:04:39 +0000440bool e4crypt_destroy_user_key(userid_t user_id) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000441 LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")";
Paul Crowleyea62e262016-01-28 12:23:53 +0000442 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000443 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000444 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000445 bool success = true;
Paul Crowley05720802016-02-08 15:55:41 +0000446 s_ce_keys.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000447 std::string raw_ref;
Paul Crowley71ee6622016-03-25 15:50:01 -0700448 // If we haven't loaded the CE key, no need to evict it.
449 if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) {
450 success &= evict_key(raw_ref);
451 }
Paul Crowley05720802016-02-08 15:55:41 +0000452 s_ce_key_raw_refs.erase(user_id);
Paul Crowleya051eb72016-03-08 16:08:32 -0800453 success &= lookup_key_ref(s_de_key_raw_refs, user_id, &raw_ref) && evict_key(raw_ref);
Paul Crowley05720802016-02-08 15:55:41 +0000454 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000455 auto it = s_ephemeral_users.find(user_id);
456 if (it != s_ephemeral_users.end()) {
457 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000458 } else {
Paul Crowleyd4023892016-05-10 20:36:43 +0000459 success &= android::vold::destroyKey(get_ce_key_path(user_id));
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000460 success &= android::vold::destroyKey(get_de_key_path(user_id));
Lenka Trochtova395039f2015-11-25 10:13:03 +0100461 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000462 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100463}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800464
Paul Crowley76107cb2016-02-09 10:04:39 +0000465static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700466 if (chmod(path.c_str(), 0000) != 0) {
467 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000468 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700469 }
470#if EMULATED_USES_SELINUX
471 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
472 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000473 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700474 }
475#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000476 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700477}
478
Paul Crowley76107cb2016-02-09 10:04:39 +0000479static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700480 if (chmod(path.c_str(), mode) != 0) {
481 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000482 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000483 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700484 }
485#if EMULATED_USES_SELINUX
486 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
487 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000488 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000489 if (e4crypt_is_emulated()) 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 Crowleydf528a72016-03-09 09:31:37 -0800495static bool parse_hex(const char* hex, std::string* result) {
Paul Crowley05720802016-02-08 15:55:41 +0000496 if (strcmp("!", hex) == 0) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800497 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000498 return true;
499 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800500 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800501 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000502 return false;
503 }
504 return true;
505}
506
Paul Crowleyd4023892016-05-10 20:36:43 +0000507bool e4crypt_change_user_key(userid_t user_id, int serial, const char* token_hex,
508 const char* old_secret_hex, const char* new_secret_hex) {
509 LOG(DEBUG) << "e4crypt_change_user_key " << user_id << " serial=" << serial
Paul Crowleydf528a72016-03-09 09:31:37 -0800510 << " token_present=" << (strcmp(token_hex, "!") != 0);
Paul Crowley76107cb2016-02-09 10:04:39 +0000511 if (!e4crypt_is_native()) return true;
512 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowleyd4023892016-05-10 20:36:43 +0000513 std::string token, old_secret, new_secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800514 if (!parse_hex(token_hex, &token)) return false;
Paul Crowleyd4023892016-05-10 20:36:43 +0000515 if (!parse_hex(old_secret_hex, &old_secret)) return false;
516 if (!parse_hex(new_secret_hex, &new_secret)) return false;
517 auto old_auth = old_secret.empty() ? kEmptyAuthentication
518 : android::vold::KeyAuthentication(token, old_secret);
519 auto new_auth = new_secret.empty() ? kEmptyAuthentication
520 : android::vold::KeyAuthentication(token, new_secret);
Paul Crowley05720802016-02-08 15:55:41 +0000521 auto it = s_ce_keys.find(user_id);
522 if (it == s_ce_keys.end()) {
523 LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000524 return false;
Paul Crowley05720802016-02-08 15:55:41 +0000525 }
526 auto ce_key = it->second;
Paul Crowleyd4023892016-05-10 20:36:43 +0000527 auto ce_key_path = get_ce_key_path(user_id);
528 std::string trial_key;
529 if (!android::vold::retrieveKey(ce_key_path, old_auth, &trial_key)) {
530 LOG(WARNING) << "change_user_key wasn't given enough info to reconstruct the key";
531 } else if (ce_key != trial_key) {
532 LOG(WARNING) << "Reconstructed key != stored key";
Paul Crowleyad2eb642016-02-10 17:56:05 +0000533 }
Paul Crowleyd4023892016-05-10 20:36:43 +0000534 android::vold::destroyKey(ce_key_path);
535 if (!store_key(ce_key_path, user_key_temp, new_auth, ce_key)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000536 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000537}
538
Jeff Sharkey47695b22016-02-01 17:02:29 -0700539// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Paul Crowleydf528a72016-03-09 09:31:37 -0800540bool e4crypt_unlock_user_key(userid_t user_id, int serial, const char* token_hex,
541 const char* secret_hex) {
542 LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " serial=" << serial
543 << " token_present=" << (strcmp(token_hex, "!") != 0);
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700544 if (e4crypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000545 if (s_ce_key_raw_refs.count(user_id) != 0) {
546 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000547 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000548 }
549 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800550 if (!parse_hex(token_hex, &token)) return false;
551 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000552 android::vold::KeyAuthentication auth(token, secret);
553 if (!read_and_install_user_ce_key(user_id, auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000554 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000555 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800556 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700557 } else {
558 // When in emulation mode, we just use chmod. However, we also
559 // unlock directories when not in emulation mode, to bring devices
560 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000561 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800562 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600563 !emulated_unlock(android::vold::BuildDataMediaCePath(nullptr, user_id), 0770) ||
564 !emulated_unlock(android::vold::BuildDataUserCePath(nullptr, user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700565 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000566 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700567 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800568 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000569 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800570}
571
Jeff Sharkey47695b22016-02-01 17:02:29 -0700572// TODO: rename to 'evict' for consistency
Paul Crowley76107cb2016-02-09 10:04:39 +0000573bool e4crypt_lock_user_key(userid_t user_id) {
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700574 if (e4crypt_is_native()) {
575 // TODO: remove from kernel keyring
576 } else if (e4crypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800577 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000578 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800579 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600580 !emulated_lock(android::vold::BuildDataMediaCePath(nullptr, user_id)) ||
581 !emulated_lock(android::vold::BuildDataUserCePath(nullptr, user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000582 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000583 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800584 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800585 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700586
Paul Crowley76107cb2016-02-09 10:04:39 +0000587 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800588}
589
Paul Crowleydf528a72016-03-09 09:31:37 -0800590bool e4crypt_prepare_user_storage(const char* volume_uuid, userid_t user_id, int serial,
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600591 int flags) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700592 LOG(DEBUG) << "e4crypt_prepare_user_storage for volume " << escape_null(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800593 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700594
595 if (flags & FLAG_STORAGE_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600596 // DE_sys key
597 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
598 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
599 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
600 auto foreign_de_path = android::vold::BuildDataProfilesForeignDexDePath(user_id);
601
602 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700603 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
604 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
605 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
606
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600607 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
608#if MANAGE_MISC_DIRS
609 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
610 multiuser_get_uid(user_id, AID_EVERYBODY))) return false;
611#endif
612 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
613 if (!prepare_dir(foreign_de_path, 0773, AID_SYSTEM, AID_SYSTEM)) return false;
614
Paul Crowley76107cb2016-02-09 10:04:39 +0000615 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
616 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
617 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000618
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600619 // For now, FBE is only supported on internal storage
620 if (e4crypt_is_native() && volume_uuid == nullptr) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700621 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800622 if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000623 if (!ensure_policy(de_raw_ref, system_de_path)) return false;
624 if (!ensure_policy(de_raw_ref, misc_de_path)) return false;
625 if (!ensure_policy(de_raw_ref, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700626 }
Paul Crowley285956f2016-01-20 13:12:38 +0000627 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800628
Jeff Sharkey47695b22016-02-01 17:02:29 -0700629 if (flags & FLAG_STORAGE_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600630 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700631 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
632 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600633 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
634 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800635
Paul Crowley76107cb2016-02-09 10:04:39 +0000636 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
637 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
638 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
639 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700640
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600641 // For now, FBE is only supported on internal storage
642 if (e4crypt_is_native() && volume_uuid == nullptr) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700643 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800644 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000645 if (!ensure_policy(ce_raw_ref, system_ce_path)) return false;
646 if (!ensure_policy(ce_raw_ref, misc_ce_path)) return false;
647 if (!ensure_policy(ce_raw_ref, media_ce_path)) return false;
648 if (!ensure_policy(ce_raw_ref, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700649 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800650 }
651
Paul Crowley76107cb2016-02-09 10:04:39 +0000652 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800653}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600654
655bool e4crypt_destroy_user_storage(const char* volume_uuid, userid_t user_id, int flags) {
656 LOG(DEBUG) << "e4crypt_destroy_user_storage for volume " << escape_null(volume_uuid)
657 << ", user " << user_id << ", flags " << flags;
658 bool res = true;
659
660 if (flags & FLAG_STORAGE_DE) {
661 // DE_sys key
662 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
663 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
664 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
665 auto foreign_de_path = android::vold::BuildDataProfilesForeignDexDePath(user_id);
666
667 // DE_n key
668 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
669 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
670 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
671
672 if (volume_uuid == nullptr) {
673 res &= destroy_dir(system_legacy_path);
674#if MANAGE_MISC_DIRS
675 res &= destroy_dir(misc_legacy_path);
676#endif
677 res &= destroy_dir(profiles_de_path);
678 res &= destroy_dir(foreign_de_path);
679 res &= destroy_dir(system_de_path);
680 res &= destroy_dir(misc_de_path);
681 }
682 res &= destroy_dir(user_de_path);
683 }
684
685 if (flags & FLAG_STORAGE_CE) {
686 // CE_n key
687 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
688 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
689 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
690 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
691
692 if (volume_uuid == nullptr) {
693 res &= destroy_dir(system_ce_path);
694 res &= destroy_dir(misc_ce_path);
695 }
696 res &= destroy_dir(media_ce_path);
697 res &= destroy_dir(user_ce_path);
698 }
699
700 return res;
701}