blob: a08fe39f2aa1338675d31890c98d9ddce1da9db5 [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 Crowley92c5eeb2016-04-22 12:09:54 -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 Lawrence731a7a22015-04-28 22:14:15 +000029#include <cutils/properties.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080030#include <dirent.h>
31#include <errno.h>
32#include <fcntl.h>
Paul Crowley92c5eeb2016-04-22 12:09:54 -070033#include <limits.h>
Paul Lawrencefd7db732015-04-10 07:48:51 -070034#include <openssl/sha.h>
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070035#include <selinux/android.h>
Paul Crowleydf528a72016-03-09 09:31:37 -080036#include <stdio.h>
37#include <sys/mount.h>
38#include <sys/stat.h>
39#include <sys/types.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000040
Paul Crowley480fcd22015-08-24 14:53:28 +010041#include <private/android_filesystem_config.h>
42
Paul Lawrence731a7a22015-04-28 22:14:15 +000043#include "cryptfs.h"
Jeff Sharkey47695b22016-02-01 17:02:29 -070044#include "ext4_crypt.h"
Paul Crowleydf528a72016-03-09 09:31:37 -080045#include "key_control.h"
Paul Lawrence731a7a22015-04-28 22:14:15 +000046
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070047#define EMULATED_USES_SELINUX 0
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -060048#define MANAGE_MISC_DIRS 0
Jeff Sharkey7a9dd952016-01-12 16:52:16 -070049
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080050#include <cutils/fs.h>
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080051
Elliott Hughes7e128fb2015-12-04 15:50:53 -080052#include <android-base/file.h>
Elliott Hughes6bf05472015-12-04 17:55:33 -080053#include <android-base/logging.h>
Elliott Hughes7e128fb2015-12-04 15:50:53 -080054#include <android-base/stringprintf.h>
Paul Lawrence731a7a22015-04-28 22:14:15 +000055
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080056using android::base::StringPrintf;
Paul Crowley05720802016-02-08 15:55:41 +000057using android::vold::kEmptyAuthentication;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -080058
Jeff Sharkey47695b22016-02-01 17:02:29 -070059// NOTE: keep in sync with StorageManager
60static constexpr int FLAG_STORAGE_DE = 1 << 0;
61static constexpr int FLAG_STORAGE_CE = 1 << 1;
62
Paul Lawrence731a7a22015-04-28 22:14:15 +000063namespace {
Paul Crowleydf528a72016-03-09 09:31:37 -080064const std::string device_key_dir = std::string() + DATA_MNT_POINT + "/unencrypted";
65const std::string device_key_path = device_key_dir + "/key";
66const std::string device_key_temp = device_key_dir + "/temp";
Paul Lawrence5a06a642016-02-03 13:39:13 -080067
Paul Crowleydf528a72016-03-09 09:31:37 -080068const std::string user_key_dir = std::string() + DATA_MNT_POINT + "/misc/vold/user_keys";
69const std::string user_key_temp = user_key_dir + "/temp";
Paul Crowley285956f2016-01-20 13:12:38 +000070
Paul Crowleydf528a72016-03-09 09:31:37 -080071bool s_global_de_initialized = false;
Paul Lawrence7b6b5652016-02-02 11:14:59 -080072
Paul Crowleydf528a72016-03-09 09:31:37 -080073// Some users are ephemeral, don't try to wipe their keys from disk
74std::set<userid_t> s_ephemeral_users;
Paul Lawrenceaec34df2016-02-03 10:52:41 -080075
Paul Crowleydf528a72016-03-09 09:31:37 -080076// Map user ids to key references
77std::map<userid_t, std::string> s_de_key_raw_refs;
78std::map<userid_t, std::string> s_ce_key_raw_refs;
79// TODO abolish this map. Keys should not be long-lived in user memory, only kernel memory.
80// See b/26948053
81std::map<userid_t, std::string> s_ce_keys;
Paul Lawrence731a7a22015-04-28 22:14:15 +000082
Paul Crowleydf528a72016-03-09 09:31:37 -080083// ext4enc:TODO get this const from somewhere good
84const int EXT4_KEY_DESCRIPTOR_SIZE = 8;
Paul Lawrencefd7db732015-04-10 07:48:51 -070085
Paul Crowleydf528a72016-03-09 09:31:37 -080086// ext4enc:TODO Include structure from somewhere sensible
87// MUST be in sync with ext4_crypto.c in kernel
88constexpr int EXT4_ENCRYPTION_MODE_AES_256_XTS = 1;
89constexpr int EXT4_AES_256_XTS_KEY_SIZE = 64;
90constexpr int EXT4_MAX_KEY_SIZE = 64;
91struct ext4_encryption_key {
92 uint32_t mode;
93 char raw[EXT4_MAX_KEY_SIZE];
94 uint32_t size;
95};
Paul Lawrence731a7a22015-04-28 22:14:15 +000096}
97
Paul Lawrencef10544d2016-02-04 08:18:52 -080098// TODO replace with proper function to test for file encryption
Paul Crowley38132a12016-02-09 09:50:32 +000099bool e4crypt_is_native() {
100 char value[PROPERTY_VALUE_MAX];
101 property_get("ro.crypto.type", value, "none");
102 return !strcmp(value, "file");
103}
104
105static bool e4crypt_is_emulated() {
106 return property_get_bool("persist.sys.emulate_fbe", false);
107}
108
109static const char* escape_null(const char* value) {
110 return (value == nullptr) ? "null" : value;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000111}
112
Paul Crowley93363482015-07-07 15:17:22 +0100113// Get raw keyref - used to make keyname and to pass to ioctl
Paul Crowleydf528a72016-03-09 09:31:37 -0800114static std::string generate_key_ref(const char* key, int length) {
Paul Lawrencefd7db732015-04-10 07:48:51 -0700115 SHA512_CTX c;
116
117 SHA512_Init(&c);
118 SHA512_Update(&c, key, length);
Paul Crowley285956f2016-01-20 13:12:38 +0000119 unsigned char key_ref1[SHA512_DIGEST_LENGTH];
Paul Lawrencefd7db732015-04-10 07:48:51 -0700120 SHA512_Final(key_ref1, &c);
121
122 SHA512_Init(&c);
Paul Crowley285956f2016-01-20 13:12:38 +0000123 SHA512_Update(&c, key_ref1, SHA512_DIGEST_LENGTH);
124 unsigned char key_ref2[SHA512_DIGEST_LENGTH];
Paul Lawrencefd7db732015-04-10 07:48:51 -0700125 SHA512_Final(key_ref2, &c);
126
Paul Crowleyd9b92952016-03-04 13:45:00 -0800127 static_assert(EXT4_KEY_DESCRIPTOR_SIZE <= SHA512_DIGEST_LENGTH,
Paul Crowleydf528a72016-03-09 09:31:37 -0800128 "Hash too short for descriptor");
Paul Lawrencefd7db732015-04-10 07:48:51 -0700129 return std::string((char*)key_ref2, EXT4_KEY_DESCRIPTOR_SIZE);
130}
131
Paul Crowleydf528a72016-03-09 09:31:37 -0800132static bool fill_key(const std::string& key, ext4_encryption_key* ext4_key) {
Paul Crowley21990692016-03-02 09:15:07 -0800133 if (key.size() != EXT4_AES_256_XTS_KEY_SIZE) {
134 LOG(ERROR) << "Wrong size key " << key.size();
135 return false;
136 }
Paul Crowleydf528a72016-03-09 09:31:37 -0800137 static_assert(EXT4_AES_256_XTS_KEY_SIZE <= sizeof(ext4_key->raw), "Key too long!");
Paul Crowleya051eb72016-03-08 16:08:32 -0800138 ext4_key->mode = EXT4_ENCRYPTION_MODE_AES_256_XTS;
139 ext4_key->size = key.size();
140 memset(ext4_key->raw, 0, sizeof(ext4_key->raw));
141 memcpy(ext4_key->raw, key.data(), key.size());
Paul Crowley21990692016-03-02 09:15:07 -0800142 return true;
Paul Crowley93363482015-07-07 15:17:22 +0100143}
Paul Lawrence731a7a22015-04-28 22:14:15 +0000144
Paul Crowleydf528a72016-03-09 09:31:37 -0800145static std::string keyname(const std::string& raw_ref) {
Paul Lawrencefd7db732015-04-10 07:48:51 -0700146 std::ostringstream o;
Paul Crowley93363482015-07-07 15:17:22 +0100147 o << "ext4:";
Paul Crowleydf528a72016-03-09 09:31:37 -0800148 for (auto i : raw_ref) {
Paul Crowleyd9b92952016-03-04 13:45:00 -0800149 o << std::hex << std::setw(2) << std::setfill('0') << (int)i;
Paul Lawrencefd7db732015-04-10 07:48:51 -0700150 }
Paul Crowley93363482015-07-07 15:17:22 +0100151 return o.str();
152}
Paul Lawrencefd7db732015-04-10 07:48:51 -0700153
Paul Crowley93363482015-07-07 15:17:22 +0100154// Get the keyring we store all keys in
Paul Crowleydf528a72016-03-09 09:31:37 -0800155static bool e4crypt_keyring(key_serial_t* device_keyring) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800156 *device_keyring = keyctl_search(KEY_SPEC_SESSION_KEYRING, "keyring", "e4crypt", 0);
157 if (*device_keyring == -1) {
Paul Crowleyd9b92952016-03-04 13:45:00 -0800158 PLOG(ERROR) << "Unable to find device keyring";
159 return false;
160 }
161 return true;
Paul Crowley93363482015-07-07 15:17:22 +0100162}
Paul Lawrence731a7a22015-04-28 22:14:15 +0000163
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000164// Install password into global keyring
165// Return raw key reference for use in policy
Paul Crowleydf528a72016-03-09 09:31:37 -0800166static bool install_key(const std::string& key, std::string* raw_ref) {
Paul Crowley21990692016-03-02 09:15:07 -0800167 ext4_encryption_key ext4_key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800168 if (!fill_key(key, &ext4_key)) return false;
169 *raw_ref = generate_key_ref(ext4_key.raw, ext4_key.size);
170 auto ref = keyname(*raw_ref);
Paul Crowleyd9b92952016-03-04 13:45:00 -0800171 key_serial_t device_keyring;
Paul Crowleya051eb72016-03-08 16:08:32 -0800172 if (!e4crypt_keyring(&device_keyring)) return false;
Paul Crowleydf528a72016-03-09 09:31:37 -0800173 key_serial_t key_id =
174 add_key("logon", ref.c_str(), (void*)&ext4_key, sizeof(ext4_key), device_keyring);
Paul Lawrence731a7a22015-04-28 22:14:15 +0000175 if (key_id == -1) {
Paul Crowley285956f2016-01-20 13:12:38 +0000176 PLOG(ERROR) << "Failed to insert key into keyring " << device_keyring;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000177 return false;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000178 }
Paul Crowleydf528a72016-03-09 09:31:37 -0800179 LOG(DEBUG) << "Added key " << key_id << " (" << ref << ") to keyring " << device_keyring
180 << " in process " << getpid();
Paul Lawrence85e3d8c2016-04-26 12:50:53 -0700181
182 // *TODO* Remove this code when kernel is fixed - see b/28373400
183 // Kernel preserves caches across a key insertion with ext4ice, which leads
184 // to contradictory dirents
185 if (!android::base::WriteStringToFile("3", "/proc/sys/vm/drop_caches")) {
186 PLOG(ERROR) << "Failed to drop_caches";
187 }
188
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000189 return true;
Paul Lawrence731a7a22015-04-28 22:14:15 +0000190}
191
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000192static std::string get_de_key_path(userid_t user_id) {
193 return StringPrintf("%s/de/%d", user_key_dir.c_str(), user_id);
194}
195
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700196static std::string get_ce_key_directory_path(userid_t user_id) {
197 return StringPrintf("%s/ce/%d", user_key_dir.c_str(), user_id);
198}
199
200// Returns the keys newest first
201static std::vector<std::string> get_ce_key_paths(const std::string& directory_path) {
202 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(directory_path.c_str()), closedir);
203 if (!dirp) {
204 PLOG(ERROR) << "Unable to open ce key directory: " + directory_path;
205 return std::vector<std::string>();
206 }
207 std::vector<std::string> result;
208 for (;;) {
209 errno = 0;
210 auto const entry = readdir(dirp.get());
211 if (!entry) {
212 if (errno) {
213 PLOG(ERROR) << "Unable to read ce key directory: " + directory_path;
214 return std::vector<std::string>();
215 }
216 break;
217 }
218 if (entry->d_type != DT_DIR || entry->d_name[0] != 'c') {
219 LOG(DEBUG) << "Skipping non-key " << entry->d_name;
220 continue;
221 }
222 result.emplace_back(directory_path + "/" + entry->d_name);
223 }
224 std::sort(result.begin(), result.end());
225 std::reverse(result.begin(), result.end());
226 return result;
227}
228
229static std::string get_ce_key_current_path(const std::string& directory_path) {
230 return directory_path + "/current";
231}
232
233static bool get_ce_key_new_path(const std::string& directory_path,
234 const std::vector<std::string>& paths,
235 std::string *ce_key_path) {
236 if (paths.empty()) {
237 *ce_key_path = get_ce_key_current_path(directory_path);
238 return true;
239 }
240 for (unsigned int i = 0; i < UINT_MAX; i++) {
241 auto const candidate = StringPrintf("%s/cx%010u", directory_path.c_str(), i);
242 if (paths[0] < candidate) {
243 *ce_key_path = candidate;
244 return true;
245 }
246 }
247 return false;
248}
249
250// Discard all keys but the named one; rename it to canonical name.
251// No point in acting on errors in this; ignore them.
252static void fixate_user_ce_key(const std::string& directory_path, const std::string &to_fix,
253 const std::vector<std::string>& paths) {
254 for (auto const other_path: paths) {
255 if (other_path != to_fix) {
256 android::vold::destroyKey(other_path);
257 }
258 }
259 auto const current_path = get_ce_key_current_path(directory_path);
260 if (to_fix != current_path) {
261 LOG(DEBUG) << "Renaming " << to_fix << " to " << current_path;
262 if (rename(to_fix.c_str(), current_path.c_str()) != 0) {
263 PLOG(WARNING) << "Unable to rename " << to_fix << " to " << current_path;
264 }
265 }
266}
267
268static bool read_and_fixate_user_ce_key(userid_t user_id,
269 const android::vold::KeyAuthentication& auth,
270 std::string *ce_key) {
271 auto const directory_path = get_ce_key_directory_path(user_id);
272 auto const paths = get_ce_key_paths(directory_path);
273 for (auto const ce_key_path: paths) {
274 LOG(DEBUG) << "Trying user CE key " << ce_key_path;
275 if (android::vold::retrieveKey(ce_key_path, auth, ce_key)) {
276 LOG(DEBUG) << "Successfully retrieved key";
277 fixate_user_ce_key(directory_path, ce_key_path, paths);
278 return true;
279 }
280 }
281 LOG(ERROR) << "Failed to find working ce key for user " << user_id;
282 return false;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100283}
284
Paul Crowleydf528a72016-03-09 09:31:37 -0800285static bool read_and_install_user_ce_key(userid_t user_id,
286 const android::vold::KeyAuthentication& auth) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000287 if (s_ce_key_raw_refs.count(user_id) != 0) return true;
Paul Crowley05720802016-02-08 15:55:41 +0000288 std::string ce_key;
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700289 if (!read_and_fixate_user_ce_key(user_id, auth, &ce_key)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000290 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800291 if (!install_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000292 s_ce_keys[user_id] = ce_key;
293 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000294 LOG(DEBUG) << "Installed ce key for user " << user_id;
Paul Crowley1ef25582016-01-21 20:26:12 +0000295 return true;
Paul Crowley285956f2016-01-20 13:12:38 +0000296}
297
Paul Crowleydf528a72016-03-09 09:31:37 -0800298static bool prepare_dir(const std::string& dir, mode_t mode, uid_t uid, gid_t gid) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000299 LOG(DEBUG) << "Preparing: " << dir;
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000300 if (fs_prepare_dir(dir.c_str(), mode, uid, gid) != 0) {
301 PLOG(ERROR) << "Failed to prepare " << dir;
Paul Crowley285956f2016-01-20 13:12:38 +0000302 return false;
303 }
Paul Crowley13ffd8e2016-01-27 14:30:22 +0000304 return true;
305}
306
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600307static bool destroy_dir(const std::string& dir) {
308 LOG(DEBUG) << "Destroying: " << dir;
309 if (rmdir(dir.c_str()) != 0 && errno != ENOENT) {
310 PLOG(ERROR) << "Failed to destroy " << dir;
311 return false;
312 }
313 return true;
314}
315
Paul Crowleydf528a72016-03-09 09:31:37 -0800316static bool random_key(std::string* key) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800317 if (android::vold::ReadRandomBytes(EXT4_AES_256_XTS_KEY_SIZE, *key) != 0) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000318 // TODO status_t plays badly with PLOG, fix it.
319 LOG(ERROR) << "Random read failed";
Paul Crowley285956f2016-01-20 13:12:38 +0000320 return false;
321 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000322 return true;
323}
324
Paul Crowleydf528a72016-03-09 09:31:37 -0800325static bool path_exists(const std::string& path) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000326 return access(path.c_str(), F_OK) == 0;
327}
328
329// NB this assumes that there is only one thread listening for crypt commands, because
330// it creates keys in a fixed location.
Paul Crowleydf528a72016-03-09 09:31:37 -0800331static bool store_key(const std::string& key_path, const std::string& tmp_path,
332 const android::vold::KeyAuthentication& auth, const std::string& key) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000333 if (path_exists(key_path)) {
334 LOG(ERROR) << "Already exists, cannot create key at: " << key_path;
335 return false;
336 }
Paul Crowley38132a12016-02-09 09:50:32 +0000337 if (path_exists(tmp_path)) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800338 android::vold::destroyKey(tmp_path); // May be partially created so ignore errors
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000339 }
Paul Crowley38132a12016-02-09 09:50:32 +0000340 if (!android::vold::storeKey(tmp_path, auth, key)) return false;
341 if (rename(tmp_path.c_str(), key_path.c_str()) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000342 PLOG(ERROR) << "Unable to move new key to location: " << key_path;
343 return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100344 }
Paul Crowley285956f2016-01-20 13:12:38 +0000345 LOG(DEBUG) << "Created key " << key_path;
Paul Crowley95376d62015-05-06 15:04:43 +0100346 return true;
347}
348
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000349static bool create_and_install_user_keys(userid_t user_id, bool create_ephemeral) {
350 std::string de_key, ce_key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800351 if (!random_key(&de_key)) return false;
352 if (!random_key(&ce_key)) return false;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000353 if (create_ephemeral) {
354 // If the key should be created as ephemeral, don't store it.
355 s_ephemeral_users.insert(user_id);
356 } else {
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700357 auto const directory_path = get_ce_key_directory_path(user_id);
358 if (!prepare_dir(directory_path, 0700, AID_ROOT, AID_ROOT)) return false;
359 auto const paths = get_ce_key_paths(directory_path);
360 std::string ce_key_path;
361 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
362 if (!store_key(ce_key_path, user_key_temp,
363 kEmptyAuthentication, ce_key)) return false;
364 fixate_user_ce_key(directory_path, ce_key_path, paths);
365 // Write DE key second; once this is written, all is good.
Paul Crowley38132a12016-02-09 09:50:32 +0000366 if (!store_key(get_de_key_path(user_id), user_key_temp,
367 kEmptyAuthentication, de_key)) return false;
Paul Crowley95376d62015-05-06 15:04:43 +0100368 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000369 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800370 if (!install_key(de_key, &de_raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000371 s_de_key_raw_refs[user_id] = de_raw_ref;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000372 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800373 if (!install_key(ce_key, &ce_raw_ref)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000374 s_ce_keys[user_id] = ce_key;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000375 s_ce_key_raw_refs[user_id] = ce_raw_ref;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000376 LOG(DEBUG) << "Created keys for user " << user_id;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000377 return true;
378}
379
Paul Crowleydf528a72016-03-09 09:31:37 -0800380static bool lookup_key_ref(const std::map<userid_t, std::string>& key_map, userid_t user_id,
381 std::string* raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000382 auto refi = key_map.find(user_id);
383 if (refi == key_map.end()) {
384 LOG(ERROR) << "Cannot find key for " << user_id;
385 return false;
386 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800387 *raw_ref = refi->second;
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000388 return true;
389}
390
Paul Crowleydf528a72016-03-09 09:31:37 -0800391static bool ensure_policy(const std::string& raw_ref, const std::string& path) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700392 if (e4crypt_policy_ensure(path.c_str(), raw_ref.data(), raw_ref.size()) != 0) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000393 LOG(ERROR) << "Failed to set policy on: " << path;
394 return false;
395 }
396 return true;
Paul Crowley95376d62015-05-06 15:04:43 +0100397}
Paul Crowleyb33e8872015-05-19 12:34:09 +0100398
Paul Crowleydf528a72016-03-09 09:31:37 -0800399static bool is_numeric(const char* name) {
400 for (const char* p = name; *p != '\0'; p++) {
401 if (!isdigit(*p)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000402 }
403 return true;
404}
405
406static bool load_all_de_keys() {
407 auto de_dir = user_key_dir + "/de";
Paul Crowleydf528a72016-03-09 09:31:37 -0800408 auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(de_dir.c_str()), closedir);
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000409 if (!dirp) {
410 PLOG(ERROR) << "Unable to read de key directory";
411 return false;
412 }
413 for (;;) {
414 errno = 0;
415 auto entry = readdir(dirp.get());
416 if (!entry) {
417 if (errno) {
418 PLOG(ERROR) << "Unable to read de key directory";
419 return false;
420 }
421 break;
422 }
423 if (entry->d_type != DT_DIR || !is_numeric(entry->d_name)) {
424 LOG(DEBUG) << "Skipping non-de-key " << entry->d_name;
425 continue;
426 }
427 userid_t user_id = atoi(entry->d_name);
428 if (s_de_key_raw_refs.count(user_id) == 0) {
Paul Crowley05720802016-02-08 15:55:41 +0000429 auto key_path = de_dir + "/" + entry->d_name;
430 std::string key;
Paul Crowleya051eb72016-03-08 16:08:32 -0800431 if (!android::vold::retrieveKey(key_path, kEmptyAuthentication, &key)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000432 std::string raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800433 if (!install_key(key, &raw_ref)) return false;
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000434 s_de_key_raw_refs[user_id] = raw_ref;
435 LOG(DEBUG) << "Installed de key for user " << user_id;
436 }
437 }
438 // ext4enc:TODO: go through all DE directories, ensure that all user dirs have the
439 // correct policy set on them, and that no rogue ones exist.
440 return true;
441}
442
Paul Crowleydf528a72016-03-09 09:31:37 -0800443bool e4crypt_initialize_global_de() {
Paul Crowley38132a12016-02-09 09:50:32 +0000444 LOG(INFO) << "e4crypt_initialize_global_de";
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800445
Paul Crowley38132a12016-02-09 09:50:32 +0000446 if (s_global_de_initialized) {
447 LOG(INFO) << "Already initialized";
Paul Crowley76107cb2016-02-09 10:04:39 +0000448 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800449 }
450
451 std::string device_key;
Paul Crowley38132a12016-02-09 09:50:32 +0000452 if (path_exists(device_key_path)) {
453 if (!android::vold::retrieveKey(device_key_path,
Paul Crowleya051eb72016-03-08 16:08:32 -0800454 kEmptyAuthentication, &device_key)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000455 } else {
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800456 LOG(INFO) << "Creating new key";
Paul Crowleya051eb72016-03-08 16:08:32 -0800457 if (!random_key(&device_key)) return false;
Paul Crowley38132a12016-02-09 09:50:32 +0000458 if (!store_key(device_key_path, device_key_temp,
Paul Crowley76107cb2016-02-09 10:04:39 +0000459 kEmptyAuthentication, device_key)) return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800460 }
461
462 std::string device_key_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800463 if (!install_key(device_key, &device_key_ref)) {
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800464 LOG(ERROR) << "Failed to install device key";
Paul Crowley76107cb2016-02-09 10:04:39 +0000465 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800466 }
467
Paul Lawrencef10544d2016-02-04 08:18:52 -0800468 std::string ref_filename = std::string("/data") + e4crypt_key_ref;
469 if (!android::base::WriteStringToFile(device_key_ref, ref_filename)) {
470 PLOG(ERROR) << "Cannot save key reference";
Paul Crowley76107cb2016-02-09 10:04:39 +0000471 return false;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800472 }
473
Paul Crowley38132a12016-02-09 09:50:32 +0000474 s_global_de_initialized = true;
Paul Crowley76107cb2016-02-09 10:04:39 +0000475 return true;
Paul Lawrenceaec34df2016-02-03 10:52:41 -0800476}
477
Paul Crowley76107cb2016-02-09 10:04:39 +0000478bool e4crypt_init_user0() {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000479 LOG(DEBUG) << "e4crypt_init_user0";
480 if (e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000481 if (!prepare_dir(user_key_dir, 0700, AID_ROOT, AID_ROOT)) return false;
482 if (!prepare_dir(user_key_dir + "/ce", 0700, AID_ROOT, AID_ROOT)) return false;
483 if (!prepare_dir(user_key_dir + "/de", 0700, AID_ROOT, AID_ROOT)) return false;
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700484 if (!path_exists(get_de_key_path(0))) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000485 if (!create_and_install_user_keys(0, false)) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000486 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700487 // TODO: switch to loading only DE_0 here once framework makes
488 // explicit calls to install DE keys for secondary users
Paul Crowley76107cb2016-02-09 10:04:39 +0000489 if (!load_all_de_keys()) return false;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000490 }
Jeff Sharkey47695b22016-02-01 17:02:29 -0700491 // We can only safely prepare DE storage here, since CE keys are probably
492 // entangled with user credentials. The framework will always prepare CE
493 // storage once CE keys are installed.
Paul Crowley76107cb2016-02-09 10:04:39 +0000494 if (!e4crypt_prepare_user_storage(nullptr, 0, 0, FLAG_STORAGE_DE)) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700495 LOG(ERROR) << "Failed to prepare user 0 storage";
Paul Crowley76107cb2016-02-09 10:04:39 +0000496 return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700497 }
Jeff Sharkey0754a452016-02-08 12:21:42 -0700498
499 // If this is a non-FBE device that recently left an emulated mode,
500 // restore user data directories to known-good state.
501 if (!e4crypt_is_native() && !e4crypt_is_emulated()) {
Jeff Sharkey695d9282016-02-08 18:10:34 -0700502 e4crypt_unlock_user_key(0, 0, "!", "!");
Jeff Sharkey0754a452016-02-08 12:21:42 -0700503 }
504
Paul Crowley76107cb2016-02-09 10:04:39 +0000505 return true;
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000506}
507
Paul Crowley76107cb2016-02-09 10:04:39 +0000508bool e4crypt_vold_create_user_key(userid_t user_id, int serial, bool ephemeral) {
Paul Crowley285956f2016-01-20 13:12:38 +0000509 LOG(DEBUG) << "e4crypt_vold_create_user_key for " << user_id << " serial " << serial;
Paul Crowleyea62e262016-01-28 12:23:53 +0000510 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000511 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000512 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000513 // FIXME test for existence of key that is not loaded yet
514 if (s_ce_key_raw_refs.count(user_id) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800515 LOG(ERROR) << "Already exists, can't e4crypt_vold_create_user_key for " << user_id
516 << " serial " << serial;
Paul Crowley285956f2016-01-20 13:12:38 +0000517 // FIXME should we fail the command?
Paul Crowley76107cb2016-02-09 10:04:39 +0000518 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800519 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000520 if (!create_and_install_user_keys(user_id, ephemeral)) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000521 return false;
Paul Crowley285956f2016-01-20 13:12:38 +0000522 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000523 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800524}
525
Paul Crowleydf528a72016-03-09 09:31:37 -0800526static bool evict_key(const std::string& raw_ref) {
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000527 auto ref = keyname(raw_ref);
Paul Crowleyd9b92952016-03-04 13:45:00 -0800528 key_serial_t device_keyring;
Paul Crowleya051eb72016-03-08 16:08:32 -0800529 if (!e4crypt_keyring(&device_keyring)) return false;
Paul Crowleyd9b92952016-03-04 13:45:00 -0800530 auto key_serial = keyctl_search(device_keyring, "logon", ref.c_str(), 0);
Paul Crowley1ef25582016-01-21 20:26:12 +0000531 if (keyctl_revoke(key_serial) != 0) {
Paul Crowley285956f2016-01-20 13:12:38 +0000532 PLOG(ERROR) << "Failed to revoke key with serial " << key_serial << " ref " << ref;
Paul Crowley1ef25582016-01-21 20:26:12 +0000533 return false;
Paul Crowley93363482015-07-07 15:17:22 +0100534 }
Paul Crowley1ef25582016-01-21 20:26:12 +0000535 LOG(DEBUG) << "Revoked key with serial " << key_serial << " ref " << ref;
536 return true;
537}
538
Paul Crowley76107cb2016-02-09 10:04:39 +0000539bool e4crypt_destroy_user_key(userid_t user_id) {
Paul Crowley1ef25582016-01-21 20:26:12 +0000540 LOG(DEBUG) << "e4crypt_destroy_user_key(" << user_id << ")";
Paul Crowleyea62e262016-01-28 12:23:53 +0000541 if (!e4crypt_is_native()) {
Paul Crowley76107cb2016-02-09 10:04:39 +0000542 return true;
Paul Crowleyea62e262016-01-28 12:23:53 +0000543 }
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000544 bool success = true;
Paul Crowley05720802016-02-08 15:55:41 +0000545 s_ce_keys.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000546 std::string raw_ref;
Paul Crowley71ee6622016-03-25 15:50:01 -0700547 // If we haven't loaded the CE key, no need to evict it.
548 if (lookup_key_ref(s_ce_key_raw_refs, user_id, &raw_ref)) {
549 success &= evict_key(raw_ref);
550 }
Paul Crowley05720802016-02-08 15:55:41 +0000551 s_ce_key_raw_refs.erase(user_id);
Paul Crowleya051eb72016-03-08 16:08:32 -0800552 success &= lookup_key_ref(s_de_key_raw_refs, user_id, &raw_ref) && evict_key(raw_ref);
Paul Crowley05720802016-02-08 15:55:41 +0000553 s_de_key_raw_refs.erase(user_id);
Paul Crowleyb1f3d242016-01-28 10:09:46 +0000554 auto it = s_ephemeral_users.find(user_id);
555 if (it != s_ephemeral_users.end()) {
556 s_ephemeral_users.erase(it);
Paul Crowley1ef25582016-01-21 20:26:12 +0000557 } else {
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700558 for (auto const path: get_ce_key_paths(get_ce_key_directory_path(user_id))) {
559 success &= android::vold::destroyKey(path);
560 }
Paul Crowleyb92f83c2016-02-01 14:10:43 +0000561 success &= android::vold::destroyKey(get_de_key_path(user_id));
Lenka Trochtova395039f2015-11-25 10:13:03 +0100562 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000563 return success;
Paul Crowleyb33e8872015-05-19 12:34:09 +0100564}
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800565
Paul Crowley76107cb2016-02-09 10:04:39 +0000566static bool emulated_lock(const std::string& path) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700567 if (chmod(path.c_str(), 0000) != 0) {
568 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000569 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700570 }
571#if EMULATED_USES_SELINUX
572 if (setfilecon(path.c_str(), "u:object_r:storage_stub_file:s0") != 0) {
573 PLOG(WARNING) << "Failed to setfilecon " << path;
Paul Crowley76107cb2016-02-09 10:04:39 +0000574 return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700575 }
576#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000577 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700578}
579
Paul Crowley76107cb2016-02-09 10:04:39 +0000580static bool emulated_unlock(const std::string& path, mode_t mode) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700581 if (chmod(path.c_str(), mode) != 0) {
582 PLOG(ERROR) << "Failed to chmod " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000583 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000584 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700585 }
586#if EMULATED_USES_SELINUX
587 if (selinux_android_restorecon(path.c_str(), SELINUX_ANDROID_RESTORECON_FORCE) != 0) {
588 PLOG(WARNING) << "Failed to restorecon " << path;
Paul Crowleya042cb52016-01-21 17:24:49 +0000589 // FIXME temporary workaround for b/26713622
Paul Crowley76107cb2016-02-09 10:04:39 +0000590 if (e4crypt_is_emulated()) return false;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700591 }
592#endif
Paul Crowley76107cb2016-02-09 10:04:39 +0000593 return true;
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700594}
595
Paul Crowleydf528a72016-03-09 09:31:37 -0800596static bool parse_hex(const char* hex, std::string* result) {
Paul Crowley05720802016-02-08 15:55:41 +0000597 if (strcmp("!", hex) == 0) {
Paul Crowleya051eb72016-03-08 16:08:32 -0800598 *result = "";
Paul Crowley05720802016-02-08 15:55:41 +0000599 return true;
600 }
Paul Crowleya051eb72016-03-08 16:08:32 -0800601 if (android::vold::HexToStr(hex, *result) != 0) {
Paul Crowleydf528a72016-03-09 09:31:37 -0800602 LOG(ERROR) << "Invalid FBE hex string"; // Don't log the string for security reasons
Paul Crowley05720802016-02-08 15:55:41 +0000603 return false;
604 }
605 return true;
606}
607
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700608bool e4crypt_add_user_key_auth(userid_t user_id, int serial, const char* token_hex,
609 const char* secret_hex) {
610 LOG(DEBUG) << "e4crypt_add_user_key_auth " << user_id << " serial=" << serial
Paul Crowleydf528a72016-03-09 09:31:37 -0800611 << " token_present=" << (strcmp(token_hex, "!") != 0);
Paul Crowley76107cb2016-02-09 10:04:39 +0000612 if (!e4crypt_is_native()) return true;
613 if (s_ephemeral_users.count(user_id) != 0) return true;
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700614 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800615 if (!parse_hex(token_hex, &token)) return false;
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700616 if (!parse_hex(secret_hex, &secret)) return false;
617 auto auth = secret.empty() ? kEmptyAuthentication
618 : android::vold::KeyAuthentication(token, secret);
Paul Crowley05720802016-02-08 15:55:41 +0000619 auto it = s_ce_keys.find(user_id);
620 if (it == s_ce_keys.end()) {
621 LOG(ERROR) << "Key not loaded into memory, can't change for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000622 return false;
Paul Crowley05720802016-02-08 15:55:41 +0000623 }
624 auto ce_key = it->second;
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700625 auto const directory_path = get_ce_key_directory_path(user_id);
626 auto const paths = get_ce_key_paths(directory_path);
627 std::string ce_key_path;
628 if (!get_ce_key_new_path(directory_path, paths, &ce_key_path)) return false;
629 if (!store_key(ce_key_path, user_key_temp, auth, ce_key)) return false;
630 return true;
631}
632
633bool e4crypt_fixate_newest_user_key_auth(userid_t user_id) {
634 LOG(DEBUG) << "e4crypt_fixate_newest_user_key_auth " << user_id;
635 auto const directory_path = get_ce_key_directory_path(user_id);
636 auto const paths = get_ce_key_paths(directory_path);
637 if (paths.empty()) {
638 LOG(ERROR) << "No ce keys present, cannot fixate for user " << user_id;
639 return false;
Paul Crowleyad2eb642016-02-10 17:56:05 +0000640 }
Paul Crowley92c5eeb2016-04-22 12:09:54 -0700641 fixate_user_ce_key(directory_path, paths[0], paths);
Paul Crowley76107cb2016-02-09 10:04:39 +0000642 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000643}
644
Jeff Sharkey47695b22016-02-01 17:02:29 -0700645// TODO: rename to 'install' for consistency, and take flags to know which keys to install
Paul Crowleydf528a72016-03-09 09:31:37 -0800646bool e4crypt_unlock_user_key(userid_t user_id, int serial, const char* token_hex,
647 const char* secret_hex) {
648 LOG(DEBUG) << "e4crypt_unlock_user_key " << user_id << " serial=" << serial
649 << " token_present=" << (strcmp(token_hex, "!") != 0);
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700650 if (e4crypt_is_native()) {
Paul Crowley05720802016-02-08 15:55:41 +0000651 if (s_ce_key_raw_refs.count(user_id) != 0) {
652 LOG(WARNING) << "Tried to unlock already-unlocked key for user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000653 return true;
Paul Crowley05720802016-02-08 15:55:41 +0000654 }
655 std::string token, secret;
Paul Crowleya051eb72016-03-08 16:08:32 -0800656 if (!parse_hex(token_hex, &token)) return false;
657 if (!parse_hex(secret_hex, &secret)) return false;
Paul Crowley05720802016-02-08 15:55:41 +0000658 android::vold::KeyAuthentication auth(token, secret);
659 if (!read_and_install_user_ce_key(user_id, auth)) {
Paul Crowley8fb12fd2016-02-01 14:28:12 +0000660 LOG(ERROR) << "Couldn't read key for " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000661 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800662 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700663 } else {
664 // When in emulation mode, we just use chmod. However, we also
665 // unlock directories when not in emulation mode, to bring devices
666 // back into a known-good state.
Paul Crowley76107cb2016-02-09 10:04:39 +0000667 if (!emulated_unlock(android::vold::BuildDataSystemCePath(user_id), 0771) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800668 !emulated_unlock(android::vold::BuildDataMiscCePath(user_id), 01771) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600669 !emulated_unlock(android::vold::BuildDataMediaCePath(nullptr, user_id), 0770) ||
670 !emulated_unlock(android::vold::BuildDataUserCePath(nullptr, user_id), 0771)) {
Jeff Sharkey7a9dd952016-01-12 16:52:16 -0700671 LOG(ERROR) << "Failed to unlock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000672 return false;
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700673 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800674 }
Paul Crowley76107cb2016-02-09 10:04:39 +0000675 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800676}
677
Jeff Sharkey47695b22016-02-01 17:02:29 -0700678// TODO: rename to 'evict' for consistency
Paul Crowley76107cb2016-02-09 10:04:39 +0000679bool e4crypt_lock_user_key(userid_t user_id) {
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700680 if (e4crypt_is_native()) {
681 // TODO: remove from kernel keyring
682 } else if (e4crypt_is_emulated()) {
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800683 // When in emulation mode, we just use chmod
Paul Crowley76107cb2016-02-09 10:04:39 +0000684 if (!emulated_lock(android::vold::BuildDataSystemCePath(user_id)) ||
Paul Crowleydf528a72016-03-09 09:31:37 -0800685 !emulated_lock(android::vold::BuildDataMiscCePath(user_id)) ||
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600686 !emulated_lock(android::vold::BuildDataMediaCePath(nullptr, user_id)) ||
687 !emulated_lock(android::vold::BuildDataUserCePath(nullptr, user_id))) {
Paul Crowley57eedbf2016-02-09 09:30:23 +0000688 LOG(ERROR) << "Failed to lock user " << user_id;
Paul Crowley76107cb2016-02-09 10:04:39 +0000689 return false;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800690 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800691 }
Jeff Sharkeyfc505c32015-12-07 17:27:01 -0700692
Paul Crowley76107cb2016-02-09 10:04:39 +0000693 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800694}
695
Paul Crowleydf528a72016-03-09 09:31:37 -0800696bool e4crypt_prepare_user_storage(const char* volume_uuid, userid_t user_id, int serial,
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600697 int flags) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700698 LOG(DEBUG) << "e4crypt_prepare_user_storage for volume " << escape_null(volume_uuid)
Paul Crowleydf528a72016-03-09 09:31:37 -0800699 << ", user " << user_id << ", serial " << serial << ", flags " << flags;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700700
701 if (flags & FLAG_STORAGE_DE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600702 // DE_sys key
703 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
704 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
705 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
706 auto foreign_de_path = android::vold::BuildDataProfilesForeignDexDePath(user_id);
707
708 // DE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700709 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
710 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
711 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
712
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600713 if (!prepare_dir(system_legacy_path, 0700, AID_SYSTEM, AID_SYSTEM)) return false;
714#if MANAGE_MISC_DIRS
715 if (!prepare_dir(misc_legacy_path, 0750, multiuser_get_uid(user_id, AID_SYSTEM),
716 multiuser_get_uid(user_id, AID_EVERYBODY))) return false;
717#endif
718 if (!prepare_dir(profiles_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
719 if (!prepare_dir(foreign_de_path, 0773, AID_SYSTEM, AID_SYSTEM)) return false;
720
Paul Crowley76107cb2016-02-09 10:04:39 +0000721 if (!prepare_dir(system_de_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
722 if (!prepare_dir(misc_de_path, 01771, AID_SYSTEM, AID_MISC)) return false;
723 if (!prepare_dir(user_de_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Calin Juravled1ee9442016-03-02 18:36:50 +0000724
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600725 // For now, FBE is only supported on internal storage
726 if (e4crypt_is_native() && volume_uuid == nullptr) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700727 std::string de_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800728 if (!lookup_key_ref(s_de_key_raw_refs, user_id, &de_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000729 if (!ensure_policy(de_raw_ref, system_de_path)) return false;
730 if (!ensure_policy(de_raw_ref, misc_de_path)) return false;
731 if (!ensure_policy(de_raw_ref, user_de_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700732 }
Paul Crowley285956f2016-01-20 13:12:38 +0000733 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800734
Jeff Sharkey47695b22016-02-01 17:02:29 -0700735 if (flags & FLAG_STORAGE_CE) {
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600736 // CE_n key
Jeff Sharkey47695b22016-02-01 17:02:29 -0700737 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
738 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600739 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
740 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800741
Paul Crowley76107cb2016-02-09 10:04:39 +0000742 if (!prepare_dir(system_ce_path, 0770, AID_SYSTEM, AID_SYSTEM)) return false;
743 if (!prepare_dir(misc_ce_path, 01771, AID_SYSTEM, AID_MISC)) return false;
744 if (!prepare_dir(media_ce_path, 0770, AID_MEDIA_RW, AID_MEDIA_RW)) return false;
745 if (!prepare_dir(user_ce_path, 0771, AID_SYSTEM, AID_SYSTEM)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700746
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600747 // For now, FBE is only supported on internal storage
748 if (e4crypt_is_native() && volume_uuid == nullptr) {
Jeff Sharkey47695b22016-02-01 17:02:29 -0700749 std::string ce_raw_ref;
Paul Crowleya051eb72016-03-08 16:08:32 -0800750 if (!lookup_key_ref(s_ce_key_raw_refs, user_id, &ce_raw_ref)) return false;
Paul Crowley76107cb2016-02-09 10:04:39 +0000751 if (!ensure_policy(ce_raw_ref, system_ce_path)) return false;
752 if (!ensure_policy(ce_raw_ref, misc_ce_path)) return false;
753 if (!ensure_policy(ce_raw_ref, media_ce_path)) return false;
754 if (!ensure_policy(ce_raw_ref, user_ce_path)) return false;
Jeff Sharkey47695b22016-02-01 17:02:29 -0700755 }
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800756 }
757
Paul Crowley76107cb2016-02-09 10:04:39 +0000758 return true;
Jeff Sharkeyd2c96e72015-11-08 17:56:23 -0800759}
Jeff Sharkeybe70c9a2016-04-14 20:45:16 -0600760
761bool e4crypt_destroy_user_storage(const char* volume_uuid, userid_t user_id, int flags) {
762 LOG(DEBUG) << "e4crypt_destroy_user_storage for volume " << escape_null(volume_uuid)
763 << ", user " << user_id << ", flags " << flags;
764 bool res = true;
765
766 if (flags & FLAG_STORAGE_DE) {
767 // DE_sys key
768 auto system_legacy_path = android::vold::BuildDataSystemLegacyPath(user_id);
769 auto misc_legacy_path = android::vold::BuildDataMiscLegacyPath(user_id);
770 auto profiles_de_path = android::vold::BuildDataProfilesDePath(user_id);
771 auto foreign_de_path = android::vold::BuildDataProfilesForeignDexDePath(user_id);
772
773 // DE_n key
774 auto system_de_path = android::vold::BuildDataSystemDePath(user_id);
775 auto misc_de_path = android::vold::BuildDataMiscDePath(user_id);
776 auto user_de_path = android::vold::BuildDataUserDePath(volume_uuid, user_id);
777
778 if (volume_uuid == nullptr) {
779 res &= destroy_dir(system_legacy_path);
780#if MANAGE_MISC_DIRS
781 res &= destroy_dir(misc_legacy_path);
782#endif
783 res &= destroy_dir(profiles_de_path);
784 res &= destroy_dir(foreign_de_path);
785 res &= destroy_dir(system_de_path);
786 res &= destroy_dir(misc_de_path);
787 }
788 res &= destroy_dir(user_de_path);
789 }
790
791 if (flags & FLAG_STORAGE_CE) {
792 // CE_n key
793 auto system_ce_path = android::vold::BuildDataSystemCePath(user_id);
794 auto misc_ce_path = android::vold::BuildDataMiscCePath(user_id);
795 auto media_ce_path = android::vold::BuildDataMediaCePath(volume_uuid, user_id);
796 auto user_ce_path = android::vold::BuildDataUserCePath(volume_uuid, user_id);
797
798 if (volume_uuid == nullptr) {
799 res &= destroy_dir(system_ce_path);
800 res &= destroy_dir(misc_ce_path);
801 }
802 res &= destroy_dir(media_ce_path);
803 res &= destroy_dir(user_ce_path);
804 }
805
806 return res;
807}